Module Values.CreateVehicleResponseItemSource

Information about a created vehicle.

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

    The unique ID of the vehicle to create.

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

    The ARN of the created vehicle.

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

    The ARN of a created or validated Amazon Web Services IoT thing.

    *)
}
Sourceval make : ?vehicleName:??? -> ?arn:??? -> ?thingArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of VehicleName.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