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.
4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4376 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.
4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4376 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
4376 4377 4378 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4376 def unknown @unknown end |