#[non_exhaustive]pub struct GetRoleCredentialsOutput {
    pub role_credentials: Option<RoleCredentials>,
    /* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.role_credentials: Option<RoleCredentials>The credentials for the role that is assigned to the user.
Implementations§
source§impl GetRoleCredentialsOutput
 
impl GetRoleCredentialsOutput
sourcepub fn role_credentials(&self) -> Option<&RoleCredentials>
 
pub fn role_credentials(&self) -> Option<&RoleCredentials>
The credentials for the role that is assigned to the user.
source§impl GetRoleCredentialsOutput
 
impl GetRoleCredentialsOutput
sourcepub fn builder() -> GetRoleCredentialsOutputBuilder
 
pub fn builder() -> GetRoleCredentialsOutputBuilder
Creates a new builder-style object to manufacture GetRoleCredentialsOutput.
Trait Implementations§
source§impl Clone for GetRoleCredentialsOutput
 
impl Clone for GetRoleCredentialsOutput
source§fn clone(&self) -> GetRoleCredentialsOutput
 
fn clone(&self) -> GetRoleCredentialsOutput
Returns a copy of the value. Read more
1.0.0 · 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 GetRoleCredentialsOutput
 
impl Debug for GetRoleCredentialsOutput
source§impl PartialEq<GetRoleCredentialsOutput> for GetRoleCredentialsOutput
 
impl PartialEq<GetRoleCredentialsOutput> for GetRoleCredentialsOutput
source§fn eq(&self, other: &GetRoleCredentialsOutput) -> bool
 
fn eq(&self, other: &GetRoleCredentialsOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetRoleCredentialsOutput
 
impl RequestId for GetRoleCredentialsOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for GetRoleCredentialsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRoleCredentialsOutput
impl Send for GetRoleCredentialsOutput
impl Sync for GetRoleCredentialsOutput
impl Unpin for GetRoleCredentialsOutput
impl UnwindSafe for GetRoleCredentialsOutput
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