Module Values.MetricDestinationSummarySource

A structure that displays information about one destination that CloudWatch RUM sends extended metrics to.

Sourcetype nonrec t = {
  1. destination : MetricDestination.t option;
    (*

    Specifies whether the destination is CloudWatch or Evidently.

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

    If the destination is Evidently, this specifies the ARN of the Evidently experiment that receives the metrics.

    *)
  3. iamRoleArn : IamRoleArn.t option;
    (*

    This field appears only when the destination is Evidently. It specifies the ARN of the IAM role that is used to write to the Evidently experiment that receives the metrics.

    *)
}
Sourceval make : ?destination:??? -> ?destinationArn:??? -> ?iamRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DestinationArn.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