Interface InspectionData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InspectionData.Builder,InspectionData>,SdkBuilder<InspectionData.Builder,InspectionData>,SdkPojo
- Enclosing class:
- InspectionData
@Mutable @NotThreadSafe public static interface InspectionData.Builder extends SdkPojo, CopyableBuilder<InspectionData.Builder,InspectionData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description InspectionData.BuilderafterArguments(String afterArguments)The input after Step Functions applies an Arguments filter.InspectionData.BuilderafterInputPath(String afterInputPath)The input after Step Functions applies the InputPath filter.InspectionData.BuilderafterItemBatcher(String afterItemBatcher)The effective input after the ItemBatcher filter is applied in a Map state.InspectionData.BuilderafterItemSelector(String afterItemSelector)An array containing the inputs for each Map iteration, transformed by the ItemSelector specified in a Map state.InspectionData.BuilderafterItemsPath(String afterItemsPath)The effective input after the ItemsPath filter is applied.InspectionData.BuilderafterItemsPointer(String afterItemsPointer)The effective input after the ItemsPointer filter is applied in a Map state.InspectionData.BuilderafterParameters(String afterParameters)The effective input after Step Functions applies the Parameters filter.InspectionData.BuilderafterResultPath(String afterResultPath)The effective result combined with the raw state input after Step Functions applies the ResultPath filter.InspectionData.BuilderafterResultSelector(String afterResultSelector)The effective result after Step Functions applies the ResultSelector filter.default InspectionData.BuildererrorDetails(Consumer<InspectionErrorDetails.Builder> errorDetails)An object containing data about a handled exception in the tested state.InspectionData.BuildererrorDetails(InspectionErrorDetails errorDetails)An object containing data about a handled exception in the tested state.InspectionData.Builderinput(String input)The raw state input.InspectionData.BuildermaxConcurrency(Integer maxConcurrency)The max concurrency of the Map state.default InspectionData.Builderrequest(Consumer<InspectionDataRequest.Builder> request)The raw HTTP request that is sent when you test an HTTP Task.InspectionData.Builderrequest(InspectionDataRequest request)The raw HTTP request that is sent when you test an HTTP Task.default InspectionData.Builderresponse(Consumer<InspectionDataResponse.Builder> response)The raw HTTP response that is returned when you test an HTTP Task.InspectionData.Builderresponse(InspectionDataResponse response)The raw HTTP response that is returned when you test an HTTP Task.InspectionData.Builderresult(String result)The state's raw result.InspectionData.BuildertoleratedFailureCount(Integer toleratedFailureCount)The tolerated failure threshold for a Map state as defined in number of Map state iterations.InspectionData.BuildertoleratedFailurePercentage(Float toleratedFailurePercentage)The tolerated failure threshold for a Map state as defined in percentage of Map state iterations.InspectionData.Buildervariables(String variables)JSON string that contains the set of workflow variables after execution of the state.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
input
InspectionData.Builder input(String input)
The raw state input.
- Parameters:
input- The raw state input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterArguments
InspectionData.Builder afterArguments(String afterArguments)
The input after Step Functions applies an Arguments filter. This event will only be present when QueryLanguage for the state machine or individual states is set to JSONata. For more info, see Transforming data with Step Functions.
- Parameters:
afterArguments- The input after Step Functions applies an Arguments filter. This event will only be present when QueryLanguage for the state machine or individual states is set to JSONata. For more info, see Transforming data with Step Functions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterInputPath
InspectionData.Builder afterInputPath(String afterInputPath)
The input after Step Functions applies the InputPath filter. Not populated when QueryLanguage is JSONata.
- Parameters:
afterInputPath- The input after Step Functions applies the InputPath filter. Not populated when QueryLanguage is JSONata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterParameters
InspectionData.Builder afterParameters(String afterParameters)
The effective input after Step Functions applies the Parameters filter. Not populated when QueryLanguage is JSONata.
- Parameters:
afterParameters- The effective input after Step Functions applies the Parameters filter. Not populated when QueryLanguage is JSONata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
result
InspectionData.Builder result(String result)
The state's raw result.
- Parameters:
result- The state's raw result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterResultSelector
InspectionData.Builder afterResultSelector(String afterResultSelector)
The effective result after Step Functions applies the ResultSelector filter. Not populated when QueryLanguage is JSONata.
- Parameters:
afterResultSelector- The effective result after Step Functions applies the ResultSelector filter. Not populated when QueryLanguage is JSONata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterResultPath
InspectionData.Builder afterResultPath(String afterResultPath)
The effective result combined with the raw state input after Step Functions applies the ResultPath filter. Not populated when QueryLanguage is JSONata.
- Parameters:
afterResultPath- The effective result combined with the raw state input after Step Functions applies the ResultPath filter. Not populated when QueryLanguage is JSONata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
request
InspectionData.Builder request(InspectionDataRequest request)
The raw HTTP request that is sent when you test an HTTP Task.
- Parameters:
request- The raw HTTP request that is sent when you test an HTTP Task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
request
default InspectionData.Builder request(Consumer<InspectionDataRequest.Builder> request)
The raw HTTP request that is sent when you test an HTTP Task.
This is a convenience method that creates an instance of theInspectionDataRequest.Builderavoiding the need to create one manually viaInspectionDataRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torequest(InspectionDataRequest).- Parameters:
request- a consumer that will call methods onInspectionDataRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
request(InspectionDataRequest)
-
response
InspectionData.Builder response(InspectionDataResponse response)
The raw HTTP response that is returned when you test an HTTP Task.
- Parameters:
response- The raw HTTP response that is returned when you test an HTTP Task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
response
default InspectionData.Builder response(Consumer<InspectionDataResponse.Builder> response)
The raw HTTP response that is returned when you test an HTTP Task.
This is a convenience method that creates an instance of theInspectionDataResponse.Builderavoiding the need to create one manually viaInspectionDataResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toresponse(InspectionDataResponse).- Parameters:
response- a consumer that will call methods onInspectionDataResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
response(InspectionDataResponse)
-
variables
InspectionData.Builder variables(String variables)
JSON string that contains the set of workflow variables after execution of the state. The set will include variables assigned in the state and variables set up as test state input.
- Parameters:
variables- JSON string that contains the set of workflow variables after execution of the state. The set will include variables assigned in the state and variables set up as test state input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetails
InspectionData.Builder errorDetails(InspectionErrorDetails errorDetails)
An object containing data about a handled exception in the tested state.
- Parameters:
errorDetails- An object containing data about a handled exception in the tested state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetails
default InspectionData.Builder errorDetails(Consumer<InspectionErrorDetails.Builder> errorDetails)
An object containing data about a handled exception in the tested state.
This is a convenience method that creates an instance of theInspectionErrorDetails.Builderavoiding the need to create one manually viaInspectionErrorDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerrorDetails(InspectionErrorDetails).- Parameters:
errorDetails- a consumer that will call methods onInspectionErrorDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
errorDetails(InspectionErrorDetails)
-
afterItemsPath
InspectionData.Builder afterItemsPath(String afterItemsPath)
The effective input after the ItemsPath filter is applied. Not populated when the QueryLanguage is JSONata.
- Parameters:
afterItemsPath- The effective input after the ItemsPath filter is applied. Not populated when the QueryLanguage is JSONata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterItemSelector
InspectionData.Builder afterItemSelector(String afterItemSelector)
An array containing the inputs for each Map iteration, transformed by the ItemSelector specified in a Map state.
- Parameters:
afterItemSelector- An array containing the inputs for each Map iteration, transformed by the ItemSelector specified in a Map state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterItemBatcher
InspectionData.Builder afterItemBatcher(String afterItemBatcher)
The effective input after the ItemBatcher filter is applied in a Map state.
- Parameters:
afterItemBatcher- The effective input after the ItemBatcher filter is applied in a Map state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterItemsPointer
InspectionData.Builder afterItemsPointer(String afterItemsPointer)
The effective input after the ItemsPointer filter is applied in a Map state.
- Parameters:
afterItemsPointer- The effective input after the ItemsPointer filter is applied in a Map state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toleratedFailureCount
InspectionData.Builder toleratedFailureCount(Integer toleratedFailureCount)
The tolerated failure threshold for a Map state as defined in number of Map state iterations.
- Parameters:
toleratedFailureCount- The tolerated failure threshold for a Map state as defined in number of Map state iterations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toleratedFailurePercentage
InspectionData.Builder toleratedFailurePercentage(Float toleratedFailurePercentage)
The tolerated failure threshold for a Map state as defined in percentage of Map state iterations.
- Parameters:
toleratedFailurePercentage- The tolerated failure threshold for a Map state as defined in percentage of Map state iterations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxConcurrency
InspectionData.Builder maxConcurrency(Integer maxConcurrency)
The max concurrency of the Map state.
- Parameters:
maxConcurrency- The max concurrency of the Map state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-