Amazon CodeBuild · Schema

ReportExportConfig

Information about the location where the run of a report is exported.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
exportConfigType object
s3Destination object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-report-export-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-report-export-config-schema.json",
  "title": "ReportExportConfig",
  "description": " Information about the location where the run of a report is exported. ",
  "type": "object",
  "properties": {
    "exportConfigType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportExportConfigType"
        },
        {
          "description": "<p> The export configuration type. Valid values are: </p> <ul> <li> <p> <code>S3</code>: The report results are exported to an S3 bucket. </p> </li> <li> <p> <code>NO_EXPORT</code>: The report results are not exported. </p> </li> </ul>"
        }
      ]
    },
    "s3Destination": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3ReportExportConfig"
        },
        {
          "description": " A <code>S3ReportExportConfig</code> object that contains information about the S3 bucket where the run of a report is exported. "
        }
      ]
    }
  }
}