#[non_exhaustive]pub struct ListBackupPlansOutputBuilder { /* private fields */ }
Expand description
A builder for ListBackupPlansOutput
.
Implementations§
source§impl ListBackupPlansOutputBuilder
impl ListBackupPlansOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The next item following a partial list of returned items. For example, if a request is made to return MaxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The next item following a partial list of returned items. For example, if a request is made to return MaxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The next item following a partial list of returned items. For example, if a request is made to return MaxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
sourcepub fn backup_plans_list(self, input: BackupPlansListMember) -> Self
pub fn backup_plans_list(self, input: BackupPlansListMember) -> Self
Appends an item to backup_plans_list
.
To override the contents of this collection use set_backup_plans_list
.
Information about the backup plans.
sourcepub fn set_backup_plans_list(
self,
input: Option<Vec<BackupPlansListMember>>,
) -> Self
pub fn set_backup_plans_list( self, input: Option<Vec<BackupPlansListMember>>, ) -> Self
Information about the backup plans.
sourcepub fn get_backup_plans_list(&self) -> &Option<Vec<BackupPlansListMember>>
pub fn get_backup_plans_list(&self) -> &Option<Vec<BackupPlansListMember>>
Information about the backup plans.
sourcepub fn build(self) -> ListBackupPlansOutput
pub fn build(self) -> ListBackupPlansOutput
Consumes the builder and constructs a ListBackupPlansOutput
.
Trait Implementations§
source§impl Clone for ListBackupPlansOutputBuilder
impl Clone for ListBackupPlansOutputBuilder
source§fn clone(&self) -> ListBackupPlansOutputBuilder
fn clone(&self) -> ListBackupPlansOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListBackupPlansOutputBuilder
impl Debug for ListBackupPlansOutputBuilder
source§impl Default for ListBackupPlansOutputBuilder
impl Default for ListBackupPlansOutputBuilder
source§fn default() -> ListBackupPlansOutputBuilder
fn default() -> ListBackupPlansOutputBuilder
source§impl PartialEq for ListBackupPlansOutputBuilder
impl PartialEq for ListBackupPlansOutputBuilder
source§fn eq(&self, other: &ListBackupPlansOutputBuilder) -> bool
fn eq(&self, other: &ListBackupPlansOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListBackupPlansOutputBuilder
Auto Trait Implementations§
impl Freeze for ListBackupPlansOutputBuilder
impl RefUnwindSafe for ListBackupPlansOutputBuilder
impl Send for ListBackupPlansOutputBuilder
impl Sync for ListBackupPlansOutputBuilder
impl Unpin for ListBackupPlansOutputBuilder
impl UnwindSafe for ListBackupPlansOutputBuilder
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