Class: Aws::Glue::Types::IcebergPartitionField

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

Overview

Defines a single partition field within an Iceberg partition specification, including the source field, transformation function, partition name, and unique identifier.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field_idInteger

The unique identifier assigned to this partition field within the Iceberg table's partition specification.

Returns:

  • (Integer)


15716
15717
15718
15719
15720
15721
15722
15723
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15716

class IcebergPartitionField < Struct.new(
  :source_id,
  :transform,
  :name,
  :field_id)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the partition field as it will appear in the partitioned table structure.

Returns:

  • (String)


15716
15717
15718
15719
15720
15721
15722
15723
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15716

class IcebergPartitionField < Struct.new(
  :source_id,
  :transform,
  :name,
  :field_id)
  SENSITIVE = []
  include Aws::Structure
end

#source_idInteger

The identifier of the source field from the table schema that this partition field is based on.

Returns:

  • (Integer)


15716
15717
15718
15719
15720
15721
15722
15723
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15716

class IcebergPartitionField < Struct.new(
  :source_id,
  :transform,
  :name,
  :field_id)
  SENSITIVE = []
  include Aws::Structure
end

#transformString

The transformation function applied to the source field to create the partition, such as identity, bucket, truncate, year, month, day, or hour.

Returns:

  • (String)


15716
15717
15718
15719
15720
15721
15722
15723
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 15716

class IcebergPartitionField < Struct.new(
  :source_id,
  :transform,
  :name,
  :field_id)
  SENSITIVE = []
  include Aws::Structure
end