interface SseSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVerifiedAccessEndpointPropsMixin.SseSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVerifiedAccessEndpointPropsMixin_SseSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVerifiedAccessEndpointPropsMixin.SseSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVerifiedAccessEndpointPropsMixin.SseSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnVerifiedAccessEndpointPropsMixin » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const sseSpecificationProperty: ec2.CfnVerifiedAccessEndpointPropsMixin.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