Module Values.UpdateConfigurationResponseSource

Updates the specified configuration.

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The Amazon Resource Name (ARN) of the configuration.

    *)
  2. created : string option;
    (*

    Required. The date and time of the configuration.

    *)
  3. id : string option;
    (*

    The unique ID that Amazon MQ generates for the configuration.

    *)
  4. latestRevision : ConfigurationRevision.t option;
    (*

    The latest revision of the configuration.

    *)
  5. name : string option;
    (*

    The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.

    *)
  6. warnings : SanitizationWarning.t list option;
    (*

    The list of the first 20 warnings about the configuration elements or attributes that were sanitized.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `ForbiddenException of ForbiddenException.t
  4. | `InternalServerErrorException of InternalServerErrorException.t
  5. | `NotFoundException of NotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?created:??? -> ?id:??? -> ?latestRevision:??? -> ?name:??? -> ?warnings:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of string ]) list ] list | `String of string | `Structure of (string * [> `Integer of int | `String of string | `Timestamp of string ]) list | `Timestamp of string ]) 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