AWS SDK Version 2 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

.NET Framework 4.5
 
Revokes any permissions in the queue policy that matches the specified Label parameter. Only the owner of the queue can remove permissions.

Namespace: Amazon.SQS
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public virtual RemovePermissionResponse RemovePermission(
         RemovePermissionRequest request
)

Parameters

request
Type: Amazon.SQS.Model.RemovePermissionRequest

Container for the necessary parameters to execute the RemovePermission service method.

Return Value
Type: Amazon.SQS.Model.RemovePermissionResponse
The response from the RemovePermission service method, as returned by SQS.

Examples

This example shows how to remove a permission.

Remove permission example

var client = new AmazonSQSClient();

var request = new RemovePermissionRequest
{
  Label = "JohnDoeCanAccessQueues",
  QueueUrl = "https://sqs.us-east-1.amazonaws.com/80398EXAMPLE/MyTestQueue"
};

client.RemovePermission(request);
      

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5