Class: Aws::Kinesis::Types::S3TablesConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::S3TablesConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
Specifies a destination streaming table on Apache Iceberg.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compression_type ⇒ String
The compression applied to Parquet data files.
-
#namespace ⇒ String
The namespace (database) of the destination table.
-
#partition_spec ⇒ Types::PartitionSpec
The partitioning specification for the destination table.
-
#table_bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon S3 table bucket.
-
#table_name ⇒ String
The name of the destination table.
Instance Attribute Details
#compression_type ⇒ String
The compression applied to Parquet data files. Valid values:
-
NONE- No compression. -
ZSTD- Zstandard compression. -
SNAPPY- Snappy compression.
2780 2781 2782 2783 2784 2785 2786 2787 2788 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2780 class S3TablesConfiguration < Struct.new( :table_bucket_arn, :namespace, :table_name, :compression_type, :partition_spec) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace (database) of the destination table.
2780 2781 2782 2783 2784 2785 2786 2787 2788 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2780 class S3TablesConfiguration < Struct.new( :table_bucket_arn, :namespace, :table_name, :compression_type, :partition_spec) SENSITIVE = [] include Aws::Structure end |
#partition_spec ⇒ Types::PartitionSpec
The partitioning specification for the destination table.
2780 2781 2782 2783 2784 2785 2786 2787 2788 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2780 class S3TablesConfiguration < Struct.new( :table_bucket_arn, :namespace, :table_name, :compression_type, :partition_spec) SENSITIVE = [] include Aws::Structure end |
#table_bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon S3 table bucket.
2780 2781 2782 2783 2784 2785 2786 2787 2788 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2780 class S3TablesConfiguration < Struct.new( :table_bucket_arn, :namespace, :table_name, :compression_type, :partition_spec) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the destination table. Amazon Kinesis Data Streams creates this table in the specified table bucket.
2780 2781 2782 2783 2784 2785 2786 2787 2788 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2780 class S3TablesConfiguration < Struct.new( :table_bucket_arn, :namespace, :table_name, :compression_type, :partition_spec) SENSITIVE = [] include Aws::Structure end |