Module Values.GetInsightImpactGraphRequestSource

Retrieves a service graph structure filtered by the specified insight. The service graph is limited to only structural information. For a complete service graph, use this API with the GetServiceGraph API.

Sourcetype nonrec t = {
  1. insightId : InsightId.t;
    (*

    The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

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

    The estimated start time of the insight, in Unix time seconds. The StartTime is inclusive of the value provided and can't be more than 30 days old.

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

    The estimated end time of the insight, in Unix time seconds. The EndTime is exclusive of the value provided. The time range between the start time and end time can't be more than six hours.

    *)
  4. nextToken : Token.t option;
    (*

    Specify the pagination token returned by a previous request to retrieve the next page of results.

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