Amazon CodeDeploy · Schema

GetDeploymentGroupInput

Represents the input of a GetDeploymentGroup operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
applicationName object
deploymentGroupName object
View JSON Schema on GitHub

JSON Schema

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