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(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 ARN of the service network.
vpcIdentifier
The ID or 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"
)