Module Values_0.UpdateDimensionResponseSource

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 option;
    (*

    A unique identifier for the dimension.

    *)
  2. arn : DimensionArn.t option;
    (*

    The Amazon Resource Name (ARN)of the created dimension.

    *)
  3. type_ : DimensionType.t option;
    (*

    The type of the dimension.

    *)
  4. stringValues : DimensionStringValues.t option;
    (*

    The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.

    *)
  5. creationDate : Timestamp.t option;
    (*

    The date and time, in milliseconds since epoch, when the dimension was initially created.

    *)
  6. lastModifiedDate : Timestamp.t option;
    (*

    The date and time, in milliseconds since epoch, when the dimension was most recently updated.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalFailureException of InternalFailureException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?arn:??? -> ?type_:??? -> ?stringValues:??? -> ?creationDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of DimensionStringValue.t ] list | `String of DimensionName.t | `Timestamp of Timestamp.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