Error occuring in aws console when attempting to delete Pinpoint SMS registration and release toll free number.

0

Conflict Occurred - Reason="RESOURCE_DELETION_NOT_ALLOWED" ResourceType="registration" Conflict Occurred - Reason="DISASSOCIATE_REGISTRATION_NOT_ALLOWED" ResourceType="registration"

Was experimenting with SMS messages from AWS for a pet project and now that I am done, I want to scale down the resources I was using. However, when I try to delete the Pinpoint SMS registration or release the toll free number, I get the above errors. Any thoughts on how I can resolve these errors so I can remove these resources? I am using a free tier account.

已提问 5 个月前257 查看次数
2 回答
0

Please open a case with AWS Support.

AWS
审核人员
已回答 4 个月前
0

As per CLI Documentation https://docs.aws.amazon.com/cli/latest/reference/pinpoint-sms-voice-v2/delete-registration.html

  1. Use the delete-registration-attachment AWS CLI command to disassociate any phone numbers, sender IDs, or other resources attached to the registration:
aws pinpoint-sms-voice-v2 delete-registration-attachment --registration-id <registrationId> --resource-arn <resourceArn>
  1. Check if the phone number or sender ID is still in use by other registrations and disassociate it from those as well.

  2. Once all associated resources are removed, delete the registration itself using the delete-registration command:

aws pinpoint-sms-voice-v2 delete-registration --registration-id <registrationId>
  1. Similarly, for toll-free numbers, check if they are associated with any other resources like registrations, pools, etc., and disassociate them before attempting to release the number.
profile picture
专家
已回答 1 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则