Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data Serializer Source #
The serializer that you want Kinesis Data Firehose to use to convert data to the target format before writing it to Amazon S3. Kinesis Data Firehose supports two types of serializers: the ORC SerDe and the Parquet SerDe.
See: newSerializer
smart constructor.
Serializer' | |
|
Instances
newSerializer :: Serializer Source #
Create a value of Serializer
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:orcSerDe:Serializer'
, serializer_orcSerDe
- A serializer to use for converting data to the ORC format before storing
it in Amazon S3. For more information, see
Apache ORC.
$sel:parquetSerDe:Serializer'
, serializer_parquetSerDe
- A serializer to use for converting data to the Parquet format before
storing it in Amazon S3. For more information, see
Apache Parquet.
serializer_orcSerDe :: Lens' Serializer (Maybe OrcSerDe) Source #
A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.
serializer_parquetSerDe :: Lens' Serializer (Maybe ParquetSerDe) Source #
A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.