[][src]Struct aws_sig_verify::IAMUserDetails

pub struct IAMUserDetails {
    pub account_id: String,
    pub path: String,
    pub name: String,
    pub user_id: String,
}

Fields

account_id: String

The account id (12 digits for AWS).

path: String

Path, starting with a "/".

name: String

Name of the pricnipal, case-insensitive.

user_id: String

Unique user id -- will change if principal name is reissued.

Trait Implementations

impl Clone for IAMUserDetails[src]

impl Debug for IAMUserDetails[src]

impl Eq for IAMUserDetails[src]

impl PartialEq<IAMUserDetails> for IAMUserDetails[src]

impl StructuralEq for IAMUserDetails[src]

impl StructuralPartialEq for IAMUserDetails[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.