Skip to content

Delete Contact Channel

ssmcontacts_delete_contact_channel R Documentation

To no longer receive engagements on a contact channel, you can delete the channel from a contact

Description

To no longer receive engagements on a contact channel, you can delete the channel from a contact. Deleting the contact channel removes it from the contact's engagement plan. If you delete the only contact channel for a contact, you won't 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)