QueueProps
Properties for defining a Queue
.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-mns-queue
Initializer
using AlibabaCloud.SDK.ROS.CDK.Mns;
new QueueProps {
object QueueName,
object DelaySeconds = null,
object LoggingEnabled = null,
object MaximumMessageSize = null,
object MessageRetentionPeriod = null,
object PollingWaitSeconds = null,
object VisibilityTimeout = null
};
Properties
Name | Type | Description |
---|---|---|
QueueName |
object |
Property queueName: Queue name. |
DelaySeconds |
object |
Property delaySeconds: It is measured in seconds. |
LoggingEnabled |
object |
Property loggingEnabled: Whether to enable log management. |
MaximumMessageSize |
object |
Property maximumMessageSize: Maximum body length of a message sent to the queue, measured in bytes. |
MessageRetentionPeriod |
object |
Property messageRetentionPeriod: Maximum lifetime of the message in the queue, measured in seconds. |
PollingWaitSeconds |
object |
Property pollingWaitSeconds: It is the maximum time that a ReceiveMessage request could be waiting for any incoming messages, while there are no message in the queue. |
VisibilityTimeout |
object |
Property visibilityTimeout: Duration in which a message stays in Inactive status after it is consumed from the queue. |
QueueName
Required
public object QueueName { get; set; }
- Type: object
Property queueName: Queue name.
DelaySeconds
Optional
public object DelaySeconds { get; set; }
- Type: object
Property delaySeconds: It is measured in seconds.
All messages sent to the queue can be consumed until the DelaySeconds expires. An integer between 0 and 604800 (7 days). The default value is 0
LoggingEnabled
Optional
public object LoggingEnabled { get; set; }
- Type: object
Property loggingEnabled: Whether to enable log management.
"true" indicates that log management is enabled, whereas "false" indicates that log management is disabled. The default value is false
MaximumMessageSize
Optional
public object MaximumMessageSize { get; set; }
- Type: object
Property maximumMessageSize: Maximum body length of a message sent to the queue, measured in bytes.
An integer between 1024 (1K) and 65536 (64K). The default value is 65536 (64K).
MessageRetentionPeriod
Optional
public object MessageRetentionPeriod { get; set; }
- Type: object
Property messageRetentionPeriod: Maximum lifetime of the message in the queue, measured in seconds.
After the time specified by this parameter expires, the message will be deleted no matter whether it has been consumed or not. An integer between 60 (1 minute) and 1296000 (15 days). The default value is 345600 (4 days)
PollingWaitSeconds
Optional
public object PollingWaitSeconds { get; set; }
- Type: object
Property pollingWaitSeconds: It is the maximum time that a ReceiveMessage request could be waiting for any incoming messages, while there are no message in the queue.
Measured in seconds. An integer between 0 and 30 seconds. The default value is 0 (seconds)
VisibilityTimeout
Optional
public object VisibilityTimeout { get; set; }
- Type: object
Property visibilityTimeout: Duration in which a message stays in Inactive status after it is consumed from the queue.
Measured in seconds. An integer between 1 and 43200 (12 hours). The default value is 30 (seconds)