Interface Failure.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Failure.Builder,Failure>,SdkBuilder<Failure.Builder,Failure>,SdkPojo
- Enclosing class:
- Failure
public static interface Failure.Builder extends SdkPojo, CopyableBuilder<Failure.Builder,Failure>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Failure.Builderarn(String arn)The Amazon Resource Name (ARN) of the failed resource.Failure.Builderdetail(String detail)The details of the failure.Failure.Builderreason(String reason)The reason for 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, sdkFields
-
-
-
-
Method Detail
-
arn
Failure.Builder arn(String arn)
The Amazon Resource Name (ARN) of the failed resource.
- Parameters:
arn- The Amazon Resource Name (ARN) of the failed resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reason
Failure.Builder reason(String reason)
The reason for the failure.
- Parameters:
reason- The reason for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
detail
Failure.Builder detail(String detail)
The details of the failure.
- Parameters:
detail- The details of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-