AWS App Runner · Schema

Connection

Connection schema from AWS App Runner

CI/CDContainersDeploymentMicroservicesServerless

Properties

Name Type Description
ConnectionName string
ConnectionArn string
ProviderType string
Status string
CreatedAt string
View JSON Schema on GitHub

JSON Schema

app-runner-connection-schema.json Raw ↑
{
  "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"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-runner/refs/heads/main/json-schema/app-runner-connection-schema.json",
  "title": "Connection",
  "description": "Connection schema from AWS App Runner"
}