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 |
The configuration to encrypt 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 | The configuration to encrypt the collection with AWS owned key. |
| kms | string | The ARN of the KMS key to encrypt the collection with. |
awsOwnedKey?
Type:
boolean | IResolvable
(optional)
The configuration to encrypt the collection with AWS owned key.
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key to encrypt the collection with.

.NET
Go
Java
Python
TypeScript