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

DeleteTaskSetRequest

import type { DeleteTaskSetRequest } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";
interface DeleteTaskSetRequest {
cluster: string;
force?: boolean | null;
service: string;
taskSet: string;
}

§Properties

§
cluster: string
[src]

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set found in to delete.

§
force?: boolean | null
[src]

If true, you can delete a task set even if it hasn't been scaled down to zero.

§
service: string
[src]

The short name or full Amazon Resource Name (ARN) of the service that hosts the task set to delete.

§
taskSet: string
[src]

The task set ID or full Amazon Resource Name (ARN) of the task set to delete.