amazonka-sqs-0.0.7: Amazon Simple Queue Service SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.SQS.AddPermission

Contents

Description

Adds a permission to a queue for a specific principal. This allows for sharing access to the queue.

When you create a queue, you have full control access rights for the queue. Only you (as owner of the queue) can grant or deny permissions to the queue. For more information about these permissions, see Shared Queues in the AmazonSQS Developer Guide.

'&Attribute.1=this'

'&Attribute.2=that'

http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_AddPermission.html

Synopsis

Request

Request constructor

addPermission Source

AddPermission constructor.

The fields accessible through corresponding lenses are:

Request lenses

apAWSAccountIds :: Lens' AddPermission [Text] Source

The AWS account number of the principal who will be given permission. The principal must have an AWS account, but does not need to be signed up for Amazon SQS. For information about locating the AWS account identification, see Your AWS Identifiers in the Amazon SQS Developer Guide.

apActions :: Lens' AddPermission [Text] Source

The action the client wants to allow for the specified principal. The following are valid values: '* | SendMessage | ReceiveMessage | DeleteMessage| ChangeMessageVisibility | GetQueueAttributes | GetQueueUrl'. For more information about these actions, see Understanding Permissions in the AmazonSQS Developer Guide.

Specifying SendMessage, DeleteMessage, or ChangeMessageVisibility for the n also grants permissions for the corresponding batch versions of those actions: SendMessageBatch, DeleteMessageBatch, and ChangeMessageVisibilityBatch.

apLabel :: Lens' AddPermission Text Source

The unique identification of the permission you're setting (e.g., AliceSendMessage). Constraints: Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.

apQueueUrl :: Lens' AddPermission Text Source

The URL of the Amazon SQS queue to take action on.

Response

Response constructor