Module Values.LoggingStatusSource

Describes the status of logging for a cluster.

Sourcetype describeLoggingStatusResult = {
  1. loggingEnabled : Boolean.t option;
    (*

    true if logging is on, false if logging is off.

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

    The name of the S3 bucket where the log files are stored.

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

    The prefix applied to the log file names.

    *)
  4. lastSuccessfulDeliveryTime : TStamp.t option;
    (*

    The last time that logs were delivered.

    *)
  5. lastFailureTime : TStamp.t option;
    (*

    The last time when logs failed to be delivered.

    *)
  6. lastFailureMessage : String_.t option;
    (*

    The message indicating that logs failed to be delivered.

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

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

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

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

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. describeLoggingStatusResult : describeLoggingStatusResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `ClusterNotFoundFault of ClusterNotFoundFault.t
  2. | `UnsupportedOperationFault of UnsupportedOperationFault.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?loggingEnabled:??? -> ?bucketName:??? -> ?s3KeyPrefix:??? -> ?lastSuccessfulDeliveryTime:??? -> ?lastFailureTime:??? -> ?lastFailureMessage:??? -> ?logDestinationType:??? -> ?logExports:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ClusterNotFoundFault of unit | `Unknown_operation_error of string * string option | `UnsupportedOperationFault of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ClusterNotFoundFault of unit | `Unknown_operation_error of string * string option | `UnsupportedOperationFault of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of TStamp.t ]) list ]) 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