public static interface OutputSerialization.Builder extends SdkPojo, CopyableBuilder<OutputSerialization.Builder,OutputSerialization>
Modifier and Type | Method and Description |
---|---|
default OutputSerialization.Builder |
csv(Consumer<CSVOutput.Builder> csv)
Describes the serialization of CSV-encoded query results.
|
OutputSerialization.Builder |
csv(CSVOutput csv)
Describes the serialization of CSV-encoded query results.
|
copy
applyMutation, build
OutputSerialization.Builder csv(CSVOutput csv)
Describes the serialization of CSV-encoded query results.
csv
- Describes the serialization of CSV-encoded query results.default OutputSerialization.Builder csv(Consumer<CSVOutput.Builder> csv)
Describes the serialization of CSV-encoded query results.
This is a convenience that creates an instance of theCSVOutput.Builder
avoiding the need to create
one manually via CSVOutput.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to csv(CSVOutput)
.csv
- a consumer that will call methods on CSVOutput.Builder
csv(CSVOutput)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.