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

.NET
Go
Java
Python
TypeScript