Ejemplo n.º 1
0
        public void ElasticFileSystemDescribeTags()
        {
            #region to-describe-the-tags-for-a-file-system-1481850497090

            var response = client.DescribeTags(new DescribeTagsRequest
            {
                FileSystemId = "fs-01234567"
            });

            List <Tag> tags = response.Tags;

            #endregion
        }
Ejemplo n.º 2
0
        IEnumerable <DescribeTagsResponse> IPaginator <DescribeTagsResponse> .Paginate()
        {
            if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
            {
                throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
            }
            var marker = _request.Marker;
            DescribeTagsResponse response;

            do
            {
                _request.Marker = marker;
                response        = _client.DescribeTags(_request);
                marker          = response.NextMarker;
                yield return(response);
            }while (marker != null);
        }
Ejemplo n.º 3
0
 private Amazon.ElasticFileSystem.Model.DescribeTagsResponse CallAWSServiceOperation(IAmazonElasticFileSystem client, Amazon.ElasticFileSystem.Model.DescribeTagsRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Elastic File System", "DescribeTags");
     try
     {
         #if DESKTOP
         return(client.DescribeTags(request));
         #elif CORECLR
         return(client.DescribeTagsAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }