#[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
source§impl PartialEq for DescribeFolderContentsInput
impl PartialEq for DescribeFolderContentsInput
source§fn eq(&self, other: &DescribeFolderContentsInput) -> bool
fn eq(&self, other: &DescribeFolderContentsInput) -> bool
self
and other
values to be equal, and is used
by ==
.