{ "$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-get-deployment-group-input-schema.json", "title": "GetDeploymentGroupInput", "description": "Represents the input of a GetDeploymentGroup 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." } ] }, "deploymentGroupName": { "allOf": [ { "$ref": "#/components/schemas/DeploymentGroupName" }, { "description": "The name of a deployment group for the specified application." } ] } }, "required": [ "applicationName", "deploymentGroupName" ] }