Skip to content

List Contact Channels

ssmcontacts_list_contact_channels R Documentation

Lists all contact channels for the specified contact

Description

Lists all contact channels for the specified contact.

Usage

ssmcontacts_list_contact_channels(ContactId, NextToken, MaxResults)

Arguments

ContactId

[required] The Amazon Resource Name (ARN) of the contact.

NextToken

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

MaxResults

The maximum number of contact channels per page.

Value

A list with the following syntax:

list(
  NextToken = "string",
  ContactChannels = list(
    list(
      ContactChannelArn = "string",
      ContactArn = "string",
      Name = "string",
      Type = "SMS"|"VOICE"|"EMAIL",
      DeliveryAddress = list(
        SimpleAddress = "string"
      ),
      ActivationStatus = "ACTIVATED"|"NOT_ACTIVATED"
    )
  )
)

Request syntax

svc$list_contact_channels(
  ContactId = "string",
  NextToken = "string",
  MaxResults = 123
)