Module Values.LinkConfigurationSource

Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.

Sourcetype nonrec t = {
  1. logGroupConfiguration : LogGroupConfiguration.t option;
    (*

    Use this structure to filter which log groups are to send log events from the source account to the monitoring account.

    *)
  2. metricConfiguration : MetricConfiguration.t option;
    (*

    Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.

    *)
}
Sourceval make : ?logGroupConfiguration:??? -> ?metricConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of LogsFilter.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