Amazon Amplify · Schema

CreateAppRequest

FrontendFull StackHostingMobile DevelopmentWeb Applications

Properties

Name Type Description
name string
description string
repository string
platform string
oauthToken string
View JSON Schema on GitHub

JSON Schema

amazon-amplify-createapprequest-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateAppRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "repository": {
      "type": "string"
    },
    "platform": {
      "type": "string"
    },
    "oauthToken": {
      "type": "string"
    }
  },
  "required": [
    "name"
  ]
}