Interface ConnectivityPropertiesPatch.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectivityPropertiesPatch.Builder,,ConnectivityPropertiesPatch> SdkBuilder<ConnectivityPropertiesPatch.Builder,,ConnectivityPropertiesPatch> SdkPojo
- Enclosing class:
ConnectivityPropertiesPatch
@Mutable
@NotThreadSafe
public static interface ConnectivityPropertiesPatch.Builder
extends SdkPojo, CopyableBuilder<ConnectivityPropertiesPatch.Builder,ConnectivityPropertiesPatch>
-
Method Summary
Modifier and TypeMethodDescriptionauthenticationConfiguration(Consumer<AuthenticationConfigurationPatch.Builder> authenticationConfiguration) The authentication settings to update.authenticationConfiguration(AuthenticationConfigurationPatch authenticationConfiguration) The authentication settings to update.connectionProperties(Map<String, String> connectionProperties) The connection properties to update.description(String description) A description of the connectivity properties update.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
description
A description of the connectivity properties update.
- Parameters:
description- A description of the connectivity properties update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionProperties
The connection properties to update.
- Parameters:
connectionProperties- The connection properties to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationConfiguration
ConnectivityPropertiesPatch.Builder authenticationConfiguration(AuthenticationConfigurationPatch authenticationConfiguration) The authentication settings to update.
- Parameters:
authenticationConfiguration- The authentication settings to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationConfiguration
default ConnectivityPropertiesPatch.Builder authenticationConfiguration(Consumer<AuthenticationConfigurationPatch.Builder> authenticationConfiguration) The authentication settings to update.
This is a convenience method that creates an instance of theAuthenticationConfigurationPatch.Builderavoiding the need to create one manually viaAuthenticationConfigurationPatch.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toauthenticationConfiguration(AuthenticationConfigurationPatch).- Parameters:
authenticationConfiguration- a consumer that will call methods onAuthenticationConfigurationPatch.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-