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 UnsubscribeFromEvent operation. Disables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Inspector.AmazonInspectorRequest
      Amazon.Inspector.Model.UnsubscribeFromEventRequest

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

Syntax

C#
public class UnsubscribeFromEventRequest : AmazonInspectorRequest
         IAmazonWebServiceRequest

The UnsubscribeFromEventRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Event Amazon.Inspector.InspectorEvent

Gets and sets the property Event.

The event for which you want to stop receiving SNS notifications.

Public Property ResourceArn System.String

Gets and sets the property ResourceArn.

The ARN of the assessment template that is used during the event for which you want to stop receiving SNS notifications.

Public Property TopicArn System.String

Gets and sets the property TopicArn.

The ARN of the SNS topic to which SNS notifications are sent.

Examples

Disables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic.

Unsubscribe from event


var client = new AmazonInspectorClient();
var response = client.UnsubscribeFromEvent(new UnsubscribeFromEventRequest 
{
    Event = "ASSESSMENT_RUN_COMPLETED",
    ResourceArn = "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0",
    TopicArn = "arn:aws:sns:us-west-2:123456789012:exampletopic"
});


            

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