Interface ClientAuthentication.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ClientAuthentication.Builder,ClientAuthentication>
,SdkBuilder<ClientAuthentication.Builder,ClientAuthentication>
,SdkPojo
- Enclosing class:
- ClientAuthentication
public static interface ClientAuthentication.Builder extends SdkPojo, CopyableBuilder<ClientAuthentication.Builder,ClientAuthentication>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClientAuthentication.Builder
sasl(Consumer<Sasl.Builder> sasl)
Details for ClientAuthentication using SASL.ClientAuthentication.Builder
sasl(Sasl sasl)
Details for ClientAuthentication using SASL.default ClientAuthentication.Builder
tls(Consumer<Tls.Builder> tls)
Details for ClientAuthentication using TLS.ClientAuthentication.Builder
tls(Tls tls)
Details for ClientAuthentication using TLS.default ClientAuthentication.Builder
unauthenticated(Consumer<Unauthenticated.Builder> unauthenticated)
Contains information about unauthenticated traffic to the cluster.ClientAuthentication.Builder
unauthenticated(Unauthenticated unauthenticated)
Contains information about unauthenticated traffic to the cluster.-
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
-
sasl
ClientAuthentication.Builder sasl(Sasl sasl)
Details for ClientAuthentication using SASL.
- Parameters:
sasl
-Details for ClientAuthentication using SASL.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sasl
default ClientAuthentication.Builder sasl(Consumer<Sasl.Builder> sasl)
Details for ClientAuthentication using SASL.
This is a convenience method that creates an instance of theSasl.Builder
avoiding the need to create one manually viaSasl.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosasl(Sasl)
.- Parameters:
sasl
- a consumer that will call methods onSasl.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sasl(Sasl)
-
tls
ClientAuthentication.Builder tls(Tls tls)
Details for ClientAuthentication using TLS.
- Parameters:
tls
-Details for ClientAuthentication using TLS.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tls
default ClientAuthentication.Builder tls(Consumer<Tls.Builder> tls)
Details for ClientAuthentication using TLS.
This is a convenience method that creates an instance of theTls.Builder
avoiding the need to create one manually viaTls.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totls(Tls)
.- Parameters:
tls
- a consumer that will call methods onTls.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tls(Tls)
-
unauthenticated
ClientAuthentication.Builder unauthenticated(Unauthenticated unauthenticated)
Contains information about unauthenticated traffic to the cluster.
- Parameters:
unauthenticated
-Contains information about unauthenticated traffic to the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unauthenticated
default ClientAuthentication.Builder unauthenticated(Consumer<Unauthenticated.Builder> unauthenticated)
Contains information about unauthenticated traffic to the cluster.
This is a convenience method that creates an instance of theUnauthenticated.Builder
avoiding the need to create one manually viaUnauthenticated.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tounauthenticated(Unauthenticated)
.- Parameters:
unauthenticated
- a consumer that will call methods onUnauthenticated.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
unauthenticated(Unauthenticated)
-
-