@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.
51 lines (50 loc) • 2.43 kB
JavaScript
import { __assign, __awaiter, __extends, __generator } from "tslib";
import { TransactWriteItemsCommand as __TransactWriteItemsCommand, } from "@aws-sdk/client-dynamodb";
import { Command as $Command } from "@aws-sdk/smithy-client";
import { marshallInput, unmarshallOutput } from "../commands/utils";
var TransactWriteCommand = (function (_super) {
__extends(TransactWriteCommand, _super);
function TransactWriteCommand(input) {
var _this = _super.call(this) || this;
_this.input = input;
_this.inputKeyNodes = [
{
key: "TransactItems",
children: [
{ key: "ConditionCheck", children: [{ key: "Key" }, { key: "ExpressionAttributeValues" }] },
{ key: "Put", children: [{ key: "Item" }, { key: "ExpressionAttributeValues" }] },
{ key: "Delete", children: [{ key: "Key" }, { key: "ExpressionAttributeValues" }] },
{ key: "Update", children: [{ key: "Key" }, { key: "ExpressionAttributeValues" }] },
],
},
];
_this.outputKeyNodes = [
{
key: "ItemCollectionMetrics",
children: {
children: [{ key: "ItemCollectionKey" }],
},
},
];
return _this;
}
TransactWriteCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
var _this = this;
var _a = configuration.translateConfig || {}, marshallOptions = _a.marshallOptions, unmarshallOptions = _a.unmarshallOptions;
var command = new __TransactWriteItemsCommand(marshallInput(this.input, this.inputKeyNodes, marshallOptions));
var handler = command.resolveMiddleware(clientStack, configuration, options);
return function () { return __awaiter(_this, void 0, void 0, function () {
var data;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4, handler(command)];
case 1:
data = _a.sent();
return [2, __assign(__assign({}, data), { output: unmarshallOutput(data.output, this.outputKeyNodes, unmarshallOptions) })];
}
});
}); };
};
return TransactWriteCommand;
}($Command));
export { TransactWriteCommand };