Skip to content

Update Subscriber Notification

securitylake_update_subscriber_notification R Documentation

Updates an existing notification method for the subscription (SQS or HTTPs endpoint) or switches the notification subscription endpoint for a subscriber

Description

Updates an existing notification method for the subscription (SQS or HTTPs endpoint) or switches the notification subscription endpoint for a subscriber.

Usage

securitylake_update_subscriber_notification(configuration, subscriberId)

Arguments

configuration

[required] The configuration for subscriber notification.

subscriberId

[required] The subscription ID for which the subscription notification is specified.

Value

A list with the following syntax:

list(
  subscriberEndpoint = "string"
)

Request syntax

svc$update_subscriber_notification(
  configuration = list(
    httpsNotificationConfiguration = list(
      authorizationApiKeyName = "string",
      authorizationApiKeyValue = "string",
      endpoint = "string",
      httpMethod = "POST"|"PUT",
      targetRoleArn = "string"
    ),
    sqsNotificationConfiguration = list()
  ),
  subscriberId = "string"
)