Amazon CodeDeploy · Schema

ListDeploymentTargetsOutput

ListDeploymentTargetsOutput schema from Amazon CodeDeploy

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
targetIds object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-list-deployment-targets-output-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-list-deployment-targets-output-schema.json",
  "title": "ListDeploymentTargetsOutput",
  "description": "ListDeploymentTargetsOutput schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "targetIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetIdList"
        },
        {
          "description": " The unique IDs of deployment targets. "
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": " If a large amount of information is returned, a token identifier is also returned. It can be used in a subsequent <code>ListDeploymentTargets</code> call to return the next set of deployment targets in the list. "
        }
      ]
    }
  }
}