paws.storage (version 0.1.0)

efs_delete_tags: Deletes the specified tags from a file system

Description

Deletes the specified tags from a file system. If the DeleteTags request includes a tag key that doesn't exist, Amazon EFS ignores it and doesn't cause an error. For more information about tags and related restrictions, see Tag Restrictions in the AWS Billing and Cost Management User Guide.

Usage

efs_delete_tags(FileSystemId, TagKeys)

Arguments

FileSystemId

[required] The ID of the file system whose tags you want to delete (String).

TagKeys

[required] A list of tag keys to delete.

Request syntax

svc$delete_tags(
  FileSystemId = "string",
  TagKeys = list(
    "string"
  )
)

Details

This operation requires permissions for the elasticfilesystem:DeleteTags action.

Examples

Run this code
# NOT RUN {
# This operation deletes tags for an EFS file system.
# }
# NOT RUN {
svc$delete_tags(
  FileSystemId = "fs-01234567",
  TagKeys = list(
    "Name"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace