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.Builder
dbProxy(Consumer<DBProxy.Builder> dbProxy)
TheDBProxy
object representing the new settings for the proxy.ModifyDbProxyResponse.Builder
dbProxy(DBProxy dbProxy)
TheDBProxy
object 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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dbProxy
ModifyDbProxyResponse.Builder dbProxy(DBProxy dbProxy)
The
DBProxy
object representing the new settings for the proxy.- Parameters:
dbProxy
- TheDBProxy
object 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 theDBProxy
object representing the new settings for the proxy.DBProxy.Builder
avoiding the need to create one manually viaDBProxy.builder()
.When the
Consumer
completes,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)
-
-