Class: Aws::EventBridge::Types::Tag

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

Overview

A key-value pair associated with an Amazon Web Services resource. In EventBridge, rules and event buses support tagging.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

A string you can use to assign a value. The combination of tag keys and values can help you organize and categorize your resources.

Returns:

  • (String)


4418
4419
4420
4421
4422
4423
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4418

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value for the specified tag key.

Returns:

  • (String)


4418
4419
4420
4421
4422
4423
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4418

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end