Interface GetBatchPredictionJobsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetBatchPredictionJobsResponse.Builder,GetBatchPredictionJobsResponse>,FraudDetectorResponse.Builder,SdkBuilder<GetBatchPredictionJobsResponse.Builder,GetBatchPredictionJobsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetBatchPredictionJobsResponse
public static interface GetBatchPredictionJobsResponse.Builder extends FraudDetectorResponse.Builder, SdkPojo, CopyableBuilder<GetBatchPredictionJobsResponse.Builder,GetBatchPredictionJobsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetBatchPredictionJobsResponse.BuilderbatchPredictions(Collection<BatchPrediction> batchPredictions)An array containing the details of each batch prediction job.GetBatchPredictionJobsResponse.BuilderbatchPredictions(Consumer<BatchPrediction.Builder>... batchPredictions)An array containing the details of each batch prediction job.GetBatchPredictionJobsResponse.BuilderbatchPredictions(BatchPrediction... batchPredictions)An array containing the details of each batch prediction job.GetBatchPredictionJobsResponse.BuildernextToken(String nextToken)The next token for the subsequent request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.frauddetector.model.FraudDetectorResponse.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
-
batchPredictions
GetBatchPredictionJobsResponse.Builder batchPredictions(Collection<BatchPrediction> batchPredictions)
An array containing the details of each batch prediction job.
- Parameters:
batchPredictions- An array containing the details of each batch prediction job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchPredictions
GetBatchPredictionJobsResponse.Builder batchPredictions(BatchPrediction... batchPredictions)
An array containing the details of each batch prediction job.
- Parameters:
batchPredictions- An array containing the details of each batch prediction job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchPredictions
GetBatchPredictionJobsResponse.Builder batchPredictions(Consumer<BatchPrediction.Builder>... batchPredictions)
An array containing the details of each batch prediction job.
This is a convenience method that creates an instance of theBatchPrediction.Builderavoiding the need to create one manually viaBatchPrediction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#batchPredictions(List.) - Parameters:
batchPredictions- a consumer that will call methods onBatchPrediction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#batchPredictions(java.util.Collection)
-
nextToken
GetBatchPredictionJobsResponse.Builder nextToken(String nextToken)
The next token for the subsequent request.
- Parameters:
nextToken- The next token for the subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-