Interface GetTableEncryptionResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetTableEncryptionResponse.Builder,
,GetTableEncryptionResponse> S3TablesResponse.Builder
,SdkBuilder<GetTableEncryptionResponse.Builder,
,GetTableEncryptionResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
GetTableEncryptionResponse
@Mutable
@NotThreadSafe
public static interface GetTableEncryptionResponse.Builder
extends S3TablesResponse.Builder, SdkPojo, CopyableBuilder<GetTableEncryptionResponse.Builder,GetTableEncryptionResponse>
-
Method Summary
Modifier and TypeMethodDescriptionencryptionConfiguration
(Consumer<EncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the table.encryptionConfiguration
(EncryptionConfiguration encryptionConfiguration) The encryption configuration for the table.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
GetTableEncryptionResponse.Builder encryptionConfiguration(EncryptionConfiguration encryptionConfiguration) The encryption configuration for the table.
- Parameters:
encryptionConfiguration
- The encryption configuration for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default GetTableEncryptionResponse.Builder encryptionConfiguration(Consumer<EncryptionConfiguration.Builder> encryptionConfiguration) The encryption configuration for the table.
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:
-