Interface OAuth2Properties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OAuth2Properties.Builder,OAuth2Properties>,SdkBuilder<OAuth2Properties.Builder,OAuth2Properties>,SdkPojo
- Enclosing class:
- OAuth2Properties
public static interface OAuth2Properties.Builder extends SdkPojo, CopyableBuilder<OAuth2Properties.Builder,OAuth2Properties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OAuth2Properties.BuilderoAuth2GrantType(String oAuth2GrantType)The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.OAuth2Properties.BuilderoAuth2GrantType(OAuth2GrantType oAuth2GrantType)The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.OAuth2Properties.BuildertokenUrl(String tokenUrl)The token URL required for OAuth 2.0 authentication.OAuth2Properties.BuildertokenUrlCustomProperties(Map<String,String> tokenUrlCustomProperties)Associates your token URL with a map of properties that you define.-
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
-
tokenUrl
OAuth2Properties.Builder tokenUrl(String tokenUrl)
The token URL required for OAuth 2.0 authentication.
- Parameters:
tokenUrl- The token URL required for OAuth 2.0 authentication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oAuth2GrantType
OAuth2Properties.Builder oAuth2GrantType(String oAuth2GrantType)
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
- Parameters:
oAuth2GrantType- The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OAuth2GrantType,OAuth2GrantType
-
oAuth2GrantType
OAuth2Properties.Builder oAuth2GrantType(OAuth2GrantType oAuth2GrantType)
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
- Parameters:
oAuth2GrantType- The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OAuth2GrantType,OAuth2GrantType
-
tokenUrlCustomProperties
OAuth2Properties.Builder tokenUrlCustomProperties(Map<String,String> tokenUrlCustomProperties)
Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.
- Parameters:
tokenUrlCustomProperties- Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-