Class: Aws::Pipes::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/lib/aws-sdk-pipes/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 =
[:value]

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)


2922
2923
2924
2925
2926
2927
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2922

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

#valueString

The value for the specified tag key.

Returns:

  • (String)


2922
2923
2924
2925
2926
2927
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2922

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