Module Values.AwsOpenSearchServiceDomainLogPublishingOptionSource

Configuration details for a log publishing option.

Sourcetype nonrec t = {
  1. cloudWatchLogsLogGroupArn : NonEmptyString.t option;
    (*

    The ARN of the CloudWatch Logs group to publish the logs to.

    *)
  2. enabled : Boolean.t option;
    (*

    Whether the log publishing is enabled.

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