#[non_exhaustive]pub struct ListContentsOutputBuilder { /* private fields */ }
Expand description
A builder for ListContentsOutput
.
Implementations§
source§impl ListContentsOutputBuilder
impl ListContentsOutputBuilder
sourcepub fn content_summaries(self, input: ContentSummary) -> Self
pub fn content_summaries(self, input: ContentSummary) -> Self
Appends an item to content_summaries
.
To override the contents of this collection use set_content_summaries
.
Information about the content.
sourcepub fn set_content_summaries(self, input: Option<Vec<ContentSummary>>) -> Self
pub fn set_content_summaries(self, input: Option<Vec<ContentSummary>>) -> Self
Information about the content.
sourcepub fn get_content_summaries(&self) -> &Option<Vec<ContentSummary>>
pub fn get_content_summaries(&self) -> &Option<Vec<ContentSummary>>
Information about the content.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are additional results, this is the token for the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are additional results, this is the token for the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are additional results, this is the token for the next set of results.
sourcepub fn build(self) -> ListContentsOutput
pub fn build(self) -> ListContentsOutput
Consumes the builder and constructs a ListContentsOutput
.
Trait Implementations§
source§impl Clone for ListContentsOutputBuilder
impl Clone for ListContentsOutputBuilder
source§fn clone(&self) -> ListContentsOutputBuilder
fn clone(&self) -> ListContentsOutputBuilder
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 ListContentsOutputBuilder
impl Debug for ListContentsOutputBuilder
source§impl Default for ListContentsOutputBuilder
impl Default for ListContentsOutputBuilder
source§fn default() -> ListContentsOutputBuilder
fn default() -> ListContentsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListContentsOutputBuilder> for ListContentsOutputBuilder
impl PartialEq<ListContentsOutputBuilder> for ListContentsOutputBuilder
source§fn eq(&self, other: &ListContentsOutputBuilder) -> bool
fn eq(&self, other: &ListContentsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListContentsOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListContentsOutputBuilder
impl Send for ListContentsOutputBuilder
impl Sync for ListContentsOutputBuilder
impl Unpin for ListContentsOutputBuilder
impl UnwindSafe for ListContentsOutputBuilder
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