Interface AuthRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuthRequest.Builder,AuthRequest>,SdkBuilder<AuthRequest.Builder,AuthRequest>,SdkPojo
- Enclosing class:
- AuthRequest
public static interface AuthRequest.Builder extends SdkPojo, CopyableBuilder<AuthRequest.Builder,AuthRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthRequest.Buildercode(String code)The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).AuthRequest.BuilderredirectUri(String redirectUri)The redirect URL that is specified in the AuthURL and the application client.-
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
-
redirectUri
AuthRequest.Builder redirectUri(String redirectUri)
The redirect URL that is specified in the AuthURL and the application client.
- Parameters:
redirectUri- The redirect URL that is specified in the AuthURL and the application client.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
AuthRequest.Builder code(String code)
The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).
- Parameters:
code- The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-