pub struct GetResourcesFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetResources
.
Retrieves a collection of resources, including folders and documents. The only CollectionType
supported is SHARED_WITH_ME
.
Implementations§
source§impl GetResourcesFluentBuilder
impl GetResourcesFluentBuilder
sourcepub fn as_input(&self) -> &GetResourcesInputBuilder
pub fn as_input(&self) -> &GetResourcesInputBuilder
Access the GetResources as a reference.
sourcepub async fn send(
self,
) -> Result<GetResourcesOutput, SdkError<GetResourcesError, HttpResponse>>
pub async fn send( self, ) -> Result<GetResourcesOutput, SdkError<GetResourcesError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<GetResourcesOutput, GetResourcesError, Self>
pub fn customize( self, ) -> CustomizableOperation<GetResourcesOutput, GetResourcesError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn authentication_token(self, input: impl Into<String>) -> Self
pub fn authentication_token(self, input: impl Into<String>) -> Self
The Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn set_authentication_token(self, input: Option<String>) -> Self
pub fn set_authentication_token(self, input: Option<String>) -> Self
The Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn get_authentication_token(&self) -> &Option<String>
pub fn get_authentication_token(&self) -> &Option<String>
The Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
sourcepub fn user_id(self, input: impl Into<String>) -> Self
pub fn user_id(self, input: impl Into<String>) -> Self
The user ID for the resource collection. This is a required field for accessing the API operation using IAM credentials.
sourcepub fn set_user_id(self, input: Option<String>) -> Self
pub fn set_user_id(self, input: Option<String>) -> Self
The user ID for the resource collection. This is a required field for accessing the API operation using IAM credentials.
sourcepub fn get_user_id(&self) -> &Option<String>
pub fn get_user_id(&self) -> &Option<String>
The user ID for the resource collection. This is a required field for accessing the API operation using IAM credentials.
sourcepub fn collection_type(self, input: ResourceCollectionType) -> Self
pub fn collection_type(self, input: ResourceCollectionType) -> Self
The collection type.
sourcepub fn set_collection_type(self, input: Option<ResourceCollectionType>) -> Self
pub fn set_collection_type(self, input: Option<ResourceCollectionType>) -> Self
The collection type.
sourcepub fn get_collection_type(&self) -> &Option<ResourceCollectionType>
pub fn get_collection_type(&self) -> &Option<ResourceCollectionType>
The collection type.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The marker for the next set of results. This marker was received from a previous call.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker for the next set of results. This marker was received from a previous call.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The marker for the next set of results. This marker was received from a previous call.
Trait Implementations§
source§impl Clone for GetResourcesFluentBuilder
impl Clone for GetResourcesFluentBuilder
source§fn clone(&self) -> GetResourcesFluentBuilder
fn clone(&self) -> GetResourcesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for GetResourcesFluentBuilder
impl !RefUnwindSafe for GetResourcesFluentBuilder
impl Send for GetResourcesFluentBuilder
impl Sync for GetResourcesFluentBuilder
impl Unpin for GetResourcesFluentBuilder
impl !UnwindSafe for GetResourcesFluentBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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