Interface ParallelDataConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParallelDataConfig.Builder,ParallelDataConfig>,SdkBuilder<ParallelDataConfig.Builder,ParallelDataConfig>,SdkPojo
- Enclosing class:
- ParallelDataConfig
public static interface ParallelDataConfig.Builder extends SdkPojo, CopyableBuilder<ParallelDataConfig.Builder,ParallelDataConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParallelDataConfig.Builderformat(String format)The format of the parallel data input file.ParallelDataConfig.Builderformat(ParallelDataFormat format)The format of the parallel data input file.ParallelDataConfig.Builders3Uri(String s3Uri)The URI of the Amazon S3 folder that contains the parallel data input file.-
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, sdkFields
-
-
-
-
Method Detail
-
s3Uri
ParallelDataConfig.Builder s3Uri(String s3Uri)
The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling.
- Parameters:
s3Uri- The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
ParallelDataConfig.Builder format(String format)
The format of the parallel data input file.
- Parameters:
format- The format of the parallel data input file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParallelDataFormat,ParallelDataFormat
-
format
ParallelDataConfig.Builder format(ParallelDataFormat format)
The format of the parallel data input file.
- Parameters:
format- The format of the parallel data input file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParallelDataFormat,ParallelDataFormat
-
-