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.Buildersasl(Consumer<Sasl.Builder> sasl)Details for ClientAuthentication using SASL.ClientAuthentication.Buildersasl(Sasl sasl)Details for ClientAuthentication using SASL.default ClientAuthentication.Buildertls(Consumer<Tls.Builder> tls)Details for ClientAuthentication using TLS.ClientAuthentication.Buildertls(Tls tls)Details for ClientAuthentication using TLS.default ClientAuthentication.Builderunauthenticated(Consumer<Unauthenticated.Builder> unauthenticated)Contains information about unauthenticated traffic to the cluster.ClientAuthentication.Builderunauthenticated(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, sdkFieldNameToField, 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.Builderavoiding the need to create one manually viaSasl.builder().When the
Consumercompletes,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.Builderavoiding the need to create one manually viaTls.builder().When the
Consumercompletes,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.Builderavoiding the need to create one manually viaUnauthenticated.builder().When the
Consumercompletes,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)
-
-