List Service Network Vpc Associations
vpclattice_list_service_network_vpc_associations | R Documentation |
Lists the service network and VPC associations¶
Description¶
Lists the service network and VPC associations. You can filter the list either by VPC or service network. You must provide either the service network identifier or the VPC identifier.
Usage¶
vpclattice_list_service_network_vpc_associations(maxResults, nextToken,
serviceNetworkIdentifier, vpcIdentifier)
Arguments¶
maxResults
The maximum number of results to return.
nextToken
A pagination token for the next page of results.
serviceNetworkIdentifier
The ID or Amazon Resource Name (ARN) of the service network.
vpcIdentifier
The ID or Amazon Resource Name (ARN) of the VPC.
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
serviceNetworkArn = "string",
serviceNetworkId = "string",
serviceNetworkName = "string",
status = "CREATE_IN_PROGRESS"|"ACTIVE"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"|"UPDATE_FAILED",
vpcId = "string"
)
),
nextToken = "string"
)