Interface DescribeDbProxyEndpointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDbProxyEndpointsResponse.Builder,DescribeDbProxyEndpointsResponse>
,RdsResponse.Builder
,SdkBuilder<DescribeDbProxyEndpointsResponse.Builder,DescribeDbProxyEndpointsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDbProxyEndpointsResponse
public static interface DescribeDbProxyEndpointsResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeDbProxyEndpointsResponse.Builder,DescribeDbProxyEndpointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDbProxyEndpointsResponse.Builder
dbProxyEndpoints(Collection<DBProxyEndpoint> dbProxyEndpoints)
The list ofProxyEndpoint
objects returned by the API operation.DescribeDbProxyEndpointsResponse.Builder
dbProxyEndpoints(Consumer<DBProxyEndpoint.Builder>... dbProxyEndpoints)
The list ofProxyEndpoint
objects returned by the API operation.DescribeDbProxyEndpointsResponse.Builder
dbProxyEndpoints(DBProxyEndpoint... dbProxyEndpoints)
The list ofProxyEndpoint
objects returned by the API operation.DescribeDbProxyEndpointsResponse.Builder
marker(String marker)
An optional pagination token provided by a previous request.-
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
-
dbProxyEndpoints
DescribeDbProxyEndpointsResponse.Builder dbProxyEndpoints(Collection<DBProxyEndpoint> dbProxyEndpoints)
The list of
ProxyEndpoint
objects returned by the API operation.- Parameters:
dbProxyEndpoints
- The list ofProxyEndpoint
objects returned by the API operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbProxyEndpoints
DescribeDbProxyEndpointsResponse.Builder dbProxyEndpoints(DBProxyEndpoint... dbProxyEndpoints)
The list of
ProxyEndpoint
objects returned by the API operation.- Parameters:
dbProxyEndpoints
- The list ofProxyEndpoint
objects returned by the API operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbProxyEndpoints
DescribeDbProxyEndpointsResponse.Builder dbProxyEndpoints(Consumer<DBProxyEndpoint.Builder>... dbProxyEndpoints)
The list of
This is a convenience method that creates an instance of theProxyEndpoint
objects returned by the API operation.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 to#dbProxyEndpoints(List
.) - Parameters:
dbProxyEndpoints
- 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:
#dbProxyEndpoints(java.util.Collection
)
-
marker
DescribeDbProxyEndpointsResponse.Builder marker(String marker)
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by
MaxRecords
.- Parameters:
marker
- An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-