interface SseSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVerifiedAccessTrustProviderPropsMixin.SseSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVerifiedAccessTrustProviderPropsMixin_SseSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVerifiedAccessTrustProviderPropsMixin.SseSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVerifiedAccessTrustProviderPropsMixin.SseSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVerifiedAccessTrustProviderPropsMixin » SseSpecificationProperty |
AWS Verified Access provides server side encryption by default to data at rest using AWS -owned KMS keys.
You also have the option of using customer managed KMS keys, which can be specified using the options below.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const sseSpecificationProperty: ec2_mixins.CfnVerifiedAccessTrustProviderPropsMixin.SseSpecificationProperty = {
customerManagedKeyEnabled: false,
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | boolean | IResolvable | Enable or disable the use of customer managed KMS keys for server side encryption. |
| kms | string | The ARN of the KMS key. |
customerManagedKeyEnabled?
Type:
boolean | IResolvable
(optional)
Enable or disable the use of customer managed KMS keys for server side encryption.
Valid values: True | False
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key.

.NET
Go
Java
Python
TypeScript