Class: Aws::QConnect::Types::OrCondition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb

Overview

Note:

OrCondition is a union - when making an API calls you must set exactly one of the members.

Note:

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

AndConditions, TagCondition, Unknown

Defined Under Namespace

Classes: AndConditions, TagCondition, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#and_conditionsArray<Types::TagCondition>

A list of conditions which would be applied together with an AND condition.

Returns:



2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2549

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_conditionTypes::TagCondition

A leaf node condition which can be used to specify a tag condition.

Returns:



2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2549

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2549
2550
2551
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2549

def unknown
  @unknown
end