Class: Aws::StorageGateway::Types::RemoveTagsFromResourceInput

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

Overview

Note:

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

{
  resource_arn: "ResourceARN", # required
  tag_keys: ["TagKey"], # required
}

RemoveTagsFromResourceInput

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource you want to remove the tags from.

Returns:

  • (String)


5265
5266
5267
5268
5269
5270
# File 'lib/aws-sdk-storagegateway/types.rb', line 5265

class RemoveTagsFromResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#tag_keysArray<String>

The keys of the tags you want to remove from the specified resource. A tag is composed of a key-value pair.

Returns:

  • (Array<String>)


5265
5266
5267
5268
5269
5270
# File 'lib/aws-sdk-storagegateway/types.rb', line 5265

class RemoveTagsFromResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end