Module Values.CreateVehicleRequestItemSource

Information about the vehicle to create.

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

    The unique ID of the vehicle to create.

    *)
  2. modelManifestArn : Arn.t;
    (*

    The ARN of the vehicle model (model manifest) to create the vehicle from.

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

    The Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.

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

    Static information about a vehicle in a key-value pair. For example: "engine Type" : "v6"

    *)
  5. associationBehavior : VehicleAssociationBehavior.t option;
    (*

    An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.

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

    Metadata which can be used to manage the vehicle.

    *)
  7. stateTemplates : StateTemplateAssociations.t option;
    (*

    Associate state templates to track the state of the vehicle. State templates determine which signal updates the vehicle sends to the cloud.

    *)
}
Sourceval context_ : string
Sourceval make : ?attributes:??? -> ?associationBehavior:??? -> ?tags:??? -> ?stateTemplates:??? -> vehicleName:VehicleName.t -> modelManifestArn:Arn.t -> decoderManifestArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of PositiveInteger.t ]) list ]) list ]) list ]) list ] list | `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) list | `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