interface IcebergStructFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.IcebergStructFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_IcebergStructFieldProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.IcebergStructFieldProperty |
Python | aws_cdk.aws_glue.CfnTable.IcebergStructFieldProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » IcebergStructFieldProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const icebergStructFieldProperty: glue.CfnTable.IcebergStructFieldProperty = {
id: 123,
name: 'name',
required: false,
type: 'type',
// the properties below are optional
doc: 'doc',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | number | |
| name | string | |
| required | boolean | IResolvable | |
| type | string | |
| doc? | string |
id
Type:
number
name
Type:
string
required
Type:
boolean | IResolvable
type
Type:
string
doc?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript