Interface Batch.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Batch.Builder,Batch>,SdkBuilder<Batch.Builder,Batch>,SdkPojo
- Enclosing class:
- Batch
public static interface Batch.Builder extends SdkPojo, CopyableBuilder<Batch.Builder,Batch>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Batch.BuilderbatchJobName(String batchJobName)The job name of the batch.Batch.BuilderbatchJobParameters(Map<String,String> batchJobParameters)The batch job parameters of the batch.Batch.BuilderexportDataSetNames(String... exportDataSetNames)The export data set names of the batch.Batch.BuilderexportDataSetNames(Collection<String> exportDataSetNames)The export data set names of the batch.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
batchJobName
Batch.Builder batchJobName(String batchJobName)
The job name of the batch.
- Parameters:
batchJobName- The job name of the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchJobParameters
Batch.Builder batchJobParameters(Map<String,String> batchJobParameters)
The batch job parameters of the batch.
- Parameters:
batchJobParameters- The batch job parameters of the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportDataSetNames
Batch.Builder exportDataSetNames(Collection<String> exportDataSetNames)
The export data set names of the batch.
- Parameters:
exportDataSetNames- The export data set names of the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportDataSetNames
Batch.Builder exportDataSetNames(String... exportDataSetNames)
The export data set names of the batch.
- Parameters:
exportDataSetNames- The export data set names of the batch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-