Module Values.ResultItemSource

This is an object representing the item returned in the results of a search for a specific resource type.

Sourcetype nonrec t = {
  1. s3ResultItem : S3ResultItem.t option;
    (*

    These are items returned in the search results of an Amazon S3 search.

    *)
  2. eBSResultItem : EBSResultItem.t option;
    (*

    These are items returned in the search results of an Amazon EBS search.

    *)
}
Sourceval make : ?s3ResultItem:??? -> ?eBSResultItem:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Long of Long.t | `String of String_.t | `Timestamp of Timestamp.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