Skip to content

Describe Notification

connect_describe_notification R Documentation

Retrieves detailed information about a specific notification, including its content, priority, recipients, and metadata

Description

Retrieves detailed information about a specific notification, including its content, priority, recipients, and metadata.

Usage

connect_describe_notification(InstanceId, NotificationId)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

NotificationId

[required] The unique identifier for the notification.

Value

A list with the following syntax:

list(
  Notification = list(
    Content = list(
      "string"
    ),
    Id = "string",
    Arn = "string",
    Priority = "URGENT"|"HIGH"|"LOW",
    Recipients = list(
      "string"
    ),
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    ExpiresAt = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedRegion = "string",
    Tags = list(
      "string"
    )
  )
)

Request syntax

svc$describe_notification(
  InstanceId = "string",
  NotificationId = "string"
)