Class: Aws::QConnect::Types::TagFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::TagFilter
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
TagFilter is a union - when making an API calls you must set exactly one of the members.
TagFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TagFilter corresponding to the set member.
An object that can be used to specify Tag conditions.
Direct Known Subclasses
Defined Under Namespace
Classes: AndConditions, OrConditions, TagCondition, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#and_conditions ⇒ Array<Types::TagCondition>
A list of conditions which would be applied together with an
AND
condition. -
#or_conditions ⇒ Array<Types::OrCondition>
A list of conditions which would be applied together with an
OR
condition. -
#tag_condition ⇒ Types::TagCondition
A leaf node condition which can be used to specify a tag condition.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#and_conditions ⇒ Array<Types::TagCondition>
A list of conditions which would be applied together with an AND
condition.
6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6111 class TagFilter < Struct.new( :and_conditions, :or_conditions, :tag_condition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AndConditions < TagFilter; end class OrConditions < TagFilter; end class TagCondition < TagFilter; end class Unknown < TagFilter; end end |
#or_conditions ⇒ Array<Types::OrCondition>
A list of conditions which would be applied together with an OR
condition.
6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6111 class TagFilter < Struct.new( :and_conditions, :or_conditions, :tag_condition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AndConditions < TagFilter; end class OrConditions < TagFilter; end class TagCondition < TagFilter; end class Unknown < TagFilter; end end |
#tag_condition ⇒ Types::TagCondition
A leaf node condition which can be used to specify a tag condition.
6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6111 class TagFilter < Struct.new( :and_conditions, :or_conditions, :tag_condition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AndConditions < TagFilter; end class OrConditions < TagFilter; end class TagCondition < TagFilter; end class Unknown < TagFilter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6111 6112 6113 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6111 def unknown @unknown end |