Removes the Data Prepper csv sink codec. This is not ready for use and should not be documented. (#4859)

Signed-off-by: David Venable <dlv@amazon.com>
This commit is contained in:
David Venable 2023-08-23 07:19:04 -07:00 committed by GitHub
parent cc21df7ee8
commit ed21ec74cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,18 +109,6 @@ Option | Required | Type | Description
`schema` | Yes | String | The Avro [schema declaration](https://avro.apache.org/docs/current/specification/#schema-declaration). Not required if `auto_schema` is set to true.
`auto_schema` | No | Boolean | When set to `true`, automatically generates the Avro [schema declaration](https://avro.apache.org/docs/current/specification/#schema-declaration) from the first event.
### csv codec
The `csv` codec writes events in comma-separated value (CSV) format.
It also supports tab-separated value (TSV) and other delimited formats.
Option | Required | Type | Description
:--- | :--- | :--- | :---
`delimiter` | No | String | The delimiter. By default, this is `,` to support CSV.
`header` | No | String List | The header columns.
### ndjson codec