{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-s3-report-export-config-structure.json", "name": "S3ReportExportConfig", "description": " Information about the S3 bucket where the raw data of a report are exported. ", "type": "object", "properties": { "bucket": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": " The name of the S3 bucket where the raw data of a report are exported. " } ] }, "bucketOwner": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The Amazon Web Services account identifier of the owner of the Amazon S3 bucket. This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build." } ] }, "path": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " The path to the exported report's raw data results. " } ] }, "packaging": { "allOf": [ { "$ref": "#/components/schemas/ReportPackagingType" }, { "description": "

The type of build output artifact to create. Valid values include:

" } ] }, "encryptionKey": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": " The encryption key for the report's encrypted raw data. " } ] }, "encryptionDisabled": { "allOf": [ { "$ref": "#/components/schemas/WrapperBoolean" }, { "description": " A boolean value that specifies if the results of a report are encrypted. " } ] } } }