Values.GetServiceGraphRequestSourceRetrieves 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.
type nonrec t = {startTime : Timestamp.t;The start of the time frame for which to generate a graph.
*)endTime : Timestamp.t;The end of the timeframe for which to generate a graph.
*)groupName : GroupName.t option;The name of a group based on which you want to generate a graph.
*)groupARN : GroupARN.t option;The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.
*)nextToken : String_.t option;Pagination token.
*)}val make :
?groupName:??? ->
?groupARN:??? ->
?nextToken:??? ->
startTime:Timestamp.t ->
endTime:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of GroupName.t | `Timestamp of Timestamp.t ]) list ]