Class: Aws::Kafka::Types::Catalog
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::Catalog
- 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
-
#catalog_arn ⇒ String
The Amazon Resource Name (ARN) of the federated AWS Glue Data Catalog that projects the S3 Tables bucket.
-
#warehouse_location ⇒ String
The Amazon Resource Name (ARN) of the S3 Tables bucket that backs the Apache Iceberg warehouse.
Instance Attribute Details
#catalog_arn ⇒ String
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.
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_location ⇒ String
The Amazon Resource Name (ARN) of the S3 Tables bucket that backs the Apache Iceberg warehouse.
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 |