Module Values.UpdateStateTemplateRequestSource

Updates a state template. Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see Amazon Web Services Region and feature availability in the Amazon Web Services IoT FleetWise Developer Guide.

Sourcetype nonrec t = {
  1. identifier : ResourceIdentifier.t;
    (*

    The unique ID of the state template.

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

    A brief description of the state template.

    *)
  3. stateTemplatePropertiesToAdd : StateTemplateProperties.t option;
    (*

    Add signals from which data is collected as part of the state template.

    *)
  4. stateTemplatePropertiesToRemove : StateTemplateProperties.t option;
    (*

    Remove signals from which data is collected as part of the state template.

    *)
  5. dataExtraDimensions : StateTemplateDataExtraDimensionNodePathList.t option;
    (*

    A list of vehicle attributes to associate with the payload published on the state template's MQTT topic. (See Processing last known state vehicle data using MQTT messaging). For example, if you add Vehicle.Attributes.Make and Vehicle.Attributes.Model attributes, Amazon Web Services IoT FleetWise will enrich the protobuf encoded payload with those attributes in the extraDimensions field. Default: An empty array

    *)
  6. metadataExtraDimensions : StateTemplateMetadataExtraDimensionNodePathList.t option;
    (*

    A list of vehicle attributes to associate with user properties of the messages published on the state template's MQTT topic. (See Processing last known state vehicle data using MQTT messaging). For example, if you add Vehicle.Attributes.Make and Vehicle.Attributes.Model attributes, Amazon Web Services IoT FleetWise will include these attributes as User Properties with the MQTT message.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?stateTemplatePropertiesToAdd:??? -> ?stateTemplatePropertiesToRemove:??? -> ?dataExtraDimensions:??? -> ?metadataExtraDimensions:??? -> identifier:ResourceIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NodePath.t ] list | `String of ResourceIdentifier.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