Values.DeleteTaskSetRequestSourceDeletes 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.
type nonrec t = {cluster : String_.t;The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set found in to delete.
*)service : String_.t;The short name or full Amazon Resource Name (ARN) of the service that hosts the task set to delete.
*)taskSet : String_.t;The task set ID or full Amazon Resource Name (ARN) of the task set to delete.
*)force : BoxedBoolean.t option;If true, you can delete a task set even if it hasn't been scaled down to zero.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Boolean of BoxedBoolean.t | `String of String_.t ]) list ]