{ "$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-deployment-groups-output-schema.json", "title": "ListDeploymentGroupsOutput", "description": "Represents the output of a ListDeploymentGroups 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." } ] } } }