Struct rusoto_sts::AssumedRoleUser[][src]

pub struct AssumedRoleUser {
    pub arn: String,
    pub assumed_role_id: String,
}

The identifiers for the temporary security credentials that the operation returns.

Fields

The ARN of the temporary security credentials that are returned from the AssumeRole action. For more information about ARNs and how to use them in policies, see IAM Identifiers in Using IAM.

A unique identifier that contains the role ID and the role session name of the role that is being assumed. The role ID is generated by AWS when the role is created.

Trait Implementations

impl Default for AssumedRoleUser
[src]

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

impl Debug for AssumedRoleUser
[src]

Formats the value using the given formatter. Read more

impl Clone for AssumedRoleUser
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AssumedRoleUser
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations