Class: Aws::QConnect::Types::TagFilter

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

Overview

Note:

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

Note:

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

AndConditions, OrConditions, TagCondition, Unknown

Defined Under Namespace

Classes: AndConditions, OrConditions, 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:



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_conditionsArray<Types::OrCondition>

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

Returns:



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

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

Returns:



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6111
6112
6113
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6111

def unknown
  @unknown
end