Interface CfnIndex.ServerSideEncryptionConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnIndex.ServerSideEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnIndex
@Stability(Stable)
public static interface CfnIndex.ServerSideEncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt data indexed by Amazon Kendra.
 
We suggest that you use a CMK from your account to help secure your index. Amazon Kendra doesn't support asymmetric CMKs.
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.kendra.*;
 ServerSideEncryptionConfigurationProperty serverSideEncryptionConfigurationProperty = ServerSideEncryptionConfigurationProperty.builder()
         .kmsKeyId("kmsKeyId")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndex.ServerSideEncryptionConfigurationPropertystatic final classAn implementation forCfnIndex.ServerSideEncryptionConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getKmsKeyIdThe identifier of the AWS KMS key .Amazon Kendra doesn't support asymmetric keys. - See Also:
 
- 
builder
 
-