paws.storage (version 0.1.0)

storagegateway_remove_tags_from_resource: Removes one or more tags from the specified resource

Description

Removes one or more tags from the specified resource. This operation is only supported in the cached volume, stored volume and tape gateway types.

Usage

storagegateway_remove_tags_from_resource(ResourceARN, TagKeys)

Arguments

ResourceARN

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

TagKeys

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

Request syntax

svc$remove_tags_from_resource(
  ResourceARN = "string",
  TagKeys = list(
    "string"
  )
)

Examples

Run this code
# NOT RUN {
# Lists the iSCSI stored volumes of a gateway. Removes one or more tags
# from the specified resource.
# }
# NOT RUN {
svc$remove_tags_from_resource(
  ResourceARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B",
  TagKeys = list(
    "Dev Gatgeway Region",
    "East Coast"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab