Class: Aws::S3Tables::Types::TableMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Tables::Types::TableMetadata
- Defined in:
- gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb
Overview
Note:
TableMetadata is a union - when making an API calls you must set exactly one of the members.
Contains details about the table metadata.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iceberg ⇒ Types::IcebergMetadata
Contains details about the metadata of an Iceberg table.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#iceberg ⇒ Types::IcebergMetadata
Contains details about the metadata of an Iceberg table.
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2355 class TableMetadata < Struct.new( :iceberg, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Iceberg < TableMetadata; end class Unknown < TableMetadata; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2355 2356 2357 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2355 def unknown @unknown end |