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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomAuthenticationProperties.BuilderauthenticationParameters(Collection<ConnectorProperty> authenticationParameters)A map of custom authentication parameters that define the specific authentication mechanism and required properties.CustomAuthenticationProperties.BuilderauthenticationParameters(Consumer<ConnectorProperty.Builder>... authenticationParameters)A map of custom authentication parameters that define the specific authentication mechanism and required properties.CustomAuthenticationProperties.BuilderauthenticationParameters(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
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
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 to#authenticationParameters(List.) - 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:
#authenticationParameters(java.util.Collection)
-
-