Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/api/sagemaker_mlops.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ Workflow Management
:undoc-members:
:show-inheritance:

Feature Store
-------------

.. automodule:: sagemaker.mlops.feature_store
:members:
:undoc-members:
:show-inheritance:

Local Development
-----------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
# Licensed under the Apache License, Version 2.0
"""SageMaker FeatureStore V3 - powered by sagemaker-core."""

# Resources from core
# FeatureGroup with Lake Formation support (local subclass)
from sagemaker.core.resources import FeatureGroup, FeatureMetadata
from sagemaker.mlops.feature_store.feature_group_manager import FeatureGroupManager, LakeFormationConfig

# Resources from core
from sagemaker.core.resources import FeatureMetadata

# Shapes from core (Pydantic - no to_dict() needed)
from sagemaker.core.shapes import (
Expand Down Expand Up @@ -73,12 +77,14 @@
__all__ = [
# Resources
"FeatureGroup",
"FeatureGroupManager",
"FeatureMetadata",
# Shapes
"DataCatalogConfig",
"FeatureParameter",
"FeatureValue",
"Filter",
"LakeFormationConfig",
"OfflineStoreConfig",
"OnlineStoreConfig",
"OnlineStoreSecurityConfig",
Expand Down
Loading
Loading