paws.storage (version 0.1.0)

efs_describe_tags: Returns the tags associated with a file system

Description

Returns the tags associated with a file system. The order of tags returned in the response of one DescribeTags call and the order of tags returned across the responses of a multiple-call iteration (when using pagination) is unspecified.

Usage

efs_describe_tags(MaxItems, Marker, FileSystemId)

Arguments

MaxItems

(Optional) The maximum number of file system tags to return in the response. Currently, this number is automatically set to 10.

Marker

(Optional) An opaque pagination token returned from a previous DescribeTags operation (String). If present, it specifies to continue the list from where the previous call left off.

FileSystemId

[required] The ID of the file system whose tag set you want to retrieve.

Request syntax

svc$describe_tags(
  MaxItems = 123,
  Marker = "string",
  FileSystemId = "string"
)

Details

This operation requires permissions for the elasticfilesystem:DescribeTags action.

Examples

Run this code
# NOT RUN {
# This operation describes all of a file system's tags.
# }
# NOT RUN {
svc$describe_tags(
  FileSystemId = "fs-01234567"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab