Interface AuthRequest.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AuthRequest.Builder,
,AuthRequest> SdkBuilder<AuthRequest.Builder,
,AuthRequest> SdkPojo
- Enclosing class:
AuthRequest
@Mutable
@NotThreadSafe
public static interface AuthRequest.Builder
extends SdkPojo, CopyableBuilder<AuthRequest.Builder,AuthRequest>
-
Method Summary
Modifier and TypeMethodDescriptionThe authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).redirectUri
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
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
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.
-