Interface KmsEncryptionConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KmsEncryptionConfig.Builder,KmsEncryptionConfig>,SdkBuilder<KmsEncryptionConfig.Builder,KmsEncryptionConfig>,SdkPojo
- Enclosing class:
- KmsEncryptionConfig
public static interface KmsEncryptionConfig.Builder extends SdkPojo, CopyableBuilder<KmsEncryptionConfig.Builder,KmsEncryptionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KmsEncryptionConfig.BuildercmkType(String cmkType)The type of customer-managed-key(CMK) used for encryption.KmsEncryptionConfig.BuildercmkType(CmkType cmkType)The type of customer-managed-key(CMK) used for encryption.KmsEncryptionConfig.BuilderkmsKeyId(String kmsKeyId)The KMS encryption key id/alias used to encrypt the data store contents at rest.-
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, sdkFields
-
-
-
-
Method Detail
-
cmkType
KmsEncryptionConfig.Builder cmkType(String cmkType)
The type of customer-managed-key(CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
-
cmkType
KmsEncryptionConfig.Builder cmkType(CmkType cmkType)
The type of customer-managed-key(CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
-
kmsKeyId
KmsEncryptionConfig.Builder kmsKeyId(String kmsKeyId)
The KMS encryption key id/alias used to encrypt the data store contents at rest.
- Parameters:
kmsKeyId- The KMS encryption key id/alias used to encrypt the data store contents at rest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-