Interface CfnDomain.ServerSideEncryptionConfigurationProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnDomain.ServerSideEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
 - CfnDomain
 
@Stability(Stable)
public static interface CfnDomain.ServerSideEncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration containing information about the customer managed key used for encrypting customer data.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.voiceid.*;
 ServerSideEncryptionConfigurationProperty serverSideEncryptionConfigurationProperty = ServerSideEncryptionConfigurationProperty.builder()
         .kmsKeyId("kmsKeyId")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.ServerSideEncryptionConfigurationPropertystatic final classAn implementation forCfnDomain.ServerSideEncryptionConfigurationProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()The identifier of the KMS key to use to encrypt data stored by Voice ID.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getKmsKeyId
The identifier of the KMS key to use to encrypt data stored by Voice ID.Voice ID doesn't support asymmetric customer managed keys .
 - 
builder
 
 -