Packagecom.amazonaws.services.sqs
Classpublic class ReceiveMessageEnum
InheritanceReceiveMessageEnum Inheritance Object

Language Version : ActionScript 3.0
Product Version : Flex 4
Since : February 7. 2011
Runtime Versions : Flash Player 10.1, AIR 2.5

ReceiveMessage parameters and attributes.



Public Methods
 MethodDefined By
  
toString():String
Returns the ReceiveMessage action attribute.
ReceiveMessageEnum
  
[static] Returns the enum constant of this type with the specified name.
ReceiveMessageEnum
  
values():Array
[static] Returns an array containing the constants of this enum type, in the order they are declared.
ReceiveMessageEnum
Public Constants
 ConstantDefined By
  ALL : ReceiveMessageEnum
[static] Attribute 'All'
ReceiveMessageEnum
  APPROXIMATE_FIRST_RECEIVE_TIMESTAMP : ReceiveMessageEnum
[static] Attribute 'ApproximateFirstReceiveTimestamp'
ReceiveMessageEnum
  APPROXIMATE_RECEIVE_COUNT : ReceiveMessageEnum
[static] Attribute 'ApproximateReceiveCount'
ReceiveMessageEnum
  ATTRIBUTE_NAME : ReceiveMessageEnum
[static] The attribute you want to get.
ReceiveMessageEnum
  MAX_NUMBER_OF_MESSAGES : ReceiveMessageEnum
[static] Maximum number of messages to return.
ReceiveMessageEnum
  REQUEST_ID : ReceiveMessageEnum
[static] Unique RequestId from response.
ReceiveMessageEnum
  SENDER_ID : ReceiveMessageEnum
[static] Attribute 'SenderId'
ReceiveMessageEnum
  SENT_TIMESTAMP : ReceiveMessageEnum
[static] Attribute 'SentTimestamp'
ReceiveMessageEnum
  VISIBILITY_TIMEOUT : ReceiveMessageEnum
[static] The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a 'ReceiveMessage' request.
ReceiveMessageEnum
Method Detail
toString()method
public function toString():String

Returns the ReceiveMessage action attribute.

Returns
String — The name of this attribute.
valueOf()method 
public static function valueOf(name:String):ReceiveMessageEnum

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters

name:String — the name of the enum constant to be returned.

Returns
ReceiveMessageEnum — the enum constant with the specified name

Throws
TypeError — if the argument is null
 
ArgumentError — if this enum type has no constant with the specified name
values()method 
public static function values():Array

Returns an array containing the constants of this enum type, in the order they are declared.

Returns
Array

Example
This function may be used to iterate over the constants as follows:
           for each (var attribute:ReceiveMessageEnum in ReceiveMessageEnum.values()) {
                     // do something with attribute object...
               
           }
         

Constant Detail
ALLConstant
public static const ALL:ReceiveMessageEnum

Attribute 'All'

APPROXIMATE_FIRST_RECEIVE_TIMESTAMPConstant 
public static const APPROXIMATE_FIRST_RECEIVE_TIMESTAMP:ReceiveMessageEnum

Attribute 'ApproximateFirstReceiveTimestamp'

APPROXIMATE_RECEIVE_COUNTConstant 
public static const APPROXIMATE_RECEIVE_COUNT:ReceiveMessageEnum

Attribute 'ApproximateReceiveCount'

ATTRIBUTE_NAMEConstant 
public static const ATTRIBUTE_NAME:ReceiveMessageEnum

The attribute you want to get.

MAX_NUMBER_OF_MESSAGESConstant 
public static const MAX_NUMBER_OF_MESSAGES:ReceiveMessageEnum

Maximum number of messages to return. SQS never returns more messages than this value but might return fewer.

REQUEST_IDConstant 
public static const REQUEST_ID:ReceiveMessageEnum

Unique RequestId from response.

SENDER_IDConstant 
public static const SENDER_ID:ReceiveMessageEnum

Attribute 'SenderId'

SENT_TIMESTAMPConstant 
public static const SENT_TIMESTAMP:ReceiveMessageEnum

Attribute 'SentTimestamp'

VISIBILITY_TIMEOUTConstant 
public static const VISIBILITY_TIMEOUT:ReceiveMessageEnum

The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a 'ReceiveMessage' request.