Module Values.DimensionEntrySource

Represents a dimension and its corresponding value.

Sourcetype nonrec t = {
  1. dimension : Dimension.t option;
    (*

    The dimension type that categorizes this entry.

    *)
  2. value : String_.t option;
    (*

    The value for the specified dimension. Valid values vary based on the dimension type (e.g., us-east-1 for the REGION dimension, AmazonEC2 for the SERVICE dimension).

    *)
}
Sourceval make : ?dimension:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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