Package | com.amazonaws.services.sqs.model |
Class | public class CreateQueueRequest |
Inheritance | CreateQueueRequest ![]() ![]() |
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4 |
Since : | January 24. 2011 |
Runtime Versions : | Flash Player 10.1, AIR 2.5 |
Method | Defined By | ||
---|---|---|---|
CreateQueueRequest(queueName:String = null, defaultVisibilityTimeout:Number)
Constructs a new CreateQueueRequest object. | CreateQueueRequest | ||
getDefaultVisibilityTimeout():Number
The visibility timeout (in seconds) to use for the created queue. | CreateQueueRequest | ||
getQueueName():String
The name to use for the created queue. | CreateQueueRequest | ||
setDefaultVisibilityTimeout(defaultVisibilityTimeout:Number):void
The visibility timeout (in seconds) to use for the created queue. | CreateQueueRequest | ||
setQueueName(queueName:String):void
The name to use for the created queue. | CreateQueueRequest | ||
toString():String
Returns a string representation of this object; useful for testing and debugging. | CreateQueueRequest | ||
withDefaultVisibilityTimeout(defaultVisibilityTimeout:Number):CreateQueueRequest
The visibility timeout (in seconds) to use for the created queue. | CreateQueueRequest | ||
withQueueName(queueName:String):CreateQueueRequest
The name to use for the created queue. | CreateQueueRequest |
CreateQueueRequest | () | Constructor |
public function CreateQueueRequest(queueName:String = null, defaultVisibilityTimeout:Number)
Constructs a new CreateQueueRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
ParametersqueueName:String (default = null ) — The name to use for the created queue.
| |
defaultVisibilityTimeout:Number (default = NaN ) — The visibility timeout (in seconds) to use for the created queue.
|
getDefaultVisibilityTimeout | () | method |
public function getDefaultVisibilityTimeout():Number
The visibility timeout (in seconds) to use for the created queue.
ReturnsNumber — The visibility timeout (in seconds) to use for the created queue.
|
getQueueName | () | method |
public function getQueueName():String
The name to use for the created queue.
ReturnsString — The name to use for the created queue.
|
setDefaultVisibilityTimeout | () | method |
public function setDefaultVisibilityTimeout(defaultVisibilityTimeout:Number):void
The visibility timeout (in seconds) to use for the created queue.
Parameters
defaultVisibilityTimeout:Number — - The length of time (in seconds) that a message that has been received from a queue
will be invisible to other receiving components when they ask to receive messages.
During the visibility timeout, the component that received the message usually processes
the message and then deletes it from the queue.
|
setQueueName | () | method |
public function setQueueName(queueName:String):void
The name to use for the created queue.
Parameters
queueName:String |
toString | () | method |
public function toString():String
Returns a string representation of this object; useful for testing and debugging.
ReturnsString — A string representation of this object.
|
withDefaultVisibilityTimeout | () | method |
public function withDefaultVisibilityTimeout(defaultVisibilityTimeout:Number):CreateQueueRequest
The visibility timeout (in seconds) to use for the created queue.
Parameters
defaultVisibilityTimeout:Number — - The length of time (in seconds) that a message that has been received from a queue
will be invisible to other receiving components when they ask to receive messages.
During the visibility timeout, the component that received the message usually processes
the message and then deletes it from the queue.
|
CreateQueueRequest — A reference to this updated object so that method calls can be chained together.
|
withQueueName | () | method |
public function withQueueName(queueName:String):CreateQueueRequest
The name to use for the created queue. Returns a reference to this object so that method calls can be chained together.
Parameters
queueName:String — The name to use for the created queue.
|
CreateQueueRequest — A reference to this updated object so that method calls can be chained together.
|