IoTFleetWise / Client / get_decoder_manifest

get_decoder_manifest#

IoTFleetWise.Client.get_decoder_manifest(**kwargs)#

Retrieves information about a created decoder manifest.

See also: AWS API Documentation

Request Syntax

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

name (string) –

[REQUIRED]

The name of the decoder manifest to retrieve information about.

Return type:

dict

Returns:

Response Syntax

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

Response Structure

  • (dict) –

    • name (string) –

      The name of the decoder manifest.

    • arn (string) –

      The Amazon Resource Name (ARN) of the decoder manifest.

    • description (string) –

      A brief description of the decoder manifest.

    • modelManifestArn (string) –

      The ARN of a vehicle model (model manifest) associated with the decoder manifest.

    • status (string) –

      The state of the decoder manifest. If the status is ACTIVE, the decoder manifest can’t be edited. If the status is marked DRAFT, you can edit the decoder manifest.

    • creationTime (datetime) –

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

    • lastModificationTime (datetime) –

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

    • message (string) –

      The detailed message for the decoder manifest. When a decoder manifest is in an INVALID status, the message contains detailed reason and help information.

Exceptions