[][src]Struct rusoto_iam::Group

pub struct Group {
    pub arn: String,
    pub create_date: String,
    pub group_id: String,
    pub group_name: String,
    pub path: String,
}

Contains information about an IAM group entity.

This data type is used as a response element in the following operations:

Fields

arn: String

The Amazon Resource Name (ARN) specifying the group. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.

create_date: String

The date and time, in ISO 8601 date-time format, when the group was created.

group_id: String

The stable and unique string identifying the group. For more information about IDs, see IAM Identifiers in the IAM User Guide.

group_name: String

The friendly name that identifies the group.

path: String

The path to the group. For more information about paths, see IAM Identifiers in the IAM User Guide.

Trait Implementations

impl Clone for Group[src]

impl Debug for Group[src]

impl Default for Group[src]

impl PartialEq<Group> for Group[src]

impl StructuralPartialEq for Group[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.