Module Values.DimensionSource

Represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.

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

    Dimension represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions. For constraints on dimension names, see Naming Constraints.

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

    The value of the dimension.

    *)
  3. dimensionValueType : DimensionValueType.t option;
    (*

    The data type of the dimension for the time-series data point.

    *)
}
Sourceval context_ : string
Sourceval make : ?dimensionValueType:??? -> name:SchemaName.t -> value:SchemaValue.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