Class: AWS.SageMakerFeatureStoreRuntime
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.SageMakerFeatureStoreRuntime
- Identifier:
- sagemakerfeaturestoreruntime
- API Version:
- 2020-07-01
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.
Use the following operations to configure your OnlineStore
and OfflineStore
features, and to create and manage feature groups:
Sending a Request Using SageMakerFeatureStoreRuntime
var sagemakerfeaturestoreruntime = new AWS.SageMakerFeatureStoreRuntime();
sagemakerfeaturestoreruntime.batchGetRecord(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the SageMakerFeatureStoreRuntime object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var sagemakerfeaturestoreruntime = new AWS.SageMakerFeatureStoreRuntime({apiVersion: '2020-07-01'});
You can also set the API version globally in AWS.config.apiVersions
using
the sagemakerfeaturestoreruntime service identifier:
AWS.config.apiVersions = {
sagemakerfeaturestoreruntime: '2020-07-01',
// other service API versions
};
var sagemakerfeaturestoreruntime = new AWS.SageMakerFeatureStoreRuntime();
Constructor Summary collapse
-
new AWS.SageMakerFeatureStoreRuntime(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
batchGetRecord(params = {}, callback) ⇒ AWS.Request
Retrieves a batch of
Records
from aFeatureGroup
..
-
deleteRecord(params = {}, callback) ⇒ AWS.Request
Deletes a
Record
from aFeatureGroup
. -
getRecord(params = {}, callback) ⇒ AWS.Request
Use for
OnlineStore
serving from aFeatureStore
. -
putRecord(params = {}, callback) ⇒ AWS.Request
Used for data ingestion into the
FeatureStore
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.SageMakerFeatureStoreRuntime(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
batchGetRecord(params = {}, callback) ⇒ AWS.Request
Retrieves a batch of Records
from a FeatureGroup
.
deleteRecord(params = {}, callback) ⇒ AWS.Request
Deletes a Record
from a FeatureGroup
. A new record will show up in the OfflineStore
when the DeleteRecord
API is called. This record will have a value of True
in the is_deleted
column.
getRecord(params = {}, callback) ⇒ AWS.Request
Use for OnlineStore
serving from a FeatureStore
. Only the latest records stored in the OnlineStore
can be retrieved. If no Record with RecordIdentifierValue
is found, then an empty result is returned.
putRecord(params = {}, callback) ⇒ AWS.Request
Used for data ingestion into the FeatureStore
. The PutRecord
API writes to both the OnlineStore
and OfflineStore
. If the record is the latest record for the recordIdentifier
, the record is written to both the OnlineStore
and OfflineStore
. If the record is a historic record, it is written only to the OfflineStore
.