Interface UpdateContinuousBackupsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateContinuousBackupsRequest.Builder,UpdateContinuousBackupsRequest>
,DynamoDbRequest.Builder
,SdkBuilder<UpdateContinuousBackupsRequest.Builder,UpdateContinuousBackupsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateContinuousBackupsRequest
public static interface UpdateContinuousBackupsRequest.Builder extends DynamoDbRequest.Builder, SdkPojo, CopyableBuilder<UpdateContinuousBackupsRequest.Builder,UpdateContinuousBackupsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateContinuousBackupsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateContinuousBackupsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
default UpdateContinuousBackupsRequest.Builder
pointInTimeRecoverySpecification(Consumer<PointInTimeRecoverySpecification.Builder> pointInTimeRecoverySpecification)
Represents the settings used to enable point in time recovery.UpdateContinuousBackupsRequest.Builder
pointInTimeRecoverySpecification(PointInTimeRecoverySpecification pointInTimeRecoverySpecification)
Represents the settings used to enable point in time recovery.UpdateContinuousBackupsRequest.Builder
tableName(String tableName)
The name of the table.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
tableName
UpdateContinuousBackupsRequest.Builder tableName(String tableName)
The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
- Parameters:
tableName
- The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pointInTimeRecoverySpecification
UpdateContinuousBackupsRequest.Builder pointInTimeRecoverySpecification(PointInTimeRecoverySpecification pointInTimeRecoverySpecification)
Represents the settings used to enable point in time recovery.
- Parameters:
pointInTimeRecoverySpecification
- Represents the settings used to enable point in time recovery.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pointInTimeRecoverySpecification
default UpdateContinuousBackupsRequest.Builder pointInTimeRecoverySpecification(Consumer<PointInTimeRecoverySpecification.Builder> pointInTimeRecoverySpecification)
Represents the settings used to enable point in time recovery.
This is a convenience method that creates an instance of thePointInTimeRecoverySpecification.Builder
avoiding the need to create one manually viaPointInTimeRecoverySpecification.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topointInTimeRecoverySpecification(PointInTimeRecoverySpecification)
.- Parameters:
pointInTimeRecoverySpecification
- a consumer that will call methods onPointInTimeRecoverySpecification.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
pointInTimeRecoverySpecification(PointInTimeRecoverySpecification)
-
overrideConfiguration
UpdateContinuousBackupsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateContinuousBackupsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-