Interface CfnPolicyStoreProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPolicyStoreProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:21.286Z") @Stability(Stable) public interface CfnPolicyStoreProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPolicyStore.

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_;
 CfnPolicyStoreProps cfnPolicyStoreProps = CfnPolicyStoreProps.builder()
         .validationSettings(ValidationSettingsProperty.builder()
                 .mode("mode")
                 .build())
         // the properties below are optional
         .deletionProtection(DeletionProtectionProperty.builder()
                 .mode("mode")
                 .build())
         .description("description")
         .encryptionSettings(EncryptionSettingsProperty.builder()
                 .default(default_)
                 .kmsEncryptionSettings(KmsEncryptionSettingsProperty.builder()
                         .key("key")
                         // the properties below are optional
                         .encryptionContext(Map.of(
                                 "encryptionContextKey", "encryptionContext"))
                         .build())
                 .build())
         .schema(SchemaDefinitionProperty.builder()
                 .cedarJson("cedarJson")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: