Skip to content

QueueProps

Properties for defining a Queue.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-mns-queue

Initializer

import "github.com/alibabacloud-go/ros-cdk/alicloudroscdkmns"
&alicloudroscdkmns.QueueProps {
    QueueName: interface{},
    DelaySeconds: interface{},
    LoggingEnabled: interface{},
    MaximumMessageSize: interface{},
    MessageRetentionPeriod: interface{},
    PollingWaitSeconds: interface{},
    VisibilityTimeout: interface{},
}

Properties

Name Type Description
QueueName interface{} Property queueName: Queue name.
DelaySeconds interface{} Property delaySeconds: It is measured in seconds.
LoggingEnabled interface{} Property loggingEnabled: Whether to enable log management.
MaximumMessageSize interface{} Property maximumMessageSize: Maximum body length of a message sent to the queue, measured in bytes.
MessageRetentionPeriod interface{} Property messageRetentionPeriod: Maximum lifetime of the message in the queue, measured in seconds.
PollingWaitSeconds interface{} 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 interface{} Property visibilityTimeout: Duration in which a message stays in Inactive status after it is consumed from the queue.

QueueNameRequired

QueueName interface{}
  • Type: interface{}

Property queueName: Queue name.


DelaySecondsOptional

DelaySeconds interface{}
  • Type: interface{}

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


LoggingEnabledOptional

LoggingEnabled interface{}
  • Type: interface{}

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


MaximumMessageSizeOptional

MaximumMessageSize interface{}
  • Type: interface{}

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).


MessageRetentionPeriodOptional

MessageRetentionPeriod interface{}
  • Type: interface{}

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)


PollingWaitSecondsOptional

PollingWaitSeconds interface{}
  • Type: interface{}

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)


VisibilityTimeoutOptional

VisibilityTimeout interface{}
  • Type: interface{}

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)