DeleteMessageWithContext does nothing since messages are removed from the queue as soon as they're requested.
(ctx aws.Context, input *sqs.DeleteMessageInput, options ...request.Option)
| 519 | // DeleteMessageWithContext does nothing since messages are removed from the |
| 520 | // queue as soon as they're requested. |
| 521 | func (c *mockSQSClient) DeleteMessageWithContext(ctx aws.Context, input *sqs.DeleteMessageInput, options ...request.Option) (*sqs.DeleteMessageOutput, error) { |
| 522 | return nil, nil |
| 523 | } |
| 524 | |
| 525 | // mockedS3FS emulates the GetObject method of an AWS S3 interface by returning |
| 526 | // the content of files from the provided file system. |