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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFeatureGroup.DataCatalogConfigProperty
static final class
An implementation forCfnFeatureGroup.DataCatalogConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the Glue table catalog.The name of the Glue table database.The name of the Glue table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalog
The name of the Glue table catalog. -
getDatabase
The name of the Glue table database. -
getTableName
The name of the Glue table. -
builder
-