Interface ClusterConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClusterConfiguration.Builder,ClusterConfiguration>,SdkBuilder<ClusterConfiguration.Builder,ClusterConfiguration>,SdkPojo
- Enclosing class:
- ClusterConfiguration
public static interface ClusterConfiguration.Builder extends SdkPojo, CopyableBuilder<ClusterConfiguration.Builder,ClusterConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClusterConfiguration.BuilderexecuteCommandConfiguration(Consumer<ExecuteCommandConfiguration.Builder> executeCommandConfiguration)The details of the execute command configuration.ClusterConfiguration.BuilderexecuteCommandConfiguration(ExecuteCommandConfiguration executeCommandConfiguration)The details of the execute command configuration.default ClusterConfiguration.BuildermanagedStorageConfiguration(Consumer<ManagedStorageConfiguration.Builder> managedStorageConfiguration)The details of the managed storage configuration.ClusterConfiguration.BuildermanagedStorageConfiguration(ManagedStorageConfiguration managedStorageConfiguration)The details of the managed storage configuration.-
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
-
executeCommandConfiguration
ClusterConfiguration.Builder executeCommandConfiguration(ExecuteCommandConfiguration executeCommandConfiguration)
The details of the execute command configuration.
- Parameters:
executeCommandConfiguration- The details of the execute command configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executeCommandConfiguration
default ClusterConfiguration.Builder executeCommandConfiguration(Consumer<ExecuteCommandConfiguration.Builder> executeCommandConfiguration)
The details of the execute command configuration.
This is a convenience method that creates an instance of theExecuteCommandConfiguration.Builderavoiding the need to create one manually viaExecuteCommandConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexecuteCommandConfiguration(ExecuteCommandConfiguration).- Parameters:
executeCommandConfiguration- a consumer that will call methods onExecuteCommandConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
executeCommandConfiguration(ExecuteCommandConfiguration)
-
managedStorageConfiguration
ClusterConfiguration.Builder managedStorageConfiguration(ManagedStorageConfiguration managedStorageConfiguration)
The details of the managed storage configuration.
- Parameters:
managedStorageConfiguration- The details of the managed storage configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
managedStorageConfiguration
default ClusterConfiguration.Builder managedStorageConfiguration(Consumer<ManagedStorageConfiguration.Builder> managedStorageConfiguration)
The details of the managed storage configuration.
This is a convenience method that creates an instance of theManagedStorageConfiguration.Builderavoiding the need to create one manually viaManagedStorageConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomanagedStorageConfiguration(ManagedStorageConfiguration).- Parameters:
managedStorageConfiguration- a consumer that will call methods onManagedStorageConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
managedStorageConfiguration(ManagedStorageConfiguration)
-
-