Interface DescribeDbClusterEndpointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeDbClusterEndpointsResponse.Builder,DescribeDbClusterEndpointsResponse>,RdsResponse.Builder,SdkBuilder<DescribeDbClusterEndpointsResponse.Builder,DescribeDbClusterEndpointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeDbClusterEndpointsResponse
public static interface DescribeDbClusterEndpointsResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeDbClusterEndpointsResponse.Builder,DescribeDbClusterEndpointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDbClusterEndpointsResponse.BuilderdbClusterEndpoints(Collection<DBClusterEndpoint> dbClusterEndpoints)Contains the details of the endpoints associated with the cluster and matching any filter conditions.DescribeDbClusterEndpointsResponse.BuilderdbClusterEndpoints(Consumer<DBClusterEndpoint.Builder>... dbClusterEndpoints)Contains the details of the endpoints associated with the cluster and matching any filter conditions.DescribeDbClusterEndpointsResponse.BuilderdbClusterEndpoints(DBClusterEndpoint... dbClusterEndpoints)Contains the details of the endpoints associated with the cluster and matching any filter conditions.DescribeDbClusterEndpointsResponse.Buildermarker(String marker)An optional pagination token provided by a previousDescribeDBClusterEndpointsrequest.-
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
-
marker
DescribeDbClusterEndpointsResponse.Builder marker(String marker)
An optional pagination token provided by a previous
DescribeDBClusterEndpointsrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Parameters:
marker- An optional pagination token provided by a previousDescribeDBClusterEndpointsrequest. 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.
-
dbClusterEndpoints
DescribeDbClusterEndpointsResponse.Builder dbClusterEndpoints(Collection<DBClusterEndpoint> dbClusterEndpoints)
Contains the details of the endpoints associated with the cluster and matching any filter conditions.
- Parameters:
dbClusterEndpoints- Contains the details of the endpoints associated with the cluster and matching any filter conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterEndpoints
DescribeDbClusterEndpointsResponse.Builder dbClusterEndpoints(DBClusterEndpoint... dbClusterEndpoints)
Contains the details of the endpoints associated with the cluster and matching any filter conditions.
- Parameters:
dbClusterEndpoints- Contains the details of the endpoints associated with the cluster and matching any filter conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbClusterEndpoints
DescribeDbClusterEndpointsResponse.Builder dbClusterEndpoints(Consumer<DBClusterEndpoint.Builder>... dbClusterEndpoints)
Contains the details of the endpoints associated with the cluster and matching any filter conditions.
This is a convenience method that creates an instance of theDBClusterEndpoint.Builderavoiding the need to create one manually viaDBClusterEndpoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dbClusterEndpoints(List.) - Parameters:
dbClusterEndpoints- a consumer that will call methods onDBClusterEndpoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dbClusterEndpoints(java.util.Collection)
-
-