AWS App Runner Deployments API

Manage deployments and operations

Operations 2

POST /#StartDeployment AWS App Runner Start a Deployment #
POST /#ListOperations AWS App Runner List Operations #

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-deployments-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-deployments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AWS App Runner Auto Scaling Deployments 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: Deployments
  description: Manage deployments and operations
paths:
  /#StartDeployment:
    post:
      operationId: StartDeployment
      summary: AWS App Runner Start a Deployment
      description: Initiate a manual deployment of the latest commit in a source code repository or the latest image in a source image repository.
      tags:
      - Deployments
      parameters:
      - name: X-Amz-Target
        in: header
        required: true
        schema:
          type: string
          enum:
          - AppRunner.StartDeployment
      requestBody:
        required: true
        content:
          application/x-amz-json-1.0:
            schema:
              type: object
              required:
              - ServiceArn
              properties:
                ServiceArn:
                  type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  OperationId:
                    type: string
              examples:
                StartDeployment200Example:
                  summary: Default StartDeployment 200 response
                  x-microcks-default: true
                  value:
                    OperationId: abc123
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /#ListOperations:
    post:
      operationId: ListOperations
      summary: AWS App Runner List Operations
      description: Return a list of operations that occurred on an App Runner service.
      tags:
      - Deployments
      parameters:
      - name: X-Amz-Target
        in: header
        required: true
        schema:
          type: string
          enum:
          - AppRunner.ListOperations
      requestBody:
        required: true
        content:
          application/x-amz-json-1.0:
            schema:
              type: object
              required:
              - ServiceArn
              properties:
                ServiceArn:
                  type: string
                MaxResults:
                  type: integer
                NextToken:
                  type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  OperationSummaryList:
                    type: array
                    items:
                      $ref: '#/components/schemas/OperationSummary'
                  NextToken:
                    type: string
              examples:
                ListOperations200Example:
                  summary: Default ListOperations 200 response
                  x-microcks-default: true
                  value:
                    OperationSummaryList:
                    - example-value
                    NextToken: example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    OperationSummary:
      type: object
      properties:
        Id:
          type: string
        Type:
          type: string
          enum:
          - CREATE_SERVICE
          - START_DEPLOYMENT
          - PAUSE_SERVICE
          - RESUME_SERVICE
          - DELETE_SERVICE
          - UPDATE_SERVICE
        Status:
          type: string
          enum:
          - PENDING
          - IN_PROGRESS
          - FAILED
          - SUCCEEDED
          - ROLLBACK_IN_PROGRESS
          - ROLLBACK_FAILED
          - ROLLBACK_SUCCEEDED
        TargetArn:
          type: string
        StartedAt:
          type: string
          format: date-time
        EndedAt:
          type: string
          format: date-time
        UpdatedAt:
          type: string
          format: date-time
  securitySchemes:
    aws_sig_v4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4