Last active
November 29, 2016 05:52
-
-
Save jkburges/d01638488a69c0f073fbbbf7e625743f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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