Interface StorageType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageType.Builder,StorageType>,SdkBuilder<StorageType.Builder,StorageType>,SdkPojo
- Enclosing class:
- StorageType
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)Sets the value of the StorageSubTypeName property for this object.StorageType.BuilderstorageTypeLimits(Collection<StorageTypeLimit> storageTypeLimits)List of limits that are applicable for given storage type.StorageType.BuilderstorageTypeLimits(Consumer<StorageTypeLimit.Builder>... storageTypeLimits)List of limits that are applicable for given storage type.StorageType.BuilderstorageTypeLimits(StorageTypeLimit... storageTypeLimits)List of limits that are applicable for given storage type.StorageType.BuilderstorageTypeName(String storageTypeName)Sets the value of the StorageTypeName property for this object.-
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)
Sets the value of the StorageTypeName property for this object.- Parameters:
storageTypeName- The new value for the StorageTypeName property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageSubTypeName
StorageType.Builder storageSubTypeName(String storageSubTypeName)
Sets the value of the StorageSubTypeName property for this object.- Parameters:
storageSubTypeName- The new value for the StorageSubTypeName property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageTypeLimits
StorageType.Builder storageTypeLimits(Collection<StorageTypeLimit> storageTypeLimits)
List of limits that are applicable for given storage type.
- Parameters:
storageTypeLimits- List of limits that are applicable for given storage type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageTypeLimits
StorageType.Builder storageTypeLimits(StorageTypeLimit... storageTypeLimits)
List of limits that are applicable for given storage type.
- Parameters:
storageTypeLimits- List of limits that are applicable for 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)
List of limits that are applicable for 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)
-
-