interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DLM.Mixins.CfnLifecyclePolicyPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdlm/mixins#CfnLifecyclePolicyPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.dlm.mixins.CfnLifecyclePolicyPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_dlm.mixins.CfnLifecyclePolicyPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dlm » mixins » CfnLifecyclePolicyPropsMixin » EncryptionConfigurationProperty |
[Event-based policies only] Specifies the encryption settings for cross-Region snapshot copies created by event-based policies.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dlm_mixins } from '@aws-cdk/mixins-preview/aws-dlm';
const encryptionConfigurationProperty: dlm_mixins.CfnLifecyclePolicyPropsMixin.EncryptionConfigurationProperty = {
cmkArn: 'cmkArn',
encrypted: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| cmk | string | The Amazon Resource Name (ARN) of the AWS KMS key to use for EBS encryption. |
| encrypted? | boolean | IResolvable | To encrypt a copy of an unencrypted snapshot when encryption by default is not enabled, enable encryption using this parameter. |
cmkArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS KMS key to use for EBS encryption.
If this parameter is not specified, the default KMS key for the account is used.
encrypted?
Type:
boolean | IResolvable
(optional)
To encrypt a copy of an unencrypted snapshot when encryption by default is not enabled, enable encryption using this parameter.
Copies of encrypted snapshots are encrypted, even if this parameter is false or when encryption by default is not enabled.

.NET
Go
Java
Python
TypeScript