pub struct Group {
pub arn: String,
pub create_date: String,
pub path: String,
pub group_id: String,
pub group_name: String,
pub namespace: String,
}Expand description
A Group is a collection of Users. You can use groups to specify permissions for a collection of users.
Fields§
§arn: StringArn that identifies the Group.
create_date: StringISO 8601 format DateTime when group was created.
path: StringThe path to the IAM Group.
group_id: StringUnique Id associated with the Group.
group_name: StringSimple name identifying the Group.
namespace: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Group
impl<'de> Deserialize<'de> for Group
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 Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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