Class: Aws::DAX::Types::UntagResourceRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The name of the DAX resource from which the tags should be removed.

Returns:

  • (String)


1463
1464
1465
1466
1467
# File 'lib/aws-sdk-dax/types.rb', line 1463

class UntagResourceRequest < Struct.new(
  :resource_name,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

A list of tag keys. If the DAX cluster has any tags with these keys, then the tags are removed from the cluster.

Returns:

  • (Array<String>)


1463
1464
1465
1466
1467
# File 'lib/aws-sdk-dax/types.rb', line 1463

class UntagResourceRequest < Struct.new(
  :resource_name,
  :tag_keys)
  include Aws::Structure
end