Module Values.CreateModelManifestRequestSource

Creates a vehicle model (model manifest) that specifies signals (attributes, branches, sensors, and actuators). For more information, see Vehicle models in the Amazon Web Services IoT FleetWise Developer Guide.

Sourcetype nonrec t = {
  1. name : ResourceName.t;
    (*

    The name of the vehicle model to create.

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

    A brief description of the vehicle model.

    *)
  3. nodes : CreateModelManifestRequestNodesList.t;
    (*

    A list of nodes, which are a general abstraction of signals.

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

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

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

    Metadata that can be used to manage the vehicle model.

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