Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IClient ¶
type IClient interface { CreateQueue(name string) (*sqs.CreateQueueOutput, error) DeleteQueue(url string) error ListQueues() (*sqs.ListQueuesOutput, error) SendMessage(url, message string) (*sqs.SendMessageOutput, error) }
type SQS ¶
type SQS struct {
// contains filtered or unexported fields
}
func (*SQS) CreateQueue ¶
func (service *SQS) CreateQueue(name string) (*sqs.CreateQueueOutput, error)
func (*SQS) DeleteQueue ¶
func (*SQS) ListQueues ¶
func (service *SQS) ListQueues() (*sqs.ListQueuesOutput, error)
func (*SQS) SendMessage ¶
func (service *SQS) SendMessage(url, message string) (*sqs.SendMessageOutput, error)
Click to show internal directories.
Click to hide internal directories.