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

CreateProfilingGroupRequest

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

The structure representing the createProfiliingGroupRequest.

interface CreateProfilingGroupRequest {
agentOrchestrationConfig?: AgentOrchestrationConfig | null;
clientToken: string;
computePlatform?: ComputePlatform | null;
profilingGroupName: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
agentOrchestrationConfig?: AgentOrchestrationConfig | null
[src]

Specifies whether profiling is enabled or disabled for the created profiling group.

§
clientToken: string
[src]

Amazon CodeGuru Profiler uses this universally unique identifier (UUID) to prevent the accidental creation of duplicate profiling groups if there are failures and retries.

§
computePlatform?: ComputePlatform | null
[src]

The compute platform of the profiling group. Use AWSLambda if your application runs on AWS Lambda. Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform. If not specified, Default is used.

§
profilingGroupName: string
[src]

The name of the profiling group to create.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags to add to the created profiling group.