Interface CfnPolicyStore.EncryptionSettingsProperty

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

@Stability(Stable) public static interface CfnPolicyStore.EncryptionSettingsProperty 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_;
 EncryptionSettingsProperty encryptionSettingsProperty = EncryptionSettingsProperty.builder()
         .default(default_)
         .kmsEncryptionSettings(KmsEncryptionSettingsProperty.builder()
                 .key("key")
                 // the properties below are optional
                 .encryptionContext(Map.of(
                         "encryptionContextKey", "encryptionContext"))
                 .build())
         .build();
 

See Also: