Amazon Amplify · Schema

Branch

FrontendFull StackHostingMobile DevelopmentWeb Applications

Properties

Name Type Description
branchName string
branchArn string
description string
stage string
displayName string
activeJobId string
View JSON Schema on GitHub

JSON Schema

amazon-amplify-branch-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Branch",
  "type": "object",
  "properties": {
    "branchName": {
      "type": "string"
    },
    "branchArn": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "stage": {
      "type": "string",
      "enum": [
        "PRODUCTION",
        "BETA",
        "DEVELOPMENT",
        "EXPERIMENTAL",
        "PULL_REQUEST"
      ]
    },
    "displayName": {
      "type": "string"
    },
    "activeJobId": {
      "type": "string"
    }
  }
}