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 by_vault_type(self, input: VaultType) -> Self
pub fn by_vault_type(self, input: VaultType) -> Self
This parameter will sort the list of vaults by vault type.
sourcepub fn set_by_vault_type(self, input: Option<VaultType>) -> Self
pub fn set_by_vault_type(self, input: Option<VaultType>) -> Self
This parameter will sort the list of vaults by vault type.
sourcepub fn get_by_vault_type(&self) -> &Option<VaultType>
pub fn get_by_vault_type(&self) -> &Option<VaultType>
This parameter will sort the list of vaults by vault type.
This parameter will sort the list of vaults by shared vaults.
This parameter will sort the list of vaults by shared vaults.
This parameter will sort the list of vaults by shared vaults.
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 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 get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
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
.
source§impl ListBackupVaultsInputBuilder
impl ListBackupVaultsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListBackupVaultsOutput, SdkError<ListBackupVaultsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListBackupVaultsOutput, SdkError<ListBackupVaultsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListBackupVaultsInputBuilder
impl Clone for ListBackupVaultsInputBuilder
source§fn clone(&self) -> ListBackupVaultsInputBuilder
fn clone(&self) -> ListBackupVaultsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for ListBackupVaultsInputBuilder
impl PartialEq for ListBackupVaultsInputBuilder
source§fn eq(&self, other: &ListBackupVaultsInputBuilder) -> bool
fn eq(&self, other: &ListBackupVaultsInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListBackupVaultsInputBuilder
Auto Trait Implementations§
impl Freeze for ListBackupVaultsInputBuilder
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
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)
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