{ "$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": "

The export configuration type. Valid values are:

" } ] }, "s3Destination": { "allOf": [ { "$ref": "#/components/schemas/S3ReportExportConfig" }, { "description": " A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported. " } ] } } }