Interface AuthorizationCodeGrant.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuthorizationCodeGrant.Builder,AuthorizationCodeGrant>,SdkBuilder<AuthorizationCodeGrant.Builder,AuthorizationCodeGrant>,SdkPojo
- Enclosing class:
- AuthorizationCodeGrant
public static interface AuthorizationCodeGrant.Builder extends SdkPojo, CopyableBuilder<AuthorizationCodeGrant.Builder,AuthorizationCodeGrant>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthorizationCodeGrant.BuilderredirectUris(String... redirectUris)A list of URIs that are valid locations to redirect a user's browser after the user is authorized.AuthorizationCodeGrant.BuilderredirectUris(Collection<String> redirectUris)A list of URIs that are valid locations to redirect a user's browser after the user is authorized.-
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
-
redirectUris
AuthorizationCodeGrant.Builder redirectUris(Collection<String> redirectUris)
A list of URIs that are valid locations to redirect a user's browser after the user is authorized.
- Parameters:
redirectUris- A list of URIs that are valid locations to redirect a user's browser after the user is authorized.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
redirectUris
AuthorizationCodeGrant.Builder redirectUris(String... redirectUris)
A list of URIs that are valid locations to redirect a user's browser after the user is authorized.
- Parameters:
redirectUris- A list of URIs that are valid locations to redirect a user's browser after the user is authorized.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-