pub struct DescribeUserProfileResponse {
pub creation_time: Option<f64>,
pub domain_id: Option<String>,
pub failure_reason: Option<String>,
pub home_efs_file_system_uid: Option<String>,
pub last_modified_time: Option<f64>,
pub single_sign_on_user_identifier: Option<String>,
pub single_sign_on_user_value: Option<String>,
pub status: Option<String>,
pub user_profile_arn: Option<String>,
pub user_profile_name: Option<String>,
pub user_settings: Option<UserSettings>,
}
Fields§
§creation_time: Option<f64>
The creation time.
domain_id: Option<String>
The ID of the domain that contains the profile.
failure_reason: Option<String>
The failure reason.
home_efs_file_system_uid: Option<String>
The ID of the user's profile in the Amazon Elastic File System (EFS) volume.
last_modified_time: Option<f64>
The last modified time.
single_sign_on_user_identifier: Option<String>
The SSO user identifier.
single_sign_on_user_value: Option<String>
The SSO user value.
status: Option<String>
The status.
user_profile_arn: Option<String>
The user profile Amazon Resource Name (ARN).
user_profile_name: Option<String>
The user profile name.
user_settings: Option<UserSettings>
A collection of settings.
Trait Implementations§
Source§impl Clone for DescribeUserProfileResponse
impl Clone for DescribeUserProfileResponse
Source§fn clone(&self) -> DescribeUserProfileResponse
fn clone(&self) -> DescribeUserProfileResponse
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 DescribeUserProfileResponse
impl Debug for DescribeUserProfileResponse
Source§impl Default for DescribeUserProfileResponse
impl Default for DescribeUserProfileResponse
Source§fn default() -> DescribeUserProfileResponse
fn default() -> DescribeUserProfileResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeUserProfileResponse
impl<'de> Deserialize<'de> for DescribeUserProfileResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DescribeUserProfileResponse
Auto Trait Implementations§
impl Freeze for DescribeUserProfileResponse
impl RefUnwindSafe for DescribeUserProfileResponse
impl Send for DescribeUserProfileResponse
impl Sync for DescribeUserProfileResponse
impl Unpin for DescribeUserProfileResponse
impl UnwindSafe for DescribeUserProfileResponse
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