Struct aws_sdk_backup::operation::list_protected_resources::builders::ListProtectedResourcesInputBuilder
source · #[non_exhaustive]pub struct ListProtectedResourcesInputBuilder { /* private fields */ }
Expand description
A builder for ListProtectedResourcesInput
.
Implementations§
source§impl ListProtectedResourcesInputBuilder
impl ListProtectedResourcesInputBuilder
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<ListProtectedResourcesInput, BuildError>
pub fn build(self) -> Result<ListProtectedResourcesInput, BuildError>
Consumes the builder and constructs a ListProtectedResourcesInput
.
source§impl ListProtectedResourcesInputBuilder
impl ListProtectedResourcesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListProtectedResourcesOutput, SdkError<ListProtectedResourcesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListProtectedResourcesOutput, SdkError<ListProtectedResourcesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListProtectedResourcesInputBuilder
impl Clone for ListProtectedResourcesInputBuilder
source§fn clone(&self) -> ListProtectedResourcesInputBuilder
fn clone(&self) -> ListProtectedResourcesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListProtectedResourcesInputBuilder
impl Default for ListProtectedResourcesInputBuilder
source§fn default() -> ListProtectedResourcesInputBuilder
fn default() -> ListProtectedResourcesInputBuilder
source§impl PartialEq for ListProtectedResourcesInputBuilder
impl PartialEq for ListProtectedResourcesInputBuilder
source§fn eq(&self, other: &ListProtectedResourcesInputBuilder) -> bool
fn eq(&self, other: &ListProtectedResourcesInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListProtectedResourcesInputBuilder
Auto Trait Implementations§
impl Freeze for ListProtectedResourcesInputBuilder
impl RefUnwindSafe for ListProtectedResourcesInputBuilder
impl Send for ListProtectedResourcesInputBuilder
impl Sync for ListProtectedResourcesInputBuilder
impl Unpin for ListProtectedResourcesInputBuilder
impl UnwindSafe for ListProtectedResourcesInputBuilder
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