Amazon CodeDeploy · JSON Structure

Amazon Codedeploy List Deployment Groups Output Structure

Represents the output of a ListDeploymentGroups operation.

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

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

Properties

applicationName deploymentGroups 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-deployment-groups-output-structure.json",
  "name": "ListDeploymentGroupsOutput",
  "description": "Represents the output of a <code>ListDeploymentGroups</code> operation.",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The application name."
        }
      ]
    },
    "deploymentGroups": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentGroupsList"
        },
        {
          "description": "A list of deployment group 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 deployment groups call to return the next set of deployment groups in the list."
        }
      ]
    }
  }
}