Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Batch Get Application Revisions Input Structure

Represents the input of a BatchGetApplicationRevisions operation.

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

BatchGetApplicationRevisionsInput 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 revisions

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-batch-get-application-revisions-input-structure.json",
  "name": "BatchGetApplicationRevisionsInput",
  "description": "Represents the input of a <code>BatchGetApplicationRevisions</code> operation.",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of an CodeDeploy application about which to get revision information."
        }
      ]
    },
    "revisions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionLocationList"
        },
        {
          "description": "An array of <code>RevisionLocation</code> objects that specify information to get about the application revisions, including type and location. The maximum number of <code>RevisionLocation</code> objects you can specify is 25."
        }
      ]
    }
  },
  "required": [
    "applicationName",
    "revisions"
  ]
}