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
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 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.Builder
avoiding the need to create one manually viaAuthParameter.builder()
.When the
Consumer
completes,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:
-