Class: Aws::QConnect::Types::OrCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::OrCondition
- Defined in:
- gems/aws-sdk-qconnect/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.
7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7196 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.
7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7196 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
7196 7197 7198 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7196 def unknown @unknown end |