Interface RefreshTokenRequestBody.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RefreshTokenRequestBody.Builder,RefreshTokenRequestBody>,SdkBuilder<RefreshTokenRequestBody.Builder,RefreshTokenRequestBody>,SdkPojo
- Enclosing class:
- RefreshTokenRequestBody
public static interface RefreshTokenRequestBody.Builder extends SdkPojo, CopyableBuilder<RefreshTokenRequestBody.Builder,RefreshTokenRequestBody>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RefreshTokenRequestBody.BuilderclientId(String clientId)The ID of the client to request the token from.RefreshTokenRequestBody.Buildertoken(String token)The token to use to refresh a previously issued access token that might have expired.-
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
-
-
-
-
Method Detail
-
token
RefreshTokenRequestBody.Builder token(String token)
The token to use to refresh a previously issued access token that might have expired.
- Parameters:
token- The token to use to refresh a previously issued access token that might have expired.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientId
RefreshTokenRequestBody.Builder clientId(String clientId)
The ID of the client to request the token from.
- Parameters:
clientId- The ID of the client to request the token from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-