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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAIAgentPropsMixin.OrConditionPropertystatic final classAn implementation forCfnAIAgentPropsMixin.OrConditionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAndConditions
A list of conditions which would be applied together with anANDcondition.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAIAgentPropsMixin.TagConditionProperty>- See Also:
-
getTagCondition
A leaf node condition which can be used to specify a tag condition.Returns union: either
IResolvableorCfnAIAgentPropsMixin.TagConditionProperty- See Also:
-
builder
-