Interface EBSOptions.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EBSOptions.Builder,EBSOptions>
,SdkBuilder<EBSOptions.Builder,EBSOptions>
,SdkPojo
- Enclosing class:
- EBSOptions
public static interface EBSOptions.Builder extends SdkPojo, CopyableBuilder<EBSOptions.Builder,EBSOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EBSOptions.Builder
ebsEnabled(Boolean ebsEnabled)
Specifies whether EBS-based storage is enabled.EBSOptions.Builder
iops(Integer iops)
Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).EBSOptions.Builder
throughput(Integer throughput)
Specifies the Throughput for GP3 EBS volume (SSD).EBSOptions.Builder
volumeSize(Integer volumeSize)
Integer to specify the size of an EBS volume.EBSOptions.Builder
volumeType(String volumeType)
Specifies the volume type for EBS-based storage.EBSOptions.Builder
volumeType(VolumeType volumeType)
Specifies the volume type for EBS-based storage.-
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
-
ebsEnabled
EBSOptions.Builder ebsEnabled(Boolean ebsEnabled)
Specifies whether EBS-based storage is enabled.
- Parameters:
ebsEnabled
- Specifies whether EBS-based storage is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
volumeType
EBSOptions.Builder volumeType(String volumeType)
Specifies the volume type for EBS-based storage.
- Parameters:
volumeType
- Specifies the volume type for EBS-based storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VolumeType
,VolumeType
-
volumeType
EBSOptions.Builder volumeType(VolumeType volumeType)
Specifies the volume type for EBS-based storage.
- Parameters:
volumeType
- Specifies the volume type for EBS-based storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VolumeType
,VolumeType
-
volumeSize
EBSOptions.Builder volumeSize(Integer volumeSize)
Integer to specify the size of an EBS volume.
- Parameters:
volumeSize
- Integer to specify the size of an EBS volume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iops
EBSOptions.Builder iops(Integer iops)
Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
- Parameters:
iops
- Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
throughput
EBSOptions.Builder throughput(Integer throughput)
Specifies the Throughput for GP3 EBS volume (SSD).
- Parameters:
throughput
- Specifies the Throughput for GP3 EBS volume (SSD).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-