#[non_exhaustive]pub struct CreateUserProfileInput {
pub domain_identifier: Option<String>,
pub user_identifier: Option<String>,
pub user_type: Option<UserType>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which a user profile is created.
user_identifier: Option<String>
The identifier of the user for which the user profile is created.
user_type: Option<UserType>
The user type of the user for which the user profile is created.
client_token: Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Implementations§
source§impl CreateUserProfileInput
impl CreateUserProfileInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which a user profile is created.
sourcepub fn user_identifier(&self) -> Option<&str>
pub fn user_identifier(&self) -> Option<&str>
The identifier of the user for which the user profile is created.
sourcepub fn user_type(&self) -> Option<&UserType>
pub fn user_type(&self) -> Option<&UserType>
The user type of the user for which the user profile is created.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
source§impl CreateUserProfileInput
impl CreateUserProfileInput
sourcepub fn builder() -> CreateUserProfileInputBuilder
pub fn builder() -> CreateUserProfileInputBuilder
Creates a new builder-style object to manufacture CreateUserProfileInput
.
Trait Implementations§
source§impl Clone for CreateUserProfileInput
impl Clone for CreateUserProfileInput
source§fn clone(&self) -> CreateUserProfileInput
fn clone(&self) -> CreateUserProfileInput
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 CreateUserProfileInput
impl Debug for CreateUserProfileInput
source§impl PartialEq for CreateUserProfileInput
impl PartialEq for CreateUserProfileInput
source§fn eq(&self, other: &CreateUserProfileInput) -> bool
fn eq(&self, other: &CreateUserProfileInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateUserProfileInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateUserProfileInput
impl Send for CreateUserProfileInput
impl Sync for CreateUserProfileInput
impl Unpin for CreateUserProfileInput
impl UnwindSafe for CreateUserProfileInput
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