pub struct UserIdentity {
pub type: String,
pub account_id: Option<String>,
pub arn: Option<String>,
pub credential_id: Option<String>,
pub invoked_by: Option<String>,
pub principal_id: Option<String>,
pub session_context: Option<SessionContext>,
pub user_name: Option<String>,
pub on_behalf_of: Option<OnBehalfOf>,
}Fields§
§type: String§account_id: Option<String>§arn: Option<String>§credential_id: Option<String>§invoked_by: Option<String>§principal_id: Option<String>§session_context: Option<SessionContext>§user_name: Option<String>§on_behalf_of: Option<OnBehalfOf>Trait Implementations§
Source§impl Clone for UserIdentity
impl Clone for UserIdentity
Source§fn clone(&self) -> UserIdentity
fn clone(&self) -> UserIdentity
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 UserIdentity
impl Debug for UserIdentity
Source§impl Default for UserIdentity
impl Default for UserIdentity
Source§fn default() -> UserIdentity
fn default() -> UserIdentity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserIdentity
impl<'de> Deserialize<'de> for UserIdentity
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
Source§impl PartialEq for UserIdentity
impl PartialEq for UserIdentity
Source§impl Serialize for UserIdentity
impl Serialize for UserIdentity
impl Eq for UserIdentity
impl StructuralPartialEq for UserIdentity
Auto Trait Implementations§
impl Freeze for UserIdentity
impl RefUnwindSafe for UserIdentity
impl Send for UserIdentity
impl Sync for UserIdentity
impl Unpin for UserIdentity
impl UnwindSafe for UserIdentity
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