Module Values.CreateFleetRequestSource

Creates a fleet that represents a group of vehicles. You must create both a signal catalog and vehicles before you can create a fleet. For more information, see Fleets in the Amazon Web Services IoT FleetWise Developer Guide.

Sourcetype nonrec t = {
  1. fleetId : FleetId.t;
    (*

    The unique ID of the fleet to create.

    *)
  2. description : Description.t option;
    (*

    A brief description of the fleet to create.

    *)
  3. signalCatalogArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of a signal catalog.

    *)
  4. tags : TagList.t option;
    (*

    Metadata that can be used to manage the fleet.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> fleetId:FleetId.t -> signalCatalogArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of FleetId.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