Class: AWS.SagemakerEdge
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.SagemakerEdge
- Identifier:
- sagemakeredge
- API Version:
- 2020-09-23
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
SageMaker Edge Manager dataplane service for communicating with active agents.
Sending a Request Using SagemakerEdge
var sagemakeredge = new AWS.SagemakerEdge();
sagemakeredge.getDeviceRegistration(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 SagemakerEdge object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var sagemakeredge = new AWS.SagemakerEdge({apiVersion: '2020-09-23'});
You can also set the API version globally in AWS.config.apiVersions
using
the sagemakeredge service identifier:
AWS.config.apiVersions = {
sagemakeredge: '2020-09-23',
// other service API versions
};
var sagemakeredge = new AWS.SagemakerEdge();
Constructor Summary collapse
-
new AWS.SagemakerEdge(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
-
getDeviceRegistration(params = {}, callback) ⇒ AWS.Request
Use to check if a device is registered with SageMaker Edge Manager.
.
-
sendHeartbeat(params = {}, callback) ⇒ AWS.Request
Use to get the current status of devices registered on SageMaker Edge Manager.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.SagemakerEdge(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.