Interface LayerFailure.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LayerFailure.Builder,LayerFailure>,SdkBuilder<LayerFailure.Builder,LayerFailure>,SdkPojo
- Enclosing class:
- LayerFailure
public static interface LayerFailure.Builder extends SdkPojo, CopyableBuilder<LayerFailure.Builder,LayerFailure>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LayerFailure.BuilderfailureCode(String failureCode)The failure code associated with the failure.LayerFailure.BuilderfailureCode(LayerFailureCode failureCode)The failure code associated with the failure.LayerFailure.BuilderfailureReason(String failureReason)The reason for the failure.LayerFailure.BuilderlayerDigest(String layerDigest)The layer digest associated with 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
-
layerDigest
LayerFailure.Builder layerDigest(String layerDigest)
The layer digest associated with the failure.
- Parameters:
layerDigest- The layer digest associated with the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureCode
LayerFailure.Builder failureCode(String failureCode)
The failure code associated with the failure.
- Parameters:
failureCode- The failure code associated with the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LayerFailureCode,LayerFailureCode
-
failureCode
LayerFailure.Builder failureCode(LayerFailureCode failureCode)
The failure code associated with the failure.
- Parameters:
failureCode- The failure code associated with the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LayerFailureCode,LayerFailureCode
-
failureReason
LayerFailure.Builder failureReason(String failureReason)
The reason for the failure.
- Parameters:
failureReason- The reason for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-