Amazon CodeDeploy · Schema

BatchGetDeploymentsInput

Represents the input of a BatchGetDeployments operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
deploymentIds object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-batch-get-deployments-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-deployments-input-schema.json",
  "title": "BatchGetDeploymentsInput",
  "description": " Represents the input of a <code>BatchGetDeployments</code> operation. ",
  "type": "object",
  "properties": {
    "deploymentIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentsList"
        },
        {
          "description": " A list of deployment IDs, separated by spaces. The maximum number of deployment IDs you can specify is 25."
        }
      ]
    }
  },
  "required": [
    "deploymentIds"
  ]
}