Get Namespace
servicediscovery_get_namespace | R Documentation |
Gets information about a namespace¶
Description¶
Gets information about a namespace.
Usage¶
Arguments¶
Id
[required] The ID of the namespace that you want to get information about.
Value¶
A list with the following syntax:
list(
Namespace = 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"
),
CreatorRequestId = "string"
)
)