Esempio n. 1
0
        IEnumerable <ListPendingInvitationResourcesResponse> IPaginator <ListPendingInvitationResourcesResponse> .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 nextToken = _request.NextToken;
            ListPendingInvitationResourcesResponse response;

            do
            {
                _request.NextToken = nextToken;
                response           = _client.ListPendingInvitationResources(_request);
                nextToken          = response.NextToken;
                yield return(response);
            }while (nextToken != null);
        }
Esempio n. 2
0
 private Amazon.RAM.Model.ListPendingInvitationResourcesResponse CallAWSServiceOperation(IAmazonRAM client, Amazon.RAM.Model.ListPendingInvitationResourcesRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Resource Access Manager (RAM)", "ListPendingInvitationResources");
     try
     {
         #if DESKTOP
         return(client.ListPendingInvitationResources(request));
         #elif CORECLR
         return(client.ListPendingInvitationResourcesAsync(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;
     }
 }