Interface CfnVerifiedAccessGroup.SseSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVerifiedAccessGroup.SseSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnVerifiedAccessGroup

@Stability(Stable) public static interface CfnVerifiedAccessGroup.SseSpecificationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
 SseSpecificationProperty sseSpecificationProperty = SseSpecificationProperty.builder()
         .customerManagedKeyEnabled(false)
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: