Skip to content

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 Amazon Resource Name (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
)

Request syntax

svc$get_service_network(
  serviceNetworkIdentifier = "string"
)