List Contacts
| ssmcontacts_list_contacts | R Documentation |
Lists all contacts and escalation plans in Incident Manager¶
Description¶
Lists all contacts and escalation plans in Incident Manager.
Usage¶
Arguments¶
NextTokenThe pagination token to continue to the next page of results.
MaxResultsThe maximum number of contacts and escalation plans per page of results.
AliasPrefixUsed to list only contacts who's aliases start with the specified prefix.
TypeThe type of contact. A contact is type
PERSONALand an escalation plan is typeESCALATION.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Contacts = list(
list(
ContactArn = "string",
Alias = "string",
DisplayName = "string",
Type = "PERSONAL"|"ESCALATION"|"ONCALL_SCHEDULE"
)
)
)