aws-cdk-lib.aws_sagemaker.CfnFeatureGroup.DataCatalogConfigProperty

interface DataCatalogConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnFeatureGroup.DataCatalogConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnFeatureGroup_DataCatalogConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnFeatureGroup.DataCatalogConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnFeatureGroup.DataCatalogConfigProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnFeatureGroup » DataCatalogConfigProperty

The meta data of the Glue table which serves as data catalog for the OfflineStore .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const dataCatalogConfigProperty: sagemaker.CfnFeatureGroup.DataCatalogConfigProperty = {
  catalog: 'catalog',
  database: 'database',
  tableName: 'tableName',
};

Properties

NameTypeDescription
catalogstringThe name of the Glue table catalog.
databasestringThe name of the Glue table database.
tableNamestringThe name of the Glue table.

catalog

Type: string

The name of the Glue table catalog.


database

Type: string

The name of the Glue table database.


tableName

Type: string

The name of the Glue table.