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)


20409
20410
20411
20412
20413
20414
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 20409

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

#tag_valueString

The tag value in the tag condition.

Returns:

  • (String)


20409
20410
20411
20412
20413
20414
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 20409

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