#[non_exhaustive]pub struct GetResourcesInputBuilder { /* private fields */ }
Expand description
A builder for GetResourcesInput
.
Implementations§
source§impl GetResourcesInputBuilder
impl GetResourcesInputBuilder
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.
sourcepub fn build(self) -> Result<GetResourcesInput, BuildError>
pub fn build(self) -> Result<GetResourcesInput, BuildError>
Consumes the builder and constructs a GetResourcesInput
.
source§impl GetResourcesInputBuilder
impl GetResourcesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetResourcesOutput, SdkError<GetResourcesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetResourcesOutput, SdkError<GetResourcesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetResourcesInputBuilder
impl Clone for GetResourcesInputBuilder
source§fn clone(&self) -> GetResourcesInputBuilder
fn clone(&self) -> GetResourcesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetResourcesInputBuilder
impl Debug for GetResourcesInputBuilder
source§impl Default for GetResourcesInputBuilder
impl Default for GetResourcesInputBuilder
source§fn default() -> GetResourcesInputBuilder
fn default() -> GetResourcesInputBuilder
source§impl PartialEq for GetResourcesInputBuilder
impl PartialEq for GetResourcesInputBuilder
impl StructuralPartialEq for GetResourcesInputBuilder
Auto Trait Implementations§
impl Freeze for GetResourcesInputBuilder
impl RefUnwindSafe for GetResourcesInputBuilder
impl Send for GetResourcesInputBuilder
impl Sync for GetResourcesInputBuilder
impl Unpin for GetResourcesInputBuilder
impl UnwindSafe for GetResourcesInputBuilder
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