interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchServerless.Mixins.CfnCollectionPropsMixin.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchserverless/mixins#CfnCollectionPropsMixin_EncryptionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.CfnCollectionPropsMixin.EncryptionConfigProperty |
Python | aws_cdk.mixins_preview.aws_opensearchserverless.mixins.CfnCollectionPropsMixin.EncryptionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchserverless » mixins » CfnCollectionPropsMixin » EncryptionConfigProperty |
Encryption settings for the collection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchserverless_mixins } from '@aws-cdk/mixins-preview/aws-opensearchserverless';
const encryptionConfigProperty: opensearchserverless_mixins.CfnCollectionPropsMixin.EncryptionConfigProperty = {
awsOwnedKey: false,
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | boolean | IResolvable | Indicates whether to use an AWS owned key for encryption. |
| kms | string | Key Management Service key used to encrypt the collection. |
awsOwnedKey?
Type:
boolean | IResolvable
(optional)
Indicates whether to use an AWS owned key for encryption.
kmsKeyArn?
Type:
string
(optional)
Key Management Service key used to encrypt the collection.

.NET
Go
Java
Python
TypeScript