Class: Aws::SecretsManager::Types::Tag

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-secretsmanager/types.rb

Overview

Note:

When making an API call, you may pass Tag data as a hash:

{
  key: "TagKeyType",
  value: "TagValueType",
}

A structure that contains information about a tag.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key identifier, or name, of the tag.

Returns:

  • (String)


1827
1828
1829
1830
1831
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1827

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

#valueString

The string value that’s associated with the key of the tag.

Returns:

  • (String)


1827
1828
1829
1830
1831
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1827

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