AppIntegrationsService / Client / list_applications

list_applications#

AppIntegrationsService.Client.list_applications(**kwargs)#

This API is in preview release and subject to change.

Lists applications in the account.

See also: AWS API Documentation

Request Syntax

response = client.list_applications(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

  • MaxResults (integer) – The maximum number of results to return per page.

Return type:

dict

Returns:

Response Syntax

{
    'Applications': [
        {
            'Arn': 'string',
            'Id': 'string',
            'Name': 'string',
            'Namespace': 'string',
            'CreatedTime': datetime(2015, 1, 1),
            'LastModifiedTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • Applications (list) –

      The Applications associated with this account.

      • (dict) –

        Summary information about the Application.

        • Arn (string) –

          The Amazon Resource Name (ARN) of the Application.

        • Id (string) –

          A unique identifier for the Application.

        • Name (string) –

          The name of the application.

        • Namespace (string) –

          The namespace of the application.

        • CreatedTime (datetime) –

          The time when the application was created.

        • LastModifiedTime (datetime) –

          The time when the application was last modified.

    • NextToken (string) –

      If there are additional results, this is the token for the next set of results.

Exceptions