Skip to content

Instantly share code, notes, and snippets.

@jkburges
Last active November 29, 2016 05:52
Show Gist options
  • Save jkburges/d01638488a69c0f073fbbbf7e625743f to your computer and use it in GitHub Desktop.
Save jkburges/d01638488a69c0f073fbbbf7e625743f to your computer and use it in GitHub Desktop.
require "aws-sdk"
client = Aws::SQS::Client.new(
region: "us-east-1",
access_key_id: "scrubbed",
secret_access_key: "scrubbed"
)
client.create_queue(
queue_name: "myqueue.fifo",
attributes: {
"FifoQueue" => "true",
"ContentBasedDeduplication" => "true"
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment