Interface CustomAuthConfig.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<CustomAuthConfig.Builder,,CustomAuthConfig> SdkBuilder<CustomAuthConfig.Builder,,CustomAuthConfig> SdkPojo
- Enclosing class:
 CustomAuthConfig
public static interface CustomAuthConfig.Builder
extends SdkPojo, CopyableBuilder<CustomAuthConfig.Builder,CustomAuthConfig> 
- 
Method Summary
Modifier and TypeMethodDescriptionauthParameters(Collection<AuthParameter> authParameters) Information about authentication parameters required for authentication.authParameters(Consumer<AuthParameter.Builder>... authParameters) Information about authentication parameters required for authentication.authParameters(AuthParameter... authParameters) Information about authentication parameters required for authentication.customAuthenticationType(String customAuthenticationType) The authentication type that the custom connector uses.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
customAuthenticationType
The authentication type that the custom connector uses.
- Parameters:
 customAuthenticationType- The authentication type that the custom connector uses.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
authParameters
Information about authentication parameters required for authentication.
- Parameters:
 authParameters- Information about authentication parameters required for authentication.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
authParameters
Information about authentication parameters required for authentication.
- Parameters:
 authParameters- Information about authentication parameters required for authentication.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
authParameters
Information about authentication parameters required for authentication.
This is a convenience method that creates an instance of theAuthParameter.Builderavoiding the need to create one manually viaAuthParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toauthParameters(List<AuthParameter>).- Parameters:
 authParameters- a consumer that will call methods onAuthParameter.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -