#[non_exhaustive]pub struct DeleteFileSystemWindowsConfigurationBuilder { /* private fields */ }
Expand description
A builder for DeleteFileSystemWindowsConfiguration
.
Implementations§
source§impl DeleteFileSystemWindowsConfigurationBuilder
impl DeleteFileSystemWindowsConfigurationBuilder
sourcepub fn skip_final_backup(self, input: bool) -> Self
pub fn skip_final_backup(self, input: bool) -> Self
By default, Amazon FSx for Windows takes a final backup on your behalf when the DeleteFileSystem
operation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.
sourcepub fn set_skip_final_backup(self, input: Option<bool>) -> Self
pub fn set_skip_final_backup(self, input: Option<bool>) -> Self
By default, Amazon FSx for Windows takes a final backup on your behalf when the DeleteFileSystem
operation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.
sourcepub fn get_skip_final_backup(&self) -> &Option<bool>
pub fn get_skip_final_backup(&self) -> &Option<bool>
By default, Amazon FSx for Windows takes a final backup on your behalf when the DeleteFileSystem
operation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.
Appends an item to final_backup_tags
.
To override the contents of this collection use set_final_backup_tags
.
A set of tags for your final backup.
A set of tags for your final backup.
A set of tags for your final backup.
sourcepub fn build(self) -> DeleteFileSystemWindowsConfiguration
pub fn build(self) -> DeleteFileSystemWindowsConfiguration
Consumes the builder and constructs a DeleteFileSystemWindowsConfiguration
.
Trait Implementations§
source§impl Clone for DeleteFileSystemWindowsConfigurationBuilder
impl Clone for DeleteFileSystemWindowsConfigurationBuilder
source§fn clone(&self) -> DeleteFileSystemWindowsConfigurationBuilder
fn clone(&self) -> DeleteFileSystemWindowsConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DeleteFileSystemWindowsConfigurationBuilder
impl Default for DeleteFileSystemWindowsConfigurationBuilder
source§fn default() -> DeleteFileSystemWindowsConfigurationBuilder
fn default() -> DeleteFileSystemWindowsConfigurationBuilder
source§impl PartialEq for DeleteFileSystemWindowsConfigurationBuilder
impl PartialEq for DeleteFileSystemWindowsConfigurationBuilder
source§fn eq(&self, other: &DeleteFileSystemWindowsConfigurationBuilder) -> bool
fn eq(&self, other: &DeleteFileSystemWindowsConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteFileSystemWindowsConfigurationBuilder
Auto Trait Implementations§
impl Freeze for DeleteFileSystemWindowsConfigurationBuilder
impl RefUnwindSafe for DeleteFileSystemWindowsConfigurationBuilder
impl Send for DeleteFileSystemWindowsConfigurationBuilder
impl Sync for DeleteFileSystemWindowsConfigurationBuilder
impl Unpin for DeleteFileSystemWindowsConfigurationBuilder
impl UnwindSafe for DeleteFileSystemWindowsConfigurationBuilder
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> 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