#[non_exhaustive]pub struct AssumedRoleUser {
pub assumed_role_id: String,
pub arn: String,
}
Expand description
The identifiers for the temporary security credentials that the operation returns.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.assumed_role_id: String
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 Amazon Web Services when the role is created.
arn: String
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 the IAM User Guide.
Implementations§
Source§impl AssumedRoleUser
impl AssumedRoleUser
Sourcepub fn assumed_role_id(&self) -> &str
pub fn assumed_role_id(&self) -> &str
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 Amazon Web Services when the role is created.
Sourcepub fn arn(&self) -> &str
pub fn arn(&self) -> &str
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 the IAM User Guide.
Source§impl AssumedRoleUser
impl AssumedRoleUser
Sourcepub fn builder() -> AssumedRoleUserBuilder
pub fn builder() -> AssumedRoleUserBuilder
Creates a new builder-style object to manufacture AssumedRoleUser
.
Trait Implementations§
Source§impl Clone for AssumedRoleUser
impl Clone for AssumedRoleUser
Source§fn clone(&self) -> AssumedRoleUser
fn clone(&self) -> AssumedRoleUser
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more