Interface ConnectorOAuthRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectorOAuthRequest.Builder,ConnectorOAuthRequest>,SdkBuilder<ConnectorOAuthRequest.Builder,ConnectorOAuthRequest>,SdkPojo
- Enclosing class:
- ConnectorOAuthRequest
public static interface ConnectorOAuthRequest.Builder extends SdkPojo, CopyableBuilder<ConnectorOAuthRequest.Builder,ConnectorOAuthRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorOAuthRequest.BuilderauthCode(String authCode)The code provided by the connector when it has been authenticated via the connected app.ConnectorOAuthRequest.BuilderredirectUri(String redirectUri)The URL to which the authentication server redirects the browser after authorization has been granted.-
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
-
authCode
ConnectorOAuthRequest.Builder authCode(String authCode)
The code provided by the connector when it has been authenticated via the connected app.
- Parameters:
authCode- The code provided by the connector when it has been authenticated via the connected app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
redirectUri
ConnectorOAuthRequest.Builder redirectUri(String redirectUri)
The URL to which the authentication server redirects the browser after authorization has been granted.
- Parameters:
redirectUri- The URL to which the authentication server redirects the browser after authorization has been granted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-