pub struct AssumedRoleUser {
pub arn: ArnType,
pub assumed_role_id: AssumedRoleIdType,
}Expand description
The identifiers for the temporary security credentials that the operation returns.
Fields§
§arn: ArnTypeThe 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.
assumed_role_id: AssumedRoleIdTypeA 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.
Trait Implementations§
Source§impl Clone for AssumedRoleUser
impl Clone for AssumedRoleUser
Source§fn clone(&self) -> AssumedRoleUser
fn clone(&self) -> AssumedRoleUser
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssumedRoleUser
impl Debug for AssumedRoleUser
Source§impl Default for AssumedRoleUser
impl Default for AssumedRoleUser
Source§fn default() -> AssumedRoleUser
fn default() -> AssumedRoleUser
Returns the “default value” for a type. Read more
Source§impl<'xml> DeserializeContent<'xml> for AssumedRoleUser
Available on crate feature minio only.
impl<'xml> DeserializeContent<'xml> for AssumedRoleUser
Available on crate feature
minio only.Source§fn deserialize_content(d: &mut Deserializer<'xml>) -> DeResult<Self>
fn deserialize_content(d: &mut Deserializer<'xml>) -> DeResult<Self>
Deserializes the content of the data type Read more
Source§impl DtoExt for AssumedRoleUser
impl DtoExt for AssumedRoleUser
Source§fn ignore_empty_strings(&mut self)
fn ignore_empty_strings(&mut self)
Modifies all empty string fields from
Some("") to NoneSource§impl PartialEq for AssumedRoleUser
impl PartialEq for AssumedRoleUser
Source§fn eq(&self, other: &AssumedRoleUser) -> bool
fn eq(&self, other: &AssumedRoleUser) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SerializeContent for AssumedRoleUser
Available on crate feature minio only.
impl SerializeContent for AssumedRoleUser
Available on crate feature
minio only.Source§fn serialize_content<W: Write>(&self, s: &mut Serializer<W>) -> SerResult
fn serialize_content<W: Write>(&self, s: &mut Serializer<W>) -> SerResult
Serializes the content of the data type Read more
impl StructuralPartialEq for AssumedRoleUser
Auto Trait Implementations§
impl Freeze for AssumedRoleUser
impl RefUnwindSafe for AssumedRoleUser
impl Send for AssumedRoleUser
impl Sync for AssumedRoleUser
impl Unpin for AssumedRoleUser
impl UnsafeUnpin for AssumedRoleUser
impl UnwindSafe for AssumedRoleUser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more