AWS App Runner Connections API

Manage source code provider connections

Operations 3

POST /#CreateConnection AWS App Runner Create a Connection #
POST /#ListConnections AWS App Runner List Connections #
POST /#DeleteConnection AWS App Runner Delete a Connection #

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-app-runner-connections-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-app-runner-connections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AWS App Runner Auto Scaling Connections API
  description: AWS App Runner is a fully managed service for building, deploying, and running containerized web applications and APIs. The API provides operations for managing App Runner services, connections, auto scaling configurations, custom domains, VPC connectors, and observability configuration.
  version: '2020-05-15'
  contact:
    name: Amazon Web Services
    url: https://aws.amazon.com/apprunner/
servers:
- url: https://apprunner.{region}.amazonaws.com
  description: AWS App Runner regional endpoint
  variables:
    region:
      default: us-east-1
      description: AWS region
security:
- aws_sig_v4: []
tags:
- name: Connections
  description: Manage source code provider connections
paths:
  /#CreateConnection:
    post:
      operationId: CreateConnection
      summary: AWS App Runner Create a Connection
      description: Create an AWS App Runner connection resource for a source code provider (e.g., GitHub).
      tags:
      - Connections
      parameters:
      - name: X-Amz-Target
        in: header
        required: true
        schema:
          type: string
          enum:
          - AppRunner.CreateConnection
      requestBody:
        required: true
        content:
          application/x-amz-json-1.0:
            schema:
              type: object
              required:
              - ConnectionName
              - ProviderType
              properties:
                ConnectionName:
                  type: string
                ProviderType:
                  type: string
                  enum:
                  - GITHUB
                  - BITBUCKET
                Tags:
                  type: array
                  items:
                    $ref: '#/components/schemas/Tag'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  Connection:
                    $ref: '#/components/schemas/Connection'
              examples:
                CreateConnection200Example:
                  summary: Default CreateConnection 200 response
                  x-microcks-default: true
                  value:
                    Connection:
                      ConnectionName: my-app-service
                      ConnectionArn: arn:aws:apprunner:us-east-1:123456789:service/my-service
                      ProviderType: GITHUB
                      Status: PENDING_HANDSHAKE
                      CreatedAt: example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /#ListConnections:
    post:
      operationId: ListConnections
      summary: AWS App Runner List Connections
      description: Returns a list of App Runner connection resources in your AWS account.
      tags:
      - Connections
      parameters:
      - name: X-Amz-Target
        in: header
        required: true
        schema:
          type: string
          enum:
          - AppRunner.ListConnections
      requestBody:
        content:
          application/x-amz-json-1.0:
            schema:
              type: object
              properties:
                ConnectionName:
                  type: string
                MaxResults:
                  type: integer
                NextToken:
                  type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  ConnectionSummaryList:
                    type: array
                    items:
                      $ref: '#/components/schemas/ConnectionSummary'
                  NextToken:
                    type: string
              examples:
                ListConnections200Example:
                  summary: Default ListConnections 200 response
                  x-microcks-default: true
                  value:
                    ConnectionSummaryList:
                    - example-value
                    NextToken: example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /#DeleteConnection:
    post:
      operationId: DeleteConnection
      summary: AWS App Runner Delete a Connection
      description: Delete an App Runner connection.
      tags:
      - Connections
      parameters:
      - name: X-Amz-Target
        in: header
        required: true
        schema:
          type: string
          enum:
          - AppRunner.DeleteConnection
      requestBody:
        required: true
        content:
          application/x-amz-json-1.0:
            schema:
              type: object
              required:
              - ConnectionArn
              properties:
                ConnectionArn:
                  type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  Connection:
                    $ref: '#/components/schemas/Connection'
              examples:
                DeleteConnection200Example:
                  summary: Default DeleteConnection 200 response
                  x-microcks-default: true
                  value:
                    Connection:
                      ConnectionName: my-app-service
                      ConnectionArn: arn:aws:apprunner:us-east-1:123456789:service/my-service
                      ProviderType: GITHUB
                      Status: PENDING_HANDSHAKE
                      CreatedAt: example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ConnectionSummary:
      type: object
      properties:
        ConnectionName:
          type: string
        ConnectionArn:
          type: string
        ProviderType:
          type: string
          enum:
          - GITHUB
          - BITBUCKET
        Status:
          type: string
          enum:
          - PENDING_HANDSHAKE
          - AVAILABLE
          - ERROR
          - DELETED
        CreatedAt:
          type: string
          format: date-time
    Tag:
      type: object
      properties:
        Key:
          type: string
        Value:
          type: string
    Connection:
      type: object
      properties:
        ConnectionName:
          type: string
        ConnectionArn:
          type: string
        ProviderType:
          type: string
          enum:
          - GITHUB
          - BITBUCKET
        Status:
          type: string
          enum:
          - PENDING_HANDSHAKE
          - AVAILABLE
          - ERROR
          - DELETED
        CreatedAt:
          type: string
          format: date-time
  securitySchemes:
    aws_sig_v4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4