Amazon CodeDeploy · JSON Structure

Amazon Codedeploy List Deployment Groups Input Structure

Represents the input of a ListDeploymentGroups operation.

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

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

Properties

applicationName 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-input-structure.json",
  "name": "ListDeploymentGroupsInput",
  "description": "Represents the input of a <code>ListDeploymentGroups</code> operation.",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "An identifier returned from the previous list deployment groups call. It can be used to return the next set of deployment groups in the list."
        }
      ]
    }
  },
  "required": [
    "applicationName"
  ]
}