Interface Sasl.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Sasl.Builder,Sasl>
,SdkBuilder<Sasl.Builder,Sasl>
,SdkPojo
- Enclosing class:
- Sasl
public static interface Sasl.Builder extends SdkPojo, CopyableBuilder<Sasl.Builder,Sasl>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Sasl.Builder
iam(Consumer<Iam.Builder> iam)
Indicates whether IAM access control is enabled.Sasl.Builder
iam(Iam iam)
Indicates whether IAM access control is enabled.default Sasl.Builder
scram(Consumer<Scram.Builder> scram)
Details for SASL/SCRAM client authentication.Sasl.Builder
scram(Scram scram)
Details for SASL/SCRAM client authentication.-
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
-
scram
Sasl.Builder scram(Scram scram)
Details for SASL/SCRAM client authentication.
- Parameters:
scram
-Details for SASL/SCRAM client authentication.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scram
default Sasl.Builder scram(Consumer<Scram.Builder> scram)
Details for SASL/SCRAM client authentication.
This is a convenience method that creates an instance of theScram.Builder
avoiding the need to create one manually viaScram.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toscram(Scram)
.- Parameters:
scram
- a consumer that will call methods onScram.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
scram(Scram)
-
iam
Sasl.Builder iam(Iam iam)
Indicates whether IAM access control is enabled.
- Parameters:
iam
-Indicates whether IAM access control is enabled.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iam
default Sasl.Builder iam(Consumer<Iam.Builder> iam)
Indicates whether IAM access control is enabled.
This is a convenience method that creates an instance of theIam.Builder
avoiding the need to create one manually viaIam.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toiam(Iam)
.- Parameters:
iam
- a consumer that will call methods onIam.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
iam(Iam)
-
-