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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


18015
18016
18017
18018
18019
18020
# File 'lib/aws-sdk-connect/types.rb', line 18015

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

#tag_valueString

The tag value in the tag condition.

Returns:

  • (String)


18015
18016
18017
18018
18019
18020
# File 'lib/aws-sdk-connect/types.rb', line 18015

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