Class: Aws::QConnect::Types::OrCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::OrCondition
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-qconnect/types.rb
Overview
OrCondition is a union - when making an API calls you must set exactly one of the members.
OrCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OrCondition corresponding to the set member.
A list of conditions which would be applied together with an ‘OR` condition.
Direct Known Subclasses
Defined Under Namespace
Classes: AndConditions, 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.
-
#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.
8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8119 class OrCondition < Struct.new( :and_conditions, :tag_condition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AndConditions < OrCondition; end class TagCondition < OrCondition; end class Unknown < OrCondition; end end |
#tag_condition ⇒ Types::TagCondition
A leaf node condition which can be used to specify a tag condition.
8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8119 class OrCondition < Struct.new( :and_conditions, :tag_condition, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AndConditions < OrCondition; end class TagCondition < OrCondition; end class Unknown < OrCondition; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
8119 8120 8121 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8119 def unknown @unknown end |