Interface StepSucceededDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StepSucceededDetails.Builder,StepSucceededDetails>,SdkBuilder<StepSucceededDetails.Builder,StepSucceededDetails>,SdkPojo
- Enclosing class:
- StepSucceededDetails
@Mutable @NotThreadSafe public static interface StepSucceededDetails.Builder extends SdkPojo, CopyableBuilder<StepSucceededDetails.Builder,StepSucceededDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StepSucceededDetails.Builderresult(Consumer<EventResult.Builder> result)The response payload from the successful operation.StepSucceededDetails.Builderresult(EventResult result)The response payload from the successful operation.default StepSucceededDetails.BuilderretryDetails(Consumer<RetryDetails.Builder> retryDetails)Information about retry attempts for this step operation.StepSucceededDetails.BuilderretryDetails(RetryDetails retryDetails)Information about retry attempts for this step operation.-
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
-
result
StepSucceededDetails.Builder result(EventResult result)
The response payload from the successful operation.
- Parameters:
result- The response payload from the successful operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
result
default StepSucceededDetails.Builder result(Consumer<EventResult.Builder> result)
The response payload from the successful operation.
This is a convenience method that creates an instance of theEventResult.Builderavoiding the need to create one manually viaEventResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toresult(EventResult).- Parameters:
result- a consumer that will call methods onEventResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
result(EventResult)
-
retryDetails
StepSucceededDetails.Builder retryDetails(RetryDetails retryDetails)
Information about retry attempts for this step operation.
- Parameters:
retryDetails- Information about retry attempts for this step operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retryDetails
default StepSucceededDetails.Builder retryDetails(Consumer<RetryDetails.Builder> retryDetails)
Information about retry attempts for this step operation.
This is a convenience method that creates an instance of theRetryDetails.Builderavoiding the need to create one manually viaRetryDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toretryDetails(RetryDetails).- Parameters:
retryDetails- a consumer that will call methods onRetryDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
retryDetails(RetryDetails)
-
-