interface SchemaV2FieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTablePropsMixin.SchemaV2FieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTablePropsMixin_SchemaV2FieldProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTablePropsMixin.SchemaV2FieldProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTablePropsMixin.SchemaV2FieldProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnTablePropsMixin » 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/cfn-property-mixins';
declare const type: any;
const schemaV2FieldProperty: s3tables.CfnTablePropsMixin.SchemaV2FieldProperty = {
doc: 'doc',
id: 123,
name: 'name',
required: false,
type: type,
};
Properties
| Name | Type | Description |
|---|---|---|
| doc? | string | Optional documentation for the field. |
| 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?
Type:
string
(optional)
Optional documentation for the field.
id?
Type:
number
(optional)
The unique identifier for the field.
name?
Type:
string
(optional)
The name of the field.
required?
Type:
boolean | IResolvable
(optional)
A Boolean value that specifies whether values are required for each row in this field.
type?
Type:
any
(optional)

.NET
Go
Java
Python
TypeScript