Class: Aws::Glue::Types::IcebergSchema

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb

Overview

Defines the schema structure for an Iceberg table, including field definitions, data types, and schema metadata.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fieldsArray<Types::IcebergStructField>

The list of field definitions that make up the table schema, including field names, types, and metadata.

Returns:



18259
18260
18261
18262
18263
18264
18265
18266
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18259

class IcebergSchema < Struct.new(
  :schema_id,
  :identifier_field_ids,
  :type,
  :fields)
  SENSITIVE = []
  include Aws::Structure
end

#identifier_field_idsArray<Integer>

The list of field identifiers that uniquely identify records in the table, used for row-level operations and deduplication.

Returns:

  • (Array<Integer>)


18259
18260
18261
18262
18263
18264
18265
18266
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18259

class IcebergSchema < Struct.new(
  :schema_id,
  :identifier_field_ids,
  :type,
  :fields)
  SENSITIVE = []
  include Aws::Structure
end

#schema_idInteger

The unique identifier for this schema version within the Iceberg table's schema evolution history.

Returns:

  • (Integer)


18259
18260
18261
18262
18263
18264
18265
18266
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18259

class IcebergSchema < Struct.new(
  :schema_id,
  :identifier_field_ids,
  :type,
  :fields)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The root type of the schema structure, typically "struct" for Iceberg table schemas.

Returns:

  • (String)


18259
18260
18261
18262
18263
18264
18265
18266
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18259

class IcebergSchema < Struct.new(
  :schema_id,
  :identifier_field_ids,
  :type,
  :fields)
  SENSITIVE = []
  include Aws::Structure
end