Interface PutTableBucketEncryptionRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PutTableBucketEncryptionRequest.Builder,
,PutTableBucketEncryptionRequest> S3TablesRequest.Builder
,SdkBuilder<PutTableBucketEncryptionRequest.Builder,
,PutTableBucketEncryptionRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
PutTableBucketEncryptionRequest
@Mutable
@NotThreadSafe
public static interface PutTableBucketEncryptionRequest.Builder
extends S3TablesRequest.Builder, SdkPojo, CopyableBuilder<PutTableBucketEncryptionRequest.Builder,PutTableBucketEncryptionRequest>
-
Method Summary
Modifier and TypeMethodDescriptionencryptionConfiguration
(Consumer<EncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration to apply to the table bucket.encryptionConfiguration
(EncryptionConfiguration encryptionConfiguration) The encryption configuration to apply to the table bucket.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.tableBucketARN
(String tableBucketARN) The Amazon Resource Name (ARN) of the table bucket.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.s3tables.model.S3TablesRequest.Builder
build
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 Details
-
tableBucketARN
The Amazon Resource Name (ARN) of the table bucket.
- Parameters:
tableBucketARN
- The Amazon Resource Name (ARN) of the table bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
PutTableBucketEncryptionRequest.Builder encryptionConfiguration(EncryptionConfiguration encryptionConfiguration) The encryption configuration to apply to the table bucket.
- Parameters:
encryptionConfiguration
- The encryption configuration to apply to the table bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default PutTableBucketEncryptionRequest.Builder encryptionConfiguration(Consumer<EncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration to apply to the table bucket.
This is a convenience method that creates an instance of theEncryptionConfiguration.Builder
avoiding the need to create one manually viaEncryptionConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toencryptionConfiguration(EncryptionConfiguration)
.- Parameters:
encryptionConfiguration
- a consumer that will call methods onEncryptionConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
PutTableBucketEncryptionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
PutTableBucketEncryptionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-