interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnInstanceStorageConfig.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnInstanceStorageConfig_EncryptionConfigProperty |
Java | software.amazon.awscdk.services.connect.CfnInstanceStorageConfig.EncryptionConfigProperty |
Python | aws_cdk.aws_connect.CfnInstanceStorageConfig.EncryptionConfigProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnInstanceStorageConfig » 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 { aws_connect as connect } from 'aws-cdk-lib';
const encryptionConfigProperty: connect.CfnInstanceStorageConfig.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
The type of encryption.
keyId
Type:
string
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