Struct aws_sdk_backup::operation::list_protected_resources::builders::ListProtectedResourcesOutputBuilder
source · #[non_exhaustive]pub struct ListProtectedResourcesOutputBuilder { /* private fields */ }
Expand description
A builder for ListProtectedResourcesOutput
.
Implementations§
source§impl ListProtectedResourcesOutputBuilder
impl ListProtectedResourcesOutputBuilder
sourcepub fn results(self, input: ProtectedResource) -> Self
pub fn results(self, input: ProtectedResource) -> Self
Appends an item to results
.
To override the contents of this collection use set_results
.
An array of resources successfully backed up by Backup including the time the resource was saved, an Amazon Resource Name (ARN) of the resource, and a resource type.
sourcepub fn set_results(self, input: Option<Vec<ProtectedResource>>) -> Self
pub fn set_results(self, input: Option<Vec<ProtectedResource>>) -> Self
An array of resources successfully backed up by Backup including the time the resource was saved, an Amazon Resource Name (ARN) of the resource, and a resource type.
sourcepub fn get_results(&self) -> &Option<Vec<ProtectedResource>>
pub fn get_results(&self) -> &Option<Vec<ProtectedResource>>
An array of resources successfully backed up by Backup including the time the resource was saved, an Amazon Resource Name (ARN) of the resource, and a resource type.
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 build(self) -> ListProtectedResourcesOutput
pub fn build(self) -> ListProtectedResourcesOutput
Consumes the builder and constructs a ListProtectedResourcesOutput
.
Trait Implementations§
source§impl Clone for ListProtectedResourcesOutputBuilder
impl Clone for ListProtectedResourcesOutputBuilder
source§fn clone(&self) -> ListProtectedResourcesOutputBuilder
fn clone(&self) -> ListProtectedResourcesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListProtectedResourcesOutputBuilder
impl Default for ListProtectedResourcesOutputBuilder
source§fn default() -> ListProtectedResourcesOutputBuilder
fn default() -> ListProtectedResourcesOutputBuilder
source§impl PartialEq for ListProtectedResourcesOutputBuilder
impl PartialEq for ListProtectedResourcesOutputBuilder
source§fn eq(&self, other: &ListProtectedResourcesOutputBuilder) -> bool
fn eq(&self, other: &ListProtectedResourcesOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListProtectedResourcesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListProtectedResourcesOutputBuilder
impl RefUnwindSafe for ListProtectedResourcesOutputBuilder
impl Send for ListProtectedResourcesOutputBuilder
impl Sync for ListProtectedResourcesOutputBuilder
impl Unpin for ListProtectedResourcesOutputBuilder
impl UnwindSafe for ListProtectedResourcesOutputBuilder
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