pub struct User {
pub arn: String,
pub create_date: String,
pub path: String,
pub permissions_boundary: PermissionsBoundary,
pub user_id: String,
pub user_name: String,
pub tags: Vec<Tag>,
pub namespace: String,
}
Expand description
In ObjectScale, an IAM User is a person or application in the account.
Fields§
§arn: String
Arn that identifies the user.
create_date: String
ISO 8601 format DateTime when user was created.
path: String
The path to the IAM User.
permissions_boundary: PermissionsBoundary
Permissions boundary
user_id: String
Unique Id associated with the User.
user_name: String
Simple name identifying the User.
The list of Tags associated with the User.
namespace: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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
Auto Trait Implementations§
impl Freeze for User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnwindSafe for User
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