interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchServerless.CfnCollectionPropsMixin.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchserverless#CfnCollectionPropsMixin_EncryptionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.CfnCollectionPropsMixin.EncryptionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnCollectionPropsMixin.EncryptionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchserverless » 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 { aws_opensearchserverless as opensearchserverless } from '@aws-cdk/cfn-property-mixins';
const encryptionConfigProperty: opensearchserverless.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