interface IcebergTableInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.IcebergTableInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_IcebergTableInputProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.IcebergTableInputProperty |
Python | aws_cdk.aws_glue.CfnTable.IcebergTableInputProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » IcebergTableInputProperty |
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';
declare const properties: any;
const icebergTableInputProperty: glue.CfnTable.IcebergTableInputProperty = {
location: 'location',
schema: {
fields: [{
id: 123,
name: 'name',
required: false,
type: 'type',
// the properties below are optional
doc: 'doc',
}],
// the properties below are optional
identifierFieldIds: [123],
schemaId: 123,
type: 'type',
},
// the properties below are optional
partitionSpec: {
fields: [{
name: 'name',
sourceId: 123,
transform: 'transform',
// the properties below are optional
fieldId: 123,
}],
// the properties below are optional
specId: 123,
},
properties: properties,
writeOrder: {
fields: [{
direction: 'direction',
nullOrder: 'nullOrder',
sourceId: 123,
transform: 'transform',
}],
orderId: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| location | string | |
| schema | IResolvable | Iceberg | |
| partition | IResolvable | Iceberg | |
| properties? | any | |
| write | IResolvable | Iceberg |
location
Type:
string
schema
Type:
IResolvable | Iceberg
partitionSpec?
Type:
IResolvable | Iceberg
(optional)
properties?
Type:
any
(optional)
writeOrder?
Type:
IResolvable | Iceberg
(optional)

.NET
Go
Java
Python
TypeScript