paws.compute (version 0.1.0)

ecs_delete_task_set: Deletes a specified task set within a service

Description

Deletes a specified task set within a service. This is used when a service uses the EXTERNAL deployment controller type. For more information, see Amazon ECS Deployment Types in the Amazon Elastic Container Service Developer Guide.

Usage

ecs_delete_task_set(cluster, service, taskSet, force)

Arguments

cluster

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

service

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

taskSet

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

force

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

Request syntax

svc$delete_task_set(
  cluster = "string",
  service = "string",
  taskSet = "string",
  force = TRUE|FALSE
)