Description Usage Arguments Value Request syntax Examples
View source: R/storagegateway_operations.R
Removes one or more tags from the specified resource. This operation is supported in storage gateways of all types.
1 | storagegateway_remove_tags_from_resource(ResourceARN, TagKeys)
|
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. |
A list with the following syntax:
1 2 3 | list(
ResourceARN = "string"
)
|
1 2 3 4 5 6 | svc$remove_tags_from_resource(
ResourceARN = "string",
TagKeys = list(
"string"
)
)
|
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
# Lists the iSCSI stored volumes of a gateway. Removes one or more tags
# from the specified resource.
svc$remove_tags_from_resource(
ResourceARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B",
TagKeys = list(
"Dev Gatgeway Region",
"East Coast"
)
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.