Interface CfnAIAgent.TagFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAIAgent.TagFilterProperty.Jsii$Proxy
- Enclosing class:
CfnAIAgent
@Stability(Stable)
public static interface CfnAIAgent.TagFilterProperty
extends software.amazon.jsii.JsiiSerializable
An object that can be used to specify tag conditions.
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.*;
TagFilterProperty tagFilterProperty = TagFilterProperty.builder()
.andConditions(List.of(TagConditionProperty.builder()
.key("key")
// the properties below are optional
.value("value")
.build()))
.orConditions(List.of(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()))
.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.TagFilterPropertystatic final classAn implementation forCfnAIAgent.TagFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list of conditions which would be applied together with anANDcondition.default ObjectA list of conditions which would be applied together with anORcondition.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
A list of conditions which would be applied together with anANDcondition.- See Also:
-
getOrConditions
A list of conditions which would be applied together with anORcondition.- See Also:
-
getTagCondition
A leaf node condition which can be used to specify a tag condition.- See Also:
-
builder
-