MainframeModernizationApplicationTesting / Client / list_test_suites

list_test_suites#

MainframeModernizationApplicationTesting.Client.list_test_suites(**kwargs)#

Lists test suites.

See also: AWS API Documentation

Request Syntax

response = client.list_test_suites(
    testSuiteIds=[
        'string',
    ],
    nextToken='string',
    maxResults=123
)
Parameters:
  • testSuiteIds (list) –

    The suite ID of the test suites.

    • (string) –

  • nextToken (string) – The token from a previous request to retrieve the next page of results.

  • maxResults (integer) – The maximum number of test suites to return in one page of results.

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) –

      The token from a previous request to retrieve the next page of test suites results.

Exceptions

  • MainframeModernizationApplicationTesting.Client.exceptions.ThrottlingException

  • MainframeModernizationApplicationTesting.Client.exceptions.ResourceNotFoundException

  • MainframeModernizationApplicationTesting.Client.exceptions.AccessDeniedException

  • MainframeModernizationApplicationTesting.Client.exceptions.ValidationException

  • MainframeModernizationApplicationTesting.Client.exceptions.InternalServerException