Interface InputSerialization.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<InputSerialization.Builder,
,InputSerialization> SdkBuilder<InputSerialization.Builder,
,InputSerialization> SdkPojo
- Enclosing class:
InputSerialization
public static interface InputSerialization.Builder
extends SdkPojo, CopyableBuilder<InputSerialization.Builder,InputSerialization>
-
Method Summary
Modifier and TypeMethodDescriptiondefault InputSerialization.Builder
csv
(Consumer<CSVInput.Builder> csv) Describes the serialization of a CSV-encoded object.Describes the serialization of a CSV-encoded 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, sdkFields
-
Method Details
-
csv
Describes the serialization of a CSV-encoded object.
- Parameters:
csv
- Describes the serialization of a CSV-encoded object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
csv
Describes the serialization of a CSV-encoded object.
This is a convenience method that creates an instance of theCSVInput.Builder
avoiding the need to create one manually viaCSVInput.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocsv(CSVInput)
.- Parameters:
csv
- a consumer that will call methods onCSVInput.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-