Amazon CodeDeploy · Schema

BatchGetDeploymentInstancesInput

Represents the input of a BatchGetDeploymentInstances operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
deploymentId object
instanceIds object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-batch-get-deployment-instances-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-deployment-instances-input-schema.json",
  "title": "BatchGetDeploymentInstancesInput",
  "description": " Represents the input of a <code>BatchGetDeploymentInstances</code> operation. ",
  "type": "object",
  "properties": {
    "deploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentId"
        },
        {
          "description": " The unique ID of a deployment. "
        }
      ]
    },
    "instanceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstancesList"
        },
        {
          "description": "The unique IDs of instances used in the deployment. The maximum number of instance IDs you can specify is 25."
        }
      ]
    }
  },
  "required": [
    "deploymentId",
    "instanceIds"
  ]
}