Class: Aws::Kafka::Types::SchemaEvolution
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::SchemaEvolution
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Configuration controlling whether the Apache Iceberg destination table's schema is evolved as incoming records change.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enable_schema_evolution ⇒ Boolean
Whether to allow MSK to evolve the destination table's schema.
Instance Attribute Details
#enable_schema_evolution ⇒ Boolean
Whether to allow MSK to evolve the destination table's schema. Must be false for the current release.
4799 4800 4801 4802 4803 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 4799 class SchemaEvolution < Struct.new( :enable_schema_evolution) SENSITIVE = [] include Aws::Structure end |