Delete Daemon
| ecs_delete_daemon | R Documentation |
Deletes the specified daemon¶
Description¶
Deletes the specified daemon. The daemon must be in an ACTIVE state to
be deleted. Deleting a daemon stops all running daemon tasks on the
associated container instances. Amazon ECS drains existing container
instances and provisions new instances without the deleted daemon.
Amazon ECS automatically launches replacement tasks for your Amazon ECS
services.
ECS Managed Daemons is only supported for Amazon ECS Managed Instances Capacity Providers.
Usage¶
ecs_delete_daemon(daemonArn)
Arguments¶
daemonArn |
[required] The Amazon Resource Name (ARN) of the daemon to delete. |
Value¶
A list with the following syntax:
list(
daemonArn = "string",
status = "ACTIVE"|"DELETE_IN_PROGRESS",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
deploymentArn = "string"
)
Request syntax¶
svc$delete_daemon(
daemonArn = "string"
)