Interface CfnFeatureGroup.DataCatalogConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFeatureGroup.DataCatalogConfigProperty.Jsii$Proxy
Enclosing class:
CfnFeatureGroup

@Stability(Stable) public static interface CfnFeatureGroup.DataCatalogConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 DataCatalogConfigProperty dataCatalogConfigProperty = DataCatalogConfigProperty.builder()
         .catalog("catalog")
         .database("database")
         .tableName("tableName")
         .build();