pub struct GetRoleCredentialsRequest {
pub access_token: String,
pub account_id: String,
pub role_name: String,
}
Fields§
§access_token: String
The token issued by the CreateToken
API call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
account_id: String
The identifier for the AWS account that is assigned to the user.
role_name: String
The friendly name of the role that is assigned to the user.
Trait Implementations§
Source§impl Clone for GetRoleCredentialsRequest
impl Clone for GetRoleCredentialsRequest
Source§fn clone(&self) -> GetRoleCredentialsRequest
fn clone(&self) -> GetRoleCredentialsRequest
Returns a duplicate 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 GetRoleCredentialsRequest
impl Debug for GetRoleCredentialsRequest
Source§impl Default for GetRoleCredentialsRequest
impl Default for GetRoleCredentialsRequest
Source§fn default() -> GetRoleCredentialsRequest
fn default() -> GetRoleCredentialsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetRoleCredentialsRequest
Auto Trait Implementations§
impl Freeze for GetRoleCredentialsRequest
impl RefUnwindSafe for GetRoleCredentialsRequest
impl Send for GetRoleCredentialsRequest
impl Sync for GetRoleCredentialsRequest
impl Unpin for GetRoleCredentialsRequest
impl UnwindSafe for GetRoleCredentialsRequest
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