Update Contact Channel
ssmcontacts_update_contact_channel | R Documentation |
Updates a contact's contact channel¶
Description¶
Updates a contact's contact channel.
Usage¶
ssmcontacts_update_contact_channel(ContactChannelId, Name,
DeliveryAddress)
Arguments¶
ContactChannelId |
[required] The Amazon Resource Name (ARN) of the contact channel you want to update. |
Name |
The name of the contact channel. |
DeliveryAddress |
The details that Incident Manager uses when trying to engage the contact channel. |
Value¶
An empty list.
Request syntax¶
svc$update_contact_channel(
ContactChannelId = "string",
Name = "string",
DeliveryAddress = list(
SimpleAddress = "string"
)
)
Examples¶
## Not run:
# The following update-contact-channel example updates the name and
# delivery address of a contact channel.
svc$update_contact_channel(
ContactChannelId = "arn:aws:ssm-contacts:us-east-2:111122223333:contact-c...",
DeliveryAddress = list(
SimpleAddress = "+15005550198"
),
Name = "akuas voice channel"
)
## End(Not run)