MainframeModernizationApplicationTesting / Paginator / ListTestRunSteps
ListTestRunSteps#
- class MainframeModernizationApplicationTesting.Paginator.ListTestRunSteps#
- paginator = client.get_paginator('list_test_run_steps') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - MainframeModernizationApplicationTesting.Client.list_test_run_steps().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( testRunId='string', testCaseId='string', testSuiteId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- testRunId (string) – - [REQUIRED] - The test run ID of the test run steps. 
- testCaseId (string) – The test case ID of the test run steps. 
- testSuiteId (string) – The test suite ID of the test run steps. 
- 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- { 'testRunSteps': [ { 'stepName': 'string', 'testRunId': 'string', 'testCaseId': 'string', 'testCaseVersion': 123, 'testSuiteId': 'string', 'testSuiteVersion': 123, 'beforeStep': True|False, 'afterStep': True|False, 'status': 'Success'|'Failed'|'Running', 'statusReason': 'string', 'runStartTime': datetime(2015, 1, 1), 'runEndTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } - Response Structure- (dict) – - testRunSteps (list) – - The test run steps of the response query. - (dict) – - Specifies a test run step summary. - stepName (string) – - The step name of the test run step summary. 
- testRunId (string) – - The test run ID of the test run step summary. 
- testCaseId (string) – - The test case ID of the test run step summary. 
- testCaseVersion (integer) – - The test case version of the test run step summary. 
- testSuiteId (string) – - The test suite ID of the test run step summary. 
- testSuiteVersion (integer) – - The test suite version of the test run step summary. 
- beforeStep (boolean) – - The before step of the test run step summary. 
- afterStep (boolean) – - The after step of the test run step summary. 
- status (string) – - The status of the test run step summary. 
- statusReason (string) – - The status reason of the test run step summary. 
- runStartTime (datetime) – - The run start time of the test run step summary. 
- runEndTime (datetime) – - The run end time of the test run step summary. 
 
 
- NextToken (string) – - A token to resume pagination.