Interface CustomAuthenticationProperties.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<CustomAuthenticationProperties.Builder,,CustomAuthenticationProperties> SdkBuilder<CustomAuthenticationProperties.Builder,,CustomAuthenticationProperties> SdkPojo
- Enclosing class:
CustomAuthenticationProperties
@Mutable
@NotThreadSafe
public static interface CustomAuthenticationProperties.Builder
extends SdkPojo, CopyableBuilder<CustomAuthenticationProperties.Builder,CustomAuthenticationProperties>
-
Method Summary
Modifier and TypeMethodDescriptionauthenticationParameters(Collection<ConnectorProperty> authenticationParameters) A map of custom authentication parameters that define the specific authentication mechanism and required properties.authenticationParameters(Consumer<ConnectorProperty.Builder>... authenticationParameters) A map of custom authentication parameters that define the specific authentication mechanism and required properties.authenticationParameters(ConnectorProperty... authenticationParameters) A map of custom authentication parameters that define the specific authentication mechanism and required properties.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
-
authenticationParameters
CustomAuthenticationProperties.Builder authenticationParameters(Collection<ConnectorProperty> authenticationParameters) A map of custom authentication parameters that define the specific authentication mechanism and required properties.
- Parameters:
authenticationParameters- A map of custom authentication parameters that define the specific authentication mechanism and required properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationParameters
CustomAuthenticationProperties.Builder authenticationParameters(ConnectorProperty... authenticationParameters) A map of custom authentication parameters that define the specific authentication mechanism and required properties.
- Parameters:
authenticationParameters- A map of custom authentication parameters that define the specific authentication mechanism and required properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationParameters
CustomAuthenticationProperties.Builder authenticationParameters(Consumer<ConnectorProperty.Builder>... authenticationParameters) A map of custom authentication parameters that define the specific authentication mechanism and required properties.
This is a convenience method that creates an instance of theConnectorProperty.Builderavoiding the need to create one manually viaConnectorProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toauthenticationParameters(List<ConnectorProperty>).- Parameters:
authenticationParameters- a consumer that will call methods onConnectorProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-