Interface ModifyDbProxyResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ModifyDbProxyResponse.Builder,ModifyDbProxyResponse>,RdsResponse.Builder,SdkBuilder<ModifyDbProxyResponse.Builder,ModifyDbProxyResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ModifyDbProxyResponse
public static interface ModifyDbProxyResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<ModifyDbProxyResponse.Builder,ModifyDbProxyResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ModifyDbProxyResponse.BuilderdbProxy(Consumer<DBProxy.Builder> dbProxy)TheDBProxyobject representing the new settings for the proxy.ModifyDbProxyResponse.BuilderdbProxy(DBProxy dbProxy)TheDBProxyobject representing the new settings for the proxy.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rds.model.RdsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dbProxy
ModifyDbProxyResponse.Builder dbProxy(DBProxy dbProxy)
The
DBProxyobject representing the new settings for the proxy.- Parameters:
dbProxy- TheDBProxyobject representing the new settings for the proxy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbProxy
default ModifyDbProxyResponse.Builder dbProxy(Consumer<DBProxy.Builder> dbProxy)
The
This is a convenience method that creates an instance of theDBProxyobject representing the new settings for the proxy.DBProxy.Builderavoiding the need to create one manually viaDBProxy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todbProxy(DBProxy).- Parameters:
dbProxy- a consumer that will call methods onDBProxy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dbProxy(DBProxy)
-
-