MainframeModernizationApplicationTesting / Paginator / ListTestConfigurations
ListTestConfigurations#
- class MainframeModernizationApplicationTesting.Paginator.ListTestConfigurations#
paginator = client.get_paginator('list_test_configurations')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
MainframeModernizationApplicationTesting.Client.list_test_configurations()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( testConfigurationIds=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
testConfigurationIds (list) –
The configuration IDs of the test configurations.
(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
{ 'testConfigurations': [ { 'testConfigurationId': 'string', 'name': 'string', 'statusReason': 'string', 'latestVersion': 123, 'testConfigurationArn': 'string', 'status': 'Active'|'Deleting', 'creationTime': datetime(2015, 1, 1), 'lastUpdateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
testConfigurations (list) –
The test configurations.
(dict) –
Specifies a test configuration summary.
testConfigurationId (string) –
The test configuration ID of the test configuration summary.
name (string) –
The name of the test configuration summary.
statusReason (string) –
The status reason of the test configuration summary.
latestVersion (integer) –
The latest version of the test configuration summary.
testConfigurationArn (string) –
The test configuration ARN of the test configuration summary.
status (string) –
The status of the test configuration summary.
creationTime (datetime) –
The creation time of the test configuration summary.
lastUpdateTime (datetime) –
The last update time of the test configuration summary.
NextToken (string) –
A token to resume pagination.