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.
2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2206 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
2206 2207 2208 |
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2206 def unknown @unknown end |