Amazon CodeDeploy · Schema

GetDeploymentInstanceInput

Represents the input of a GetDeploymentInstance operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

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

JSON Schema

amazon-codedeploy-get-deployment-instance-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-get-deployment-instance-input-schema.json",
  "title": "GetDeploymentInstanceInput",
  "description": " Represents the input of a <code>GetDeploymentInstance</code> operation. ",
  "type": "object",
  "properties": {
    "deploymentId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentId"
        },
        {
          "description": " The unique ID of a deployment. "
        }
      ]
    },
    "instanceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceId"
        },
        {
          "description": " The unique ID of an instance in the deployment group. "
        }
      ]
    }
  },
  "required": [
    "deploymentId",
    "instanceId"
  ]
}