Interface DescribeReplicationTableStatisticsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeReplicationTableStatisticsResponse.Builder,DescribeReplicationTableStatisticsResponse>,DatabaseMigrationResponse.Builder,SdkBuilder<DescribeReplicationTableStatisticsResponse.Builder,DescribeReplicationTableStatisticsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeReplicationTableStatisticsResponse
public static interface DescribeReplicationTableStatisticsResponse.Builder extends DatabaseMigrationResponse.Builder, SdkPojo, CopyableBuilder<DescribeReplicationTableStatisticsResponse.Builder,DescribeReplicationTableStatisticsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeReplicationTableStatisticsResponse.Buildermarker(String marker)An optional pagination token provided by a previous request.DescribeReplicationTableStatisticsResponse.BuilderreplicationConfigArn(String replicationConfigArn)The Amazon Resource Name of the replication config.DescribeReplicationTableStatisticsResponse.BuilderreplicationTableStatistics(Collection<TableStatistics> replicationTableStatistics)Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.DescribeReplicationTableStatisticsResponse.BuilderreplicationTableStatistics(Consumer<TableStatistics.Builder>... replicationTableStatistics)Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.DescribeReplicationTableStatisticsResponse.BuilderreplicationTableStatistics(TableStatistics... replicationTableStatistics)Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.-
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
-
replicationConfigArn
DescribeReplicationTableStatisticsResponse.Builder replicationConfigArn(String replicationConfigArn)
The Amazon Resource Name of the replication config.
- Parameters:
replicationConfigArn- The Amazon Resource Name of the replication config.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
marker
DescribeReplicationTableStatisticsResponse.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.
-
replicationTableStatistics
DescribeReplicationTableStatisticsResponse.Builder replicationTableStatistics(Collection<TableStatistics> replicationTableStatistics)
Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
- Parameters:
replicationTableStatistics- Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationTableStatistics
DescribeReplicationTableStatisticsResponse.Builder replicationTableStatistics(TableStatistics... replicationTableStatistics)
Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
- Parameters:
replicationTableStatistics- Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationTableStatistics
DescribeReplicationTableStatisticsResponse.Builder replicationTableStatistics(Consumer<TableStatistics.Builder>... replicationTableStatistics)
Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
This is a convenience method that creates an instance of theTableStatistics.Builderavoiding the need to create one manually viaTableStatistics.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#replicationTableStatistics(List.) - Parameters:
replicationTableStatistics- a consumer that will call methods onTableStatistics.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#replicationTableStatistics(java.util.Collection)
-
-