Module Values.UpdateMetricAttributionRequestSource

Updates a metric attribution.

Sourcetype nonrec t = {
  1. addMetrics : MetricAttributes.t option;
    (*

    Add new metric attributes to the metric attribution.

    *)
  2. removeMetrics : MetricAttributesNamesList.t option;
    (*

    Remove metric attributes from the metric attribution.

    *)
  3. metricsOutputConfig : MetricAttributionOutput.t option;
    (*

    An output config for the metric attribution.

    *)
  4. metricAttributionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the metric attribution to update.

    *)
}
Sourceval make : ?addMetrics:??? -> ?removeMetrics:??? -> ?metricsOutputConfig:??? -> ?metricAttributionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of MetricName.t | `Structure of (string * [> `String of EventType.t ]) list ] list | `String of Arn.t | `Structure of (string * [> `String of RoleArn.t | `Structure of (string * [> `String of S3Location.t ]) list ]) 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