Module Values.GetVehicleStatusRequestSource

Retrieves information about the status of campaigns, decoder manifests, or state templates associated with a vehicle.

Sourcetype nonrec t = {
  1. nextToken : NextToken.t option;
    (*

    A pagination token for the next set of results. If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value. This parameter is only supported for resources of type CAMPAIGN.

    *)
  2. maxResults : MaxResults.t option;
    (*

    The maximum number of items to return, between 1 and 100, inclusive. This parameter is only supported for resources of type CAMPAIGN.

    *)
  3. vehicleName : VehicleName.t;
    (*

    The ID of the vehicle to retrieve information about.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> vehicleName:VehicleName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of NextToken.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