Interface DescribeReplicationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeReplicationsResponse.Builder,DescribeReplicationsResponse>,DatabaseMigrationResponse.Builder,SdkBuilder<DescribeReplicationsResponse.Builder,DescribeReplicationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeReplicationsResponse
public static interface DescribeReplicationsResponse.Builder extends DatabaseMigrationResponse.Builder, SdkPojo, CopyableBuilder<DescribeReplicationsResponse.Builder,DescribeReplicationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeReplicationsResponse.Buildermarker(String marker)An optional pagination token provided by a previous request.DescribeReplicationsResponse.Builderreplications(Collection<Replication> replications)The replication descriptions.DescribeReplicationsResponse.Builderreplications(Consumer<Replication.Builder>... replications)The replication descriptions.DescribeReplicationsResponse.Builderreplications(Replication... replications)The replication descriptions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.databasemigration.model.DatabaseMigrationResponse.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
-
marker
DescribeReplicationsResponse.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.
-
replications
DescribeReplicationsResponse.Builder replications(Collection<Replication> replications)
The replication descriptions.
- Parameters:
replications- The replication descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replications
DescribeReplicationsResponse.Builder replications(Replication... replications)
The replication descriptions.
- Parameters:
replications- The replication descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replications
DescribeReplicationsResponse.Builder replications(Consumer<Replication.Builder>... replications)
The replication descriptions.
This is a convenience method that creates an instance of theReplication.Builderavoiding the need to create one manually viaReplication.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#replications(List.) - Parameters:
replications- a consumer that will call methods onReplication.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#replications(java.util.Collection)
-
-