logstash-plugins / logstash-input-sqs

Apache License 2.0
16 stars 40 forks source link

Adds 'additional_settings' option to configure the underlying AWS client #61

Closed andsel closed 2 years ago

andsel commented 2 years ago

Release notes

Add additional_settings option to fine-grain configuration of AWS client

What does this PR do?

Introduce the option additional_settings which is a map that, once the keys are symbolized and boolean strings becomes boolean values, is passed down to the creation of AWS SQS client.

Why is it important/What is the impact to the user?

This option permit the user to fine-grain configuring the client, for example to enable debugging logs at wire level, asin:

additional_settings => {
    http_wire_trace => true
}

Checklist

Author's Checklist

How to test this PR locally

Related issues