Interface AwsSqsNodeParameters

Source
interface AwsSqsNodeParameters {
    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§

Source§

readonly message?: string

Message to send to the queue

Source§

readonly messageGroupId?: string

Tag that specifies that a message belongs to a specific message group. Applies only to FIFO (first-in-first-out) queues.

Source§

readonly operation?: "sendMessage"

Default: "sendMessage"

Source§

readonly options?: {
    delaySeconds?: number;
    messageAttributes?: {
        binary: {
            dataPropertyName?: string;
            name?: string;
        }[];
        number: { name?: string; value?: number }[];
        string: { name?: string; value?: string }[];
    };
    messageDeduplicationId?: string;
}

Default: {}

Source§

readonly queue?: string

Queue to send a message to. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getQueues"}

Source§

readonly queueType?: "standard" | "fifo"

Default: "standard"

Source§

readonly sendInputData?: boolean

Whether to send the data the node receives as JSON to SQS Default: true