Amazon CodeDeploy · Schema

BatchGetDeploymentGroupsInput

Represents the input of a BatchGetDeploymentGroups operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

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

JSON Schema

amazon-codedeploy-batch-get-deployment-groups-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-batch-get-deployment-groups-input-schema.json",
  "title": "BatchGetDeploymentGroupsInput",
  "description": "Represents the input of a <code>BatchGetDeploymentGroups</code> operation.",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of an CodeDeploy application associated with the applicable IAM or Amazon Web Services account."
        }
      ]
    },
    "deploymentGroupNames": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentGroupsList"
        },
        {
          "description": "The names of the deployment groups."
        }
      ]
    }
  },
  "required": [
    "applicationName",
    "deploymentGroupNames"
  ]
}