interface DataCatalogConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnFeatureGroupPropsMixin.DataCatalogConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnFeatureGroupPropsMixin_DataCatalogConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnFeatureGroupPropsMixin.DataCatalogConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnFeatureGroupPropsMixin.DataCatalogConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnFeatureGroupPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const dataCatalogConfigProperty: sagemaker_mixins.CfnFeatureGroupPropsMixin.DataCatalogConfigProperty = {
catalog: 'catalog',
database: 'database',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog? | string | The name of the Glue table catalog. |
| database? | string | The name of the Glue table database. |
| table | string | The name of the Glue table. |
catalog?
Type:
string
(optional)
The name of the Glue table catalog.
database?
Type:
string
(optional)
The name of the Glue table database.
tableName?
Type:
string
(optional)
The name of the Glue table.

.NET
Go
Java
Python
TypeScript