Module Values.MetricsConfigurationSource

An object that specifies whether cloud metrics are collected in a deployment and, if so, what role is used to collect metrics.

Sourcetype nonrec t = {
  1. cloudMetricEnabled : Enabled.t option;
    (*

    A Boolean that specifies whether cloud metrics are collected.

    *)
  2. metricRuleRoleArn : RoleArn.t option;
    (*

    The ARN of the role that is used to collect cloud metrics.

    *)
}
Sourceval make : ?cloudMetricEnabled:??? -> ?metricRuleRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `String of RoleArn.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