Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Register Application Revision Input Structure

Represents the input of a RegisterApplicationRevision operation.

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

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

Properties

applicationName description revision

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-register-application-revision-input-structure.json",
  "name": "RegisterApplicationRevisionInput",
  "description": "Represents the input of a RegisterApplicationRevision 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."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "A comment about the revision."
        }
      ]
    },
    "revision": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionLocation"
        },
        {
          "description": "Information about the application revision to register, including type and location."
        }
      ]
    }
  },
  "required": [
    "applicationName",
    "revision"
  ]
}