#[non_exhaustive]pub struct GetUserProfileInputBuilder { /* private fields */ }
Expand description
A builder for GetUserProfileInput
.
Implementations§
source§impl GetUserProfileInputBuilder
impl GetUserProfileInputBuilder
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.
This field is required.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.
This field is required.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.
sourcepub fn build(self) -> Result<GetUserProfileInput, BuildError>
pub fn build(self) -> Result<GetUserProfileInput, BuildError>
Consumes the builder and constructs a GetUserProfileInput
.
source§impl GetUserProfileInputBuilder
impl GetUserProfileInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetUserProfileOutput, SdkError<GetUserProfileError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetUserProfileOutput, SdkError<GetUserProfileError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetUserProfileInputBuilder
impl Clone for GetUserProfileInputBuilder
source§fn clone(&self) -> GetUserProfileInputBuilder
fn clone(&self) -> GetUserProfileInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetUserProfileInputBuilder
impl Debug for GetUserProfileInputBuilder
source§impl Default for GetUserProfileInputBuilder
impl Default for GetUserProfileInputBuilder
source§fn default() -> GetUserProfileInputBuilder
fn default() -> GetUserProfileInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetUserProfileInputBuilder
impl PartialEq for GetUserProfileInputBuilder
source§fn eq(&self, other: &GetUserProfileInputBuilder) -> bool
fn eq(&self, other: &GetUserProfileInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetUserProfileInputBuilder
Auto Trait Implementations§
impl Freeze for GetUserProfileInputBuilder
impl RefUnwindSafe for GetUserProfileInputBuilder
impl Send for GetUserProfileInputBuilder
impl Sync for GetUserProfileInputBuilder
impl Unpin for GetUserProfileInputBuilder
impl UnwindSafe for GetUserProfileInputBuilder
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.