Class: Aws::Connect::Types::TagCondition

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

Overview

A leaf node condition which can be used to specify a tag condition, for example, HAVE BPO = 123.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tag_keyString

The tag key in the tag condition.

Returns:

  • (String)


18549
18550
18551
18552
18553
18554
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18549

class TagCondition < Struct.new(
  :tag_key,
  :tag_value)
  SENSITIVE = []
  include Aws::Structure
end

#tag_valueString

The tag value in the tag condition.

Returns:

  • (String)


18549
18550
18551
18552
18553
18554
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18549

class TagCondition < Struct.new(
  :tag_key,
  :tag_value)
  SENSITIVE = []
  include Aws::Structure
end