AWS sagemaker documentation change
Summary
Updated image alt text and modified import paths/initialization for FeatureGroup class
Security assessment
Changes involve documentation improvements and SDK usage updates. No security vulnerabilities, security features, or security-related context are addressed.
Diff
diff --git a/sagemaker/latest/dg/feature-store-delete-feature-group.md b/sagemaker/latest/dg/feature-store-delete-feature-group.md index 9006f4b1c..38407e0e2 100644 --- a//sagemaker/latest/dg/feature-store-delete-feature-group.md +++ b//sagemaker/latest/dg/feature-store-delete-feature-group.md @@ -47 +47 @@ This section shows two ways to delete a feature group in the console, depending - 2. In the left navigation pane, choose the **Home** icon (  ). + 2. In the left navigation pane, choose the **Home** icon (  ). @@ -69,2 +69,2 @@ The following code uses the [`DeleteFeatureGroup`](https://docs.aws.amazon.com/s - import sagemaker - from sagemaker.feature_store.feature_group import FeatureGroup + from sagemaker.core.helper.session_helper import Session + from sagemaker.mlops.feature_store import FeatureGroup @@ -72 +72 @@ The following code uses the [`DeleteFeatureGroup`](https://docs.aws.amazon.com/s - sagemaker_session = sagemaker.Session() + sagemaker_session = Session() @@ -75 +75 @@ The following code uses the [`DeleteFeatureGroup`](https://docs.aws.amazon.com/s - my_fg = FeatureGroup(name=fg_name, sagemaker_session=sagemaker_session) + my_fg = FeatureGroup(feature_group_name=fg_name)