Interface StorageTypeLimit.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageTypeLimit.Builder,StorageTypeLimit>,SdkBuilder<StorageTypeLimit.Builder,StorageTypeLimit>,SdkPojo
- Enclosing class:
- StorageTypeLimit
public static interface StorageTypeLimit.Builder extends SdkPojo, CopyableBuilder<StorageTypeLimit.Builder,StorageTypeLimit>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageTypeLimit.BuilderlimitName(String limitName)Name of storage limits that are applicable for given storage type.StorageTypeLimit.BuilderlimitValues(String... limitValues)Values for theStorageTypeLimit$LimitName.StorageTypeLimit.BuilderlimitValues(Collection<String> limitValues)Values for theStorageTypeLimit$LimitName.-
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
-
limitName
StorageTypeLimit.Builder limitName(String limitName)
Name of storage limits that are applicable for given storage type. If
StorageTypeis ebs, following storage options are applicable- MinimumVolumeSize Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable.
- MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable.
- MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
- MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
- MaximumThroughput Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
- MinimumThroughput Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
- Parameters:
limitName- Name of storage limits that are applicable for given storage type. IfStorageTypeis ebs, following storage options are applicable- MinimumVolumeSize Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable.
- MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable.
- MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
- MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
- MaximumThroughput Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
- MinimumThroughput Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limitValues
StorageTypeLimit.Builder limitValues(Collection<String> limitValues)
Values for the
StorageTypeLimit$LimitName.- Parameters:
limitValues- Values for theStorageTypeLimit$LimitName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limitValues
StorageTypeLimit.Builder limitValues(String... limitValues)
Values for the
StorageTypeLimit$LimitName.- Parameters:
limitValues- Values for theStorageTypeLimit$LimitName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-