Module Values.CreateConfigurationRequestSource

Creates a new MSK configuration.

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

    The description of the configuration.

    *)
  2. kafkaVersions : string list option;
    (*

    The versions of Apache Kafka with which you can use this MSK configuration.

    *)
  3. name : string;
    (*

    The name of the configuration.

    *)
  4. 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:??? -> ?kafkaVersions:??? -> name:string -> serverProperties:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of string | `List of [> `String of string ] list | `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