Module Values.ResourceSource

A resource affected by or closely linked to an event.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The unique identifier for the resource. At least one id or ARN is required.

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

    The Amazon Resource Name (ARN) of the resource. At least one id or ARN is required.

    *)
  3. detailUrl : Url.t option;
    (*

    The URL to the resource's detail page. If a detail page URL is unavailable, it is the URL to an informational page that describes the resource's type.

    *)
  4. tags : Tags.t option;
    (*

    A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?detailUrl:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of TagsMemberString.t ] list | `String of String_.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