pub struct DataFormatConversionConfiguration {
pub enabled: Option<bool>,
pub input_format_configuration: Option<InputFormatConfiguration>,
pub output_format_configuration: Option<OutputFormatConfiguration>,
pub schema_configuration: Option<SchemaConfiguration>,
}Expand description
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.
Fields§
§enabled: Option<bool>Defaults to true. Set it to false if you want to disable format conversion while preserving the configuration details.
input_format_configuration: Option<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.
output_format_configuration: Option<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.
schema_configuration: Option<SchemaConfiguration>Specifies the AWS Glue Data Catalog table that contains the column information. This parameter is required if Enabled is set to true.
Trait Implementations§
Source§impl Clone for DataFormatConversionConfiguration
impl Clone for DataFormatConversionConfiguration
Source§fn clone(&self) -> DataFormatConversionConfiguration
fn clone(&self) -> DataFormatConversionConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DataFormatConversionConfiguration
impl Default for DataFormatConversionConfiguration
Source§fn default() -> DataFormatConversionConfiguration
fn default() -> DataFormatConversionConfiguration
Source§impl<'de> Deserialize<'de> for DataFormatConversionConfiguration
impl<'de> Deserialize<'de> for DataFormatConversionConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for DataFormatConversionConfiguration
impl PartialEq for DataFormatConversionConfiguration
Source§fn eq(&self, other: &DataFormatConversionConfiguration) -> bool
fn eq(&self, other: &DataFormatConversionConfiguration) -> bool
self and other values to be equal, and is used by ==.