GetServiceQueuesQueue

data class GetServiceQueuesQueue(val activeMessages: Int, val createTime: Int, val delayMessages: Int, val delaySeconds: Int, val id: String, val inactiveMessages: Int, val lastModifyTime: Int, val loggingEnabled: Boolean, val maximumMessageSize: Int, val messageRetentionPeriod: Int, val pollingWaitSeconds: Int, val queueInternalUrl: String, val queueName: String, val queueUrl: String, val visibilityTimeout: Int)

Constructors

Link copied to clipboard
constructor(activeMessages: Int, createTime: Int, delayMessages: Int, delaySeconds: Int, id: String, inactiveMessages: Int, lastModifyTime: Int, loggingEnabled: Boolean, maximumMessageSize: Int, messageRetentionPeriod: Int, pollingWaitSeconds: Int, queueInternalUrl: String, queueName: String, queueUrl: String, visibilityTimeout: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The total number of messages that are in the Active state in the queue. The value is an approximate number.

Link copied to clipboard

The time when the queue was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since the epoch time January 1, 1970, 00:00:00 UTC.

Link copied to clipboard

The total number of the messages that are in the Delayed state in the queue. The value is an approximate number.

Link copied to clipboard

The delay period after which all messages that are sent to the queue can be consumed. Unit: seconds.

Link copied to clipboard
val id: String

The ID of the Queue. Its value is same as Queue Name.

Link copied to clipboard

The total number of the messages that are in the Inactive state in the queue. The value is an approximate number.

Link copied to clipboard

The time when the queue was last modified. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since the epoch time January 1, 1970, 00:00:00 UTC.

Link copied to clipboard

Indicates whether the log management feature is enabled for the queue.

Link copied to clipboard

The maximum size of a message body that can be sent to the queue. Unit: bytes.

Link copied to clipboard

The maximum period for which a message can be retained in the queue. A message that is sent to the queue can be retained for a specified period. After the specified period ends, the message is deleted no matter whether it is consumed. Unit: seconds.

Link copied to clipboard

The maximum period for which a ReceiveMessage request waits if no message is available in the queue. Unit: seconds.

Link copied to clipboard

The internal url of the queue.

Link copied to clipboard

The name of the queue.

Link copied to clipboard

The url of the queue.

Link copied to clipboard

The invisibility period for which the received message remains the Inactive state. Unit: seconds.