Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Get Application Revision Input Structure

Represents the input of a GetApplicationRevision operation.

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

GetApplicationRevisionInput 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 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-get-application-revision-input-structure.json",
  "name": "GetApplicationRevisionInput",
  "description": "Represents the input of a <code>GetApplicationRevision</code> operation.",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of the application that corresponds to the revision."
        }
      ]
    },
    "revision": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionLocation"
        },
        {
          "description": "Information about the application revision to get, including type and location."
        }
      ]
    }
  },
  "required": [
    "applicationName",
    "revision"
  ]
}