AWS SDK Version 3 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.

Container for the parameters to the RemovePermission operation. Revokes any permissions in the queue policy that matches the specified Label parameter.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SQS.AmazonSQSRequest
      Amazon.SQS.Model.RemovePermissionRequest

Namespace: Amazon.SQS.Model
Assembly: AWSSDK.SQS.dll
Version: 3.x.y.z

Syntax

C#
public class RemovePermissionRequest : AmazonSQSRequest
         IAmazonWebServiceRequest

The RemovePermissionRequest type exposes the following members

Constructors

NameDescription
Public Method RemovePermissionRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method RemovePermissionRequest(string, string)

Instantiates RemovePermissionRequest with the parameterized properties

Properties

NameTypeDescription
Public Property Label System.String

Gets and sets the property Label.

The identification of the permission to remove. This is the label added using the AddPermission action.

Public Property QueueUrl System.String

Gets and sets the property QueueUrl.

The URL of the Amazon SQS queue from which permissions are removed.

Queue URLs and names are case-sensitive.

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 Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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