Struct rusoto_iam::UserDetail [] [src]

pub struct UserDetail {
    pub arn: Option<String>,
    pub attached_managed_policies: Option<Vec<AttachedPolicy>>,
    pub create_date: Option<String>,
    pub group_list: Option<Vec<String>>,
    pub path: Option<String>,
    pub user_id: Option<String>,
    pub user_name: Option<String>,
    pub user_policy_list: Option<Vec<PolicyDetail>>,
}

Contains information about an IAM user, including all the user's policies and all the IAM groups the user is in.

This data type is used as a response element in the GetAccountAuthorizationDetails action.

Fields

A list of the managed policies attached to the user.

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

A list of IAM groups that the user is in.

The path to the user. For more information about paths, see IAM Identifiers in the Using IAM guide.

The stable and unique string identifying the user. For more information about IDs, see IAM Identifiers in the Using IAM guide.

The friendly name identifying the user.

A list of the inline policies embedded in the user.

Trait Implementations

impl Default for UserDetail
[src]

Returns the "default value" for a type. Read more

impl Debug for UserDetail
[src]

Formats the value using the given formatter.

impl Clone for UserDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more