[][src]Struct rusoto_iam::RoleDetail

pub struct RoleDetail {
    pub arn: Option<String>,
    pub assume_role_policy_document: Option<String>,
    pub attached_managed_policies: Option<Vec<AttachedPolicy>>,
    pub create_date: Option<String>,
    pub instance_profile_list: Option<Vec<InstanceProfile>>,
    pub path: Option<String>,
    pub permissions_boundary: Option<AttachedPermissionsBoundary>,
    pub role_id: Option<String>,
    pub role_name: Option<String>,
    pub role_policy_list: Option<Vec<PolicyDetail>>,
}

Contains information about an IAM role, including all of the role's policies.

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

Fields

The trust policy that grants permission to assume the role.

A list of managed policies attached to the role. These policies are the role's access (permissions) policies.

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

A list of instance profiles that contain this role.

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

The ARN of the policy used to set the permissions boundary for the role.

For more information about permissions boundaries, see Permissions Boundaries for IAM Identities in the IAM User Guide.

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

The friendly name that identifies the role.

A list of inline policies embedded in the role. These policies are the role's access (permissions) policies.

Trait Implementations

impl Clone for RoleDetail
[src]

Performs copy-assignment from source. Read more

impl Default for RoleDetail
[src]

impl PartialEq<RoleDetail> for RoleDetail
[src]

impl Debug for RoleDetail
[src]

Auto Trait Implementations

impl Send for RoleDetail

impl Sync for RoleDetail

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T