Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Create Application Input Structure

Represents the input of a CreateApplication operation.

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

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

Properties

applicationName computePlatform tags

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-input-structure.json",
  "name": "CreateApplicationInput",
  "description": "Represents the input of a <code>CreateApplication</code> operation.",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of the application. This name must be unique with the applicable IAM or Amazon Web Services account."
        }
      ]
    },
    "computePlatform": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComputePlatform"
        },
        {
          "description": " The destination platform type for the deployment (<code>Lambda</code>, <code>Server</code>, or <code>ECS</code>)."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": " The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define. "
        }
      ]
    }
  },
  "required": [
    "applicationName"
  ]
}