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 3.5
 
Container for the parameters to the AddPermission operation. Adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceRequest
      Amazon.SimpleNotificationService.Model.AddPermissionRequest

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

Syntax

C#
public class AddPermissionRequest : AmazonSimpleNotificationServiceRequest
         IRequestEvents

The AddPermissionRequest type exposes the following members

Constructors

NameDescription
Public Method AddPermissionRequest() Empty constructor used to set properties independently even when a simple constructor is available
Public Method AddPermissionRequest(string, string, List<String>, List<String>)

Properties

NameTypeDescription
Public Property ActionName System.Collections.Generic.List<System.String> Gets and sets the property ActionName.

The action you want to allow for the specified principal(s).

Valid values: any Amazon SNS action name.

Public Property AWSAccountId System.Collections.Generic.List<System.String> Gets and sets the property AWSAccountId.

The AWS account IDs of the users (principals) who will be given access to the specified actions. The users must have AWS accounts, but do not need to be signed up for this service.

Public Property Label System.String Gets and sets the property Label.

A unique identifier for the new policy statement.

Public Property TopicArn System.String Gets and sets the property TopicArn.

The ARN of the topic whose access control policy you wish to modify.

Examples

This example shows how to add a permission to a topic.

Add topic permission example

var snsClient = new AmazonSimpleNotificationServiceClient();

var request = new AddPermissionRequest
{
  TopicArn = "arn:aws:sns:us-east-1:80398EXAMPLE:CodingTestResults",
  ActionName = new List<string>() { "Subscribe" },
  AWSAccountId = new List<string>() { "80398EXAMPLE" },
  Label = "SubscribePolicy"
};

snsClient.AddPermission(request);
      

Version Information

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

.NET for Windows Store apps:
Supported in: Windows 8.1, Windows 8

.NET for Windows Phone:
Supported in: Windows Phone 8.1, Windows Phone 8