Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Get Deployment Instance Input Structure

Represents the input of a GetDeploymentInstance operation.

Type: object Properties: 2 Required: 2
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

GetDeploymentInstanceInput is a JSON Structure definition published by Amazon CodeDeploy, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

deploymentId instanceId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-get-deployment-instance-input-structure.json",
  "name": "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"
  ]
}