Amazon API Gateway Vpclinks API

Operations for managing VPC links

Operations 5

Documentation

📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/
📖
APIReference
https://docs.aws.amazon.com/apigateway/latest/api/Welcome.html
📖
GettingStarted
https://docs.aws.amazon.com/apigateway/latest/developerguide/getting-started.html
📖
Authentication
https://docs.aws.amazon.com/apigateway/latest/developerguide/permissions.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-portals.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/mcp-server.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/response-transfer-mode.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/private-integration.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html
📖
APIReference
https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/Welcome.html
📖
GettingStarted
https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-how-to-call-websocket-api-connections.html
📖
APIReference
https://docs.aws.amazon.com/apigatewaymanagementapi/latest/reference/Welcome.html
📖
Documentation
https://docs.aws.amazon.com/apigateway/latest/developerguide/welcome.html

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aws-api-gateway-vpclinks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aws-api-gateway-vpclinks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon API Gateway REST API Keys VPC Links API
  description: The Amazon API Gateway REST API enables programmatic management of API Gateway resources. You can create, configure, and manage REST APIs, stages, deployments, authorizers, models, resources, methods, and integrations through this management interface.
  version: '2015-07-09'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png
servers:
- url: https://apigateway.{region}.amazonaws.com
  description: Amazon API Gateway regional endpoint
  variables:
    region:
      default: us-east-1
      description: AWS region
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-southeast-1
      - ap-southeast-2
      - ap-south-1
      - sa-east-1
      - ca-central-1
security:
- sigv4: []
tags:
- name: Vpclinks
  description: Operations for managing VPC links
paths:
  /vpclinks:
    get:
      operationId: GetVpcLinks
      summary: Amazon API Gateway List VPC Links
      description: Returns information about all VPC links.
      tags:
      - Vpclinks
      parameters:
      - $ref: '#/components/parameters/Position'
      - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VpcLinks'
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/TooManyRequests'
    post:
      operationId: CreateVpcLink
      summary: Amazon API Gateway Create a VPC Link
      description: Creates a VPC link for private integrations.
      tags:
      - Vpclinks
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateVpcLinkRequest'
      responses:
        '202':
          description: VPC link creation accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VpcLink'
        '400':
          $ref: '#/components/responses/BadRequest'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/TooManyRequests'
  /vpclinks/{vpclink_id}:
    get:
      operationId: GetVpcLink
      summary: Amazon API Gateway Get a VPC Link
      description: Returns information about a specific VPC link.
      tags:
      - Vpclinks
      parameters:
      - $ref: '#/components/parameters/VpcLinkId'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VpcLink'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
    patch:
      operationId: UpdateVpcLink
      summary: Amazon API Gateway Update a VPC Link
      description: Updates an existing VPC link.
      tags:
      - Vpclinks
      parameters:
      - $ref: '#/components/parameters/VpcLinkId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchOperations'
      responses:
        '200':
          description: VPC link updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VpcLink'
        '400':
          $ref: '#/components/responses/BadRequest'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/TooManyRequests'
    delete:
      operationId: DeleteVpcLink
      summary: Amazon API Gateway Delete a VPC Link
      description: Deletes the specified VPC link.
      tags:
      - Vpclinks
      parameters:
      - $ref: '#/components/parameters/VpcLinkId'
      responses:
        '202':
          description: VPC link deletion accepted
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    VpcLinkId:
      name: vpclink_id
      in: path
      required: true
      description: The identifier of the VPC link.
      schema:
        type: string
    Limit:
      name: limit
      in: query
      description: The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
      schema:
        type: integer
        minimum: 1
        maximum: 500
        default: 25
    Position:
      name: position
      in: query
      description: The current pagination position in the paged result set. Used for cursor-based pagination.
      schema:
        type: string
  schemas:
    CreateVpcLinkRequest:
      type: object
      required:
      - name
      - targetArns
      properties:
        name:
          type: string
        description:
          type: string
        targetArns:
          type: array
          items:
            type: string
        tags:
          type: object
          additionalProperties:
            type: string
    PatchOperations:
      type: object
      properties:
        patchOperations:
          type: array
          items:
            $ref: '#/components/schemas/PatchOperation'
    VpcLink:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        targetArns:
          type: array
          items:
            type: string
        status:
          type: string
          enum:
          - AVAILABLE
          - PENDING
          - DELETING
          - FAILED
        statusMessage:
          type: string
        tags:
          type: object
          additionalProperties:
            type: string
    Error:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message.
        code:
          type: string
          description: The error code.
    VpcLinks:
      type: object
      properties:
        position:
          type: string
        item:
          type: array
          items:
            $ref: '#/components/schemas/VpcLink'
    PatchOperation:
      type: object
      properties:
        op:
          type: string
          enum:
          - add
          - remove
          - replace
          - move
          - copy
          - test
          description: The operation type.
        path:
          type: string
          description: The op operation's target, as identified by a JSON Pointer value.
        value:
          type: string
          description: The new target value of the update operation. It is applicable for the add or replace operation.
        from:
          type: string
          description: The copy update operation's source as identified by a JSON Pointer value.
  responses:
    Conflict:
      description: The request conflicts with the current state of the resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    TooManyRequests:
      description: The request rate has exceeded the allowed limit.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The specified resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: The request is invalid or malformed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    sigv4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4 authentication