Struct aws_sdk_computeoptimizer::types::ExportDestination
source · #[non_exhaustive]pub struct ExportDestination {
pub s3: Option<S3Destination>,
}
Expand description
Describes the destination of the recommendations export and metadata files.
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.s3: Option<S3Destination>
An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
Implementations§
source§impl ExportDestination
impl ExportDestination
sourcepub fn s3(&self) -> Option<&S3Destination>
pub fn s3(&self) -> Option<&S3Destination>
An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
source§impl ExportDestination
impl ExportDestination
sourcepub fn builder() -> ExportDestinationBuilder
pub fn builder() -> ExportDestinationBuilder
Creates a new builder-style object to manufacture ExportDestination
.
Trait Implementations§
source§impl Clone for ExportDestination
impl Clone for ExportDestination
source§fn clone(&self) -> ExportDestination
fn clone(&self) -> ExportDestination
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 ExportDestination
impl Debug for ExportDestination
source§impl PartialEq for ExportDestination
impl PartialEq for ExportDestination
source§fn eq(&self, other: &ExportDestination) -> bool
fn eq(&self, other: &ExportDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExportDestination
Auto Trait Implementations§
impl RefUnwindSafe for ExportDestination
impl Send for ExportDestination
impl Sync for ExportDestination
impl Unpin for ExportDestination
impl UnwindSafe for ExportDestination
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.