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:



4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4068

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:



4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4068

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:



4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4068

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



4068
4069
4070
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4068

def unknown
  @unknown
end