Struct aws_sdk_backup::operation::list_backup_vaults::builders::ListBackupVaultsInputBuilder
source · #[non_exhaustive]pub struct ListBackupVaultsInputBuilder { /* private fields */ }
Expand description
A builder for ListBackupVaultsInput
.
Implementations§
source§impl ListBackupVaultsInputBuilder
impl ListBackupVaultsInputBuilder
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 max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to be returned.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to be returned.
sourcepub fn build(self) -> Result<ListBackupVaultsInput, BuildError>
pub fn build(self) -> Result<ListBackupVaultsInput, BuildError>
Consumes the builder and constructs a ListBackupVaultsInput
.
Trait Implementations§
source§impl Clone for ListBackupVaultsInputBuilder
impl Clone for ListBackupVaultsInputBuilder
source§fn clone(&self) -> ListBackupVaultsInputBuilder
fn clone(&self) -> ListBackupVaultsInputBuilder
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 ListBackupVaultsInputBuilder
impl Debug for ListBackupVaultsInputBuilder
source§impl Default for ListBackupVaultsInputBuilder
impl Default for ListBackupVaultsInputBuilder
source§fn default() -> ListBackupVaultsInputBuilder
fn default() -> ListBackupVaultsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListBackupVaultsInputBuilder> for ListBackupVaultsInputBuilder
impl PartialEq<ListBackupVaultsInputBuilder> for ListBackupVaultsInputBuilder
source§fn eq(&self, other: &ListBackupVaultsInputBuilder) -> bool
fn eq(&self, other: &ListBackupVaultsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListBackupVaultsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListBackupVaultsInputBuilder
impl Send for ListBackupVaultsInputBuilder
impl Sync for ListBackupVaultsInputBuilder
impl Unpin for ListBackupVaultsInputBuilder
impl UnwindSafe for ListBackupVaultsInputBuilder
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