Amazon CodeDeploy · Schema

GetDeploymentConfigInput

Represents the input of a GetDeploymentConfig operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
deploymentConfigName object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-get-deployment-config-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-config-input-schema.json",
  "title": "GetDeploymentConfigInput",
  "description": "Represents the input of a <code>GetDeploymentConfig</code> operation.",
  "type": "object",
  "properties": {
    "deploymentConfigName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentConfigName"
        },
        {
          "description": "The name of a deployment configuration associated with the IAM user or Amazon Web Services account."
        }
      ]
    }
  },
  "required": [
    "deploymentConfigName"
  ]
}