You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElastiCache::Types::RemoveTagsFromResourceMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RemoveTagsFromResourceMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  resource_name: "String", # required
  tag_keys: ["String"], # required
}

Represents the input of a RemoveTagsFromResource operation.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.

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

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.

#tag_keysArray<String>

A list of TagKeys identifying the tags you want removed from the named resource.

Returns:

  • (Array<String>)

    A list of TagKeys identifying the tags you want removed from the named resource.