Module Values.CreateComputationModelRequestSource

Create a computation model with a configuration and data binding.

Sourcetype nonrec t = {
  1. computationModelName : RestrictedName.t;
    (*

    The name of the computation model.

    *)
  2. computationModelDescription : RestrictedDescription.t option;
    (*

    The description of the computation model.

    *)
  3. computationModelConfiguration : ComputationModelConfiguration.t;
    (*

    The configuration for the computation model.

    *)
  4. computationModelDataBinding : ComputationModelDataBinding.t;
    (*

    The data binding for the computation model. Key is a variable name defined in configuration. Value is a ComputationModelDataBindingValue referenced by the variable.

    *)
  5. 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.

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

    A list of key-value pairs that contain metadata for the asset. For more information, see Tagging your IoT SiteWise resources in the IoT SiteWise User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?computationModelDescription:??? -> ?clientToken:??? -> ?tags:??? -> computationModelName:RestrictedName.t -> computationModelConfiguration:ComputationModelConfiguration.t -> computationModelDataBinding:ComputationModelDataBinding.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ComputationModelDataBindingVariable.t ] * Awso.Botodata.value) list | `String of RestrictedName.t | `Structure of (string * [> `Structure of (string * [> `String of InputProperties.t ]) list ]) list ]) 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