Struct aws_sdk_quicksight::types::SnapshotConfiguration
source · #[non_exhaustive]pub struct SnapshotConfiguration {
pub file_groups: Vec<SnapshotFileGroup>,
pub destination_configuration: Option<SnapshotDestinationConfiguration>,
pub parameters: Option<Parameters>,
}
Expand description
Describes the configuration of the dashboard snapshot.
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.file_groups: Vec<SnapshotFileGroup>
A list of SnapshotJobResultFileGroup
objects that contain information about the snapshot that is generated. This list can hold a maximum of 6 FileGroup
configurations.
destination_configuration: Option<SnapshotDestinationConfiguration>
A structure that contains information on the Amazon S3 bucket that the generated snapshot is stored in.
parameters: Option<Parameters>
A list of Amazon QuickSight parameters and the list's override values.
Implementations§
source§impl SnapshotConfiguration
impl SnapshotConfiguration
sourcepub fn file_groups(&self) -> &[SnapshotFileGroup]
pub fn file_groups(&self) -> &[SnapshotFileGroup]
A list of SnapshotJobResultFileGroup
objects that contain information about the snapshot that is generated. This list can hold a maximum of 6 FileGroup
configurations.
sourcepub fn destination_configuration(
&self,
) -> Option<&SnapshotDestinationConfiguration>
pub fn destination_configuration( &self, ) -> Option<&SnapshotDestinationConfiguration>
A structure that contains information on the Amazon S3 bucket that the generated snapshot is stored in.
sourcepub fn parameters(&self) -> Option<&Parameters>
pub fn parameters(&self) -> Option<&Parameters>
A list of Amazon QuickSight parameters and the list's override values.
source§impl SnapshotConfiguration
impl SnapshotConfiguration
sourcepub fn builder() -> SnapshotConfigurationBuilder
pub fn builder() -> SnapshotConfigurationBuilder
Creates a new builder-style object to manufacture SnapshotConfiguration
.
Trait Implementations§
source§impl Clone for SnapshotConfiguration
impl Clone for SnapshotConfiguration
source§fn clone(&self) -> SnapshotConfiguration
fn clone(&self) -> SnapshotConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SnapshotConfiguration
impl Debug for SnapshotConfiguration
source§impl PartialEq for SnapshotConfiguration
impl PartialEq for SnapshotConfiguration
impl StructuralPartialEq for SnapshotConfiguration
Auto Trait Implementations§
impl Freeze for SnapshotConfiguration
impl RefUnwindSafe for SnapshotConfiguration
impl Send for SnapshotConfiguration
impl Sync for SnapshotConfiguration
impl Unpin for SnapshotConfiguration
impl UnwindSafe for SnapshotConfiguration
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more