Skip to content

List Notifications

connect_list_notifications R Documentation

Retrieves a paginated list of all notifications in the Amazon Connect instance

Description

Retrieves a paginated list of all notifications in the Amazon Connect instance.

Usage

connect_list_notifications(InstanceId, NextToken, MaxResults)

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.

NextToken

The token for the next set of results. Use the value returned in the previous response to retrieve the next page of results.

MaxResults

The maximum number of results to return per page. Valid range is 1-100.

Value

A list with the following syntax:

list(
  NextToken = "string",
  NotificationSummaryList = list(
    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$list_notifications(
  InstanceId = "string",
  NextToken = "string",
  MaxResults = 123
)