Amazon CodeDeploy · Schema

GetApplicationRevisionOutput

Represents the output of a GetApplicationRevision operation.

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
applicationName object
revision object
revisionInfo object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-get-application-revision-output-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-application-revision-output-schema.json",
  "title": "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."
        }
      ]
    }
  }
}