interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnInstanceStorageConfigPropsMixin.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnInstanceStorageConfigPropsMixin_EncryptionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnInstanceStorageConfigPropsMixin.EncryptionConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnInstanceStorageConfigPropsMixin.EncryptionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnInstanceStorageConfigPropsMixin » EncryptionConfigProperty |
The encryption configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const encryptionConfigProperty: connect_mixins.CfnInstanceStorageConfigPropsMixin.EncryptionConfigProperty = {
encryptionType: 'encryptionType',
keyId: 'keyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | The type of encryption. |
| key | string | The full ARN of the encryption key. |
encryptionType?
Type:
string
(optional)
The type of encryption.
keyId?
Type:
string
(optional)
The full ARN of the encryption key.
Be sure to provide the full ARN of the encryption key, not just the ID.
Amazon Connect supports only KMS keys with the default key spec of
SYMMETRIC_DEFAULT.

.NET
Go
Java
Python
TypeScript