Module Values.UpdateConfigurationRequestSource

Updates an MSK configuration.

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

    The Amazon Resource Name (ARN) of the configuration.

    *)
  2. description : string option;
    (*

    The description of the configuration revision.

    *)
  3. serverProperties : string;
    (*

    Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded. When using the AWS Management Console, the SDK, or the AWS CLI, the contents of server.properties can be in plaintext.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> arn:string -> serverProperties:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of string | `String 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