Skip to content

Unsubscribe From Event

inspector_unsubscribe_from_event R Documentation

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

Description

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

Usage

inspector_unsubscribe_from_event(resourceArn, event, topicArn)

Arguments

resourceArn

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

event

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

topicArn

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

Value

An empty list.

Request syntax

svc$unsubscribe_from_event(
  resourceArn = "string",
  event = "ASSESSMENT_RUN_STARTED"|"ASSESSMENT_RUN_COMPLETED"|"ASSESSMENT_RUN_STATE_CHANGED"|"FINDING_REPORTED"|"OTHER",
  topicArn = "string"
)

Examples

## Not run: 
# Disables the process of sending Amazon Simple Notification Service (SNS)
# notifications about a specified event to a specified SNS topic.
svc$unsubscribe_from_event(
  event = "ASSESSMENT_RUN_COMPLETED",
  resourceArn = "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX...",
  topicArn = "arn:aws:sns:us-west-2:123456789012:exampletopic"
)

## End(Not run)