aws-cdk-lib.aws_glue.CfnTable.TableIdentifierProperty

interface TableIdentifierProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTable.TableIdentifierProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_TableIdentifierProperty
Javasoftware.amazon.awscdk.services.glue.CfnTable.TableIdentifierProperty
Pythonaws_cdk.aws_glue.CfnTable.TableIdentifierProperty
TypeScript aws-cdk-lib » aws_glue » CfnTable » 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-lib';
const tableIdentifierProperty: glue.CfnTable.TableIdentifierProperty = {
  catalogId: 'catalogId',
  databaseName: 'databaseName',
  name: 'name',
};

Properties

NameTypeDescription
catalogId?stringThe ID of the Data Catalog in which the table resides.
databaseName?stringThe name of the catalog database that contains the target table.
name?stringThe name of the target 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.