Interface ILambdaQueueFunctionDependencyProvider
The ILambda
Inherited Members
Namespace: LambdaSharp.SimpleQueueService
Assembly: LambdaSharp.SimpleQueueService.dll
Syntax
public interface ILambdaQueueFunctionDependencyProvider : ILambdaFunctionDependencyProvider
Methods
DeleteMessagesFromQueueAsync(String, IEnumerable<(String MessageId, String ReceiptHandle)>)
Delete a batch of message from an SQS queue. The Lambda function requires sqs:DeleteMessageBatch
permission
on the specified SQS ARN.
Declaration
Task DeleteMessagesFromQueueAsync(string queueArn, IEnumerable<(string MessageId, string ReceiptHandle)> messages)
Parameters
Type | Name | Description |
---|---|---|
System. |
queueArn | SQS ARN. |
System. |
messages | Enumeration of |
Returns
Type | Description |
---|---|
System. |
The task object representing the asynchronous operation. |
GetMaxRetriesForQueueAsync(String)
Determine how many times a message should be retried for a given SQS queue.
Declaration
Task<int> GetMaxRetriesForQueueAsync(string queueArn)
Parameters
Type | Name | Description |
---|---|---|
System. |
queueArn | SQS ARN. |
Returns
Type | Description |
---|---|
System. |
The task object representing the asynchronous operation. |