Class: Aws::Redshift::Types::Tag

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

Overview

Note:

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

{
  key: "String",
  value: "String",
}

A tag consisting of a name/value pair for a resource.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key, or name, for the resource tag.

Returns:

  • (String)


8010
8011
8012
8013
8014
# File 'lib/aws-sdk-redshift/types.rb', line 8010

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

#valueString

The value for the resource tag.

Returns:

  • (String)


8010
8011
8012
8013
8014
# File 'lib/aws-sdk-redshift/types.rb', line 8010

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