#[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
An opaque token to access IAM Identity Center resources assigned to a user.
sourcepub fn set_access_token(self, input: Option<String>) -> Self
pub fn set_access_token(self, input: Option<String>) -> Self
An opaque token to access IAM Identity Center resources 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 type is BearerToken
.
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 type is BearerToken
.
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 refresh_token(self, input: impl Into<String>) -> Self
pub fn refresh_token(self, input: impl Into<String>) -> Self
Currently, refreshToken
is not yet implemented and is not 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 token that, if present, can be used to refresh a previously issued access token that might have expired.
sourcepub fn set_refresh_token(self, input: Option<String>) -> Self
pub fn set_refresh_token(self, input: Option<String>) -> Self
Currently, refreshToken
is not yet implemented and is not 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 token that, if present, can be used to refresh a previously issued access token that might have expired.
sourcepub fn id_token(self, input: impl Into<String>) -> Self
pub fn id_token(self, input: impl Into<String>) -> Self
Currently, idToken
is not yet implemented and is not 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.
The identifier of the user that associated with the access token, if present.
sourcepub fn set_id_token(self, input: Option<String>) -> Self
pub fn set_id_token(self, input: Option<String>) -> Self
Currently, idToken
is not yet implemented and is not 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.
The identifier of the user that associated with the access token, if present.
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<CreateTokenOutputBuilder> for CreateTokenOutputBuilder
impl PartialEq<CreateTokenOutputBuilder> for CreateTokenOutputBuilder
source§fn eq(&self, other: &CreateTokenOutputBuilder) -> bool
fn eq(&self, other: &CreateTokenOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.