MainframeModernizationApplicationTesting / Paginator / ListTestSuites
ListTestSuites#
- class MainframeModernizationApplicationTesting.Paginator.ListTestSuites#
paginator = client.get_paginator('list_test_suites')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
MainframeModernizationApplicationTesting.Client.list_test_suites()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( testSuiteIds=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
testSuiteIds (list) –
The suite ID of the test suites.
(string) –
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
NextToken
will 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
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'testSuites': [ { 'testSuiteId': 'string', 'name': 'string', 'statusReason': 'string', 'latestVersion': 123, 'testSuiteArn': 'string', 'status': 'Creating'|'Updating'|'Active'|'Failed'|'Deleting', 'creationTime': datetime(2015, 1, 1), 'lastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
testSuites (list) –
The test suites returned with the response query.
(dict) –
Specifies the test suite summary.
testSuiteId (string) –
The test suite ID of the test suite summary.
name (string) –
The name of the test suite summary.
statusReason (string) –
The status reason of the test suite summary.
latestVersion (integer) –
The latest version of the test suite summary.
testSuiteArn (string) –
The test suite Amazon Resource Name (ARN) of the test suite summary.
status (string) –
The status of the test suite summary.
creationTime (datetime) –
The creation time of the test suite summary.
lastUpdateTime (datetime) –
The last update time of the test suite summary.
NextToken (string) –
A token to resume pagination.