Interface CreateTokenResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateTokenResponse.Builder,CreateTokenResponse>,SdkBuilder<CreateTokenResponse.Builder,CreateTokenResponse>,SdkPojo,SdkResponse.Builder,SsoOidcResponse.Builder
- Enclosing class:
- CreateTokenResponse
public static interface CreateTokenResponse.Builder extends SsoOidcResponse.Builder, SdkPojo, CopyableBuilder<CreateTokenResponse.Builder,CreateTokenResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateTokenResponse.BuilderaccessToken(String accessToken)A bearer token to access Amazon Web Services accounts and applications assigned to a user.CreateTokenResponse.BuilderexpiresIn(Integer expiresIn)Indicates the time in seconds when an access token will expire.CreateTokenResponse.BuilderidToken(String idToken)TheidTokenis not implemented or supported.CreateTokenResponse.BuilderrefreshToken(String refreshToken)A token that, if present, can be used to refresh a previously issued access token that might have expired.CreateTokenResponse.BuildertokenType(String tokenType)Used to notify the client that the returned token is an access token.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssooidc.model.SsoOidcResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
accessToken
CreateTokenResponse.Builder accessToken(String accessToken)
A bearer token to access Amazon Web Services accounts and applications assigned to a user.
- Parameters:
accessToken- A bearer token to access Amazon Web Services accounts and applications assigned to a user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tokenType
CreateTokenResponse.Builder tokenType(String tokenType)
Used to notify the client that the returned token is an access token. The supported token type is
Bearer.- Parameters:
tokenType- Used to notify the client that the returned token is an access token. The supported token type isBearer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expiresIn
CreateTokenResponse.Builder expiresIn(Integer expiresIn)
Indicates the time in seconds when an access token will expire.
- Parameters:
expiresIn- Indicates the time in seconds when an access token will expire.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
refreshToken
CreateTokenResponse.Builder refreshToken(String refreshToken)
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.
- Parameters:
refreshToken- 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
idToken
CreateTokenResponse.Builder idToken(String idToken)
The
idTokenis 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.
- Parameters:
idToken- TheidTokenis 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-