Interface AuthenticationConfigurationPatch.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AuthenticationConfigurationPatch.Builder,AuthenticationConfigurationPatch>,SdkBuilder<AuthenticationConfigurationPatch.Builder,AuthenticationConfigurationPatch>,SdkPojo
- Enclosing class:
- AuthenticationConfigurationPatch
public static interface AuthenticationConfigurationPatch.Builder extends SdkPojo, CopyableBuilder<AuthenticationConfigurationPatch.Builder,AuthenticationConfigurationPatch>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AuthenticationConfigurationPatch.BuilderbasicAuthenticationCredentials(Consumer<BasicAuthenticationCredentials.Builder> basicAuthenticationCredentials)The basic authentication credentials of a connection.AuthenticationConfigurationPatch.BuilderbasicAuthenticationCredentials(BasicAuthenticationCredentials basicAuthenticationCredentials)The basic authentication credentials of a connection.AuthenticationConfigurationPatch.BuildersecretArn(String secretArn)The secret ARN of a connection.-
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
-
basicAuthenticationCredentials
AuthenticationConfigurationPatch.Builder basicAuthenticationCredentials(BasicAuthenticationCredentials basicAuthenticationCredentials)
The basic authentication credentials of a connection.
- Parameters:
basicAuthenticationCredentials- The basic authentication credentials of a connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
basicAuthenticationCredentials
default AuthenticationConfigurationPatch.Builder basicAuthenticationCredentials(Consumer<BasicAuthenticationCredentials.Builder> basicAuthenticationCredentials)
The basic authentication credentials of a connection.
This is a convenience method that creates an instance of theBasicAuthenticationCredentials.Builderavoiding the need to create one manually viaBasicAuthenticationCredentials.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobasicAuthenticationCredentials(BasicAuthenticationCredentials).- Parameters:
basicAuthenticationCredentials- a consumer that will call methods onBasicAuthenticationCredentials.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
basicAuthenticationCredentials(BasicAuthenticationCredentials)
-
secretArn
AuthenticationConfigurationPatch.Builder secretArn(String secretArn)
The secret ARN of a connection.
- Parameters:
secretArn- The secret ARN of a connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-