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,11 @@
# Licensed under the Apache License, Version 2.0
"""SageMaker FeatureStore V3 - powered by sagemaker-core."""

# FeatureGroup with Lake Formation support (local subclass)
from sagemaker.mlops.feature_store.feature_group import FeatureGroup, LakeFormationConfig

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

# Shapes from core (Pydantic - no to_dict() needed)
from sagemaker.core.shapes import (
Expand Down Expand Up @@ -79,6 +82,7 @@
"FeatureParameter",
"FeatureValue",
"Filter",
"LakeFormationConfig",
"OfflineStoreConfig",
"OnlineStoreConfig",
"OnlineStoreSecurityConfig",
Expand Down
Loading
Loading