Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Create Application Request Structure

CreateApplicationRequest schema from Amazon CodeDeploy

Type: object Properties: 2 Required: 1
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

CreateApplicationRequest is a JSON Structure definition published by Amazon CodeDeploy, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

applicationName computePlatform

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-create-application-request-structure.json",
  "name": "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"
  ]
}