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¶
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"
)
)
)