interface IcebergSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnTablePropsMixin.IcebergSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnTablePropsMixin_IcebergSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnTablePropsMixin.IcebergSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnTablePropsMixin.IcebergSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnTablePropsMixin » IcebergSchemaProperty |
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/cfn-property-mixins';
const icebergSchemaProperty: glue.CfnTablePropsMixin.IcebergSchemaProperty = {
fields: [{
doc: 'doc',
id: 123,
name: 'name',
required: false,
type: 'type',
}],
identifierFieldIds: [123],
schemaId: 123,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| fields? | IResolvable | (IResolvable | Iceberg)[] | |
| identifier | number[] | IResolvable | |
| schema | number | |
| type? | string |
fields?
Type:
IResolvable | (IResolvable | Iceberg)[]
(optional)
identifierFieldIds?
Type:
number[] | IResolvable
(optional)
schemaId?
Type:
number
(optional)
type?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript