interface SseSpecificationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnVerifiedAccessGroup.SseSpecificationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessGroup_SseSpecificationProperty |
![]() | software.amazon.awscdk.services.ec2.CfnVerifiedAccessGroup.SseSpecificationProperty |
![]() | aws_cdk.aws_ec2.CfnVerifiedAccessGroup.SseSpecificationProperty |
![]() | aws-cdk-lib » aws_ec2 » CfnVerifiedAccessGroup » 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-lib';
const sseSpecificationProperty: ec2.CfnVerifiedAccessGroup.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.