Amazon CodePipeline · JSON Structure

Amazon Codepipeline Action Revision Structure

Represents information about the version (or revision) of an action.

Type: object Properties: 3 Required: 3
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

ActionRevision is a JSON Structure definition published by Amazon CodePipeline, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

revisionId revisionChangeId created

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-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-action-revision-structure.json",
  "name": "ActionRevision",
  "description": "Represents information about the version (or revision) of an action.",
  "type": "object",
  "properties": {
    "revisionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Revision"
        },
        {
          "description": "The system-generated unique ID that identifies the revision number of the action."
        }
      ]
    },
    "revisionChangeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RevisionChangeIdentifier"
        },
        {
          "description": "The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp)."
        }
      ]
    },
    "created": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the most recent version of the action was created, in timestamp format."
        }
      ]
    }
  },
  "required": [
    "revisionId",
    "revisionChangeId",
    "created"
  ]
}