#[non_exhaustive]pub struct CreateFindingsReportInput {
pub filter_criteria: Option<FilterCriteria>,
pub report_format: Option<ReportFormat>,
pub s3_destination: Option<Destination>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.filter_criteria: Option<FilterCriteria>The filter criteria to apply to the results of the finding report.
report_format: Option<ReportFormat>The format to generate the report in.
s3_destination: Option<Destination>The Amazon S3 export destination for the report.
Implementations§
source§impl CreateFindingsReportInput
impl CreateFindingsReportInput
sourcepub fn filter_criteria(&self) -> Option<&FilterCriteria>
pub fn filter_criteria(&self) -> Option<&FilterCriteria>
The filter criteria to apply to the results of the finding report.
sourcepub fn report_format(&self) -> Option<&ReportFormat>
pub fn report_format(&self) -> Option<&ReportFormat>
The format to generate the report in.
sourcepub fn s3_destination(&self) -> Option<&Destination>
pub fn s3_destination(&self) -> Option<&Destination>
The Amazon S3 export destination for the report.
source§impl CreateFindingsReportInput
impl CreateFindingsReportInput
sourcepub fn builder() -> CreateFindingsReportInputBuilder
pub fn builder() -> CreateFindingsReportInputBuilder
Creates a new builder-style object to manufacture CreateFindingsReportInput.
Trait Implementations§
source§impl Clone for CreateFindingsReportInput
impl Clone for CreateFindingsReportInput
source§fn clone(&self) -> CreateFindingsReportInput
fn clone(&self) -> CreateFindingsReportInput
Returns a copy 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 CreateFindingsReportInput
impl Debug for CreateFindingsReportInput
source§impl PartialEq for CreateFindingsReportInput
impl PartialEq for CreateFindingsReportInput
source§fn eq(&self, other: &CreateFindingsReportInput) -> bool
fn eq(&self, other: &CreateFindingsReportInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateFindingsReportInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateFindingsReportInput
impl Send for CreateFindingsReportInput
impl Sync for CreateFindingsReportInput
impl Unpin for CreateFindingsReportInput
impl UnwindSafe for CreateFindingsReportInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.