Skip to content

change: Fix hyperlinks in feature_processor.scheduler parameter descriptions #4208

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from 12 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
12 changes: 8 additions & 4 deletions doc/amazon_sagemaker_featurestore.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,11 @@ The following code from the fraud detection example shows a minimal
    enable_online_store=True
)

Creating a feature group takes time as the data is loaded. You will need
to wait until it is created before you can use it. You can check status
using the following method.
Creating a feature group takes time as the data is loaded. You will
need to wait until it is created before you can use it. You can
check status using the following method. Note that it can take
approximately 10-15 minutes to provision an online ``FeatureGroup``
with the ``InMemory`` ``StorageType``.

.. code:: python

Expand Down Expand Up @@ -480,7 +482,9 @@ Feature Store `DatasetBuilder API Reference
.. rubric:: Delete a feature group
:name: bCe9CA61b78

You can delete a feature group with the ``delete`` function.
You can delete a feature group with the ``delete`` function. Note that it
can take approximately 10-15 minutes to delete an online ``FeatureGroup``
with the ``InMemory`` ``StorageType``.

.. code:: python

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ def schedule(
Args:
pipeline_name (str): The SageMaker Pipeline name that will be scheduled.
schedule_expression (str): The expression that defines when the schedule runs. It supports
at expression, rate expression and cron expression. See https://docs.aws.amazon.com/
scheduler/latest/APIReference/API_CreateSchedule.html#scheduler-CreateSchedule-request
-ScheduleExpression for more details.
at expression, rate expression and cron expression. See '''https://docs.aws.amazon.com\
/scheduler/latest/APIReference/API_CreateSchedule.html#scheduler-CreateSchedule-\
request-ScheduleExpression''' for more details.
state (str): Specifies whether the schedule is enabled or disabled. Valid values are
ENABLED and DISABLED. See https://docs.aws.amazon.com/scheduler/latest/APIReference/
API_CreateSchedule.html#scheduler-CreateSchedule-request-State for more details.
If not specified, it will default to ENABLED.
ENABLED and DISABLED. See '''https://docs.aws.amazon.com/scheduler/latest/APIReference\
/API_CreateSchedule.html#scheduler-CreateSchedule-request-State'''
for more details. If not specified, it will default to ENABLED.
start_date (Optional[datetime]): The date, in UTC, after which the schedule can begin
invoking its target. Depending on the schedule’s recurrence expression, invocations
might occur on, or after, the StartDate you specify.
Expand Down