IoTFleetWise / Client / get_model_manifest

get_model_manifest#

IoTFleetWise.Client.get_model_manifest(**kwargs)#

Retrieves information about a vehicle model (model manifest).

See also: AWS API Documentation

Request Syntax

response = client.get_model_manifest(
    name='string'
)
Parameters:

name (string) –

[REQUIRED]

The name of the vehicle model to retrieve information about.

Return type:

dict

Returns:

Response Syntax

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

Response Structure

  • (dict) –

    • name (string) –

      The name of the vehicle model.

    • arn (string) –

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

    • description (string) –

      A brief description of the vehicle model.

    • signalCatalogArn (string) –

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

    • status (string) –

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

    • creationTime (datetime) –

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

    • lastModificationTime (datetime) –

      The last time the vehicle model was modified.

Exceptions