Interface DiskIopsConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DiskIopsConfiguration.Builder,DiskIopsConfiguration>,SdkBuilder<DiskIopsConfiguration.Builder,DiskIopsConfiguration>,SdkPojo
- Enclosing class:
- DiskIopsConfiguration
public static interface DiskIopsConfiguration.Builder extends SdkPojo, CopyableBuilder<DiskIopsConfiguration.Builder,DiskIopsConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiskIopsConfiguration.Builderiops(Long iops)The total number of SSD IOPS provisioned for the file system.DiskIopsConfiguration.Buildermode(String mode)Specifies whether the file system is using theAUTOMATICsetting of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using aUSER_PROVISIONEDvalue.DiskIopsConfiguration.Buildermode(DiskIopsConfigurationMode mode)Specifies whether the file system is using theAUTOMATICsetting of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using aUSER_PROVISIONEDvalue.-
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
-
mode
DiskIopsConfiguration.Builder mode(String mode)
Specifies whether the file system is using the
AUTOMATICsetting of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using aUSER_PROVISIONEDvalue.- Parameters:
mode- Specifies whether the file system is using theAUTOMATICsetting of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using aUSER_PROVISIONEDvalue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskIopsConfigurationMode,DiskIopsConfigurationMode
-
mode
DiskIopsConfiguration.Builder mode(DiskIopsConfigurationMode mode)
Specifies whether the file system is using the
AUTOMATICsetting of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using aUSER_PROVISIONEDvalue.- Parameters:
mode- Specifies whether the file system is using theAUTOMATICsetting of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using aUSER_PROVISIONEDvalue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DiskIopsConfigurationMode,DiskIopsConfigurationMode
-
iops
DiskIopsConfiguration.Builder iops(Long iops)
The total number of SSD IOPS provisioned for the file system.
The minimum and maximum values for this property depend on the value of
HAPairsandStorageCapacity. The minimum value is calculated asStorageCapacity* 3 *HAPairs(3 IOPS per GB ofStorageCapacity). The maximum value is calculated as 200,000 *HAPairs.Amazon FSx responds with an HTTP status code 400 (Bad Request) if the value of
Iopsis outside of the minimum or maximum values.- Parameters:
iops- The total number of SSD IOPS provisioned for the file system.The minimum and maximum values for this property depend on the value of
HAPairsandStorageCapacity. The minimum value is calculated asStorageCapacity* 3 *HAPairs(3 IOPS per GB ofStorageCapacity). The maximum value is calculated as 200,000 *HAPairs.Amazon FSx responds with an HTTP status code 400 (Bad Request) if the value of
Iopsis outside of the minimum or maximum values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-