List Namespaces
servicediscovery_list_namespaces | R Documentation |
Lists summary information about the namespaces that were created by the current Amazon Web Services account¶
Description¶
Lists summary information about the namespaces that were created by the current Amazon Web Services account.
Usage¶
servicediscovery_list_namespaces(NextToken, MaxResults, Filters)
Arguments¶
NextToken |
For the first If the response contains Cloud Map gets |
MaxResults |
The maximum number of namespaces 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. If you specify more than one filter, a namespace must match all
filters to be returned by |
Value¶
A list with the following syntax:
list(
Namespaces = list(
list(
Id = "string",
Arn = "string",
Name = "string",
Type = "DNS_PUBLIC"|"DNS_PRIVATE"|"HTTP",
Description = "string",
ServiceCount = 123,
Properties = list(
DnsProperties = list(
HostedZoneId = "string",
SOA = list(
TTL = 123
)
),
HttpProperties = list(
HttpName = "string"
)
),
CreateDate = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_namespaces(
NextToken = "string",
MaxResults = 123,
Filters = list(
list(
Name = "TYPE"|"NAME"|"HTTP_NAME",
Values = list(
"string"
),
Condition = "EQ"|"IN"|"BETWEEN"|"BEGINS_WITH"
)
)
)
Examples¶
## Not run:
# Example: List namespaces
svc$list_namespaces()
## End(Not run)