AWSFirehoseDataFormatConversionConfiguration

Objective-C

@interface AWSFirehoseDataFormatConversionConfiguration

Swift

class AWSFirehoseDataFormatConversionConfiguration

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

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable enabled;

    Swift

    var enabled: NSNumber? { get set }
  • Specifies the deserializer that you want Firehose to use to convert the format of your data from JSON. This parameter is required if Enabled is set to true.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSFirehoseInputFormatConfiguration *_Nullable inputFormatConfiguration;

    Swift

    var inputFormatConfiguration: AWSFirehoseInputFormatConfiguration? { get set }
  • Specifies the serializer that you want 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSFirehoseOutputFormatConfiguration *_Nullable outputFormatConfiguration;

    Swift

    var outputFormatConfiguration: AWSFirehoseOutputFormatConfiguration? { get set }
  • Specifies the Amazon Web Services Glue Data Catalog table that contains the column information. This parameter is required if Enabled is set to true.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSFirehoseSchemaConfiguration *_Nullable schemaConfiguration;

    Swift

    var schemaConfiguration: AWSFirehoseSchemaConfiguration? { get set }