Interface StorageConfigResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageConfigResponse.Builder,StorageConfigResponse>,SdkBuilder<StorageConfigResponse.Builder,StorageConfigResponse>,SdkPojo
- Enclosing class:
- StorageConfigResponse
public static interface StorageConfigResponse.Builder extends SdkPojo, CopyableBuilder<StorageConfigResponse.Builder,StorageConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StorageConfigResponse.BuilderblockStorage(Consumer<BlockStorage.Builder> blockStorage)Indicates the current configuration of the block storage capability on your EKS Auto Mode cluster.StorageConfigResponse.BuilderblockStorage(BlockStorage blockStorage)Indicates the current configuration of the block storage capability on your EKS Auto Mode cluster.-
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
-
blockStorage
StorageConfigResponse.Builder blockStorage(BlockStorage blockStorage)
Indicates the current configuration of the block storage capability on your EKS Auto Mode cluster. For example, if the capability is enabled or disabled.
- Parameters:
blockStorage- Indicates the current configuration of the block storage capability on your EKS Auto Mode cluster. For example, if the capability is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blockStorage
default StorageConfigResponse.Builder blockStorage(Consumer<BlockStorage.Builder> blockStorage)
Indicates the current configuration of the block storage capability on your EKS Auto Mode cluster. For example, if the capability is enabled or disabled.
This is a convenience method that creates an instance of theBlockStorage.Builderavoiding the need to create one manually viaBlockStorage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toblockStorage(BlockStorage).- Parameters:
blockStorage- a consumer that will call methods onBlockStorage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
blockStorage(BlockStorage)
-
-