Module Values.UpdateProjectRequestSource

Updates an IoT SiteWise Monitor project.

Sourcetype nonrec t = {
  1. projectId : ID.t;
    (*

    The ID of the project to update.

    *)
  2. projectName : Name.t;
    (*

    A new friendly name for the project.

    *)
  3. projectDescription : Description.t option;
    (*

    A new description for the project.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?projectDescription:??? -> ?clientToken:??? -> projectId:ID.t -> projectName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.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