Skip to content

Remove Notification Channel

codeguruprofiler_remove_notification_channel R Documentation

Remove one anomaly notifications channel for a profiling group

Description

Remove one anomaly notifications channel for a profiling group.

Usage

codeguruprofiler_remove_notification_channel(channelId,
  profilingGroupName)

Arguments

channelId

[required] The id of the channel that we want to stop receiving notifications.

profilingGroupName

[required] The name of the profiling group we want to change notification configuration for.

Value

A list with the following syntax:

list(
  notificationConfiguration = list(
    channels = list(
      list(
        eventPublishers = list(
          "AnomalyDetection"
        ),
        id = "string",
        uri = "string"
      )
    )
  )
)

Request syntax

svc$remove_notification_channel(
  channelId = "string",
  profilingGroupName = "string"
)