Beispiel #1
0
        IEnumerable <DescribeStackEventsResponse> IPaginator <DescribeStackEventsResponse> .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;
            DescribeStackEventsResponse response;

            do
            {
                _request.NextToken = nextToken;
                response           = _client.DescribeStackEvents(_request);
                nextToken          = response.NextToken;
                yield return(response);
            }while (nextToken != null);
        }
Beispiel #2
0
        public IEnumerable <StackEvent> GetStackEvents(Stack stack)
        {
            var request = new DescribeStackEventsRequest {
                StackName = stack.StackName
            };
            DescribeStackEventsResponse response;

            try
            {
                response = _cloudFormationClient.DescribeStackEvents(request);
            }
            catch (AmazonCloudFormationException exception)
            {
                if (exception.Message.Contains(_nonExistenceMarker))
                {
                    return(Enumerable.Empty <StackEvent>());
                }
                throw;
            }

            return(response.StackEvents);
        }
 private Amazon.CloudFormation.Model.DescribeStackEventsResponse CallAWSServiceOperation(IAmazonCloudFormation client, Amazon.CloudFormation.Model.DescribeStackEventsRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS CloudFormation", "DescribeStackEvents");
     try
     {
         #if DESKTOP
         return(client.DescribeStackEvents(request));
         #elif CORECLR
         return(client.DescribeStackEventsAsync(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;
     }
 }