Class: Aws::Kafka::Types::DestinationTable

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#destination_database_nameString

The name of the destination namespace (database) in the AWS Glue Data Catalog.

Returns:

  • (String)


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_nameString

The name of the destination Apache Iceberg table.

Returns:

  • (String)


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_specTypes::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