Class: Aws::Kafka::Types::DestinationTable
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::DestinationTable
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Configuration of an Apache Iceberg destination table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_database_name ⇒ String
The name of the destination namespace (database) in the AWS Glue Data Catalog.
-
#destination_table_name ⇒ String
The name of the destination Apache Iceberg table.
-
#partition_spec ⇒ Types::PartitionSpec
The partition specification for the destination table.
Instance Attribute Details
#destination_database_name ⇒ String
The name of the destination namespace (database) in the AWS Glue Data Catalog.
2077 2078 2079 2080 2081 2082 2083 |
# File 'lib/aws-sdk-kafka/types.rb', line 2077 class DestinationTable < Struct.new( :destination_database_name, :destination_table_name, :partition_spec) SENSITIVE = [] include Aws::Structure end |
#destination_table_name ⇒ String
The name of the destination Apache Iceberg table.
2077 2078 2079 2080 2081 2082 2083 |
# File 'lib/aws-sdk-kafka/types.rb', line 2077 class DestinationTable < Struct.new( :destination_database_name, :destination_table_name, :partition_spec) SENSITIVE = [] include Aws::Structure end |
#partition_spec ⇒ Types::PartitionSpec
The partition specification for the destination table.
2077 2078 2079 2080 2081 2082 2083 |
# File 'lib/aws-sdk-kafka/types.rb', line 2077 class DestinationTable < Struct.new( :destination_database_name, :destination_table_name, :partition_spec) SENSITIVE = [] include Aws::Structure end |