paws.storage (version 0.1.0)

fsx_untag_resource: This action removes a tag from an Amazon FSx resource

Description

This action removes a tag from an Amazon FSx resource.

Usage

fsx_untag_resource(ResourceARN, TagKeys)

Arguments

ResourceARN

[required] The ARN of the Amazon FSx resource to untag.

TagKeys

[required] A list of keys of tags on the resource to untag. In case the tag key doesn't exist, the call will still succeed to be idempotent.

Request syntax

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

Examples

Run this code
# NOT RUN {
# This operation untags an Amazon FSx resource.
# }
# NOT RUN {
svc$untag_resource(
  ResourceARN = "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
  TagKeys = list(
    "Name"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab