Module Values.PostTimeSeriesDataPointsInputSource

Posts time series data points to Amazon DataZone for the specified asset.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the Amazon DataZone domain in which you want to post time series data points.

    *)
  2. entityIdentifier : EntityIdentifier.t;
    (*

    The ID of the asset for which you want to post time series data points.

    *)
  3. entityType : TimeSeriesEntityType.t;
    (*

    The type of the asset for which you want to post data points.

    *)
  4. forms : TimeSeriesDataPointFormInputList.t;
    (*

    The forms that contain the data points that you want to post.

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

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> domainIdentifier:DomainId.t -> entityIdentifier:EntityIdentifier.t -> entityType:TimeSeriesEntityType.t -> forms:TimeSeriesDataPointFormInputList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TimeSeriesFormName.t | `Timestamp of Timestamp.t ]) list ] list | `String of DomainId.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