interface AwsSqsNodeParameters {
authentication?: "iam" | "assumeRole";
message?: string;
messageGroupId?: string;
operation?: "sendMessage";
options?: {
delaySeconds?: number;
messageAttributes?: {
binary: {
dataPropertyName?: string;
name?: string;
}[];
number: { name?: string; value?: number }[];
string: { name?: string; value?: string }[];
};
messageDeduplicationId?: string;
};
queue?: string;
queueType?: "standard"
| "fifo";
sendInputData?: boolean;
}Properties§
§§§§§§§
readonly authentication?: "iam" | "assumeRole"§
readonly message?: stringMessage to send to the queue
readonly message Group Id?: stringTag that specifies that a message belongs to a specific message group. Applies only to FIFO (first-in-first-out) queues.
readonly operation?: "sendMessage"Default: "sendMessage"
readonly options?: { ... }Default: {}
readonly queue?: stringQueue to send a message to. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getQueues"}
readonly queue Type?: "standard" | "fifo"Default: "standard"
readonly send Input Data?: booleanWhether to send the data the node receives as JSON to SQS Default: true
Default: "iam"