Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Get Application Revision Output Structure

Represents the output of a GetApplicationRevision operation.

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

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

Properties

applicationName revision revisionInfo

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-output-structure.json",
  "name": "GetApplicationRevisionOutput",
  "description": "Represents the output 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": "Additional information about the revision, including type and location."
        }
      ]
    },
    "revisionInfo": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericRevisionInfo"
        },
        {
          "description": "General information about the revision."
        }
      ]
    }
  }
}