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

Recommendation

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

A potential improvement that was found from analyzing the profiling data.

interface Recommendation {
allMatchesCount: number;
allMatchesSum: number;
endTime: Date | number;
pattern: Pattern;
startTime: Date | number;
topMatches: Match[];
}

§Properties

§
allMatchesCount: number
[src]

How many different places in the profile graph triggered a match.

§
allMatchesSum: number
[src]

How much of the total sample count is potentially affected.

§
endTime: Date | number
[src]

End time of the profile that was used by this analysis. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

§
pattern: Pattern
[src]

The pattern that analysis recognized in the profile to make this recommendation.

§
startTime: Date | number
[src]

The start time of the profile that was used by this analysis. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

§
topMatches: Match[]
[src]

List of the matches with most impact.