List Services By Namespace
ecs_list_services_by_namespace | R Documentation |
This operation lists all of the services that are associated with a Cloud Map namespace¶
Description¶
This operation lists all of the services that are associated with a
Cloud Map namespace. This list might include services in different
clusters. In contrast, list_services
can only list services in one
cluster at a time. If you need to filter the list of services in a
single cluster by various parameters, use list_services
. For more
information, see Service
Connect
in the Amazon Elastic Container Service Developer Guide.
Usage¶
ecs_list_services_by_namespace(namespace, nextToken, maxResults)
Arguments¶
namespace |
[required] The namespace name or full Amazon Resource Name (ARN) of the Cloud Map namespace to list the services in. Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide. |
nextToken |
The |
maxResults |
The maximum number of service results that
|
Value¶
A list with the following syntax:
list(
serviceArns = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_services_by_namespace(
namespace = "string",
nextToken = "string",
maxResults = 123
)