Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Get Deployment Group Input Structure

Represents the input of a GetDeploymentGroup operation.

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

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

Properties

applicationName deploymentGroupName

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-get-deployment-group-input-structure.json",
  "name": "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"
  ]
}