Interface CfnAutomatedReasoningPolicy.PolicyDefinitionRuleProperty

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

@Stability(Stable) public static interface CfnAutomatedReasoningPolicy.PolicyDefinitionRuleProperty extends software.amazon.jsii.JsiiSerializable
A rule within the policy definition that defines logical constraints.

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.bedrock.*;
 PolicyDefinitionRuleProperty policyDefinitionRuleProperty = PolicyDefinitionRuleProperty.builder()
         .expression("expression")
         .id("id")
         // the properties below are optional
         .alternateExpression("alternateExpression")
         .build();
 

See Also: