public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonImagebuilderConfig config = new AmazonImagebuilderConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonImagebuilderClient client = new AmazonImagebuilderClient(creds, config); ListComponentsResponse resp = new ListComponentsResponse(); do { ListComponentsRequest req = new ListComponentsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListComponents(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.ComponentVersionList) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }
/// <summary> /// Retrieves a list of components for a specified Amplify app and backend environment. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListComponents service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListComponents service method, as returned by AmplifyUIBuilder.</returns> /// <exception cref="Amazon.AmplifyUIBuilder.Model.InternalServerException"> /// An internal error has occurred. Please retry your request. /// </exception> /// <exception cref="Amazon.AmplifyUIBuilder.Model.InvalidParameterException"> /// An invalid or out-of-range value was supplied for the input parameter. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/ListComponents">REST API Reference for ListComponents Operation</seealso> public virtual Task <ListComponentsResponse> ListComponentsAsync(ListComponentsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListComponentsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListComponentsResponseUnmarshaller.Instance; return(InvokeAsync <ListComponentsResponse>(request, options, cancellationToken)); }
internal virtual ListComponentsResponse ListComponents(ListComponentsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListComponentsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListComponentsResponseUnmarshaller.Instance; return(Invoke <ListComponentsResponse>(request, options)); }