Skip to content

List Service Network Vpc Associations

vpclattice_list_service_network_vpc_associations R Documentation

Lists the associations between a service network and a VPC

Description

Lists the associations between a service network and a VPC. You can filter the list either by VPC or service network. You must provide either the ID of the service network identifier or the ID of the VPC.

Usage

vpclattice_list_service_network_vpc_associations(
  serviceNetworkIdentifier, vpcIdentifier, maxResults, nextToken)

Arguments

serviceNetworkIdentifier

The ID or ARN of the service network.

vpcIdentifier

The ID or ARN of the VPC.

maxResults

The maximum number of results to return.

nextToken

A pagination token for the next page of results.

Value

A list with the following syntax:

list(
  items = list(
    list(
      id = "string",
      arn = "string",
      status = "CREATE_IN_PROGRESS"|"ACTIVE"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"|"UPDATE_FAILED",
      createdBy = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      serviceNetworkId = "string",
      serviceNetworkName = "string",
      serviceNetworkArn = "string",
      privateDnsEnabled = TRUE|FALSE,
      dnsOptions = list(
        privateDnsPreference = "VERIFIED_DOMAINS_ONLY"|"ALL_DOMAINS"|"VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS"|"SPECIFIED_DOMAINS_ONLY",
        privateDnsSpecifiedDomains = list(
          "string"
        )
      ),
      vpcId = "string",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_service_network_vpc_associations(
  serviceNetworkIdentifier = "string",
  vpcIdentifier = "string",
  maxResults = 123,
  nextToken = "string"
)