Interface FormatOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FormatOptions.Builder,FormatOptions>,SdkBuilder<FormatOptions.Builder,FormatOptions>,SdkPojo
- Enclosing class:
- FormatOptions
public static interface FormatOptions.Builder extends SdkPojo, CopyableBuilder<FormatOptions.Builder,FormatOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FormatOptions.Buildercsv(Consumer<CsvOptions.Builder> csv)Options that define how CSV input is to be interpreted by DataBrew.FormatOptions.Buildercsv(CsvOptions csv)Options that define how CSV input is to be interpreted by DataBrew.default FormatOptions.Builderexcel(Consumer<ExcelOptions.Builder> excel)Options that define how Excel input is to be interpreted by DataBrew.FormatOptions.Builderexcel(ExcelOptions excel)Options that define how Excel input is to be interpreted by DataBrew.default FormatOptions.Builderjson(Consumer<JsonOptions.Builder> json)Options that define how JSON input is to be interpreted by DataBrew.FormatOptions.Builderjson(JsonOptions json)Options that define how JSON input is to be interpreted by DataBrew.-
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
-
json
FormatOptions.Builder json(JsonOptions json)
Options that define how JSON input is to be interpreted by DataBrew.
- Parameters:
json- Options that define how JSON input is to be interpreted by DataBrew.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
json
default FormatOptions.Builder json(Consumer<JsonOptions.Builder> json)
Options that define how JSON input is to be interpreted by DataBrew.
This is a convenience method that creates an instance of theJsonOptions.Builderavoiding the need to create one manually viaJsonOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojson(JsonOptions).- Parameters:
json- a consumer that will call methods onJsonOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
json(JsonOptions)
-
excel
FormatOptions.Builder excel(ExcelOptions excel)
Options that define how Excel input is to be interpreted by DataBrew.
- Parameters:
excel- Options that define how Excel input is to be interpreted by DataBrew.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excel
default FormatOptions.Builder excel(Consumer<ExcelOptions.Builder> excel)
Options that define how Excel input is to be interpreted by DataBrew.
This is a convenience method that creates an instance of theExcelOptions.Builderavoiding the need to create one manually viaExcelOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexcel(ExcelOptions).- Parameters:
excel- a consumer that will call methods onExcelOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
excel(ExcelOptions)
-
csv
FormatOptions.Builder csv(CsvOptions csv)
Options that define how CSV input is to be interpreted by DataBrew.
- Parameters:
csv- Options that define how CSV input is to be interpreted by DataBrew.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
csv
default FormatOptions.Builder csv(Consumer<CsvOptions.Builder> csv)
Options that define how CSV input is to be interpreted by DataBrew.
This is a convenience method that creates an instance of theCsvOptions.Builderavoiding the need to create one manually viaCsvOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocsv(CsvOptions).- Parameters:
csv- a consumer that will call methods onCsvOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
csv(CsvOptions)
-
-