Amazon CodeDeploy · Schema

CreateApplicationRequest

CreateApplicationRequest schema from Amazon CodeDeploy

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
applicationName string The name of the application.
computePlatform string The destination platform type for the deployment.
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-create-application-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-create-application-request-schema.json",
  "title": "CreateApplicationRequest",
  "description": "CreateApplicationRequest schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "applicationName": {
      "type": "string",
      "description": "The name of the application."
    },
    "computePlatform": {
      "type": "string",
      "description": "The destination platform type for the deployment.",
      "enum": [
        "Server",
        "Lambda",
        "ECS"
      ]
    }
  },
  "required": [
    "applicationName"
  ]
}