Struct aws_sdk_codebuild::model::S3ReportExportConfig
source · [−]#[non_exhaustive]pub struct S3ReportExportConfig { /* private fields */ }
Expand description
Information about the S3 bucket where the raw data of a report are exported.
Implementations
sourceimpl S3ReportExportConfig
impl S3ReportExportConfig
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The name of the S3 bucket where the raw data of a report are exported.
sourcepub fn bucket_owner(&self) -> Option<&str>
pub fn bucket_owner(&self) -> Option<&str>
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.
sourcepub fn packaging(&self) -> Option<&ReportPackagingType>
pub fn packaging(&self) -> Option<&ReportPackagingType>
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.
sourcepub fn encryption_key(&self) -> Option<&str>
pub fn encryption_key(&self) -> Option<&str>
The encryption key for the report's encrypted raw data.
sourcepub fn encryption_disabled(&self) -> Option<bool>
pub fn encryption_disabled(&self) -> Option<bool>
A boolean value that specifies if the results of a report are encrypted.
sourceimpl S3ReportExportConfig
impl S3ReportExportConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3ReportExportConfig
.
Trait Implementations
sourceimpl Clone for S3ReportExportConfig
impl Clone for S3ReportExportConfig
sourcefn clone(&self) -> S3ReportExportConfig
fn clone(&self) -> S3ReportExportConfig
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more