Struct aws_sdk_datazone::operation::create_user_profile::builders::CreateUserProfileInputBuilder
source · #[non_exhaustive]pub struct CreateUserProfileInputBuilder { /* private fields */ }
Expand description
A builder for CreateUserProfileInput
.
Implementations§
source§impl CreateUserProfileInputBuilder
impl CreateUserProfileInputBuilder
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone domain in which a user profile is created.
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 identifier of the Amazon DataZone domain in which a user profile is created.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The identifier of the Amazon DataZone domain in which a user profile is created.
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 the user profile is created.
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 the user profile is created.
sourcepub fn get_user_identifier(&self) -> &Option<String>
pub fn get_user_identifier(&self) -> &Option<String>
The identifier of the user for which the user profile is created.
sourcepub fn user_type(self, input: UserType) -> Self
pub fn user_type(self, input: UserType) -> Self
The user type of the user for which the user profile is created.
sourcepub fn set_user_type(self, input: Option<UserType>) -> Self
pub fn set_user_type(self, input: Option<UserType>) -> Self
The user type of the user for which the user profile is created.
sourcepub fn get_user_type(&self) -> &Option<UserType>
pub fn get_user_type(&self) -> &Option<UserType>
The user type of the user for which the user profile is created.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn build(self) -> Result<CreateUserProfileInput, BuildError>
pub fn build(self) -> Result<CreateUserProfileInput, BuildError>
Consumes the builder and constructs a CreateUserProfileInput
.
source§impl CreateUserProfileInputBuilder
impl CreateUserProfileInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateUserProfileOutput, SdkError<CreateUserProfileError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateUserProfileOutput, SdkError<CreateUserProfileError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateUserProfileInputBuilder
impl Clone for CreateUserProfileInputBuilder
source§fn clone(&self) -> CreateUserProfileInputBuilder
fn clone(&self) -> CreateUserProfileInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateUserProfileInputBuilder
impl Default for CreateUserProfileInputBuilder
source§fn default() -> CreateUserProfileInputBuilder
fn default() -> CreateUserProfileInputBuilder
source§impl PartialEq for CreateUserProfileInputBuilder
impl PartialEq for CreateUserProfileInputBuilder
source§fn eq(&self, other: &CreateUserProfileInputBuilder) -> bool
fn eq(&self, other: &CreateUserProfileInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateUserProfileInputBuilder
Auto Trait Implementations§
impl Freeze for CreateUserProfileInputBuilder
impl RefUnwindSafe for CreateUserProfileInputBuilder
impl Send for CreateUserProfileInputBuilder
impl Sync for CreateUserProfileInputBuilder
impl Unpin for CreateUserProfileInputBuilder
impl UnwindSafe for CreateUserProfileInputBuilder
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