@gotamedia/aws
Version:
Set of AWS helpers for NodeJs Runtime.
6 lines (5 loc) • 390 B
TypeScript
import type { SendMessageCommandInput, SendMessageBatchCommandInput } from "@aws-sdk/client-sqs";
declare const SQS: import("@aws-sdk/types").Client<any, any, any>;
declare const sendMessage: (params: SendMessageCommandInput) => Promise<void>;
declare const sendMessageBatch: (params: SendMessageBatchCommandInput) => Promise<void>;
export { sendMessage, sendMessageBatch, SQS as client };