(accountId, url)
| 3 | import regions from './regions.mjs'; |
| 4 | |
| 5 | function deepLink(accountId, url) { |
| 6 | const deepLinkRoleName = 'AdministratorAccess'; |
| 7 | |
| 8 | const urlEncodedUrl = encodeURIComponent(url); |
| 9 | return `https://d-906713e952.awsapps.com/start/#/console?account_id=${accountId}&role_name=${deepLinkRoleName}&destination=${urlEncodedUrl}`; |
| 10 | } |
| 11 | |
| 12 | function codebuildUrl(event) { |
| 13 | const region = event.region; |
no outgoing calls
no test coverage detected