Interface GetTableBucketEncryptionResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetTableBucketEncryptionResponse.Builder,
,GetTableBucketEncryptionResponse> S3TablesResponse.Builder
,SdkBuilder<GetTableBucketEncryptionResponse.Builder,
,GetTableBucketEncryptionResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
GetTableBucketEncryptionResponse
@Mutable
@NotThreadSafe
public static interface GetTableBucketEncryptionResponse.Builder
extends S3TablesResponse.Builder, SdkPojo, CopyableBuilder<GetTableBucketEncryptionResponse.Builder,GetTableBucketEncryptionResponse>
-
Method Summary
Modifier and TypeMethodDescriptionencryptionConfiguration
(Consumer<EncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the table bucket.encryptionConfiguration
(EncryptionConfiguration encryptionConfiguration) The encryption configuration for the table bucket.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.s3tables.model.S3TablesResponse.Builder
build, responseMetadata, responseMetadata
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
encryptionConfiguration
GetTableBucketEncryptionResponse.Builder encryptionConfiguration(EncryptionConfiguration encryptionConfiguration) The encryption configuration for the table bucket.
- Parameters:
encryptionConfiguration
- The encryption configuration for the table bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default GetTableBucketEncryptionResponse.Builder encryptionConfiguration(Consumer<EncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for 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:
-