imagebuilder / Paginator / ListWaitingWorkflowSteps
ListWaitingWorkflowSteps¶
- class imagebuilder.Paginator.ListWaitingWorkflowSteps¶
- paginator = client.get_paginator('list_waiting_workflow_steps') - paginate(**kwargs)¶
- Creates an iterator that will paginate through responses from - imagebuilder.Client.list_waiting_workflow_steps().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- PaginationConfig (dict) – - A dictionary that provides parameters to control pagination. - MaxItems (integer) – - The total number of items to return. If the total number of items available is more than the value specified in max-items then a - NextTokenwill be provided in the output that you can use to resume pagination.
- PageSize (integer) – - The size of each page. 
- StartingToken (string) – - A token to specify where to start paginating. This is the - NextTokenfrom a previous response.
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'steps': [ { 'stepExecutionId': 'string', 'imageBuildVersionArn': 'string', 'workflowExecutionId': 'string', 'workflowBuildVersionArn': 'string', 'name': 'string', 'action': 'string', 'startTime': 'string' }, ], 'NextToken': 'string' } - Response Structure- (dict) – - steps (list) – - An array of the workflow steps that are waiting for action in your Amazon Web Services account. - (dict) – - Contains runtime details for an instance of a workflow that ran for the associated image build version. - stepExecutionId (string) – - Uniquely identifies the workflow step that ran for the associated image build version. 
- imageBuildVersionArn (string) – - The Amazon Resource Name (ARN) of the image build version that ran the workflow. 
- workflowExecutionId (string) – - Uniquely identifies the runtime instance of the workflow that contains the workflow step that ran for the associated image build version. 
- workflowBuildVersionArn (string) – - The ARN of the workflow resource that ran. 
- name (string) – - The name of the workflow step. 
- action (string) – - The name of the step action. 
- startTime (string) – - The timestamp when the workflow step started. 
 
 
- NextToken (string) – - A token to resume pagination.