#[non_exhaustive]pub struct CreateSbomExportInput {
pub resource_filter_criteria: Option<ResourceFilterCriteria>,
pub report_format: Option<SbomReportFormat>,
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.resource_filter_criteria: Option<ResourceFilterCriteria>The resource filter criteria for the software bill of materials (SBOM) report.
report_format: Option<SbomReportFormat>The output format for the software bill of materials (SBOM) report.
s3_destination: Option<Destination>Contains details of the Amazon S3 bucket and KMS key used to export findings.
Implementations§
source§impl CreateSbomExportInput
impl CreateSbomExportInput
sourcepub fn resource_filter_criteria(&self) -> Option<&ResourceFilterCriteria>
pub fn resource_filter_criteria(&self) -> Option<&ResourceFilterCriteria>
The resource filter criteria for the software bill of materials (SBOM) report.
sourcepub fn report_format(&self) -> Option<&SbomReportFormat>
pub fn report_format(&self) -> Option<&SbomReportFormat>
The output format for the software bill of materials (SBOM) report.
sourcepub fn s3_destination(&self) -> Option<&Destination>
pub fn s3_destination(&self) -> Option<&Destination>
Contains details of the Amazon S3 bucket and KMS key used to export findings.
source§impl CreateSbomExportInput
impl CreateSbomExportInput
sourcepub fn builder() -> CreateSbomExportInputBuilder
pub fn builder() -> CreateSbomExportInputBuilder
Creates a new builder-style object to manufacture CreateSbomExportInput.
Trait Implementations§
source§impl Clone for CreateSbomExportInput
impl Clone for CreateSbomExportInput
source§fn clone(&self) -> CreateSbomExportInput
fn clone(&self) -> CreateSbomExportInput
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 CreateSbomExportInput
impl Debug for CreateSbomExportInput
source§impl PartialEq for CreateSbomExportInput
impl PartialEq for CreateSbomExportInput
source§fn eq(&self, other: &CreateSbomExportInput) -> bool
fn eq(&self, other: &CreateSbomExportInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateSbomExportInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateSbomExportInput
impl Send for CreateSbomExportInput
impl Sync for CreateSbomExportInput
impl Unpin for CreateSbomExportInput
impl UnwindSafe for CreateSbomExportInput
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.