Module Values.BatchDeleteRumMetricDefinitionsRequestSource

Removes the specified metrics from being sent to an extended metrics destination. If some metric definition IDs specified in a BatchDeleteRumMetricDefinitions operations are not valid, those metric definitions fail and return errors, but all valid metric definition IDs in the same operation are still deleted. The maximum number of metric definitions that you can specify in one BatchDeleteRumMetricDefinitions operation is 200.

Sourcetype nonrec t = {
  1. appMonitorName : AppMonitorName.t;
    (*

    The name of the CloudWatch RUM app monitor that is sending these metrics.

    *)
  2. destination : MetricDestination.t;
    (*

    Defines the destination where you want to stop sending the specified metrics. Valid values are CloudWatch and Evidently. If you specify Evidently, you must also specify the ARN of the CloudWatchEvidently experiment that is to be the destination and an IAM role that has permission to write to the experiment.

    *)
  3. destinationArn : DestinationArn.t option;
    (*

    This parameter is required if Destination is Evidently. If Destination is CloudWatch, do not use this parameter. This parameter specifies the ARN of the Evidently experiment that was receiving the metrics that are being deleted.

    *)
  4. metricDefinitionIds : MetricDefinitionIds.t;
    (*

    An array of structures which define the metrics that you want to stop sending.

    *)
}
Sourceval context_ : string
Sourceval make : ?destinationArn:??? -> appMonitorName:AppMonitorName.t -> destination:MetricDestination.t -> metricDefinitionIds:MetricDefinitionIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of MetricDefinitionId.t ] list | `String of AppMonitorName.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