Send Activation Code
ssmcontacts_send_activation_code | R Documentation |
Sends an activation code to a contact channel¶
Description¶
Sends an activation code to a contact channel. The contact can use this
code to activate the contact channel in the console or with the
ActivateChannel
operation. Incident Manager can't engage a contact
channel until it has been activated.
Usage¶
ssmcontacts_send_activation_code(ContactChannelId)
Arguments¶
ContactChannelId |
[required] The Amazon Resource Name (ARN) of the contact channel. |
Value¶
An empty list.
Request syntax¶
svc$send_activation_code(
ContactChannelId = "string"
)
Examples¶
## Not run:
# The following send-activation-code example sends an activation code and
# message to the specified contact channel.
svc$send_activation_code(
ContactChannelId = "arn:aws:ssm-contacts:us-east-1:111122223333:contact-c..."
)
## End(Not run)