Module Values.GetServiceGraphRequestSource

Retrieves a document that describes services that process incoming requests, and downstream services that they call as a result. Root services process incoming requests and make calls to downstream services. Root services are applications that use the Amazon Web Services X-Ray SDK. Downstream services can be other applications, Amazon Web Services resources, HTTP web APIs, or SQL databases.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t;
    (*

    The start of the time frame for which to generate a graph.

    *)
  2. endTime : Timestamp.t;
    (*

    The end of the timeframe for which to generate a graph.

    *)
  3. groupName : GroupName.t option;
    (*

    The name of a group based on which you want to generate a graph.

    *)
  4. groupARN : GroupARN.t option;
    (*

    The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.

    *)
  5. nextToken : String_.t option;
    (*

    Pagination token.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupName:??? -> ?groupARN:??? -> ?nextToken:??? -> startTime:Timestamp.t -> endTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GroupName.t | `Timestamp of Timestamp.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