Interface FailureDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FailureDetails.Builder,FailureDetails>,SdkBuilder<FailureDetails.Builder,FailureDetails>,SdkPojo
- Enclosing class:
- FailureDetails
public static interface FailureDetails.Builder extends SdkPojo, CopyableBuilder<FailureDetails.Builder,FailureDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailureDetails.BuilderexternalExecutionId(String externalExecutionId)The external ID of the run of the action that failed.FailureDetails.Buildermessage(String message)The message about the failure.FailureDetails.Buildertype(String type)The type of the failure.FailureDetails.Buildertype(FailureType type)The type of the failure.-
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
-
type
FailureDetails.Builder type(String type)
The type of the failure.
- Parameters:
type- The type of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FailureType,FailureType
-
type
FailureDetails.Builder type(FailureType type)
The type of the failure.
- Parameters:
type- The type of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FailureType,FailureType
-
message
FailureDetails.Builder message(String message)
The message about the failure.
- Parameters:
message- The message about the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
externalExecutionId
FailureDetails.Builder externalExecutionId(String externalExecutionId)
The external ID of the run of the action that failed.
- Parameters:
externalExecutionId- The external ID of the run of the action that failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-