interface EncryptionAtRestOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OSIS.CfnPipelinePropsMixin.EncryptionAtRestOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsosis#CfnPipelinePropsMixin_EncryptionAtRestOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.osis.CfnPipelinePropsMixin.EncryptionAtRestOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_osis.CfnPipelinePropsMixin.EncryptionAtRestOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_osis » CfnPipelinePropsMixin » EncryptionAtRestOptionsProperty |
Options to control how OpenSearch encrypts buffer data.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_osis as osis } from '@aws-cdk/cfn-property-mixins';
const encryptionAtRestOptionsProperty: osis.CfnPipelinePropsMixin.EncryptionAtRestOptionsProperty = {
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ARN of the KMS key used to encrypt buffer data. |
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key used to encrypt buffer data.
By default, data is encrypted using an AWS owned key.

.NET
Go
Java
Python
TypeScript