{
"$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-get-application-input-schema.json",
"title": "GetApplicationInput",
"description": "Represents the input of a <code>GetApplication</code> operation.",
"type": "object",
"properties": {
"applicationName": {
"allOf": [
{
"$ref": "#/components/schemas/ApplicationName"
},
{
"description": "The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account."
}
]
}
},
"required": [
"applicationName"
]
}