Interface CfnAssistant.ServerSideEncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssistant.ServerSideEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAssistant
@Stability(Stable)
public static interface CfnAssistant.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
A builder forCfnAssistant.ServerSideEncryptionConfigurationProperty
static final class
An implementation forCfnAssistant.ServerSideEncryptionConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The customer managed key used for encryption.The customer managed key must have a policy that allows
kms:CreateGrant
andkms:DescribeKey
permissions to the IAM identity using the key to invoke Wisdom. To use Wisdom with chat, the key policy must also allowkms:Decrypt
,kms:GenerateDataKey*
, andkms:DescribeKey
permissions to theconnect.amazonaws.com
service principal. 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) in the AWS Key Management Service Developer Guide .- See Also:
-
builder
-