Interface EbsBlockDevice.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EbsBlockDevice.Builder,EbsBlockDevice>,SdkBuilder<EbsBlockDevice.Builder,EbsBlockDevice>,SdkPojo
- Enclosing class:
- EbsBlockDevice
public static interface EbsBlockDevice.Builder extends SdkPojo, CopyableBuilder<EbsBlockDevice.Builder,EbsBlockDevice>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description EbsBlockDevice.Builderdevice(String device)The device name that is exposed to the instance, such as /dev/sdh.default EbsBlockDevice.BuildervolumeSpecification(Consumer<VolumeSpecification.Builder> volumeSpecification)EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.EbsBlockDevice.BuildervolumeSpecification(VolumeSpecification volumeSpecification)EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.-
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
-
volumeSpecification
EbsBlockDevice.Builder volumeSpecification(VolumeSpecification volumeSpecification)
EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.
- Parameters:
volumeSpecification- EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
volumeSpecification
default EbsBlockDevice.Builder volumeSpecification(Consumer<VolumeSpecification.Builder> volumeSpecification)
EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.
This is a convenience method that creates an instance of theVolumeSpecification.Builderavoiding the need to create one manually viaVolumeSpecification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovolumeSpecification(VolumeSpecification).- Parameters:
volumeSpecification- a consumer that will call methods onVolumeSpecification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
volumeSpecification(VolumeSpecification)
-
device
EbsBlockDevice.Builder device(String device)
The device name that is exposed to the instance, such as /dev/sdh.
- Parameters:
device- The device name that is exposed to the instance, such as /dev/sdh.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-