Module Values.VehicleSummarySource

Information about a vehicle. To return this information about vehicles in your account, you can use the API operation.

Sourcetype nonrec t = {
  1. vehicleName : VehicleName.t option;
    (*

    The unique ID of the vehicle.

    *)
  2. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the vehicle.

    *)
  3. modelManifestArn : Arn.t option;
    (*

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

    *)
  4. decoderManifestArn : Arn.t option;
    (*

    The ARN of a decoder manifest associated with the vehicle.

    *)
  5. creationTime : Timestamp.t option;
    (*

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

    *)
  6. lastModificationTime : Timestamp.t option;
    (*

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

    *)
  7. attributes : AttributesMap.t option;
    (*

    Static information about a vehicle in a key-value pair. For example: "engineType" : "1.3 L R2"

    *)
}
Sourceval make : ?vehicleName:??? -> ?arn:??? -> ?modelManifestArn:??? -> ?decoderManifestArn:??? -> ?creationTime:??? -> ?lastModificationTime:??? -> ?attributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) list | `String of VehicleName.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t