interface TableIdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnTablePropsMixin.TableIdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnTablePropsMixin_TableIdentifierProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnTablePropsMixin.TableIdentifierProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnTablePropsMixin.TableIdentifierProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnTablePropsMixin » TableIdentifierProperty |
A structure that describes a target table for resource linking.
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 tableIdentifierProperty: glue.CfnTablePropsMixin.TableIdentifierProperty = {
catalogId: 'catalogId',
databaseName: 'databaseName',
name: 'name',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The ID of the Data Catalog in which the table resides. |
| database | string | The name of the catalog database that contains the target table. |
| name? | string | The name of the target table. |
| region? | string | The Region of the table. |
catalogId?
Type:
string
(optional)
The ID of the Data Catalog in which the table resides.
databaseName?
Type:
string
(optional)
The name of the catalog database that contains the target table.
name?
Type:
string
(optional)
The name of the target table.
region?
Type:
string
(optional)
The Region of the table.

.NET
Go
Java
Python
TypeScript