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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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:



16473
16474
16475
16476
16477
16478
16479
16480
# File 'lib/aws-sdk-glue/types.rb', line 16473

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>)


16473
16474
16475
16476
16477
16478
16479
16480
# File 'lib/aws-sdk-glue/types.rb', line 16473

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)


16473
16474
16475
16476
16477
16478
16479
16480
# File 'lib/aws-sdk-glue/types.rb', line 16473

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)


16473
16474
16475
16476
16477
16478
16479
16480
# File 'lib/aws-sdk-glue/types.rb', line 16473

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