Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InsightSummary

import type { InsightSummary } from "https://aws-api.deno.dev/v0.4/services/xray.ts?docs=full";

Information that describes an insight.

interface InsightSummary {
Categories?: InsightCategory[] | null;
ClientRequestImpactStatistics?: RequestImpactStatistics | null;
EndTime?: Date | number | null;
GroupARN?: string | null;
GroupName?: string | null;
InsightId?: string | null;
LastUpdateTime?: Date | number | null;
RootCauseServiceId?: ServiceId | null;
RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics | null;
StartTime?: Date | number | null;
State?: InsightState | null;
Summary?: string | null;
TopAnomalousServices?: AnomalousService[] | null;
}

§Properties

§
Categories?: InsightCategory[] | null
[src]

Categories The categories that label and describe the type of insight.

§
ClientRequestImpactStatistics?: RequestImpactStatistics | null
[src]

The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

§
EndTime?: Date | number | null
[src]

The time, in Unix seconds, at which the insight ended.

§
GroupARN?: string | null
[src]

The Amazon Resource Name (ARN) of the group that the insight belongs to.

§
GroupName?: string | null
[src]

The name of the group that the insight belongs to.

§
InsightId?: string | null
[src]

The insights unique identifier.

§
LastUpdateTime?: Date | number | null
[src]

The time, in Unix seconds, that the insight was last updated.

§
RootCauseServiceId?: ServiceId | null
[src]
§
RootCauseServiceRequestImpactStatistics?: RequestImpactStatistics | null
[src]

The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

§
StartTime?: Date | number | null
[src]

The time, in Unix seconds, at which the insight began.

§
State?: InsightState | null
[src]

The current state of the insight.

§
Summary?: string | null
[src]

A brief description of the insight.

§
TopAnomalousServices?: AnomalousService[] | null
[src]

The service within the insight that is most impacted by the incident.