pub struct S3ReportExportConfig {
pub bucket: Option<String>,
pub bucket_owner: Option<String>,
pub encryption_disabled: Option<bool>,
pub encryption_key: Option<String>,
pub packaging: Option<String>,
pub path: Option<String>,
}
Expand description
Information about the S3 bucket where the raw data of a report are exported.
Fields§
§bucket: Option<String>
The name of the S3 bucket where the raw data of a report are exported.
bucket_owner: Option<String>
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.
encryption_disabled: Option<bool>
A boolean value that specifies if the results of a report are encrypted.
encryption_key: Option<String>
The encryption key for the report's encrypted raw data.
packaging: Option<String>
The type of build output artifact to create. Valid values include:
-
NONE
: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. -
ZIP
: CodeBuild creates a ZIP file with the raw data in the output bucket.
path: Option<String>
The path to the exported report's raw data results.
Trait Implementations§
Source§impl Clone for S3ReportExportConfig
impl Clone for S3ReportExportConfig
Source§fn clone(&self) -> S3ReportExportConfig
fn clone(&self) -> S3ReportExportConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more