Module Values.BatchGetRumMetricDefinitionsRequestSource

Retrieves the list of metrics and dimensions that a RUM app monitor is sending to a single destination.

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

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

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

    The type of destination that you want to view metrics for. Valid values are CloudWatch and Evidently.

    *)
  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 corresponds to the destination.

    *)
  4. maxResults : MaxResultsInteger.t option;
    (*

    The maximum number of results to return in one operation. The default is 50. The maximum that you can specify is 100. To retrieve the remaining results, make another call with the returned NextToken value.

    *)
  5. nextToken : String_.t option;
    (*

    Use the token returned by the previous operation to request the next page of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?destinationArn:??? -> ?maxResults:??? -> ?nextToken:??? -> appMonitorName:AppMonitorName.t -> destination:MetricDestination.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxResultsInteger.t | `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