ManagedintegrationsforIoTDeviceManagement / Client / list_ota_task_configurations

list_ota_task_configurations#

ManagedintegrationsforIoTDeviceManagement.Client.list_ota_task_configurations(**kwargs)#

List all of the over-the-air (OTA) task configurations.

See also: AWS API Documentation

Request Syntax

response = client.list_ota_task_configurations(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – A token that can be used to retrieve the next set of results.

  • MaxResults (integer) – The maximum number of results to return at one time.

Return type:

dict

Returns:

Response Syntax

{
    'Items': [
        {
            'TaskConfigurationId': 'string',
            'Name': 'string',
            'CreatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • Items (list) –

      The list of the over-the-air (OTA) task configurations.

      • (dict) –

        Structure representing one over-the-air (OTA) task configuration.

        • TaskConfigurationId (string) –

          The id of the over-the-air (OTA) task configuration

        • Name (string) –

          The name of the over-the-air (OTA) task configuration.

        • CreatedAt (datetime) –

          The timestamp value of when the over-the-air (OTA) task configuration was created at.

    • NextToken (string) –

      A token that can be used to retrieve the next set of results.

Exceptions