#[non_exhaustive]pub struct CreateTokenOutputBuilder { /* private fields */ }
Expand description
A builder for CreateTokenOutput
.
Implementations§
Source§impl CreateTokenOutputBuilder
impl CreateTokenOutputBuilder
Sourcepub fn access_token(self, input: impl Into<String>) -> Self
pub fn access_token(self, input: impl Into<String>) -> Self
A bearer token to access AWS accounts and applications assigned to a user.
Sourcepub fn set_access_token(self, input: Option<String>) -> Self
pub fn set_access_token(self, input: Option<String>) -> Self
A bearer token to access AWS accounts and applications assigned to a user.
Sourcepub fn get_access_token(&self) -> &Option<String>
pub fn get_access_token(&self) -> &Option<String>
A bearer token to access AWS accounts and applications assigned to a user.
Sourcepub fn token_type(self, input: impl Into<String>) -> Self
pub fn token_type(self, input: impl Into<String>) -> Self
Used to notify the client that the returned token is an access token. The supported token type is Bearer
.
Sourcepub fn set_token_type(self, input: Option<String>) -> Self
pub fn set_token_type(self, input: Option<String>) -> Self
Used to notify the client that the returned token is an access token. The supported token type is Bearer
.
Sourcepub fn get_token_type(&self) -> &Option<String>
pub fn get_token_type(&self) -> &Option<String>
Used to notify the client that the returned token is an access token. The supported token type is Bearer
.
Sourcepub fn expires_in(self, input: i32) -> Self
pub fn expires_in(self, input: i32) -> Self
Indicates the time in seconds when an access token will expire.
Sourcepub fn set_expires_in(self, input: Option<i32>) -> Self
pub fn set_expires_in(self, input: Option<i32>) -> Self
Indicates the time in seconds when an access token will expire.
Sourcepub fn get_expires_in(&self) -> &Option<i32>
pub fn get_expires_in(&self) -> &Option<i32>
Indicates the time in seconds when an access token will expire.
Sourcepub fn refresh_token(self, input: impl Into<String>) -> Self
pub fn refresh_token(self, input: impl Into<String>) -> Self
A token that, if present, can be used to refresh a previously issued access token that might have expired.
For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see Considerations for Using this Guide in the IAM Identity Center OIDC API Reference.
Sourcepub fn set_refresh_token(self, input: Option<String>) -> Self
pub fn set_refresh_token(self, input: Option<String>) -> Self
A token that, if present, can be used to refresh a previously issued access token that might have expired.
For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see Considerations for Using this Guide in the IAM Identity Center OIDC API Reference.
Sourcepub fn get_refresh_token(&self) -> &Option<String>
pub fn get_refresh_token(&self) -> &Option<String>
A token that, if present, can be used to refresh a previously issued access token that might have expired.
For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see Considerations for Using this Guide in the IAM Identity Center OIDC API Reference.
Sourcepub fn id_token(self, input: impl Into<String>) -> Self
pub fn id_token(self, input: impl Into<String>) -> Self
The idToken
is not implemented or supported. For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see Considerations for Using this Guide in the IAM Identity Center OIDC API Reference.
A JSON Web Token (JWT) that identifies who is associated with the issued access token.
Sourcepub fn set_id_token(self, input: Option<String>) -> Self
pub fn set_id_token(self, input: Option<String>) -> Self
The idToken
is not implemented or supported. For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see Considerations for Using this Guide in the IAM Identity Center OIDC API Reference.
A JSON Web Token (JWT) that identifies who is associated with the issued access token.
Sourcepub fn get_id_token(&self) -> &Option<String>
pub fn get_id_token(&self) -> &Option<String>
The idToken
is not implemented or supported. For more information about the features and limitations of the current IAM Identity Center OIDC implementation, see Considerations for Using this Guide in the IAM Identity Center OIDC API Reference.
A JSON Web Token (JWT) that identifies who is associated with the issued access token.
Sourcepub fn build(self) -> CreateTokenOutput
pub fn build(self) -> CreateTokenOutput
Consumes the builder and constructs a CreateTokenOutput
.
Trait Implementations§
Source§impl Clone for CreateTokenOutputBuilder
impl Clone for CreateTokenOutputBuilder
Source§fn clone(&self) -> CreateTokenOutputBuilder
fn clone(&self) -> CreateTokenOutputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CreateTokenOutputBuilder
impl Debug for CreateTokenOutputBuilder
Source§impl Default for CreateTokenOutputBuilder
impl Default for CreateTokenOutputBuilder
Source§fn default() -> CreateTokenOutputBuilder
fn default() -> CreateTokenOutputBuilder
Source§impl PartialEq for CreateTokenOutputBuilder
impl PartialEq for CreateTokenOutputBuilder
impl StructuralPartialEq for CreateTokenOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateTokenOutputBuilder
impl RefUnwindSafe for CreateTokenOutputBuilder
impl Send for CreateTokenOutputBuilder
impl Sync for CreateTokenOutputBuilder
impl Unpin for CreateTokenOutputBuilder
impl UnwindSafe for CreateTokenOutputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)