AppIntegrationsService / Client / list_application_associations

list_application_associations#

AppIntegrationsService.Client.list_application_associations(**kwargs)#

Returns a paginated list of application associations for an application.

See also: AWS API Documentation

Request Syntax

response = client.list_application_associations(
    ApplicationId='string',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • ApplicationId (string) –

    [REQUIRED]

    A unique identifier for the Application.

  • 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

{
    'ApplicationAssociations': [
        {
            'ApplicationAssociationArn': 'string',
            'ApplicationArn': 'string',
            'ClientId': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • ApplicationAssociations (list) –

      List of Application Associations for the Application.

      • (dict) –

        Summary information about the Application Association.

        • ApplicationAssociationArn (string) –

          The Amazon Resource Name (ARN) of the Application Association.

        • ApplicationArn (string) –

          The Amazon Resource Name (ARN) of the Application.

        • ClientId (string) –

          The identifier for the client that is associated with the Application Association.

    • NextToken (string) –

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

Exceptions