Interface CfnKnowledgeBase.ServerSideEncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBase.ServerSideEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBase
@Stability(Stable)
public static interface CfnKnowledgeBase.ServerSideEncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration information for the customer managed key used for encryption.
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.wisdom.*; ServerSideEncryptionConfigurationProperty serverSideEncryptionConfigurationProperty = ServerSideEncryptionConfigurationProperty.builder() .kmsKeyId("kmsKeyId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnKnowledgeBase.ServerSideEncryptionConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The customer managed key used for encryption.This customer managed key must have a policy that allows
kms:CreateGrant
andkms:DescribeKey
permissions to the IAM identity using the key to invoke Wisdom.For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance . For information about valid ID values, see Key identifiers (KeyId) .
- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBase.ServerSideEncryptionConfigurationProperty.Builder builder()
-