Struct aws_sdk_codebuild::model::S3ReportExportConfig
source · [−]#[non_exhaustive]pub struct S3ReportExportConfig {
pub bucket: Option<String>,
pub bucket_owner: Option<String>,
pub path: Option<String>,
pub packaging: Option<ReportPackagingType>,
pub encryption_key: Option<String>,
pub encryption_disabled: Option<bool>,
}
Expand description
Information about the S3 bucket where the raw data of a report are exported.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
path: Option<String>
The path to the exported report's raw data results.
packaging: 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.
encryption_key: Option<String>
The encryption key for the report's encrypted raw data.
encryption_disabled: Option<bool>
A boolean value that specifies if the results of a report are encrypted.
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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for S3ReportExportConfig
impl Debug for S3ReportExportConfig
sourceimpl PartialEq<S3ReportExportConfig> for S3ReportExportConfig
impl PartialEq<S3ReportExportConfig> for S3ReportExportConfig
sourcefn eq(&self, other: &S3ReportExportConfig) -> bool
fn eq(&self, other: &S3ReportExportConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &S3ReportExportConfig) -> bool
fn ne(&self, other: &S3ReportExportConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for S3ReportExportConfig
Auto Trait Implementations
impl RefUnwindSafe for S3ReportExportConfig
impl Send for S3ReportExportConfig
impl Sync for S3ReportExportConfig
impl Unpin for S3ReportExportConfig
impl UnwindSafe for S3ReportExportConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more