interface SchemaV2FieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.SchemaV2FieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_SchemaV2FieldProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTable.SchemaV2FieldProperty |
Python | aws_cdk.aws_s3tables.CfnTable.SchemaV2FieldProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » SchemaV2FieldProperty |
Contains details about a schema field for an Iceberg table that supports nested types (struct, list, map).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as s3tables } from 'aws-cdk-lib';
declare const type: any;
const schemaV2FieldProperty: s3tables.CfnTable.SchemaV2FieldProperty = {
id: 123,
name: 'name',
required: false,
type: type,
// the properties below are optional
doc: 'doc',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | number | The unique identifier for the field. |
| name | string | The name of the field. |
| required | boolean | IResolvable | A Boolean value that specifies whether values are required for each row in this field. |
| type | any | |
| doc? | string | Optional documentation for the field. |
id
Type:
number
The unique identifier for the field.
name
Type:
string
The name of the field.
required
Type:
boolean | IResolvable
A Boolean value that specifies whether values are required for each row in this field.
type
Type:
any
doc?
Type:
string
(optional)
Optional documentation for the field.

.NET
Go
Java
Python
TypeScript