Interface GetBatchImportJobsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetBatchImportJobsResponse.Builder,GetBatchImportJobsResponse>,FraudDetectorResponse.Builder,SdkBuilder<GetBatchImportJobsResponse.Builder,GetBatchImportJobsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetBatchImportJobsResponse
public static interface GetBatchImportJobsResponse.Builder extends FraudDetectorResponse.Builder, SdkPojo, CopyableBuilder<GetBatchImportJobsResponse.Builder,GetBatchImportJobsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetBatchImportJobsResponse.BuilderbatchImports(Collection<BatchImport> batchImports)An array containing the details of each batch import job.GetBatchImportJobsResponse.BuilderbatchImports(Consumer<BatchImport.Builder>... batchImports)An array containing the details of each batch import job.GetBatchImportJobsResponse.BuilderbatchImports(BatchImport... batchImports)An array containing the details of each batch import job.GetBatchImportJobsResponse.BuildernextToken(String nextToken)The next token for the subsequent resquest.-
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
-
batchImports
GetBatchImportJobsResponse.Builder batchImports(Collection<BatchImport> batchImports)
An array containing the details of each batch import job.
- Parameters:
batchImports- An array containing the details of each batch import job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchImports
GetBatchImportJobsResponse.Builder batchImports(BatchImport... batchImports)
An array containing the details of each batch import job.
- Parameters:
batchImports- An array containing the details of each batch import job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchImports
GetBatchImportJobsResponse.Builder batchImports(Consumer<BatchImport.Builder>... batchImports)
An array containing the details of each batch import job.
This is a convenience method that creates an instance of theBatchImport.Builderavoiding the need to create one manually viaBatchImport.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#batchImports(List.) - Parameters:
batchImports- a consumer that will call methods onBatchImport.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#batchImports(java.util.Collection)
-
nextToken
GetBatchImportJobsResponse.Builder nextToken(String nextToken)
The next token for the subsequent resquest.
- Parameters:
nextToken- The next token for the subsequent resquest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-