Module Values.ItemValueSource

Describes a related item.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the related item, if the related item is an Amazon resource.

    *)
  2. metricDefinition : MetricDefinition.t option;
    (*

    The metric definition, if the related item is a metric in Amazon CloudWatch.

    *)
  3. pagerDutyIncidentDetail : PagerDutyIncidentDetail.t option;
    (*

    Details about an incident that is associated with a PagerDuty incident.

    *)
  4. url : Url.t option;
    (*

    The URL, if the related item is a non-Amazon Web Services resource.

    *)
}
Sourceval make : ?arn:??? -> ?metricDefinition:??? -> ?pagerDutyIncidentDetail:??? -> ?url:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `Boolean of Boolean.t | `String of PagerDutyIncidentDetailIdString.t ]) 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