Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Generic Revision Info Structure

Information about an application revision.

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

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

Properties

description deploymentGroups firstUsedTime lastUsedTime registerTime

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-generic-revision-info-structure.json",
  "name": "GenericRevisionInfo",
  "description": "Information about an application revision.",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "A comment about the revision."
        }
      ]
    },
    "deploymentGroups": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentGroupsList"
        },
        {
          "description": "The deployment groups for which this is the current target revision."
        }
      ]
    },
    "firstUsedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "When the revision was first used by CodeDeploy."
        }
      ]
    },
    "lastUsedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "When the revision was last used by CodeDeploy."
        }
      ]
    },
    "registerTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "When the revision was registered with CodeDeploy."
        }
      ]
    }
  }
}