[][src]Struct rusoto_securityhub::AwsIamUserDetails

pub struct AwsIamUserDetails {
    pub attached_managed_policies: Option<Vec<AwsIamAttachedManagedPolicy>>,
    pub create_date: Option<String>,
    pub group_list: Option<Vec<String>>,
    pub path: Option<String>,
    pub permissions_boundary: Option<AwsIamPermissionsBoundary>,
    pub user_id: Option<String>,
    pub user_name: Option<String>,
    pub user_policy_list: Option<Vec<AwsIamUserPolicy>>,
}

Information about an IAM user.

Fields

attached_managed_policies: Option<Vec<AwsIamAttachedManagedPolicy>>

A list of the managed policies that are attached to the user.

create_date: Option<String>

Indicates when the user was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

group_list: Option<Vec<String>>

A list of IAM groups that the user belongs to.

path: Option<String>

The path to the user.

permissions_boundary: Option<AwsIamPermissionsBoundary>

The permissions boundary for the user.

user_id: Option<String>

The unique identifier for the user.

user_name: Option<String>

The name of the user.

user_policy_list: Option<Vec<AwsIamUserPolicy>>

The list of inline policies that are embedded in the user.

Trait Implementations

impl Clone for AwsIamUserDetails[src]

impl Debug for AwsIamUserDetails[src]

impl Default for AwsIamUserDetails[src]

impl<'de> Deserialize<'de> for AwsIamUserDetails[src]

impl PartialEq<AwsIamUserDetails> for AwsIamUserDetails[src]

impl Serialize for AwsIamUserDetails[src]

impl StructuralPartialEq for AwsIamUserDetails[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.