Class: Aws::Kafka::Types::Catalog

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kafka/types.rb

Overview

Configuration of the AWS Glue Data Catalog and S3 Tables warehouse used by the Apache Iceberg destination.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_arnString

The Amazon Resource Name (ARN) of the federated AWS Glue Data Catalog that projects the S3 Tables bucket. If omitted, MSK derives the catalog ARN from warehouseLocation.

Returns:

  • (String)


314
315
316
317
318
319
# File 'lib/aws-sdk-kafka/types.rb', line 314

class Catalog < Struct.new(
  :catalog_arn,
  :warehouse_location)
  SENSITIVE = []
  include Aws::Structure
end

#warehouse_locationString

The Amazon Resource Name (ARN) of the S3 Tables bucket that backs the Apache Iceberg warehouse.

Returns:

  • (String)


314
315
316
317
318
319
# File 'lib/aws-sdk-kafka/types.rb', line 314

class Catalog < Struct.new(
  :catalog_arn,
  :warehouse_location)
  SENSITIVE = []
  include Aws::Structure
end