Interface StorageType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageType.Builder,StorageType>,SdkBuilder<StorageType.Builder,StorageType>,SdkPojo
- Enclosing class:
- StorageType
@Mutable @NotThreadSafe public static interface StorageType.Builder extends SdkPojo, CopyableBuilder<StorageType.Builder,StorageType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageType.BuilderstorageSubTypeName(String storageSubTypeName)The storage sub-type, such asgp3orio1.StorageType.BuilderstorageTypeLimits(Collection<StorageTypeLimit> storageTypeLimits)Limits that are applicable for the given storage type.StorageType.BuilderstorageTypeLimits(Consumer<StorageTypeLimit.Builder>... storageTypeLimits)Limits that are applicable for the given storage type.StorageType.BuilderstorageTypeLimits(StorageTypeLimit... storageTypeLimits)Limits that are applicable for the given storage type.StorageType.BuilderstorageTypeName(String storageTypeName)The name of the storage type.-
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
-
storageTypeName
StorageType.Builder storageTypeName(String storageTypeName)
The name of the storage type.
- Parameters:
storageTypeName- The name of the storage type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageSubTypeName
StorageType.Builder storageSubTypeName(String storageSubTypeName)
The storage sub-type, such as
gp3orio1.- Parameters:
storageSubTypeName- The storage sub-type, such asgp3orio1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageTypeLimits
StorageType.Builder storageTypeLimits(Collection<StorageTypeLimit> storageTypeLimits)
Limits that are applicable for the given storage type.
- Parameters:
storageTypeLimits- Limits that are applicable for the given storage type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageTypeLimits
StorageType.Builder storageTypeLimits(StorageTypeLimit... storageTypeLimits)
Limits that are applicable for the given storage type.
- Parameters:
storageTypeLimits- Limits that are applicable for the given storage type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageTypeLimits
StorageType.Builder storageTypeLimits(Consumer<StorageTypeLimit.Builder>... storageTypeLimits)
Limits that are applicable for the given storage type.
This is a convenience method that creates an instance of theStorageTypeLimit.Builderavoiding the need to create one manually viaStorageTypeLimit.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#storageTypeLimits(List.) - Parameters:
storageTypeLimits- a consumer that will call methods onStorageTypeLimit.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#storageTypeLimits(java.util.Collection)
-
-