Interface ImportDataSource.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ImportDataSource.Builder,ImportDataSource>
,SdkBuilder<ImportDataSource.Builder,ImportDataSource>
,SdkPojo
- Enclosing class:
- ImportDataSource
public static interface ImportDataSource.Builder extends SdkPojo, CopyableBuilder<ImportDataSource.Builder,ImportDataSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportDataSource.Builder
dataFormat(String dataFormat)
The data format of the import job's data source.ImportDataSource.Builder
dataFormat(DataFormat dataFormat)
The data format of the import job's data source.ImportDataSource.Builder
s3Url(String s3Url)
An Amazon S3 URL in the format s3://<bucket_name>/<object>.-
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
-
s3Url
ImportDataSource.Builder s3Url(String s3Url)
An Amazon S3 URL in the format s3://<bucket_name>/<object>.
- Parameters:
s3Url
- An Amazon S3 URL in the format s3://<bucket_name>/<object>.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataFormat
ImportDataSource.Builder dataFormat(String dataFormat)
The data format of the import job's data source.
- Parameters:
dataFormat
- The data format of the import job's data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataFormat
,DataFormat
-
dataFormat
ImportDataSource.Builder dataFormat(DataFormat dataFormat)
The data format of the import job's data source.
- Parameters:
dataFormat
- The data format of the import job's data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataFormat
,DataFormat
-
-