Interface Oauth2Credential.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Oauth2Credential.Builder,Oauth2Credential>,SdkBuilder<Oauth2Credential.Builder,Oauth2Credential>,SdkPojo
- Enclosing class:
- Oauth2Credential
public static interface Oauth2Credential.Builder extends SdkPojo, CopyableBuilder<Oauth2Credential.Builder,Oauth2Credential>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Oauth2Credential.BuilderclientId(String clientId)The client ID of the client application.Oauth2Credential.BuilderclientSecret(String clientSecret)The client secret of the client application.-
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
-
clientId
Oauth2Credential.Builder clientId(String clientId)
The client ID of the client application.
- Parameters:
clientId- The client ID of the client application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientSecret
Oauth2Credential.Builder clientSecret(String clientSecret)
The client secret of the client application.
- Parameters:
clientSecret- The client secret of the client application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-