Module Values.CloudWatchLoggingOptionsSource

Describes the Amazon CloudWatch logging options for your Firehose stream.

Sourcetype nonrec t = {
  1. enabled : BooleanObject.t option;
    (*

    Enables or disables CloudWatch logging.

    *)
  2. logGroupName : LogGroupName.t option;
    (*

    The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    *)
  3. logStreamName : LogStreamName.t option;
    (*

    The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

    *)
}
Sourceval make : ?enabled:??? -> ?logGroupName:??? -> ?logStreamName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `String of LogGroupName.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