Module Values.MonitoringConfigurationUpdateSource

Describes updates to configuration parameters for Amazon CloudWatch logging for an application.

Sourcetype nonrec t = {
  1. configurationTypeUpdate : ConfigurationType.t option;
    (*

    Describes updates to whether to use the default CloudWatch logging configuration for an application. You must set this property to CUSTOM in order to set the LogLevel or MetricsLevel parameters.

    *)
  2. metricsLevelUpdate : MetricsLevel.t option;
    (*

    Describes updates to the granularity of the CloudWatch Logs for an application. The Parallelism level is not recommended for applications with a Parallelism over 64 due to excessive costs.

    *)
  3. logLevelUpdate : LogLevel.t option;
    (*

    Describes updates to the verbosity of the CloudWatch Logs for an application.

    *)
}
Sourceval make : ?configurationTypeUpdate:??? -> ?metricsLevelUpdate:??? -> ?logLevelUpdate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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