{
"$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 CreateApplication 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 (Lambda, Server, or ECS)."
}
]
},
"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"
]
}