Class: Aws::ElastiCache::Types::AddTagsToResourceMessage

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

Overview

Represents the input of an AddTagsToResource operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The Amazon Resource Name (ARN) of the resource to which the tags are to be added, for example ‘arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster` or `arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot`. ElastiCache resources are cluster and snapshot.

For more information about ARNs, see [Amazon Resource Names (ARNs) and Amazon Service Namespaces].

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


44
45
46
47
48
49
# File 'lib/aws-sdk-elasticache/types.rb', line 44

class AddTagsToResourceMessage < Struct.new(
  :resource_name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

Returns:



44
45
46
47
48
49
# File 'lib/aws-sdk-elasticache/types.rb', line 44

class AddTagsToResourceMessage < Struct.new(
  :resource_name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end