Interface SseConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SseConfiguration.Builder,
,SseConfiguration> SdkBuilder<SseConfiguration.Builder,
,SseConfiguration> SdkPojo
- Enclosing class:
SseConfiguration
@Mutable
@NotThreadSafe
public static interface SseConfiguration.Builder
extends SdkPojo, CopyableBuilder<SseConfiguration.Builder,SseConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondefault SseConfiguration.Builder
kmsEncryptionConfig
(Consumer<KmsEncryptionConfig.Builder> kmsEncryptionConfig) The Key Management Service (KMS) encryption configuration used to provide details for data encryption.kmsEncryptionConfig
(KmsEncryptionConfig kmsEncryptionConfig) The Key Management Service (KMS) encryption configuration used to provide details for data encryption.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 Details
-
kmsEncryptionConfig
The Key Management Service (KMS) encryption configuration used to provide details for data encryption.
- Parameters:
kmsEncryptionConfig
- The Key Management Service (KMS) encryption configuration used to provide details for data encryption.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsEncryptionConfig
default SseConfiguration.Builder kmsEncryptionConfig(Consumer<KmsEncryptionConfig.Builder> kmsEncryptionConfig) The Key Management Service (KMS) encryption configuration used to provide details for data encryption.
This is a convenience method that creates an instance of theKmsEncryptionConfig.Builder
avoiding the need to create one manually viaKmsEncryptionConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tokmsEncryptionConfig(KmsEncryptionConfig)
.- Parameters:
kmsEncryptionConfig
- a consumer that will call methods onKmsEncryptionConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-