pub struct GetUserProfileFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetUserProfile
.
Gets a user profile in Amazon DataZone.
Implementations§
source§impl GetUserProfileFluentBuilder
impl GetUserProfileFluentBuilder
sourcepub fn as_input(&self) -> &GetUserProfileInputBuilder
pub fn as_input(&self) -> &GetUserProfileInputBuilder
Access the GetUserProfile as a reference.
sourcepub async fn send(
self
) -> Result<GetUserProfileOutput, SdkError<GetUserProfileError, HttpResponse>>
pub async fn send( self ) -> Result<GetUserProfileOutput, SdkError<GetUserProfileError, 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 async fn customize(
self
) -> Result<CustomizableOperation<GetUserProfileOutput, GetUserProfileError, Self>, SdkError<GetUserProfileError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetUserProfileOutput, GetUserProfileError, Self>, SdkError<GetUserProfileError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
the ID of the Amazon DataZone domain the data portal of which you want to get.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
the ID of the Amazon DataZone domain the data portal of which you want to get.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
the ID of the Amazon DataZone domain the data portal of which you want to get.
sourcepub fn user_identifier(self, input: impl Into<String>) -> Self
pub fn user_identifier(self, input: impl Into<String>) -> Self
The identifier of the user for which you want to get the user profile.
sourcepub fn set_user_identifier(self, input: Option<String>) -> Self
pub fn set_user_identifier(self, input: Option<String>) -> Self
The identifier of the user for which you want to get the user profile.
sourcepub fn get_user_identifier(&self) -> &Option<String>
pub fn get_user_identifier(&self) -> &Option<String>
The identifier of the user for which you want to get the user profile.
sourcepub fn type(self, input: UserProfileType) -> Self
pub fn type(self, input: UserProfileType) -> Self
The type of the user profile.
sourcepub fn set_type(self, input: Option<UserProfileType>) -> Self
pub fn set_type(self, input: Option<UserProfileType>) -> Self
The type of the user profile.
sourcepub fn get_type(&self) -> &Option<UserProfileType>
pub fn get_type(&self) -> &Option<UserProfileType>
The type of the user profile.
Trait Implementations§
source§impl Clone for GetUserProfileFluentBuilder
impl Clone for GetUserProfileFluentBuilder
source§fn clone(&self) -> GetUserProfileFluentBuilder
fn clone(&self) -> GetUserProfileFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more