Skip to content

List Page Receipts

ssmcontacts_list_page_receipts R Documentation

Lists all of the engagements to contact channels that have been acknowledged

Description

Lists all of the engagements to contact channels that have been acknowledged.

Usage

ssmcontacts_list_page_receipts(PageId, NextToken, MaxResults)

Arguments

PageId

[required] The Amazon Resource Name (ARN) of the engagement to a specific contact channel.

NextToken

The pagination token to continue to the next page of results.

MaxResults

The maximum number of acknowledgements per page of results.

Value

A list with the following syntax:

list(
  NextToken = "string",
  Receipts = list(
    list(
      ContactChannelArn = "string",
      ReceiptType = "DELIVERED"|"ERROR"|"READ"|"SENT"|"STOP",
      ReceiptInfo = "string",
      ReceiptTime = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$list_page_receipts(
  PageId = "string",
  NextToken = "string",
  MaxResults = 123
)