Class: Aws::Glue::Types::IcebergSortOrder
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::IcebergSortOrder
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Defines the sort order specification for an Iceberg table, determining how data should be ordered within partitions to optimize query performance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fields ⇒ Array<Types::IcebergSortField>
The list of fields and their sort directions that define the ordering criteria for the Iceberg table data.
-
#order_id ⇒ Integer
The unique identifier for this sort order specification within the Iceberg table's metadata.
Instance Attribute Details
#fields ⇒ Array<Types::IcebergSortField>
The list of fields and their sort directions that define the ordering criteria for the Iceberg table data.
16167 16168 16169 16170 16171 16172 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16167 class IcebergSortOrder < Struct.new( :order_id, :fields) SENSITIVE = [] include Aws::Structure end |
#order_id ⇒ Integer
The unique identifier for this sort order specification within the Iceberg table's metadata.
16167 16168 16169 16170 16171 16172 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16167 class IcebergSortOrder < Struct.new( :order_id, :fields) SENSITIVE = [] include Aws::Structure end |