You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Co-authored-by: Alex Wichmann <VisualBean@users.noreply.github.com>
Co-authored-by: UlrikSandberg <UJSandberg@gmail.com>
Co-authored-by: Alex W. Carlsen <alekcarlsen@gmail.com>
Co-authored-by: Goker Akce <gokerakce@outlook.com>
Co-authored-by: Goker Akce <goker.akce@justeattakeaway.com>
Co-authored-by: Dec Kolakowski <dec.kolakowski@justeattakeaway.com>
/// The name of the queue. When an SNS Operation Binding Object references an SQS queue by name, the identifier should be the one in this field.
16
+
/// </summary>
17
+
publicstringName{get;set;}
18
+
19
+
/// <summary>
20
+
/// Is this a FIFO queue?
21
+
/// </summary>
22
+
publicboolFifoQueue{get;set;}
23
+
24
+
/// <summary>
25
+
/// The number of seconds to delay before a message sent to the queue can be received. used to create a delay queue.
26
+
/// </summary>
27
+
publicint?DeliveryDelay{get;set;}
28
+
29
+
/// <summary>
30
+
/// The length of time, in seconds, that a consumer locks a message - hiding it from reads - before it is unlocked and can be read again.
31
+
/// </summary>
32
+
publicint?VisibilityTimeout{get;set;}
33
+
34
+
/// <summary>
35
+
/// Determines if the queue uses short polling or long polling. Set to zero the queue reads available messages and returns immediately. Set to a non-zero integer, long polling waits the specified number of seconds for messages to arrive before returning.
36
+
/// </summary>
37
+
publicint?ReceiveMessageWaitTime{get;set;}
38
+
39
+
/// <summary>
40
+
/// How long to retain a message on the queue in seconds, unless deleted.
41
+
/// </summary>
42
+
publicint?MessageRetentionPeriod{get;set;}
43
+
44
+
/// <summary>
45
+
/// Prevent poison pill messages by moving un-processable messages to an SQS dead letter queue.
46
+
/// </summary>
47
+
publicRedrivePolicyRedrivePolicy{get;set;}
48
+
49
+
/// <summary>
50
+
/// The security policy for the SQS Queue
51
+
/// </summary>
52
+
publicPolicyPolicy{get;set;}
53
+
54
+
/// <summary>
55
+
/// Key-value pairs that represent AWS tags on the topic.
0 commit comments