Amazon.ElasticFileSystem.AmazonElasticFileSystemClient.DescribeTagsAsync C# (CSharp) Метод

DescribeTagsAsync() публичный Метод

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 multi-call iteration (when using pagination) is unspecified.

This operation requires permissions for the elasticfilesystem:DescribeTags action.

/// Returned if the request is malformed or contains an error such as an invalid parameter /// value or a missing required parameter. /// /// Returned if the specified FileSystemId does not exist in the requester's /// AWS account. /// /// Returned if an error occurred on the server side. ///
public DescribeTagsAsync ( string fileSystemId, System cancellationToken = default(CancellationToken) ) : Task
fileSystemId string ID of the file system whose tag set you want to retrieve.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<DescribeTagsResponse> DescribeTagsAsync(string fileSystemId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new DescribeTagsRequest();
            request.FileSystemId = fileSystemId;
            return DescribeTagsAsync(request, cancellationToken);
        }

Same methods

AmazonElasticFileSystemClient::DescribeTagsAsync ( DescribeTagsRequest request, System cancellationToken = default(CancellationToken) ) : Task