libZSservicesZSamazonka-kinesis-firehoseZSamazonka-kinesis-firehose
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Firehose.Types.DataFormatConversionConfiguration

Description

 
Synopsis

Documentation

data DataFormatConversionConfiguration Source #

Specifies that you want Kinesis Data Firehose to convert data from the JSON format to the Parquet or ORC format before writing it to Amazon S3. Kinesis Data Firehose uses the serializer and deserializer that you specify, in addition to the column information from the AWS Glue table, to deserialize your input data from JSON and then serialize it to the Parquet or ORC format. For more information, see Kinesis Data Firehose Record Format Conversion.

See: newDataFormatConversionConfiguration smart constructor.

Constructors

DataFormatConversionConfiguration' 

Fields

Instances

Instances details
Eq DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

Read DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

Show DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

Generic DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

Associated Types

type Rep DataFormatConversionConfiguration :: Type -> Type #

NFData DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

Hashable DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

ToJSON DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

FromJSON DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

type Rep DataFormatConversionConfiguration Source # 
Instance details

Defined in Amazonka.Firehose.Types.DataFormatConversionConfiguration

type Rep DataFormatConversionConfiguration = D1 ('MetaData "DataFormatConversionConfiguration" "Amazonka.Firehose.Types.DataFormatConversionConfiguration" "libZSservicesZSamazonka-kinesis-firehoseZSamazonka-kinesis-firehose" 'False) (C1 ('MetaCons "DataFormatConversionConfiguration'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "outputFormatConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputFormatConfiguration)) :*: S1 ('MetaSel ('Just "enabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "schemaConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SchemaConfiguration)) :*: S1 ('MetaSel ('Just "inputFormatConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InputFormatConfiguration)))))

newDataFormatConversionConfiguration :: DataFormatConversionConfiguration Source #

Create a value of DataFormatConversionConfiguration 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:outputFormatConfiguration:DataFormatConversionConfiguration', dataFormatConversionConfiguration_outputFormatConfiguration - Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data to the Parquet or ORC format. This parameter is required if Enabled is set to true.

$sel:enabled:DataFormatConversionConfiguration', dataFormatConversionConfiguration_enabled - Defaults to true. Set it to false if you want to disable format conversion while preserving the configuration details.

$sel:schemaConfiguration:DataFormatConversionConfiguration', dataFormatConversionConfiguration_schemaConfiguration - Specifies the AWS Glue Data Catalog table that contains the column information. This parameter is required if Enabled is set to true.

$sel:inputFormatConfiguration:DataFormatConversionConfiguration', dataFormatConversionConfiguration_inputFormatConfiguration - Specifies the deserializer that you want Kinesis Data Firehose to use to convert the format of your data from JSON. This parameter is required if Enabled is set to true.

dataFormatConversionConfiguration_outputFormatConfiguration :: Lens' DataFormatConversionConfiguration (Maybe OutputFormatConfiguration) Source #

Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data to the Parquet or ORC format. This parameter is required if Enabled is set to true.

dataFormatConversionConfiguration_enabled :: Lens' DataFormatConversionConfiguration (Maybe Bool) Source #

Defaults to true. Set it to false if you want to disable format conversion while preserving the configuration details.

dataFormatConversionConfiguration_schemaConfiguration :: Lens' DataFormatConversionConfiguration (Maybe SchemaConfiguration) Source #

Specifies the AWS Glue Data Catalog table that contains the column information. This parameter is required if Enabled is set to true.

dataFormatConversionConfiguration_inputFormatConfiguration :: Lens' DataFormatConversionConfiguration (Maybe InputFormatConfiguration) Source #

Specifies the deserializer that you want Kinesis Data Firehose to use to convert the format of your data from JSON. This parameter is required if Enabled is set to true.