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

GetProfileRequest

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

The structure representing the getProfileRequest.

interface GetProfileRequest {
accept?: string | null;
endTime?: Date | number | null;
maxDepth?: number | null;
period?: string | null;
profilingGroupName: string;
startTime?: Date | number | null;
}

§Properties

§
accept?: string | null
[src]

TODO: Failed to render documentation: unhandled top level doc tag pre

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

The end time of the requested profile. Specify 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.

If you specify endTime, then you must also specify period or startTime, but not both.

§
maxDepth?: number | null
[src]

The maximum depth of the stacks in the code that is represented in the aggregated profile. For example, if CodeGuru Profiler finds a method A, which calls method B, which calls method C, which calls method D, then the depth is 4. If the maxDepth is set to 2, then the aggregated profile contains representations of methods A and B.

§
period?: string | null
[src]

TODO: Failed to render documentation: unhandled top level doc tag pre

§
profilingGroupName: string
[src]

The name of the profiling group to get.

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

TODO: Failed to render documentation: unhandled top level doc tag pre