Module Values.LogPublishingOptionSource

Log Publishing option that is set for given domain. Attributes and their details: CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published. Enabled: Whether the log publishing for given log type is enabled or not

Sourcetype nonrec t = {
  1. cloudWatchLogsLogGroupArn : CloudWatchLogsLogGroupArn.t option;
  2. enabled : Boolean.t option;
    (*

    Specifies whether given log publishing option is enabled or not.

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