Interface CfnPolicyStore.KmsEncryptionSettingsProperty

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

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

See Also: