IoTFleetHub / Client / list_applications

list_applications#

IoTFleetHub.Client.list_applications(**kwargs)#

Gets a list of Fleet Hub for IoT Device Management web applications for the current account.

See also: AWS API Documentation

Request Syntax

response = client.list_applications(
    nextToken='string'
)
Parameters:

nextToken (string) – A token used to get the next set of results.

Return type:

dict

Returns:

Response Syntax

{
    'applicationSummaries': [
        {
            'applicationId': 'string',
            'applicationName': 'string',
            'applicationDescription': 'string',
            'applicationUrl': 'string',
            'applicationCreationDate': 123,
            'applicationLastUpdateDate': 123,
            'applicationState': 'CREATING'|'DELETING'|'ACTIVE'|'CREATE_FAILED'|'DELETE_FAILED'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • applicationSummaries (list) –

      An array of objects that provide summaries of information about the web applications in the list.

      • (dict) –

        A summary of information about a Fleet Hub for IoT Device Management web application.

        • applicationId (string) –

          The unique Id of the web application.

        • applicationName (string) –

          The name of the web application.

        • applicationDescription (string) –

          An optional description of the web application.

        • applicationUrl (string) –

          The URL of the web application.

        • applicationCreationDate (integer) –

          The date (in Unix epoch time) when the web application was created.

        • applicationLastUpdateDate (integer) –

          The date (in Unix epoch time) when the web application was last updated.

        • applicationState (string) –

          The current state of the web application.

    • nextToken (string) –

      A token used to get the next set of results.

Exceptions