Interface ImageState.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageState.Builder,ImageState>,SdkBuilder<ImageState.Builder,ImageState>,SdkPojo
- Enclosing class:
- ImageState
public static interface ImageState.Builder extends SdkPojo, CopyableBuilder<ImageState.Builder,ImageState>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageState.Builderreason(String reason)The reason for the status of the image.ImageState.Builderstatus(String status)The status of the image.ImageState.Builderstatus(ImageStatus status)The status of the image.-
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
-
status
ImageState.Builder status(String status)
The status of the image.
- Parameters:
status- The status of the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageStatus,ImageStatus
-
status
ImageState.Builder status(ImageStatus status)
The status of the image.
- Parameters:
status- The status of the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageStatus,ImageStatus
-
reason
ImageState.Builder reason(String reason)
The reason for the status of the image.
- Parameters:
reason- The reason for the status of the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-