interface CfnTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTableMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTableMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTableMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTableMixinProps |
Properties for CfnTablePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
declare const parameters: any;
declare const skewedColumnValueLocationMaps: any;
const cfnTableMixinProps: glue_mixins.CfnTableMixinProps = {
catalogId: 'catalogId',
databaseName: 'databaseName',
openTableFormatInput: {
icebergInput: {
metadataOperation: 'metadataOperation',
version: 'version',
},
},
tableInput: {
description: 'description',
name: 'name',
owner: 'owner',
parameters: parameters,
partitionKeys: [{
comment: 'comment',
name: 'name',
type: 'type',
}],
retention: 123,
storageDescriptor: {
bucketColumns: ['bucketColumns'],
columns: [{
comment: 'comment',
name: 'name',
type: 'type',
}],
compressed: false,
inputFormat: 'inputFormat',
location: 'location',
numberOfBuckets: 123,
outputFormat: 'outputFormat',
parameters: parameters,
schemaReference: {
schemaId: {
registryName: 'registryName',
schemaArn: 'schemaArn',
schemaName: 'schemaName',
},
schemaVersionId: 'schemaVersionId',
schemaVersionNumber: 123,
},
serdeInfo: {
name: 'name',
parameters: parameters,
serializationLibrary: 'serializationLibrary',
},
skewedInfo: {
skewedColumnNames: ['skewedColumnNames'],
skewedColumnValueLocationMaps: skewedColumnValueLocationMaps,
skewedColumnValues: ['skewedColumnValues'],
},
sortColumns: [{
column: 'column',
sortOrder: 123,
}],
storedAsSubDirectories: false,
},
tableType: 'tableType',
targetTable: {
catalogId: 'catalogId',
databaseName: 'databaseName',
name: 'name',
region: 'region',
},
viewExpandedText: 'viewExpandedText',
viewOriginalText: 'viewOriginalText',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The ID of the Data Catalog in which to create the Table . |
| database | string | The name of the database where the table metadata resides. |
| open | IResolvable | Open | Specifies an OpenTableFormatInput structure when creating an open format table. |
| table | IResolvable | Table | A structure used to define a table. |
catalogId?
Type:
string
(optional)
The ID of the Data Catalog in which to create the Table .
databaseName?
Type:
string
(optional)
The name of the database where the table metadata resides.
For Hive compatibility, this must be all lowercase.
openTableFormatInput?
Type:
IResolvable | Open
(optional)
Specifies an OpenTableFormatInput structure when creating an open format table.
tableInput?
Type:
IResolvable | Table
(optional)
A structure used to define a table.

.NET
Go
Java
Python
TypeScript