Module Values.EnableLoggingMessageSource

Sourcetype nonrec t = {
  1. clusterIdentifier : String_.t;
    (*

    The identifier of the cluster on which logging is to be started. Example: examplecluster

    *)
  2. bucketName : String_.t option;
    (*

    The name of an existing S3 bucket where the log files are to be stored. Constraints: Must be in the same region as the cluster The cluster must have read bucket and put object permissions

    *)
  3. s3KeyPrefix : S3KeyPrefixValue.t option;
    (*

    The prefix applied to the log file names. Valid characters are any letter from any language, any whitespace character, any numeric character, and the following characters: underscore (_), period (.), colon (:), slash (/), equal (=), plus (+), backslash (\), hyphen (-), at symbol (@).

    *)
  4. logDestinationType : LogDestinationType.t option;
    (*

    The log destination type. An enum with possible values of s3 and cloudwatch.

    *)
  5. logExports : LogTypeList.t option;
    (*

    The collection of exported log types. Possible values are connectionlog, useractivitylog, and userlog.

    *)
}
Sourceval context_ : string
Sourceval make : ?bucketName:??? -> ?s3KeyPrefix:??? -> ?logDestinationType:??? -> ?logExports:??? -> clusterIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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