Class: Aws::Glue::Types::IcebergStructField
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::IcebergStructField
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Defines a single field within an Iceberg table schema, including its identifier, name, data type, nullability, and documentation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#doc ⇒ String
Optional documentation or description text that provides additional context about the purpose and usage of this field.
-
#id ⇒ Integer
The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.
-
#initial_default ⇒ Hash, ...
Default value used to populate the field's value for all records that were written before the field was added to the schema.
-
#name ⇒ String
The name of the field as it appears in the table schema and query operations.
-
#required ⇒ Boolean
Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.
-
#type ⇒ Hash, ...
The data type definition for this field, specifying the structure and format of the data it contains.
-
#write_default ⇒ Hash, ...
Default value used to populate the field's value for any records written after the field was added to the schema, if the writer does not supply the field's value.
Instance Attribute Details
#doc ⇒ String
Optional documentation or description text that provides additional context about the purpose and usage of this field.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |
#id ⇒ Integer
The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |
#initial_default ⇒ Hash, ...
Default value used to populate the field's value for all records that were written before the field was added to the schema. This enables backward compatibility when adding new fields to existing Iceberg tables.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the field as it appears in the table schema and query operations.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |
#required ⇒ Boolean
Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Hash, ...
The data type definition for this field, specifying the structure and format of the data it contains.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |
#write_default ⇒ Hash, ...
Default value used to populate the field's value for any records written after the field was added to the schema, if the writer does not supply the field's value. This can be changed through schema evolution.
17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17039 class IcebergStructField < Struct.new( :id, :name, :type, :required, :doc, :initial_default, :write_default) SENSITIVE = [] include Aws::Structure end |