Data.Cloud.AmazonAPI.TAmazonQueueActions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
enum public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI Data.Cloud.AmazonAPI

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