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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomAuthConfig.BuilderauthParameters(Collection<AuthParameter> authParameters)Information about authentication parameters required for authentication.CustomAuthConfig.BuilderauthParameters(Consumer<AuthParameter.Builder>... authParameters)Information about authentication parameters required for authentication.CustomAuthConfig.BuilderauthParameters(AuthParameter... authParameters)Information about authentication parameters required for authentication.CustomAuthConfig.BuildercustomAuthenticationType(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 Detail
-
customAuthenticationType
CustomAuthConfig.Builder customAuthenticationType(String 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
CustomAuthConfig.Builder authParameters(Collection<AuthParameter> 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
CustomAuthConfig.Builder authParameters(AuthParameter... 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
CustomAuthConfig.Builder authParameters(Consumer<AuthParameter.Builder>... 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 to#authParameters(List.) - 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:
#authParameters(java.util.Collection)
-
-