interface ServerSideEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnKnowledgeBasePropsMixin.ServerSideEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnKnowledgeBasePropsMixin_ServerSideEncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnKnowledgeBasePropsMixin.ServerSideEncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnKnowledgeBasePropsMixin.ServerSideEncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnKnowledgeBasePropsMixin » ServerSideEncryptionConfigurationProperty |
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 { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
const serverSideEncryptionConfigurationProperty: wisdom.CfnKnowledgeBasePropsMixin.ServerSideEncryptionConfigurationProperty = {
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The customer managed key used for encryption. |
kmsKeyId?
Type:
string
(optional)
The customer managed key used for encryption.
This customer managed key must have a policy that allows kms:CreateGrant and kms: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) .

.NET
Go
Java
Python
TypeScript