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

DeleteLaunchTemplateRequest

import type { DeleteLaunchTemplateRequest } from "https://aws-api.deno.dev/v0.4/services/ec2.ts?docs=full";
interface DeleteLaunchTemplateRequest {
DryRun?: boolean | null;
LaunchTemplateId?: string | null;
LaunchTemplateName?: string | null;
}

§Properties

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
LaunchTemplateId?: string | null
[src]

The ID of the launch template.

You must specify either the LaunchTemplateId or the LaunchTemplateName, but not both.

§
LaunchTemplateName?: string | null
[src]

The name of the launch template.

You must specify either the LaunchTemplateName or the LaunchTemplateId, but not both.