Skip to content

Commit c2a0909

Browse files
authored
Update amazon_sagemaker_featurestore.rst
1 parent 6decb34 commit c2a0909

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/amazon_sagemaker_featurestore.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,14 +290,14 @@ example identifier to retrieve the record.
290290
291291
record_identifier_value = str(2990130)
292292
featurestore_runtime.get_record(FeatureGroupName=transaction_feature_group_name, RecordIdentifierValueAsString=record_identifier_value)
293-
293+
294294
You can use the ``batch_get_record`` function to retrieve multiple records simultaneously from your feature store. The following example uses this API to retrieve a batch of records.
295295
296296
.. code:: python
297297
298298
record_identifier_values = ["573291", "109382", "828400", "124013"]
299299
featurestore_runtime.batch_get_record(Identifiers=[{"FeatureGroupName": transaction_feature_group_name, "RecordIdentifiersValueAsString": record_identifier_values}])
300-
300+
301301
An example response from the fraud detection example:
302302
303303
.. code:: python

0 commit comments

Comments
 (0)