Amazon CodeDeploy · Schema

BatchGetApplicationsInput

Represents the input of a BatchGetApplications operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
applicationNames object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-batch-get-applications-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-batch-get-applications-input-schema.json",
  "title": "BatchGetApplicationsInput",
  "description": "Represents the input of a <code>BatchGetApplications</code> operation.",
  "type": "object",
  "properties": {
    "applicationNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationsList"
        },
        {
          "description": "A list of application names separated by spaces. The maximum number of application names you can specify is 100."
        }
      ]
    }
  },
  "required": [
    "applicationNames"
  ]
}