Class: Aws::Redshift::Types::CreateTagsMessage

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 CreateTagsMessage data as a hash:

{
  resource_name: "String", # required
  tags: [ # required
    {
      key: "String",
      value: "String",
    },
  ],
}

Contains the output from the ‘CreateTags` action.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The Amazon Resource Name (ARN) to which you want to add the tag or tags. For example, ‘arn:aws:redshift:us-east-1:123456789:cluster:t1`.

Returns:

  • (String)


2401
2402
2403
2404
2405
# File 'lib/aws-sdk-redshift/types.rb', line 2401

class CreateTagsMessage < Struct.new(
  :resource_name,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

One or more name/value pairs to add as tags to the specified resource. Each tag name is passed in with the parameter ‘Key` and the corresponding value is passed in with the parameter `Value`. The `Key` and `Value` parameters are separated by a comma (,). Separate multiple tags with a space. For example, `–tags “Key”=“owner”,“Value”=“admin” “Key”=“environment”,“Value”=“test” “Key”=“version”,“Value”=“1.0”`.

Returns:



2401
2402
2403
2404
2405
# File 'lib/aws-sdk-redshift/types.rb', line 2401

class CreateTagsMessage < Struct.new(
  :resource_name,
  :tags)
  include Aws::Structure
end