Amazon CodeDeploy · Schema

ListOnPremisesInstancesOutput

Represents the output of the list on-premises instances operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

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

JSON Schema

amazon-codedeploy-list-on-premises-instances-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-on-premises-instances-output-schema.json",
  "title": "ListOnPremisesInstancesOutput",
  "description": "Represents the output of the list on-premises instances operation.",
  "type": "object",
  "properties": {
    "instanceNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceNameList"
        },
        {
          "description": "The list of matching on-premises instance names."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list on-premises instances call to return the next set of on-premises instances in the list."
        }
      ]
    }
  }
}