public void InspectorListAssessmentTemplates()
        {
            #region list-assessment-templates-1481066623520

            var response = client.ListAssessmentTemplates(new ListAssessmentTemplatesRequest
            {
                AssessmentTargetArns = new List <string> {
                    "arn:aws:inspector:us-west-2:123456789012:target/0-0kFIPusq"
                },
                MaxResults = 123
            });

            List <string> assessmentTemplateArns = response.AssessmentTemplateArns;
            string        nextToken = response.NextToken;

            #endregion
        }
        IEnumerable <ListAssessmentTemplatesResponse> IPaginator <ListAssessmentTemplatesResponse> .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;
            ListAssessmentTemplatesResponse response;

            do
            {
                _request.NextToken = nextToken;
                response           = _client.ListAssessmentTemplates(_request);
                nextToken          = response.NextToken;
                yield return(response);
            }while (nextToken != null);
        }
 private Amazon.Inspector.Model.ListAssessmentTemplatesResponse CallAWSServiceOperation(IAmazonInspector client, Amazon.Inspector.Model.ListAssessmentTemplatesRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Inspector", "ListAssessmentTemplates");
     try
     {
         #if DESKTOP
         return(client.ListAssessmentTemplates(request));
         #elif CORECLR
         return(client.ListAssessmentTemplatesAsync(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;
     }
 }