List Services
servicediscovery_list_services | R Documentation |
Lists summary information for all the services that are associated with one or more namespaces¶
Description¶
Lists summary information for all the services that are associated with one or more namespaces.
Usage¶
servicediscovery_list_services(NextToken, MaxResults, Filters)
Arguments¶
NextToken |
For the first If the response contains Cloud Map gets |
MaxResults |
The maximum number of services that you want Cloud Map to return
in the response to a |
Filters |
A complex type that contains specifications for the namespaces that you want to list services for. If you specify more than one filter, an operation must match all
filters to be returned by |
Value¶
A list with the following syntax:
list(
Services = list(
list(
Id = "string",
Arn = "string",
Name = "string",
Type = "HTTP"|"DNS_HTTP"|"DNS",
Description = "string",
InstanceCount = 123,
DnsConfig = list(
NamespaceId = "string",
RoutingPolicy = "MULTIVALUE"|"WEIGHTED",
DnsRecords = list(
list(
Type = "SRV"|"A"|"AAAA"|"CNAME",
TTL = 123
)
)
),
HealthCheckConfig = list(
Type = "HTTP"|"HTTPS"|"TCP",
ResourcePath = "string",
FailureThreshold = 123
),
HealthCheckCustomConfig = list(
FailureThreshold = 123
),
CreateDate = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_services(
NextToken = "string",
MaxResults = 123,
Filters = list(
list(
Name = "NAMESPACE_ID",
Values = list(
"string"
),
Condition = "EQ"|"IN"|"BETWEEN"|"BEGINS_WITH"
)
)
)
Examples¶
## Not run:
# Example: List services
svc$list_services()
## End(Not run)