class Aws::Sqs::Client

Overview

An Sqs client for interacting with Sqs.

Creating an Sqs Client

client = Client.new("region", "key", "secret")

Client with custom endpoint

client = Client.new("region", "key", "secret", endpoint: "http://test.com")

Client with custom signer algorithm

client = Client.new("region", "key", "secret", signer: :v2)

Defined in:

aws/sqs/client.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(region : String, aws_access_key : String, aws_secret_key : String, endpoint : String | Nil = nil, signer : Symbol = :v4) #

[View source]

Instance Method Detail

def create_queue(name : String) #

[View source]
def send_message(queue : String, message : String) #

[View source]