#[non_exhaustive]pub struct AssessmentReportsDestination {
pub destination_type: Option<AssessmentReportDestinationType>,
pub destination: Option<String>,
}
Expand description
The location where Audit Manager saves assessment reports for the given assessment.
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.destination_type: Option<AssessmentReportDestinationType>
The destination type, such as Amazon S3.
destination: Option<String>
The destination bucket where Audit Manager stores assessment reports.
Implementations§
source§impl AssessmentReportsDestination
impl AssessmentReportsDestination
sourcepub fn destination_type(&self) -> Option<&AssessmentReportDestinationType>
pub fn destination_type(&self) -> Option<&AssessmentReportDestinationType>
The destination type, such as Amazon S3.
sourcepub fn destination(&self) -> Option<&str>
pub fn destination(&self) -> Option<&str>
The destination bucket where Audit Manager stores assessment reports.
source§impl AssessmentReportsDestination
impl AssessmentReportsDestination
sourcepub fn builder() -> AssessmentReportsDestinationBuilder
pub fn builder() -> AssessmentReportsDestinationBuilder
Creates a new builder-style object to manufacture AssessmentReportsDestination
.
Trait Implementations§
source§impl Clone for AssessmentReportsDestination
impl Clone for AssessmentReportsDestination
source§fn clone(&self) -> AssessmentReportsDestination
fn clone(&self) -> AssessmentReportsDestination
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 AssessmentReportsDestination
impl Debug for AssessmentReportsDestination
source§impl PartialEq for AssessmentReportsDestination
impl PartialEq for AssessmentReportsDestination
source§fn eq(&self, other: &AssessmentReportsDestination) -> bool
fn eq(&self, other: &AssessmentReportsDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssessmentReportsDestination
Auto Trait Implementations§
impl RefUnwindSafe for AssessmentReportsDestination
impl Send for AssessmentReportsDestination
impl Sync for AssessmentReportsDestination
impl Unpin for AssessmentReportsDestination
impl UnwindSafe for AssessmentReportsDestination
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.