Amazon CodeDeploy · Schema

ListApplicationRevisionsOutput

Represents the output of a ListApplicationRevisions operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

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

JSON Schema

amazon-codedeploy-list-application-revisions-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-application-revisions-output-schema.json",
  "title": "ListApplicationRevisionsOutput",
  "description": "Represents the output of a <code>ListApplicationRevisions</code> operation.",
  "type": "object",
  "properties": {
    "revisions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionLocationList"
        },
        {
          "description": "A list of locations that contain the matching revisions."
        }
      ]
    },
    "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 application revisions call to return the next set of application revisions in the list."
        }
      ]
    }
  }
}