import { Inject } from "@nestjs/common";
import { getClientToken } from "./aws-sdk-v3.util.js";
export var InjectAws = function (client, key) {
if (key === void 0) { key = ""; }
var providerToken = getClientToken(client, key);
return Inject(providerToken);
};