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

DeleteServiceRequest

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

§Properties

§
cluster?: string | null
[src]

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service to delete. If you do not specify a cluster, the default cluster is assumed.

§
force?: boolean | null
[src]

If true, allows you to delete a service even if it wasn't scaled down to zero tasks. It's only necessary to use this if the service uses the REPLICA scheduling strategy.

§
service: string
[src]

The name of the service to delete.