Interface CfnPolicyStorePropsMixin.EncryptionSettingsProperty

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

@Stability(Stable) public static interface CfnPolicyStorePropsMixin.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.mixins.preview.services.verifiedpermissions.mixins.*;
 Object default_;
 EncryptionSettingsProperty encryptionSettingsProperty = EncryptionSettingsProperty.builder()
         .default(default_)
         .kmsEncryptionSettings(KmsEncryptionSettingsProperty.builder()
                 .encryptionContext(Map.of(
                         "encryptionContextKey", "encryptionContext"))
                 .key("key")
                 .build())
         .build();
 

See Also: