Amazon CodeDeploy · JSON Structure

Amazon Codedeploy List Applications Output Structure

Represents the output of a ListApplications operation.

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

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

Properties

applications nextToken

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-list-applications-output-structure.json",
  "name": "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."
        }
      ]
    }
  }
}