Class: Aws::PartnerCentralAccount::Types::Tag

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

Overview

A key-value pair used to associate metadata with AWS Partner Central Account resources.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key name of the tag. Tag keys are case-sensitive.

Returns:

  • (String)


2436
2437
2438
2439
2440
2441
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 2436

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

#valueString

The value associated with the tag key. Tag values are case-sensitive.

Returns:

  • (String)


2436
2437
2438
2439
2440
2441
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 2436

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