Module Values_0.UpdateDimensionRequestSource

Updates the definition for a dimension. You cannot change the type of a dimension after it is created (you can delete it and recreate it). Requires permission to access the UpdateDimension action.

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

    A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.

    *)
  2. stringValues : DimensionStringValues.t;
    (*

    Specifies the value or list of values for the dimension. For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").

    *)
}
Sourceval context_ : string
Sourceval make : name:DimensionName.t -> stringValues:DimensionStringValues.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DimensionStringValue.t ] list | `String of DimensionName.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