#[non_exhaustive]pub struct CreateBackupOutputBuilder { /* private fields */ }Expand description
A builder for CreateBackupOutput.
Implementations§
source§impl CreateBackupOutputBuilder
 
impl CreateBackupOutputBuilder
sourcepub fn backup_details(self, input: BackupDetails) -> Self
 
pub fn backup_details(self, input: BackupDetails) -> Self
Contains the details of the backup created for the table.
sourcepub fn set_backup_details(self, input: Option<BackupDetails>) -> Self
 
pub fn set_backup_details(self, input: Option<BackupDetails>) -> Self
Contains the details of the backup created for the table.
sourcepub fn get_backup_details(&self) -> &Option<BackupDetails>
 
pub fn get_backup_details(&self) -> &Option<BackupDetails>
Contains the details of the backup created for the table.
sourcepub fn build(self) -> CreateBackupOutput
 
pub fn build(self) -> CreateBackupOutput
Consumes the builder and constructs a CreateBackupOutput.
Trait Implementations§
source§impl Clone for CreateBackupOutputBuilder
 
impl Clone for CreateBackupOutputBuilder
source§fn clone(&self) -> CreateBackupOutputBuilder
 
fn clone(&self) -> CreateBackupOutputBuilder
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 CreateBackupOutputBuilder
 
impl Debug for CreateBackupOutputBuilder
source§impl Default for CreateBackupOutputBuilder
 
impl Default for CreateBackupOutputBuilder
source§fn default() -> CreateBackupOutputBuilder
 
fn default() -> CreateBackupOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateBackupOutputBuilder
 
impl PartialEq for CreateBackupOutputBuilder
source§fn eq(&self, other: &CreateBackupOutputBuilder) -> bool
 
fn eq(&self, other: &CreateBackupOutputBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateBackupOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateBackupOutputBuilder
impl RefUnwindSafe for CreateBackupOutputBuilder
impl Send for CreateBackupOutputBuilder
impl Sync for CreateBackupOutputBuilder
impl Unpin for CreateBackupOutputBuilder
impl UnwindSafe for CreateBackupOutputBuilder
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts 
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>
Converts 
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 moreCreates a shared type from an unshared type.