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
Recordsfrom aFeatureGroup..
-
deleteRecord(params = {}, callback) ⇒ AWS.Request
Deletes a
Recordfrom aFeatureGroupin theOnlineStore. -
getRecord(params = {}, callback) ⇒ AWS.Request
Use for
OnlineStoreserving from aFeatureStore. -
putRecord(params = {}, callback) ⇒ AWS.Request
The
PutRecordAPI is used to ingest a list ofRecordsinto your feature group.
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.