Interface CfnAIAgentPropsMixin.OrConditionProperty

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

@Stability(Stable) public static interface CfnAIAgentPropsMixin.OrConditionProperty extends software.amazon.jsii.JsiiSerializable
A list of conditions which would be applied together with an OR condition.

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.wisdom.*;
 OrConditionProperty orConditionProperty = OrConditionProperty.builder()
         .andConditions(List.of(TagConditionProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .tagCondition(TagConditionProperty.builder()
                 .key("key")
                 .value("value")
                 .build())
         .build();
 

See Also: