Struct aws_sdk_workdocs::operation::describe_folder_contents::builders::DescribeFolderContentsOutputBuilder
source · #[non_exhaustive]pub struct DescribeFolderContentsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeFolderContentsOutput
.
Implementations§
source§impl DescribeFolderContentsOutputBuilder
impl DescribeFolderContentsOutputBuilder
sourcepub fn folders(self, input: FolderMetadata) -> Self
pub fn folders(self, input: FolderMetadata) -> Self
Appends an item to folders
.
To override the contents of this collection use set_folders
.
The subfolders in the specified folder.
sourcepub fn set_folders(self, input: Option<Vec<FolderMetadata>>) -> Self
pub fn set_folders(self, input: Option<Vec<FolderMetadata>>) -> Self
The subfolders in the specified folder.
sourcepub fn get_folders(&self) -> &Option<Vec<FolderMetadata>>
pub fn get_folders(&self) -> &Option<Vec<FolderMetadata>>
The subfolders in the specified folder.
sourcepub fn documents(self, input: DocumentMetadata) -> Self
pub fn documents(self, input: DocumentMetadata) -> Self
Appends an item to documents
.
To override the contents of this collection use set_documents
.
The documents in the specified folder.
sourcepub fn set_documents(self, input: Option<Vec<DocumentMetadata>>) -> Self
pub fn set_documents(self, input: Option<Vec<DocumentMetadata>>) -> Self
The documents in the specified folder.
sourcepub fn get_documents(&self) -> &Option<Vec<DocumentMetadata>>
pub fn get_documents(&self) -> &Option<Vec<DocumentMetadata>>
The documents in the specified folder.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn build(self) -> DescribeFolderContentsOutput
pub fn build(self) -> DescribeFolderContentsOutput
Consumes the builder and constructs a DescribeFolderContentsOutput
.
Trait Implementations§
source§impl Clone for DescribeFolderContentsOutputBuilder
impl Clone for DescribeFolderContentsOutputBuilder
source§fn clone(&self) -> DescribeFolderContentsOutputBuilder
fn clone(&self) -> DescribeFolderContentsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeFolderContentsOutputBuilder
impl Default for DescribeFolderContentsOutputBuilder
source§fn default() -> DescribeFolderContentsOutputBuilder
fn default() -> DescribeFolderContentsOutputBuilder
source§impl PartialEq for DescribeFolderContentsOutputBuilder
impl PartialEq for DescribeFolderContentsOutputBuilder
source§fn eq(&self, other: &DescribeFolderContentsOutputBuilder) -> bool
fn eq(&self, other: &DescribeFolderContentsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeFolderContentsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeFolderContentsOutputBuilder
impl RefUnwindSafe for DescribeFolderContentsOutputBuilder
impl Send for DescribeFolderContentsOutputBuilder
impl Sync for DescribeFolderContentsOutputBuilder
impl Unpin for DescribeFolderContentsOutputBuilder
impl UnwindSafe for DescribeFolderContentsOutputBuilder
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