@softchef/cdk-iot-device-management
Version:
IoT device management is composed of things, thing types, thing groups, jobs, files API services. The constructs can be used independently, that are based on full-managed service to create an API Gateway & Lambda function.
20 lines (19 loc) • 794 B
JavaScript
import { __extends } from "tslib";
import { Client as __Client } from "@aws-sdk/smithy-client";
var DynamoDBDocumentClient = (function (_super) {
__extends(DynamoDBDocumentClient, _super);
function DynamoDBDocumentClient(client, translateConfig) {
var _this = _super.call(this, client.config) || this;
_this.config = client.config;
_this.config.translateConfig = translateConfig;
_this.middlewareStack = client.middlewareStack;
return _this;
}
DynamoDBDocumentClient.from = function (client, translateConfig) {
return new DynamoDBDocumentClient(client, translateConfig);
};
DynamoDBDocumentClient.prototype.destroy = function () {
};
return DynamoDBDocumentClient;
}(__Client));
export { DynamoDBDocumentClient };