[][src]Struct rusoto_iam::EntityInfo

pub struct EntityInfo {
    pub arn: String,
    pub id: String,
    pub name: String,
    pub path: Option<String>,
    pub type_: String,
}

Contains details about the specified entity (user or role).

This data type is an element of the EntityDetails object.

Fields

arn: Stringid: String

The identifier of the entity (user or role).

name: String

The name of the entity (user or role).

path: Option<String>

The path to the entity (user or role). For more information about paths, see IAM Identifiers in the IAM User Guide.

type_: String

The type of entity (user or role).

Trait Implementations

impl Clone for EntityInfo[src]

impl Debug for EntityInfo[src]

impl Default for EntityInfo[src]

impl PartialEq<EntityInfo> for EntityInfo[src]

impl StructuralPartialEq for EntityInfo[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.