Data.Cloud.AmazonAPI.TAmazonQueueActions

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: enum
Visibility: public
Source:
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Unit: Data.Cloud.AmazonAPI
Parent: Data.Cloud.AmazonAPI

Delphi

TAmazonQueueActions = (aqacAll, aqacSendMessage, aqacReceiveMessage, aqacDeleteMessage,
aqacChangeMessageVisibility, aqacGetQueueAttributes);

C++

enum DECLSPEC_DENUM TAmazonQueueActions : unsigned char { aqacAll, aqacSendMessage, aqacReceiveMessage, aqacDeleteMessage, aqacChangeMessageVisibility, aqacGetQueueAttributes };

Description

The available actions for an Amazon queue, for which permissions can be established.

TAmazonQueueActions is an enumeration that specifies the available actions for an Amazon queue, for which permissions can be established.

The following values are available:

Value Description

aqacAll

Permissions are established for all operations on the Amazon queue.

aqacSendMessage

Permissions are established only for the 'Send Message' operation.

aqacReceiveMessage

Permissions are established only for the 'Receive Message' operation.

aqacDeleteMessage

Permissions are established only for the 'Delete Message' operation.

aqacChangeMessageVisibility

Permissions are established only for the 'Change Message Visibility' operation.

aqacGetQueueAttributes

Permissions are established only for the 'Get Queue Attributes' operation.

See Also