Interface DescribeReplicationTaskAssessmentResultsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeReplicationTaskAssessmentResultsResponse.Builder,DescribeReplicationTaskAssessmentResultsResponse>,DatabaseMigrationResponse.Builder,SdkBuilder<DescribeReplicationTaskAssessmentResultsResponse.Builder,DescribeReplicationTaskAssessmentResultsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeReplicationTaskAssessmentResultsResponse
public static interface DescribeReplicationTaskAssessmentResultsResponse.Builder extends DatabaseMigrationResponse.Builder, SdkPojo, CopyableBuilder<DescribeReplicationTaskAssessmentResultsResponse.Builder,DescribeReplicationTaskAssessmentResultsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeReplicationTaskAssessmentResultsResponse.BuilderbucketName(String bucketName)- The Amazon S3 bucket where the task assessment report is located.DescribeReplicationTaskAssessmentResultsResponse.Buildermarker(String marker)An optional pagination token provided by a previous request.DescribeReplicationTaskAssessmentResultsResponse.BuilderreplicationTaskAssessmentResults(Collection<ReplicationTaskAssessmentResult> replicationTaskAssessmentResults)The task assessment report.DescribeReplicationTaskAssessmentResultsResponse.BuilderreplicationTaskAssessmentResults(Consumer<ReplicationTaskAssessmentResult.Builder>... replicationTaskAssessmentResults)The task assessment report.DescribeReplicationTaskAssessmentResultsResponse.BuilderreplicationTaskAssessmentResults(ReplicationTaskAssessmentResult... replicationTaskAssessmentResults)The task assessment report.-
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
DescribeReplicationTaskAssessmentResultsResponse.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.
-
bucketName
DescribeReplicationTaskAssessmentResultsResponse.Builder bucketName(String bucketName)
- The Amazon S3 bucket where the task assessment report is located.
- Parameters:
bucketName- - The Amazon S3 bucket where the task assessment report is located.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationTaskAssessmentResults
DescribeReplicationTaskAssessmentResultsResponse.Builder replicationTaskAssessmentResults(Collection<ReplicationTaskAssessmentResult> replicationTaskAssessmentResults)
The task assessment report.
- Parameters:
replicationTaskAssessmentResults- The task assessment report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationTaskAssessmentResults
DescribeReplicationTaskAssessmentResultsResponse.Builder replicationTaskAssessmentResults(ReplicationTaskAssessmentResult... replicationTaskAssessmentResults)
The task assessment report.
- Parameters:
replicationTaskAssessmentResults- The task assessment report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
replicationTaskAssessmentResults
DescribeReplicationTaskAssessmentResultsResponse.Builder replicationTaskAssessmentResults(Consumer<ReplicationTaskAssessmentResult.Builder>... replicationTaskAssessmentResults)
The task assessment report.
This is a convenience method that creates an instance of theReplicationTaskAssessmentResult.Builderavoiding the need to create one manually viaReplicationTaskAssessmentResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#replicationTaskAssessmentResults(List.) - Parameters:
replicationTaskAssessmentResults- a consumer that will call methods onReplicationTaskAssessmentResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#replicationTaskAssessmentResults(java.util.Collection)
-
-