List Services
ecs_list_services | R Documentation |
Returns a list of services¶
Description¶
Returns a list of services. You can filter the results by cluster, launch type, and scheduling strategy.
Usage¶
ecs_list_services(cluster, nextToken, maxResults, launchType,
schedulingStrategy)
Arguments¶
cluster |
The short name or full Amazon Resource Name (ARN) of the cluster
to use when filtering the |
nextToken |
The This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes. |
maxResults |
The maximum number of service results that
|
launchType |
The launch type to use when filtering the
|
schedulingStrategy |
The scheduling strategy to use when filtering the
|
Value¶
A list with the following syntax:
list(
serviceArns = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_services(
cluster = "string",
nextToken = "string",
maxResults = 123,
launchType = "EC2"|"FARGATE"|"EXTERNAL",
schedulingStrategy = "REPLICA"|"DAEMON"
)
Examples¶
## Not run:
# This example lists the services running in the default cluster for an
# account.
svc$list_services()
## End(Not run)