Amazon CodeDeploy · Schema

ListApplicationsOutput

Represents the output of a ListApplications operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

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

JSON Schema

amazon-codedeploy-list-applications-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-applications-output-schema.json",
  "title": "ListApplicationsOutput",
  "description": "Represents the output of a ListApplications operation.",
  "type": "object",
  "properties": {
    "applications": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationsList"
        },
        {
          "description": "A list of application 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 applications call to return the next set of applications in the list."
        }
      ]
    }
  }
}