IoTFleetWise / Paginator / ListModelManifests

ListModelManifests#

class IoTFleetWise.Paginator.ListModelManifests#
paginator = client.get_paginator('list_model_manifests')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from IoTFleetWise.Client.list_model_manifests().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    signalCatalogArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • signalCatalogArn (string) – The ARN of a signal catalog. If you specify a signal catalog, only the vehicle models associated with it are returned.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'summaries': [
        {
            'name': 'string',
            'arn': 'string',
            'signalCatalogArn': 'string',
            'description': 'string',
            'status': 'ACTIVE'|'DRAFT'|'INVALID'|'VALIDATING',
            'creationTime': datetime(2015, 1, 1),
            'lastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • summaries (list) –

      A list of information about vehicle models.

      • (dict) –

        Information about a vehicle model (model manifest). You can use the API operation to return this information about multiple vehicle models.

        • name (string) –

          The name of the vehicle model.

        • arn (string) –

          The Amazon Resource Name (ARN) of the vehicle model.

        • signalCatalogArn (string) –

          The ARN of the signal catalog associated with the vehicle model.

        • description (string) –

          A brief description of the vehicle model.

        • status (string) –

          The state of the vehicle model. If the status is ACTIVE, the vehicle model can’t be edited. If the status is DRAFT, you can edit the vehicle model.

        • creationTime (datetime) –

          The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).

        • lastModificationTime (datetime) –

          The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).

    • NextToken (string) –

      A token to resume pagination.