Interface ModifyDbProxyEndpointResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ModifyDbProxyEndpointResponse.Builder,ModifyDbProxyEndpointResponse>
,RdsResponse.Builder
,SdkBuilder<ModifyDbProxyEndpointResponse.Builder,ModifyDbProxyEndpointResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ModifyDbProxyEndpointResponse
public static interface ModifyDbProxyEndpointResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<ModifyDbProxyEndpointResponse.Builder,ModifyDbProxyEndpointResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ModifyDbProxyEndpointResponse.Builder
dbProxyEndpoint(Consumer<DBProxyEndpoint.Builder> dbProxyEndpoint)
TheDBProxyEndpoint
object representing the new settings for the DB proxy endpoint.ModifyDbProxyEndpointResponse.Builder
dbProxyEndpoint(DBProxyEndpoint dbProxyEndpoint)
TheDBProxyEndpoint
object representing the new settings for the DB proxy endpoint.-
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
-
dbProxyEndpoint
ModifyDbProxyEndpointResponse.Builder dbProxyEndpoint(DBProxyEndpoint dbProxyEndpoint)
The
DBProxyEndpoint
object representing the new settings for the DB proxy endpoint.- Parameters:
dbProxyEndpoint
- TheDBProxyEndpoint
object representing the new settings for the DB proxy endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbProxyEndpoint
default ModifyDbProxyEndpointResponse.Builder dbProxyEndpoint(Consumer<DBProxyEndpoint.Builder> dbProxyEndpoint)
The
This is a convenience method that creates an instance of theDBProxyEndpoint
object representing the new settings for the DB proxy endpoint.DBProxyEndpoint.Builder
avoiding the need to create one manually viaDBProxyEndpoint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todbProxyEndpoint(DBProxyEndpoint)
.- Parameters:
dbProxyEndpoint
- a consumer that will call methods onDBProxyEndpoint.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dbProxyEndpoint(DBProxyEndpoint)
-
-