#[non_exhaustive]pub struct DescribeFolderContentsInput {
pub authentication_token: Option<String>,
pub folder_id: Option<String>,
pub sort: Option<ResourceSortType>,
pub order: Option<OrderType>,
pub limit: Option<i32>,
pub marker: Option<String>,
pub type: Option<FolderContentType>,
pub include: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.authentication_token: Option<String>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
folder_id: Option<String>
The ID of the folder.
sort: Option<ResourceSortType>
The sorting criteria.
order: Option<OrderType>
The order for the contents of the folder.
limit: Option<i32>
The maximum number of items to return with this call.
marker: Option<String>
The marker for the next set of results. This marker was received from a previous call.
type: Option<FolderContentType>
The type of items.
include: Option<String>
The contents to include. Specify "INITIALIZED" to include initialized documents.
Implementations§
source§impl DescribeFolderContentsInput
impl DescribeFolderContentsInput
sourcepub fn authentication_token(&self) -> Option<&str>
pub fn authentication_token(&self) -> Option<&str>
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn sort(&self) -> Option<&ResourceSortType>
pub fn sort(&self) -> Option<&ResourceSortType>
The sorting criteria.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
The marker for the next set of results. This marker was received from a previous call.
sourcepub fn type(&self) -> Option<&FolderContentType>
pub fn type(&self) -> Option<&FolderContentType>
The type of items.
source§impl DescribeFolderContentsInput
impl DescribeFolderContentsInput
sourcepub fn builder() -> DescribeFolderContentsInputBuilder
pub fn builder() -> DescribeFolderContentsInputBuilder
Creates a new builder-style object to manufacture DescribeFolderContentsInput
.
Trait Implementations§
source§impl Clone for DescribeFolderContentsInput
impl Clone for DescribeFolderContentsInput
source§fn clone(&self) -> DescribeFolderContentsInput
fn clone(&self) -> DescribeFolderContentsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeFolderContentsInput
impl Debug for DescribeFolderContentsInput
impl StructuralPartialEq for DescribeFolderContentsInput
Auto Trait Implementations§
impl Freeze for DescribeFolderContentsInput
impl RefUnwindSafe for DescribeFolderContentsInput
impl Send for DescribeFolderContentsInput
impl Sync for DescribeFolderContentsInput
impl Unpin for DescribeFolderContentsInput
impl UnwindSafe for DescribeFolderContentsInput
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