pub struct RoleInfo {
pub account_id: Option<String>,
pub role_name: Option<String>,
}
Expand description
Provides information about the role that is assigned to the user.
Fields§
§account_id: Option<String>
The identifier of the AWS account assigned to the user.
role_name: Option<String>
The friendly name of the role that is assigned to the user.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RoleInfo
impl<'de> Deserialize<'de> for RoleInfo
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 RoleInfo
Auto Trait Implementations§
impl Freeze for RoleInfo
impl RefUnwindSafe for RoleInfo
impl Send for RoleInfo
impl Sync for RoleInfo
impl Unpin for RoleInfo
impl UnwindSafe for RoleInfo
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