pub struct S3ReportExportConfig {
pub bucket: 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.
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
: AWS CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. -
ZIP
: AWS 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
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for S3ReportExportConfig
impl Debug for S3ReportExportConfig
Source§impl Default for S3ReportExportConfig
impl Default for S3ReportExportConfig
Source§fn default() -> S3ReportExportConfig
fn default() -> S3ReportExportConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3ReportExportConfig
impl<'de> Deserialize<'de> for S3ReportExportConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for S3ReportExportConfig
impl PartialEq for S3ReportExportConfig
Source§impl Serialize for S3ReportExportConfig
impl Serialize for S3ReportExportConfig
impl StructuralPartialEq for S3ReportExportConfig
Auto Trait Implementations§
impl Freeze for S3ReportExportConfig
impl RefUnwindSafe for S3ReportExportConfig
impl Send for S3ReportExportConfig
impl Sync for S3ReportExportConfig
impl Unpin for S3ReportExportConfig
impl UnwindSafe for S3ReportExportConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more