Amazon CodeDeploy · Schema

CreateApplicationInput

Represents the input of a CreateApplication operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
applicationName object
computePlatform object
tags object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-create-application-input-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-input-schema.json",
  "title": "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"
  ]
}