Skip to content

Get Vpc Links

apigatewayv2_get_vpc_links R Documentation

Description

Gets a collection of VPC links.

Usage

apigatewayv2_get_vpc_links(MaxResults, NextToken)

Arguments

MaxResults

The maximum number of elements to be returned for this resource.

NextToken

The next page of elements from this collection. Not valid for the last element of the collection.

Value

A list with the following syntax:

list(
  Items = list(
    list(
      CreatedDate = as.POSIXct(
        "2015-01-01"
      ),
      Name = "string",
      SecurityGroupIds = list(
        "string"
      ),
      SubnetIds = list(
        "string"
      ),
      Tags = list(
        "string"
      ),
      VpcLinkId = "string",
      VpcLinkStatus = "PENDING"|"AVAILABLE"|"DELETING"|"FAILED"|"INACTIVE",
      VpcLinkStatusMessage = "string",
      VpcLinkVersion = "V2"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_vpc_links(
  MaxResults = "string",
  NextToken = "string"
)