Get Service Network
| vpclattice_get_service_network | R Documentation |
Retrieves information about the specified service network¶
Description¶
Retrieves information about the specified service network.
Usage¶
vpclattice_get_service_network(serviceNetworkIdentifier)
Arguments¶
serviceNetworkIdentifier |
[required] The ID or ARN of the service network. |
Value¶
A list with the following syntax:
list(
id = "string",
name = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
arn = "string",
authType = "NONE"|"AWS_IAM",
sharingConfig = list(
enabled = TRUE|FALSE
),
numberOfAssociatedVPCs = 123,
numberOfAssociatedServices = 123
)
Request syntax¶
svc$get_service_network(
serviceNetworkIdentifier = "string"
)