1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeRootFolders`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`authentication_token(impl Into<String>)`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::authentication_token) / [`set_authentication_token(Option<String>)`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::set_authentication_token): <p>Amazon WorkDocs authentication token.</p>
/// - [`limit(i32)`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::set_limit): <p>The maximum number of items to return.</p>
/// - [`marker(impl Into<String>)`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::set_marker): <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
/// - On success, responds with [`DescribeRootFoldersOutput`](crate::operation::describe_root_folders::DescribeRootFoldersOutput) with field(s):
/// - [`folders(Option<Vec<FolderMetadata>>)`](crate::operation::describe_root_folders::DescribeRootFoldersOutput::folders): <p>The user's special folders.</p>
/// - [`marker(Option<String>)`](crate::operation::describe_root_folders::DescribeRootFoldersOutput::marker): <p>The marker for the next set of results.</p>
/// - On failure, responds with [`SdkError<DescribeRootFoldersError>`](crate::operation::describe_root_folders::DescribeRootFoldersError)
pub fn describe_root_folders(
&self,
) -> crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder {
crate::operation::describe_root_folders::builders::DescribeRootFoldersFluentBuilder::new(
self.handle.clone(),
)
}
}