Module Values.MonitoringConfigurationSource

Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.

Sourcetype nonrec t = {
  1. cloudWatchLoggingConfiguration : CloudWatchLoggingConfiguration.t option;
    (*

    Configuration settings for delivering logs to Amazon CloudWatch log groups.

    *)
  2. managedLoggingConfiguration : ManagedLoggingConfiguration.t option;
    (*

    Configuration settings for managed log persistence.

    *)
  3. s3LoggingConfiguration : S3LoggingConfiguration.t option;
    (*

    Configuration settings for delivering logs to Amazon S3 buckets.

    *)
}
Sourceval make : ?cloudWatchLoggingConfiguration:??? -> ?managedLoggingConfiguration:??? -> ?s3LoggingConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Map of ([> `String of LogTypeKey.t ] * [> `List of [> `String of LogTypeValue.t ] list ]) list | `String of LogGroupName.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