Interface VolumeStatusInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VolumeStatusInfo.Builder,VolumeStatusInfo>,SdkBuilder<VolumeStatusInfo.Builder,VolumeStatusInfo>,SdkPojo
- Enclosing class:
- VolumeStatusInfo
@Mutable @NotThreadSafe public static interface VolumeStatusInfo.Builder extends SdkPojo, CopyableBuilder<VolumeStatusInfo.Builder,VolumeStatusInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VolumeStatusInfo.Builderdetails(Collection<VolumeStatusDetails> details)The details of the volume status.VolumeStatusInfo.Builderdetails(Consumer<VolumeStatusDetails.Builder>... details)The details of the volume status.VolumeStatusInfo.Builderdetails(VolumeStatusDetails... details)The details of the volume status.VolumeStatusInfo.Builderstatus(String status)The status of the volume.VolumeStatusInfo.Builderstatus(VolumeStatusInfoStatus status)The status of the volume.-
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
-
details
VolumeStatusInfo.Builder details(Collection<VolumeStatusDetails> details)
The details of the volume status.
- Parameters:
details- The details of the volume status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
details
VolumeStatusInfo.Builder details(VolumeStatusDetails... details)
The details of the volume status.
- Parameters:
details- The details of the volume status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
details
VolumeStatusInfo.Builder details(Consumer<VolumeStatusDetails.Builder>... details)
The details of the volume status.
This is a convenience method that creates an instance of theVolumeStatusDetails.Builderavoiding the need to create one manually viaVolumeStatusDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#details(List.) - Parameters:
details- a consumer that will call methods onVolumeStatusDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#details(java.util.Collection)
-
status
VolumeStatusInfo.Builder status(String status)
The status of the volume.
- Parameters:
status- The status of the volume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VolumeStatusInfoStatus,VolumeStatusInfoStatus
-
status
VolumeStatusInfo.Builder status(VolumeStatusInfoStatus status)
The status of the volume.
- Parameters:
status- The status of the volume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VolumeStatusInfoStatus,VolumeStatusInfoStatus
-
-