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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key, or name, for the resource tag.

Returns:

  • (String)


11802
11803
11804
11805
11806
11807
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11802

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

#valueString

The value for the resource tag.

Returns:

  • (String)


11802
11803
11804
11805
11806
11807
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 11802

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