Struct aws_sdk_s3control::model::JobReport
source · [−]#[non_exhaustive]pub struct JobReport {
pub bucket: Option<String>,
pub format: Option<JobReportFormat>,
pub enabled: bool,
pub prefix: Option<String>,
pub report_scope: Option<JobReportScope>,
}
Expand description
Contains the configuration parameters for a job-completion report.
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 Amazon Resource Name (ARN) for the bucket where specified job-completion report will be stored.
format: Option<JobReportFormat>
The format of the specified job-completion report.
enabled: bool
Indicates whether the specified job will generate a job-completion report.
prefix: Option<String>
An optional prefix to describe where in the specified bucket the job-completion report will be stored. Amazon S3 stores the job-completion report at
.
report_scope: Option<JobReportScope>
Indicates whether the job-completion report will include details of all tasks or only failed tasks.
Implementations
sourceimpl JobReport
impl JobReport
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the bucket where specified job-completion report will be stored.
sourcepub fn format(&self) -> Option<&JobReportFormat>
pub fn format(&self) -> Option<&JobReportFormat>
The format of the specified job-completion report.
sourcepub fn enabled(&self) -> bool
pub fn enabled(&self) -> bool
Indicates whether the specified job will generate a job-completion report.
sourcepub fn prefix(&self) -> Option<&str>
pub fn prefix(&self) -> Option<&str>
An optional prefix to describe where in the specified bucket the job-completion report will be stored. Amazon S3 stores the job-completion report at
.
sourcepub fn report_scope(&self) -> Option<&JobReportScope>
pub fn report_scope(&self) -> Option<&JobReportScope>
Indicates whether the job-completion report will include details of all tasks or only failed tasks.
Trait Implementations
impl StructuralPartialEq for JobReport
Auto Trait Implementations
impl RefUnwindSafe for JobReport
impl Send for JobReport
impl Sync for JobReport
impl Unpin for JobReport
impl UnwindSafe for JobReport
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