Module Values.DimensionValuesWithAttributesSource

The metadata of a specific type that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

Sourcetype nonrec t = {
  1. value : Value.t option;
    (*

    The value of a dimension with a specific attribute.

    *)
  2. attributes : Attributes.t option;
    (*

    The attribute that applies to a specific Dimension.

    *)
}
Sourceval make : ?value:??? -> ?attributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AttributeType.t ] * [> `String of AttributeValue.t ]) list | `String of Value.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