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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeatureGroup.DataCatalogConfigPropertystatic final classAn 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.- See Also:
-
getDatabase
The name of the Glue table database.- See Also:
-
getTableName
The name of the Glue table.- See Also:
-
builder
-