Interface CfnAIAgent.OrConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAIAgent.OrConditionProperty.Jsii$Proxy
- Enclosing class:
CfnAIAgent
@Stability(Stable)
public static interface CfnAIAgent.OrConditionProperty
extends software.amazon.jsii.JsiiSerializable
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.wisdom.*;
OrConditionProperty orConditionProperty = OrConditionProperty.builder()
.andConditions(List.of(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build()))
.tagCondition(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAIAgent.OrConditionPropertystatic final classAn implementation forCfnAIAgent.OrConditionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnAIAgent.TagConditionProperty>default ObjectA leaf node condition which can be used to specify a tag condition.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAndConditions
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnAIAgent.TagConditionProperty>- See Also:
-
getTagCondition
A leaf node condition which can be used to specify a tag condition.Returns union: either
IResolvableorCfnAIAgent.TagConditionProperty- See Also:
-
builder
-