ApprovalResult

Represents information about the result of an approval request.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
summary object
status object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-approval-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-approval-result-schema.json",
  "title": "ApprovalResult",
  "description": "Represents information about the result of an approval request.",
  "type": "object",
  "properties": {
    "summary": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApprovalSummary"
        },
        {
          "description": "The summary of the current status of the approval request."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApprovalStatus"
        },
        {
          "description": "The response submitted by a reviewer assigned to an approval action request."
        }
      ]
    }
  },
  "required": [
    "summary",
    "status"
  ]
}