forked from elliotchance/mocksqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdead_letter.go
32 lines (26 loc) · 1.67 KB
/
dead_letter.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package mocksqs
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/service/sqs"
)
// ListDeadLetterSourceQueues is not implemented. It will panic in all cases.
func (client *SQS) ListDeadLetterSourceQueues(*sqs.ListDeadLetterSourceQueuesInput) (*sqs.ListDeadLetterSourceQueuesOutput, error) {
panic("ListDeadLetterSourceQueues is not implemented")
}
// ListDeadLetterSourceQueuesWithContext is not implemented. It will panic in all cases.
func (client *SQS) ListDeadLetterSourceQueuesWithContext(aws.Context, *sqs.ListDeadLetterSourceQueuesInput, ...request.Option) (*sqs.ListDeadLetterSourceQueuesOutput, error) {
panic("ListDeadLetterSourceQueuesWithContext is not implemented")
}
// ListDeadLetterSourceQueuesRequest is not implemented. It will panic in all cases.
func (client *SQS) ListDeadLetterSourceQueuesRequest(*sqs.ListDeadLetterSourceQueuesInput) (*request.Request, *sqs.ListDeadLetterSourceQueuesOutput) {
panic("ListDeadLetterSourceQueuesRequest is not implemented")
}
// ListDeadLetterSourceQueuesPages is not implemented. It will panic in all cases.
func (client *SQS) ListDeadLetterSourceQueuesPages(*sqs.ListDeadLetterSourceQueuesInput, func(*sqs.ListDeadLetterSourceQueuesOutput, bool) bool) error {
panic("ListDeadLetterSourceQueuesPages is not implemented")
}
// ListDeadLetterSourceQueuesPagesWithContext is not implemented. It will panic in all cases.
func (client *SQS) ListDeadLetterSourceQueuesPagesWithContext(aws.Context, *sqs.ListDeadLetterSourceQueuesInput, func(*sqs.ListDeadLetterSourceQueuesOutput, bool) bool, ...request.Option) error {
panic("ListDeadLetterSourceQueuesPagesWithContext is not implemented")
}