Class IcebergStructField
- java.lang.Object
-
- software.amazon.awssdk.services.glue.model.IcebergStructField
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<IcebergStructField.Builder,IcebergStructField>
@Generated("software.amazon.awssdk:codegen") public final class IcebergStructField extends Object implements SdkPojo, Serializable, ToCopyableBuilder<IcebergStructField.Builder,IcebergStructField>
Defines a single field within an Iceberg table schema, including its identifier, name, data type, nullability, and documentation.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceIcebergStructField.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IcebergStructField.Builderbuilder()Stringdoc()Optional documentation or description text that provides additional context about the purpose and usage of this field.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Integerid()The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.DocumentinitialDefault()Default value used to populate the field's value for all records that were written before the field was added to the schema.Stringname()The name of the field as it appears in the table schema and query operations.Booleanrequired()Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends IcebergStructField.Builder>serializableBuilderClass()IcebergStructField.BuildertoBuilder()StringtoString()Returns a string representation of this object.Documenttype()The data type definition for this field, specifying the structure and format of the data it contains.DocumentwriteDefault()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.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
id
public final Integer id()
The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.
- Returns:
- The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.
-
name
public final String name()
The name of the field as it appears in the table schema and query operations.
- Returns:
- The name of the field as it appears in the table schema and query operations.
-
type
public final Document type()
The data type definition for this field, specifying the structure and format of the data it contains.
- Returns:
- The data type definition for this field, specifying the structure and format of the data it contains.
-
required
public final Boolean required()
Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.
- Returns:
- Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.
-
doc
public final String doc()
Optional documentation or description text that provides additional context about the purpose and usage of this field.
- Returns:
- Optional documentation or description text that provides additional context about the purpose and usage of this field.
-
initialDefault
public final Document initialDefault()
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.
- Returns:
- 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.
-
writeDefault
public final Document writeDefault()
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.
- Returns:
- 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.
-
toBuilder
public IcebergStructField.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<IcebergStructField.Builder,IcebergStructField>
-
builder
public static IcebergStructField.Builder builder()
-
serializableBuilderClass
public static Class<? extends IcebergStructField.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-