Interface CfnPolicyStore.EncryptionStateProperty

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

@Stability(Stable) public static interface CfnPolicyStore.EncryptionStateProperty extends software.amazon.jsii.JsiiSerializable
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.verifiedpermissions.*;
 Object default_;
 EncryptionStateProperty encryptionStateProperty = EncryptionStateProperty.builder()
         .default(default_)
         .kmsEncryptionState(KmsEncryptionStateProperty.builder()
                 .encryptionContext(Map.of(
                         "encryptionContextKey", "encryptionContext"))
                 .key("key")
                 .build())
         .build();
 

See Also: