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(
  arn = "string",
  authType = "NONE"|"AWS_IAM",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  numberOfAssociatedServices = 123,
  numberOfAssociatedVPCs = 123,
  sharingConfig = list(
    enabled = TRUE|FALSE
  )
)
Request syntax¶
svc$get_service_network(
  serviceNetworkIdentifier = "string"
)