SecurityAgent / Client / list_applications

list_applications

SecurityAgent.Client.list_applications(**kwargs)

Returns a paginated list of application summaries in your account.

See also: AWS API Documentation

Request Syntax

response = client.list_applications(
    nextToken='string',
    maxResults=123
)
Parameters:
  • nextToken (string) – A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken value returned from the previous request.

  • maxResults (integer) – The maximum number of results to return in a single call.

Return type:

dict

Returns:

Response Syntax

{
    'applicationSummaries': [
        {
            'applicationId': 'string',
            'applicationName': 'string',
            'domain': 'string',
            'defaultKmsKeyId': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • applicationSummaries (list) –

      The list of application summaries.

      • (dict) –

        Contains summary information about an application.

        • applicationId (string) –

          The unique identifier of the application.

        • applicationName (string) –

          The name of the application.

        • domain (string) –

          The domain associated with the application.

        • defaultKmsKeyId (string) –

          The identifier of the default AWS KMS key used to encrypt data for the application.

    • nextToken (string) –

      A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken value returned from the previous request.