Interface TableBucketMaintenanceConfigurationValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableBucketMaintenanceConfigurationValue.Builder,TableBucketMaintenanceConfigurationValue>,SdkBuilder<TableBucketMaintenanceConfigurationValue.Builder,TableBucketMaintenanceConfigurationValue>,SdkPojo
- Enclosing class:
- TableBucketMaintenanceConfigurationValue
public static interface TableBucketMaintenanceConfigurationValue.Builder extends SdkPojo, CopyableBuilder<TableBucketMaintenanceConfigurationValue.Builder,TableBucketMaintenanceConfigurationValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableBucketMaintenanceConfigurationValue.Buildersettings(Consumer<TableBucketMaintenanceSettings.Builder> settings)Contains details about the settings of the maintenance configuration.TableBucketMaintenanceConfigurationValue.Buildersettings(TableBucketMaintenanceSettings settings)Contains details about the settings of the maintenance configuration.TableBucketMaintenanceConfigurationValue.Builderstatus(String status)The status of the maintenance configuration.TableBucketMaintenanceConfigurationValue.Builderstatus(MaintenanceStatus status)The status of the maintenance 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
-
status
TableBucketMaintenanceConfigurationValue.Builder status(String status)
The status of the maintenance configuration.
- Parameters:
status- The status of the maintenance configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MaintenanceStatus,MaintenanceStatus
-
status
TableBucketMaintenanceConfigurationValue.Builder status(MaintenanceStatus status)
The status of the maintenance configuration.
- Parameters:
status- The status of the maintenance configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MaintenanceStatus,MaintenanceStatus
-
settings
TableBucketMaintenanceConfigurationValue.Builder settings(TableBucketMaintenanceSettings settings)
Contains details about the settings of the maintenance configuration.
- Parameters:
settings- Contains details about the settings of the maintenance configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
settings
default TableBucketMaintenanceConfigurationValue.Builder settings(Consumer<TableBucketMaintenanceSettings.Builder> settings)
Contains details about the settings of the maintenance configuration.
This is a convenience method that creates an instance of theTableBucketMaintenanceSettings.Builderavoiding the need to create one manually viaTableBucketMaintenanceSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosettings(TableBucketMaintenanceSettings).- Parameters:
settings- a consumer that will call methods onTableBucketMaintenanceSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
settings(TableBucketMaintenanceSettings)
-
-