Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. const allRegions = [
  2. {
  3. id: 'us-east-2',
  4. name: 'US East (Ohio)'
  5. },
  6. {
  7. id: 'us-east-1',
  8. name: 'US East (N. Virginia)',
  9. },
  10. {
  11. id: 'us-west-1 ',
  12. name: 'US West (N. California)'
  13. },
  14. {
  15. id: 'us-west-2',
  16. name: 'US West (Oregon)'
  17. },
  18. {
  19. id: 'ap-east-1',
  20. name: 'Asia Pacific (Hong Kong)'
  21. },
  22. {
  23. id: 'ap-south-1',
  24. name: 'Asia Pacific (Mumbai)'
  25. },
  26. {
  27. id: 'ap-northeast-2',
  28. name: 'Asia Pacific (Seoul)'
  29. },
  30. {
  31. id: 'ap-southeast-1',
  32. name: 'Asia Pacific (Singapore)'
  33. },
  34. {
  35. id: 'ap-southeast-2',
  36. name: 'Asia Pacific (Sydney)'
  37. },
  38. {
  39. id: 'ap-northeast-1',
  40. name: 'Asia Pacific (Tokyo)'
  41. },
  42. {
  43. id: 'ca-central-1',
  44. name: 'Canada (Central)'
  45. },
  46. {
  47. id: 'cn-north-1',
  48. name: 'China (Beijing)'
  49. },
  50. {
  51. id: 'cn-northwest-1',
  52. name: 'China (Ningxia)'
  53. },
  54. {
  55. id: 'eu-central-1',
  56. name: 'EU (Frankfurt)'
  57. },
  58. {
  59. id: 'eu-west-1',
  60. name: 'EU (Ireland)'
  61. },
  62. {
  63. id: 'eu-west-2',
  64. name: 'EU (London)'
  65. },
  66. {
  67. id: 'eu-west-3',
  68. name: 'EU (Paris)'
  69. },
  70. {
  71. id: 'eu-north-1',
  72. name: 'EU (Stockholm)'
  73. },
  74. {
  75. id: 'sa-east-1',
  76. name: 'South America (São Paulo)'
  77. },
  78. {
  79. id: 'us-gov-east-1',
  80. name: 'AWS GovCloud (US-East)'
  81. },
  82. {
  83. id: 'us-gov-west-1',
  84. name: 'AWS GovCloud (US)'
  85. }
  86. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement