Interface CfnPolicyPropsMixin.PolicyDefinitionProperty

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

@Stability(Stable) public static interface CfnPolicyPropsMixin.PolicyDefinitionProperty extends software.amazon.jsii.JsiiSerializable
The definition structure for policies.

Encapsulates different policy formats.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
 PolicyDefinitionProperty policyDefinitionProperty = PolicyDefinitionProperty.builder()
         .cedar(CedarPolicyProperty.builder()
                 .statement("statement")
                 .build())
         .build();
 

See Also: