Delete Contact Channel
| ssmcontacts_delete_contact_channel | R Documentation |
To stop receiving engagements on a contact channel, you can delete the channel from a contact¶
Description¶
To stop receiving engagements on a contact channel, you can delete the channel from a contact. Deleting the contact channel does not remove it from the contact's engagement plan, but the stage that includes the channel will be ignored. If you delete the only contact channel for a contact, you'll no longer be able to engage that contact during an incident.
Usage¶
ssmcontacts_delete_contact_channel(ContactChannelId)
Arguments¶
ContactChannelId |
[required] The Amazon Resource Name (ARN) of the contact channel. |
Value¶
An empty list.
Request syntax¶
svc$delete_contact_channel(
ContactChannelId = "string"
)
Examples¶
## Not run:
# The following delete-contact-channel example deletes a contact channel.
# Deleting a contact channel ensures the contact channel will not be paged
# during an incident.
svc$delete_contact_channel(
ContactChannelId = "arn:aws:ssm-contacts:us-east-1:111122223333:contact-c..."
)
## End(Not run)