Interface CfnPolicyStore.SchemaDefinitionProperty

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

@Stability(Stable) public static interface CfnPolicyStore.SchemaDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Contains a list of principal types, resource types, and actions that can be specified in policies stored in the same policy store.

If the validation mode for the policy store is set to STRICT , then policies that can't be validated by this schema are rejected by Verified Permissions and can't be stored in the policy store.

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.*;
 SchemaDefinitionProperty schemaDefinitionProperty = SchemaDefinitionProperty.builder()
         .cedarJson("cedarJson")
         .build();
 

See Also: