Interface OutputFormatOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutputFormatOptions.Builder,OutputFormatOptions>,SdkBuilder<OutputFormatOptions.Builder,OutputFormatOptions>,SdkPojo
- Enclosing class:
- OutputFormatOptions
public static interface OutputFormatOptions.Builder extends SdkPojo, CopyableBuilder<OutputFormatOptions.Builder,OutputFormatOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default OutputFormatOptions.Buildercsv(Consumer<CsvOutputOptions.Builder> csv)Represents a set of options that define the structure of comma-separated value (CSV) job output.OutputFormatOptions.Buildercsv(CsvOutputOptions csv)Represents a set of options that define the structure of comma-separated value (CSV) job output.-
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
-
csv
OutputFormatOptions.Builder csv(CsvOutputOptions csv)
Represents a set of options that define the structure of comma-separated value (CSV) job output.
- Parameters:
csv- Represents a set of options that define the structure of comma-separated value (CSV) job output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
csv
default OutputFormatOptions.Builder csv(Consumer<CsvOutputOptions.Builder> csv)
Represents a set of options that define the structure of comma-separated value (CSV) job output.
This is a convenience method that creates an instance of theCsvOutputOptions.Builderavoiding the need to create one manually viaCsvOutputOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocsv(CsvOutputOptions).- Parameters:
csv- a consumer that will call methods onCsvOutputOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
csv(CsvOutputOptions)
-
-