Module Values.MeasureValueSource

Represents the data attribute of the time series. For example, the CPU utilization of an EC2 instance or the RPM of a wind turbine are measures. MeasureValue has both name and value. MeasureValue is only allowed for type MULTI. Using MULTI type, you can pass multiple data attributes associated with the same time series in a single record

Sourcetype nonrec t = {
  1. name : SchemaName.t;
    (*

    The name of the MeasureValue. For constraints on MeasureValue names, see Naming Constraints in the Amazon Timestream Developer Guide.

    *)
  2. value : StringValue2048.t;
    (*

    The value for the MeasureValue. For information, see Data types.

    *)
  3. type_ : MeasureValueType.t;
    (*

    Contains the data type of the MeasureValue for the time-series data point.

    *)
}
Sourceval context_ : string
Sourceval make : name:SchemaName.t -> value:StringValue2048.t -> type_:MeasureValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SchemaName.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