Describe Daemon
| ecs_describe_daemon | R Documentation |
Describes the specified daemon¶
Description¶
Describes the specified daemon.
Usage¶
ecs_describe_daemon(daemonArn)
Arguments¶
daemonArn |
[required] The Amazon Resource Name (ARN) of the daemon to describe. |
Value¶
A list with the following syntax:
list(
daemon = list(
daemonArn = "string",
clusterArn = "string",
status = "ACTIVE"|"DELETE_IN_PROGRESS",
currentRevisions = list(
list(
arn = "string",
capacityProviders = list(
list(
arn = "string",
runningCount = 123
)
),
totalRunningCount = 123
)
),
deploymentArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$describe_daemon(
daemonArn = "string"
)