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¶
maxResultsThe maximum number of results to return.
nextTokenA pagination token for the next page of results.
serviceNetworkIdentifierThe ID or Amazon Resource Name (ARN) of the service network.
vpcIdentifierThe 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"
)