Module Values.EventReferenceSource

An item referenced in a TimelineEvent that is involved in or somehow associated with an incident. You can specify an Amazon Resource Name (ARN) for an Amazon Web Services resource or a RelatedItem ID.

Sourcetype nonrec t = {
  1. relatedItemId : GeneratedId.t option;
    (*

    The ID of a RelatedItem referenced in a TimelineEvent.

    *)
  2. resource : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of an Amazon Web Services resource referenced in a TimelineEvent.

    *)
}
Sourceval make : ?relatedItemId:??? -> ?resource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GeneratedId.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