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
 
Deletes a topic and all its subscriptions. Deleting a topic might prevent some messages previously sent to the topic from being delivered to subscribers. This action is idempotent, so deleting a topic that does not exist does not result in an error.

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

Syntax

C#
public virtual DeleteTopicResponse DeleteTopic(
         DeleteTopicRequest request
)

Parameters

request
Type: Amazon.SimpleNotificationService.Model.DeleteTopicRequest

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

Return Value
Type: Amazon.SimpleNotificationService.Model.DeleteTopicResponse
The response from the DeleteTopic service method, as returned by SimpleNotificationService.

Exceptions

ExceptionCondition
AuthorizationErrorException Indicates that the user has been denied access to the requested resource.
InternalErrorException Indicates an internal service error.
InvalidParameterException Indicates that a request parameter does not comply with the associated constraints.
NotFoundException Indicates that the requested resource does not exist.

Examples

This example shows how to delete a topic.

Delete topic example

var snsClient = new AmazonSimpleNotificationServiceClient();

var request = new DeleteTopicRequest
{
  TopicArn = "arn:aws:sns:us-east-1:80398EXAMPLE:CodingTestResults"
};

snsClient.DeleteTopic(request);
      

Version Information

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