Struct aws_sdk_firehose::model::DataFormatConversionConfiguration [−][src]
#[non_exhaustive]pub struct DataFormatConversionConfiguration {
pub schema_configuration: Option<SchemaConfiguration>,
pub input_format_configuration: Option<InputFormatConfiguration>,
pub output_format_configuration: Option<OutputFormatConfiguration>,
pub enabled: Option<bool>,
}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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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.
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.
enabled: Option<bool>Defaults to true. Set it to false if you want to disable
format conversion while preserving the configuration details.
Implementations
Specifies the AWS Glue Data Catalog table that contains the column information. This
parameter is required if Enabled is set to true.
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.
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.
Creates a new builder-style object to manufacture DataFormatConversionConfiguration
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for DataFormatConversionConfiguration
impl Sync for DataFormatConversionConfiguration
impl Unpin for DataFormatConversionConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more