aws-sdk-core 2.11.343 → 3.64.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1152) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -549
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +149 -10
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/http/async_response.rb +42 -0
  111. data/lib/seahorse/client/http/response.rb +10 -5
  112. data/lib/seahorse/client/logging/formatter.rb +2 -0
  113. data/lib/seahorse/client/logging/handler.rb +2 -0
  114. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  115. data/lib/seahorse/client/net_http/handler.rb +5 -0
  116. data/lib/seahorse/client/net_http/patches.rb +9 -1
  117. data/lib/seahorse/client/networking_error.rb +28 -0
  118. data/lib/seahorse/client/plugin.rb +66 -6
  119. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  120. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  121. data/lib/seahorse/client/plugins/h2.rb +64 -0
  122. data/lib/seahorse/client/plugins/logging.rb +17 -19
  123. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  124. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  125. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  126. data/lib/seahorse/client/request_context.rb +5 -0
  127. data/lib/seahorse/model/api.rb +33 -0
  128. data/lib/seahorse/model/authorizer.rb +21 -0
  129. data/lib/seahorse/model/operation.rb +11 -0
  130. data/lib/seahorse/model/shapes.rb +44 -2
  131. data/lib/seahorse/util.rb +1 -22
  132. metadata +91 -1029
  133. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  134. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  135. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  136. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  137. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  138. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  139. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  140. data/apis/acm/2015-12-08/api-2.json +0 -843
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/acm/2015-12-08/smoke.json +0 -18
  144. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  145. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  146. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  147. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  148. data/apis/amplify/2017-07-25/api-2.json +0 -1972
  149. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  150. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  151. data/apis/apigateway/2015-07-09/api-2.json +0 -5382
  152. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  153. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  154. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  155. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  156. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  157. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  158. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  159. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
  160. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  161. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  162. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  163. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  164. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  165. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  166. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  167. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  168. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  169. data/apis/appmesh/2019-01-25/api-2.json +0 -3202
  170. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  171. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  172. data/apis/appstream/2016-12-01/api-2.json +0 -2330
  173. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  174. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  175. data/apis/appstream/2016-12-01/smoke.json +0 -11
  176. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  177. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  178. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  179. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  180. data/apis/athena/2017-05-18/api-2.json +0 -984
  181. data/apis/athena/2017-05-18/examples-1.json +0 -5
  182. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  183. data/apis/athena/2017-05-18/smoke.json +0 -11
  184. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  185. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  186. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  187. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  188. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  189. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  190. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  191. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  192. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  193. data/apis/backup/2018-11-15/api-2.json +0 -2150
  194. data/apis/backup/2018-11-15/examples-1.json +0 -5
  195. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  196. data/apis/batch/2016-08-10/api-2.json +0 -1128
  197. data/apis/batch/2016-08-10/examples-1.json +0 -589
  198. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  199. data/apis/batch/2016-08-10/smoke.json +0 -11
  200. data/apis/budgets/2016-10-20/api-2.json +0 -807
  201. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  202. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  203. data/apis/ce/2017-10-25/api-2.json +0 -1035
  204. data/apis/ce/2017-10-25/examples-1.json +0 -5
  205. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  206. data/apis/chime/2018-05-01/api-2.json +0 -2902
  207. data/apis/chime/2018-05-01/examples-1.json +0 -5
  208. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  209. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  210. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  211. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  212. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  213. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  214. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  215. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  216. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  217. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  218. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  219. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  220. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  221. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  222. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  223. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  224. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  225. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  226. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  227. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  228. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  229. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  230. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  231. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  232. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  233. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  234. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  235. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  239. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  243. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  246. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  247. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  248. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  249. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  250. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  251. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  252. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  253. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  254. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  255. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  256. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  257. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  258. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  259. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  261. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  264. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  265. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  266. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  267. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  268. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  269. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  270. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  271. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  272. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  273. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  274. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  275. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  276. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  277. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  278. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  279. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  280. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  281. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  282. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  283. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  284. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  285. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  286. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  287. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  288. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  289. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  290. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  291. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  292. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  293. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  294. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  295. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  296. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  297. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  298. data/apis/codepipeline/2015-07-09/api-2.json +0 -2382
  299. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  300. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  301. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  302. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  303. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  304. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  305. data/apis/codestar/2017-04-19/smoke.json +0 -11
  306. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  307. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  308. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  309. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
  310. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  311. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
  312. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  313. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  314. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  315. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  316. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  317. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  318. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  319. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  320. data/apis/config/2014-11-12/api-2.json +0 -3270
  321. data/apis/config/2014-11-12/examples-1.json +0 -5
  322. data/apis/config/2014-11-12/paginators-1.json +0 -16
  323. data/apis/config/2014-11-12/smoke.json +0 -19
  324. data/apis/connect/2017-08-08/api-2.json +0 -1379
  325. data/apis/connect/2017-08-08/examples-1.json +0 -5
  326. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  327. data/apis/cur/2017-01-06/api-2.json +0 -277
  328. data/apis/cur/2017-01-06/examples-1.json +0 -102
  329. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  330. data/apis/cur/2017-01-06/smoke.json +0 -11
  331. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  332. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  333. data/apis/datasync/2018-11-09/api-2.json +0 -1305
  334. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  335. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  336. data/apis/dax/2017-04-19/api-2.json +0 -1140
  337. data/apis/dax/2017-04-19/examples-1.json +0 -5
  338. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  339. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  340. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  341. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  342. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  343. data/apis/directconnect/2012-10-25/api-2.json +0 -2066
  344. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  345. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  346. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  347. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  348. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  349. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  350. data/apis/discovery/2015-11-01/smoke.json +0 -11
  351. data/apis/dlm/2018-01-12/api-2.json +0 -444
  352. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  353. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  354. data/apis/dms/2016-01-01/api-2.json +0 -2259
  355. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  356. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  357. data/apis/dms/2016-01-01/smoke.json +0 -18
  358. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  359. data/apis/docdb/2014-10-31/api-2.json +0 -2482
  360. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  361. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  362. data/apis/docdb/2014-10-31/smoke.json +0 -18
  363. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  364. data/apis/ds/2015-04-16/api-2.json +0 -2634
  365. data/apis/ds/2015-04-16/examples-1.json +0 -5
  366. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  367. data/apis/ds/2015-04-16/smoke.json +0 -20
  368. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  369. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  370. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  371. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  372. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  373. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  374. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  375. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  376. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  377. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  378. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  379. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  380. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  381. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  382. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  383. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  384. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  385. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  386. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  387. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  388. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  389. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  390. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  391. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  392. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  393. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  394. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  395. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  396. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  397. data/apis/ec2/2016-11-15/api-2.json +0 -25018
  398. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  399. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  400. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  401. data/apis/ec2/2016-11-15/smoke.json +0 -20
  402. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  403. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  404. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  405. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  406. data/apis/ecr/2015-09-21/smoke.json +0 -18
  407. data/apis/ecs/2014-11-13/api-2.json +0 -2809
  408. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  409. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  410. data/apis/ecs/2014-11-13/smoke.json +0 -18
  411. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  412. data/apis/eks/2017-11-01/api-2.json +0 -597
  413. data/apis/eks/2017-11-01/examples-1.json +0 -114
  414. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  415. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  416. data/apis/elasticache/2015-02-02/api-2.json +0 -3132
  417. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  418. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  419. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  420. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  421. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  422. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  423. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  424. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  425. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  426. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  427. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  428. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  429. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  430. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  431. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  432. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  433. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  434. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  435. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  436. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  437. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  438. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  439. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  440. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  441. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  442. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  443. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  444. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  445. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  446. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  447. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  448. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  449. data/apis/email/2010-12-01/api-2.json +0 -3182
  450. data/apis/email/2010-12-01/examples-1.json +0 -1021
  451. data/apis/email/2010-12-01/paginators-1.json +0 -18
  452. data/apis/email/2010-12-01/smoke.json +0 -18
  453. data/apis/email/2010-12-01/waiters-2.json +0 -18
  454. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  455. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  456. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  457. data/apis/es/2015-01-01/api-2.json +0 -1543
  458. data/apis/es/2015-01-01/examples-1.json +0 -5
  459. data/apis/es/2015-01-01/paginators-1.json +0 -29
  460. data/apis/es/2015-01-01/smoke.json +0 -18
  461. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  462. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  463. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  464. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  465. data/apis/events/2015-10-07/api-2.json +0 -1462
  466. data/apis/events/2015-10-07/examples-1.json +0 -5
  467. data/apis/events/2015-10-07/paginators-1.json +0 -4
  468. data/apis/events/2015-10-07/smoke.json +0 -18
  469. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  470. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  471. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  472. data/apis/firehose/2015-08-04/smoke.json +0 -18
  473. data/apis/fms/2018-01-01/api-2.json +0 -692
  474. data/apis/fms/2018-01-01/examples-1.json +0 -5
  475. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  476. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  477. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  478. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  479. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  480. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  481. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  482. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  483. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  484. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  485. data/apis/gamelift/2015-10-01/api-2.json +0 -3447
  486. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  487. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  488. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  489. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  490. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  491. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  492. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  493. data/apis/glacier/2012-06-01/smoke.json +0 -18
  494. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  495. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
  496. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  497. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  498. data/apis/glue/2017-03-31/api-2.json +0 -6291
  499. data/apis/glue/2017-03-31/examples-1.json +0 -5
  500. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  501. data/apis/glue/2017-03-31/smoke.json +0 -11
  502. data/apis/greengrass/2017-06-07/api-2.json +0 -5103
  503. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  504. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  505. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  506. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  507. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  508. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  509. data/apis/health/2016-08-04/api-2.json +0 -554
  510. data/apis/health/2016-08-04/examples-1.json +0 -5
  511. data/apis/health/2016-08-04/paginators-1.json +0 -31
  512. data/apis/health/2016-08-04/smoke.json +0 -11
  513. data/apis/iam/2010-05-08/api-2.json +0 -5778
  514. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  515. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  516. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  517. data/apis/iam/2010-05-08/smoke.json +0 -18
  518. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  519. data/apis/importexport/2010-06-01/api-2.json +0 -667
  520. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  521. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  522. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  523. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  524. data/apis/inspector/2016-02-16/smoke.json +0 -18
  525. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  526. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  527. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  528. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  529. data/apis/iot/2015-05-28/api-2.json +0 -9676
  530. data/apis/iot/2015-05-28/examples-1.json +0 -5
  531. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  532. data/apis/iot/2015-05-28/smoke.json +0 -18
  533. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  534. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  535. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  536. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  537. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  538. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  539. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  540. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  541. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  542. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  543. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  544. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  545. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  546. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  547. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  548. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  549. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  550. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  551. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  552. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  553. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  554. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  555. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  556. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  557. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  558. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  559. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  560. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  561. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  562. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  563. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  564. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  565. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  566. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  567. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  568. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  569. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  570. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  571. data/apis/kms/2014-11-01/api-2.json +0 -1834
  572. data/apis/kms/2014-11-01/examples-1.json +0 -906
  573. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  574. data/apis/kms/2014-11-01/smoke.json +0 -19
  575. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  576. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  577. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  578. data/apis/lambda/2014-11-11/api-2.json +0 -668
  579. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  580. data/apis/lambda/2015-03-31/api-2.json +0 -2345
  581. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  582. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  583. data/apis/lambda/2015-03-31/smoke.json +0 -18
  584. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  585. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  586. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  587. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  588. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  589. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  590. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  591. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  592. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  593. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  594. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  595. data/apis/logs/2014-03-28/api-2.json +0 -1701
  596. data/apis/logs/2014-03-28/examples-1.json +0 -5
  597. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  598. data/apis/logs/2014-03-28/smoke.json +0 -19
  599. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  600. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  601. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  602. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  603. data/apis/macie/2017-12-19/api-2.json +0 -365
  604. data/apis/macie/2017-12-19/examples-1.json +0 -5
  605. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  606. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  607. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  608. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  609. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  610. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  611. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  612. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
  613. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  614. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8239
  615. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  616. data/apis/medialive/2017-10-14/api-2.json +0 -8711
  617. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  618. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  619. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  620. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  621. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  622. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  623. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  624. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  625. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  626. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  627. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  628. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  629. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  630. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  631. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  632. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  633. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  634. data/apis/mobile/2017-07-01/api-2.json +0 -551
  635. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  636. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  637. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  638. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  639. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  640. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  641. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  642. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  643. data/apis/mq/2017-11-27/api-2.json +0 -2490
  644. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  645. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  646. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  647. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  648. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  649. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  650. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  651. data/apis/neptune/2014-10-31/smoke.json +0 -18
  652. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  653. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  654. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  655. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  656. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  657. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  658. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  659. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  660. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  661. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  662. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  663. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  664. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  665. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  666. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  667. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  668. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  669. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  670. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  671. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  672. data/apis/personalize/2018-05-22/api-2.json +0 -1695
  673. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  674. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  675. data/apis/pi/2018-02-27/api-2.json +0 -253
  676. data/apis/pi/2018-02-27/examples-1.json +0 -5
  677. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  678. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  679. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  680. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  681. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  682. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  683. data/apis/polly/2016-06-10/api-2.json +0 -830
  684. data/apis/polly/2016-06-10/examples-1.json +0 -171
  685. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  686. data/apis/polly/2016-06-10/smoke.json +0 -11
  687. data/apis/pricing/2017-10-15/api-2.json +0 -227
  688. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  689. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  690. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  691. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  692. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  693. data/apis/ram/2018-01-04/api-2.json +0 -964
  694. data/apis/ram/2018-01-04/examples-1.json +0 -5
  695. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  696. data/apis/rds-data/2018-08-01/api-2.json +0 -787
  697. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  698. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  699. data/apis/rds/2013-01-10/api-2.json +0 -2903
  700. data/apis/rds/2013-01-10/examples-1.json +0 -5
  701. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  702. data/apis/rds/2013-01-10/smoke.json +0 -18
  703. data/apis/rds/2013-02-12/api-2.json +0 -3059
  704. data/apis/rds/2013-02-12/examples-1.json +0 -5
  705. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  706. data/apis/rds/2013-02-12/smoke.json +0 -18
  707. data/apis/rds/2013-09-09/api-2.json +0 -3160
  708. data/apis/rds/2013-09-09/examples-1.json +0 -5
  709. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  710. data/apis/rds/2013-09-09/smoke.json +0 -18
  711. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  712. data/apis/rds/2014-09-01/api-2.json +0 -3273
  713. data/apis/rds/2014-09-01/examples-1.json +0 -5
  714. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  715. data/apis/rds/2014-09-01/smoke.json +0 -18
  716. data/apis/rds/2014-10-31/api-2.json +0 -6576
  717. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  718. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  719. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  720. data/apis/rds/2014-10-31/smoke.json +0 -18
  721. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  722. data/apis/rds/2015-11-12/api-2.json +0 -5509
  723. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  724. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  725. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  726. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  727. data/apis/redshift/2012-12-01/api-2.json +0 -4891
  728. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  729. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  730. data/apis/redshift/2012-12-01/smoke.json +0 -18
  731. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  732. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  733. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  734. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  735. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  736. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  737. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  738. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  739. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  740. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  741. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  742. data/apis/robomaker/2018-06-29/api-2.json +0 -2093
  743. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  744. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  745. data/apis/route53/2013-04-01/api-2.json +0 -3780
  746. data/apis/route53/2013-04-01/examples-1.json +0 -762
  747. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  748. data/apis/route53/2013-04-01/smoke.json +0 -18
  749. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  750. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  751. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  752. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  753. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  754. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  755. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  756. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  757. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  758. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  759. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  760. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  761. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  762. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  763. data/apis/s3/2006-03-01/api-2.json +0 -6576
  764. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  765. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  766. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  767. data/apis/s3/2006-03-01/smoke.json +0 -11
  768. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  769. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  770. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  771. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  772. data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
  773. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  774. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  775. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  776. data/apis/sdb/2009-04-15/api-2.json +0 -955
  777. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  778. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  779. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  780. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  781. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  782. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  783. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  784. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  785. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  786. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  787. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  788. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  789. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  790. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  791. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  792. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  793. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  794. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  795. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  796. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  797. data/apis/shield/2016-06-02/api-2.json +0 -893
  798. data/apis/shield/2016-06-02/examples-1.json +0 -5
  799. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  800. data/apis/shield/2016-06-02/smoke.json +0 -11
  801. data/apis/signer/2017-08-25/api-2.json +0 -670
  802. data/apis/signer/2017-08-25/examples-1.json +0 -5
  803. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  804. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  805. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  806. data/apis/sms/2016-10-24/api-2.json +0 -1366
  807. data/apis/sms/2016-10-24/examples-1.json +0 -5
  808. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  809. data/apis/sms/2016-10-24/smoke.json +0 -18
  810. data/apis/snowball/2016-06-30/api-2.json +0 -929
  811. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  812. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  813. data/apis/snowball/2016-06-30/smoke.json +0 -11
  814. data/apis/sns/2010-03-31/api-2.json +0 -1468
  815. data/apis/sns/2010-03-31/examples-1.json +0 -5
  816. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  817. data/apis/sns/2010-03-31/resources-1.json +0 -327
  818. data/apis/sns/2010-03-31/smoke.json +0 -19
  819. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  820. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  821. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  822. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  823. data/apis/sqs/2012-11-05/smoke.json +0 -18
  824. data/apis/ssm/2014-11-06/api-2.json +0 -8914
  825. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  826. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  827. data/apis/ssm/2014-11-06/smoke.json +0 -18
  828. data/apis/states/2016-11-23/api-2.json +0 -1372
  829. data/apis/states/2016-11-23/examples-1.json +0 -5
  830. data/apis/states/2016-11-23/paginators-1.json +0 -28
  831. data/apis/states/2016-11-23/smoke.json +0 -11
  832. data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
  833. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  834. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  835. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  836. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  837. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  838. data/apis/sts/2011-06-15/api-2.json +0 -562
  839. data/apis/sts/2011-06-15/examples-1.json +0 -207
  840. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  841. data/apis/sts/2011-06-15/smoke.json +0 -19
  842. data/apis/support/2013-04-15/api-2.json +0 -772
  843. data/apis/support/2013-04-15/examples-1.json +0 -5
  844. data/apis/support/2013-04-15/paginators-1.json +0 -25
  845. data/apis/swf/2012-01-25/api-2.json +0 -2792
  846. data/apis/swf/2012-01-25/examples-1.json +0 -5
  847. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  848. data/apis/textract/2018-06-27/api-2.json +0 -572
  849. data/apis/textract/2018-06-27/examples-1.json +0 -5
  850. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  851. data/apis/transcribe/2017-10-26/api-2.json +0 -506
  852. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  853. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  854. data/apis/transfer/2018-11-05/api-2.json +0 -857
  855. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  856. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  857. data/apis/translate/2017-07-01/api-2.json +0 -408
  858. data/apis/translate/2017-07-01/examples-1.json +0 -5
  859. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  860. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  861. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  862. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  863. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  864. data/apis/waf/2015-08-24/api-2.json +0 -3857
  865. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  866. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  867. data/apis/waf/2015-08-24/smoke.json +0 -21
  868. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  869. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  870. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  871. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  872. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  873. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  874. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  875. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  876. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  877. data/apis/workspaces/2015-04-08/api-2.json +0 -1699
  878. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  879. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  880. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  881. data/apis/xray/2016-04-12/api-2.json +0 -1352
  882. data/apis/xray/2016-04-12/examples-1.json +0 -5
  883. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  884. data/bin/aws.rb +0 -180
  885. data/endpoints.json +0 -4633
  886. data/lib/aws-sdk-core/acm.rb +0 -7
  887. data/lib/aws-sdk-core/acmpca.rb +0 -7
  888. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  889. data/lib/aws-sdk-core/amplify.rb +0 -6
  890. data/lib/aws-sdk-core/api/builder.rb +0 -129
  891. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  892. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  893. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  894. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  895. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  896. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  897. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  898. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  899. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  900. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  901. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  902. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  903. data/lib/aws-sdk-core/apigateway.rb +0 -6
  904. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  905. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  906. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  907. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  908. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  909. data/lib/aws-sdk-core/appmesh.rb +0 -6
  910. data/lib/aws-sdk-core/appstream.rb +0 -7
  911. data/lib/aws-sdk-core/appsync.rb +0 -6
  912. data/lib/aws-sdk-core/athena.rb +0 -6
  913. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  914. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  915. data/lib/aws-sdk-core/backup.rb +0 -6
  916. data/lib/aws-sdk-core/batch.rb +0 -6
  917. data/lib/aws-sdk-core/budgets.rb +0 -6
  918. data/lib/aws-sdk-core/checksums.rb +0 -51
  919. data/lib/aws-sdk-core/chime.rb +0 -6
  920. data/lib/aws-sdk-core/client.rb +0 -62
  921. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  922. data/lib/aws-sdk-core/cloud9.rb +0 -6
  923. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  924. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  925. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  926. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  927. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  928. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  929. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  930. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  931. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  932. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  933. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  934. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  935. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  936. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  937. data/lib/aws-sdk-core/codebuild.rb +0 -6
  938. data/lib/aws-sdk-core/codecommit.rb +0 -6
  939. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  940. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  941. data/lib/aws-sdk-core/codestar.rb +0 -6
  942. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  943. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  944. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  945. data/lib/aws-sdk-core/comprehend.rb +0 -6
  946. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  947. data/lib/aws-sdk-core/configservice.rb +0 -6
  948. data/lib/aws-sdk-core/connect.rb +0 -6
  949. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  950. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  951. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  952. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  953. data/lib/aws-sdk-core/datasync.rb +0 -6
  954. data/lib/aws-sdk-core/dax.rb +0 -6
  955. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  956. data/lib/aws-sdk-core/directconnect.rb +0 -6
  957. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  958. data/lib/aws-sdk-core/dlm.rb +0 -6
  959. data/lib/aws-sdk-core/docdb.rb +0 -7
  960. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  961. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  962. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  963. data/lib/aws-sdk-core/ec2.rb +0 -8
  964. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  965. data/lib/aws-sdk-core/ecr.rb +0 -6
  966. data/lib/aws-sdk-core/ecs.rb +0 -7
  967. data/lib/aws-sdk-core/efs.rb +0 -6
  968. data/lib/aws-sdk-core/eks.rb +0 -7
  969. data/lib/aws-sdk-core/elasticache.rb +0 -7
  970. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  971. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  972. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  973. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  974. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  975. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  976. data/lib/aws-sdk-core/emr.rb +0 -7
  977. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  978. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  979. data/lib/aws-sdk-core/firehose.rb +0 -6
  980. data/lib/aws-sdk-core/fms.rb +0 -6
  981. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  982. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  983. data/lib/aws-sdk-core/fsx.rb +0 -6
  984. data/lib/aws-sdk-core/gamelift.rb +0 -6
  985. data/lib/aws-sdk-core/glacier.rb +0 -8
  986. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  987. data/lib/aws-sdk-core/glue.rb +0 -6
  988. data/lib/aws-sdk-core/greengrass.rb +0 -4
  989. data/lib/aws-sdk-core/groundstation.rb +0 -6
  990. data/lib/aws-sdk-core/guardduty.rb +0 -6
  991. data/lib/aws-sdk-core/health.rb +0 -6
  992. data/lib/aws-sdk-core/iam.rb +0 -8
  993. data/lib/aws-sdk-core/importexport.rb +0 -5
  994. data/lib/aws-sdk-core/inspector.rb +0 -6
  995. data/lib/aws-sdk-core/iot.rb +0 -6
  996. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  997. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  998. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  999. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1000. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1001. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1002. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1003. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1004. data/lib/aws-sdk-core/kafka.rb +0 -5
  1005. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1006. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1007. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1008. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1009. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1010. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1011. data/lib/aws-sdk-core/kms.rb +0 -6
  1012. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1013. data/lib/aws-sdk-core/lambda.rb +0 -7
  1014. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1015. data/lib/aws-sdk-core/lex.rb +0 -6
  1016. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1017. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1018. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1019. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1020. data/lib/aws-sdk-core/macie.rb +0 -6
  1021. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1022. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1023. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1024. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1025. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1026. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1027. data/lib/aws-sdk-core/medialive.rb +0 -6
  1028. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1029. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1030. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1031. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1032. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1033. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1034. data/lib/aws-sdk-core/mobile.rb +0 -6
  1035. data/lib/aws-sdk-core/mq.rb +0 -5
  1036. data/lib/aws-sdk-core/mturk.rb +0 -6
  1037. data/lib/aws-sdk-core/neptune.rb +0 -7
  1038. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1039. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1040. data/lib/aws-sdk-core/organizations.rb +0 -6
  1041. data/lib/aws-sdk-core/partitions.rb +0 -174
  1042. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1043. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1044. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1045. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1046. data/lib/aws-sdk-core/personalize.rb +0 -6
  1047. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1048. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1049. data/lib/aws-sdk-core/pi.rb +0 -6
  1050. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1051. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1052. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1053. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1054. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1055. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1056. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1057. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1058. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1059. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1060. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1061. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1062. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1063. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1064. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1065. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1066. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1067. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1068. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1069. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1070. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1071. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1072. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1073. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1074. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1075. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1076. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1077. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1078. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1079. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1080. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1081. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1082. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1083. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1084. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1085. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1086. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1087. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1088. data/lib/aws-sdk-core/polly.rb +0 -14
  1089. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1090. data/lib/aws-sdk-core/pricing.rb +0 -6
  1091. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1092. data/lib/aws-sdk-core/ram.rb +0 -6
  1093. data/lib/aws-sdk-core/rds.rb +0 -16
  1094. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1095. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1096. data/lib/aws-sdk-core/redshift.rb +0 -7
  1097. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1098. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1099. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1100. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1101. data/lib/aws-sdk-core/route53.rb +0 -7
  1102. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1103. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1104. data/lib/aws-sdk-core/s3.rb +0 -26
  1105. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1106. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1107. data/lib/aws-sdk-core/s3control.rb +0 -6
  1108. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1109. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1110. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1111. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1112. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1113. data/lib/aws-sdk-core/service.rb +0 -4
  1114. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1115. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1116. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1117. data/lib/aws-sdk-core/ses.rb +0 -7
  1118. data/lib/aws-sdk-core/shield.rb +0 -6
  1119. data/lib/aws-sdk-core/signer.rb +0 -7
  1120. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1121. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1122. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1123. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1124. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1125. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1126. data/lib/aws-sdk-core/sms.rb +0 -6
  1127. data/lib/aws-sdk-core/snowball.rb +0 -6
  1128. data/lib/aws-sdk-core/sns.rb +0 -7
  1129. data/lib/aws-sdk-core/sqs.rb +0 -7
  1130. data/lib/aws-sdk-core/ssm.rb +0 -6
  1131. data/lib/aws-sdk-core/states.rb +0 -6
  1132. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1133. data/lib/aws-sdk-core/sts.rb +0 -6
  1134. data/lib/aws-sdk-core/support.rb +0 -6
  1135. data/lib/aws-sdk-core/swf.rb +0 -6
  1136. data/lib/aws-sdk-core/textract.rb +0 -6
  1137. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1138. data/lib/aws-sdk-core/transfer.rb +0 -6
  1139. data/lib/aws-sdk-core/translate.rb +0 -6
  1140. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1141. data/lib/aws-sdk-core/version.rb +0 -3
  1142. data/lib/aws-sdk-core/waf.rb +0 -6
  1143. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1144. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1145. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1146. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1147. data/lib/aws-sdk-core/worklink.rb +0 -6
  1148. data/lib/aws-sdk-core/workmail.rb +0 -6
  1149. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1150. data/lib/aws-sdk-core/xray.rb +0 -6
  1151. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1152. data/service-models.json +0 -757
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,59 +0,0 @@
1
- {
2
- "pagination": {
3
- "BatchGetTraces": {
4
- "input_token": "NextToken",
5
- "non_aggregate_keys": [
6
- "UnprocessedTraceIds"
7
- ],
8
- "output_token": "NextToken",
9
- "result_key": "Traces"
10
- },
11
- "GetGroups": {
12
- "input_token": "NextToken",
13
- "output_token": "NextToken",
14
- "result_key": "Groups"
15
- },
16
- "GetSamplingRules": {
17
- "input_token": "NextToken",
18
- "output_token": "NextToken",
19
- "result_key": "SamplingRuleRecords"
20
- },
21
- "GetSamplingStatisticSummaries": {
22
- "input_token": "NextToken",
23
- "output_token": "NextToken",
24
- "result_key": "SamplingStatisticSummaries"
25
- },
26
- "GetServiceGraph": {
27
- "input_token": "NextToken",
28
- "non_aggregate_keys": [
29
- "StartTime",
30
- "EndTime",
31
- "ContainsOldGroupVersions"
32
- ],
33
- "output_token": "NextToken",
34
- "result_key": "Services"
35
- },
36
- "GetTimeSeriesServiceStatistics": {
37
- "input_token": "NextToken",
38
- "non_aggregate_keys": [
39
- "ContainsOldGroupVersions"
40
- ],
41
- "output_token": "NextToken",
42
- "result_key": "TimeSeriesServiceStatistics"
43
- },
44
- "GetTraceGraph": {
45
- "input_token": "NextToken",
46
- "output_token": "NextToken",
47
- "result_key": "Services"
48
- },
49
- "GetTraceSummaries": {
50
- "input_token": "NextToken",
51
- "non_aggregate_keys": [
52
- "TracesProcessedCount",
53
- "ApproximateTime"
54
- ],
55
- "output_token": "NextToken",
56
- "result_key": "TraceSummaries"
57
- }
58
- }
59
- }
data/bin/aws.rb DELETED
@@ -1,180 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- root = File.dirname(File.dirname(__FILE__))
4
- $:.unshift(File.join(root, 'lib'))
5
-
6
- require 'rubygems'
7
- require 'optparse'
8
- require 'logger'
9
-
10
- def env_bool key, default
11
- if ENV.key?(key)
12
- ['0', 'false', 'no', 'off'].exclude?(ENV[key].downcase)
13
- else
14
- default
15
- end
16
- end
17
-
18
- # setup default options, check ENV for most
19
- options = {
20
- repl: env_bool('AWSRB', nil),
21
- log: env_bool('AWSRB_LOG', true),
22
- color: env_bool('AWSRB_COLOR', true),
23
- debug: env_bool('AWSRB_DEBUG', false),
24
- load_paths: [],
25
- require: [],
26
- execute: [],
27
- }
28
-
29
- OptionParser.new do |opts|
30
-
31
- opts.banner = "Usage: aws-rb [options]"
32
-
33
- opts.on("--region NAME", "specify the AWS region, e.g. us-west-2") do |value|
34
- options[:region] = value
35
- end
36
-
37
- opts.on("--repl REPL", "specify the repl environment, pry or irb") do |value|
38
- options[:repl] = value
39
- end
40
-
41
- opts.on("-e 'command'", "one line of script. Several -e's allowed.") do |value|
42
- options[:execute] << value
43
- options[:log] = false unless options[:log_set]
44
- options[:debug] = false unless options[:debug_set]
45
- end
46
-
47
- opts.on("-l", "--[no-]log", "log client requets, on by default") do |value|
48
- options[:log] = value
49
- options[:log_set] = true
50
- end
51
-
52
- opts.on("-c", "--[no-]color", "colorize request logging, on by default") do |value|
53
- options[:color] = value
54
- end
55
-
56
- opts.on("-d", "--[no-]debug", "log HTTP wire traces, off by default") do |value|
57
- options[:debug] = value
58
- options[:debug_set] = true
59
- end
60
-
61
- opts.on("-Idirectory", Array, "specify $LOAD_PATH directory (may be used more than once)") do |values|
62
- options[:load_paths] += values
63
- end
64
-
65
- opts.on("-rlibrary", Array, "require the library") do |values|
66
- options[:require] += values
67
- end
68
-
69
- opts.on("-v", "--verbose", "enable client logging and HTTP wire tracing") do |value|
70
- options[:log] = true
71
- options[:log_set] = true
72
- options[:debug] = true
73
- options[:debug_set] = true
74
- end
75
-
76
- opts.on("-q", "--quiet", "disable client logging and HTTP wire tracing") do |value|
77
- options[:log] = false
78
- options[:log_set] = true
79
- options[:debug] = false
80
- options[:debug_set] = true
81
- end
82
-
83
- opts.on("-h", "--help") do
84
- puts opts
85
- exit
86
- end
87
-
88
- end.parse!
89
-
90
- # amend the $LOAD_PATH
91
- options[:load_paths].each do |path|
92
- $LOAD_PATH.unshift(path)
93
- end
94
-
95
- require 'aws-sdk-core'
96
-
97
- module Aws
98
- class << self
99
- SERVICE_MODULE_NAMES.each do |svc_name|
100
- define_method(svc_name.downcase) do |options={}|
101
- const_get(svc_name).const_get(:Client).new(options)
102
- end
103
- end
104
- end
105
- class Client
106
- def resource
107
- namespace = Aws.const_get(self.class.name.split('::')[1])
108
- namespace::Resource.new(client: self)
109
- end
110
- end
111
- end
112
-
113
- begin
114
- # attempt to load aws-sdk-resources, checking first for source from
115
- # a relative path in the repo, otherwise will check for the installed gem
116
- lib = File.join(File.dirname(__FILE__), '..', '..', 'aws-sdk-resources', 'lib')
117
- $LOAD_PATH.unshift(lib) if File.directory?(lib)
118
- require 'aws-sdk-resources'
119
- rescue LoadError
120
- end
121
-
122
- # configure the aws-sdk gem
123
-
124
- cfg = {}
125
-
126
- cfg[:region] = options[:region] if options[:region]
127
-
128
- if options[:log]
129
- logger = Logger.new($stdout)
130
- logger.formatter = proc {|severity, datetime, progname, msg| msg }
131
- cfg[:logger] = logger
132
- end
133
-
134
- if options[:color]
135
- cfg[:log_formatter] = Aws::Log::Formatter.colored
136
- end
137
-
138
- if options[:debug]
139
- cfg[:http_wire_trace] = true
140
- end
141
-
142
- Aws.config = cfg
143
-
144
- options[:require].each do |library|
145
- require(library)
146
- end
147
-
148
- unless options[:execute].empty?
149
- eval(options[:execute].join("\n"))
150
- exit
151
- end
152
-
153
- class PryNotAvailable < StandardError; end
154
-
155
- def run_with_pry
156
- begin
157
- require 'pry'
158
- rescue LoadError
159
- raise PryNotAvailable
160
- end
161
- Pry.config.prompt = [proc { "Aws> " }, proc { "Aws| " }]
162
- Aws.pry
163
- end
164
-
165
- def run_with_irb
166
- require 'irb'
167
- IRB.start
168
- end
169
-
170
- case options[:repl]
171
- when 'pry' then run_with_pry
172
- when 'irb' then run_with_irb
173
- else
174
- begin
175
- run_with_pry
176
- rescue PryNotAvailable
177
- warn("Pry not available, falling back to irb")
178
- run_with_irb
179
- end
180
- end
@@ -1,4633 +0,0 @@
1
- {
2
- "partitions" : [ {
3
- "defaults" : {
4
- "hostname" : "{service}.{region}.{dnsSuffix}",
5
- "protocols" : [ "https" ],
6
- "signatureVersions" : [ "v4" ]
7
- },
8
- "dnsSuffix" : "amazonaws.com",
9
- "partition" : "aws",
10
- "partitionName" : "AWS Standard",
11
- "regionRegex" : "^(us|eu|ap|sa|ca|me)\\-\\w+\\-\\d+$",
12
- "regions" : {
13
- "ap-east-1" : {
14
- "description" : "Asia Pacific (Hong Kong)"
15
- },
16
- "ap-northeast-1" : {
17
- "description" : "Asia Pacific (Tokyo)"
18
- },
19
- "ap-northeast-2" : {
20
- "description" : "Asia Pacific (Seoul)"
21
- },
22
- "ap-south-1" : {
23
- "description" : "Asia Pacific (Mumbai)"
24
- },
25
- "ap-southeast-1" : {
26
- "description" : "Asia Pacific (Singapore)"
27
- },
28
- "ap-southeast-2" : {
29
- "description" : "Asia Pacific (Sydney)"
30
- },
31
- "ca-central-1" : {
32
- "description" : "Canada (Central)"
33
- },
34
- "eu-central-1" : {
35
- "description" : "EU (Frankfurt)"
36
- },
37
- "eu-north-1" : {
38
- "description" : "EU (Stockholm)"
39
- },
40
- "eu-west-1" : {
41
- "description" : "EU (Ireland)"
42
- },
43
- "eu-west-2" : {
44
- "description" : "EU (London)"
45
- },
46
- "eu-west-3" : {
47
- "description" : "EU (Paris)"
48
- },
49
- "me-south-1" : {
50
- "description" : "Middle East (Bahrain)"
51
- },
52
- "sa-east-1" : {
53
- "description" : "South America (Sao Paulo)"
54
- },
55
- "us-east-1" : {
56
- "description" : "US East (N. Virginia)"
57
- },
58
- "us-east-2" : {
59
- "description" : "US East (Ohio)"
60
- },
61
- "us-west-1" : {
62
- "description" : "US West (N. California)"
63
- },
64
- "us-west-2" : {
65
- "description" : "US West (Oregon)"
66
- }
67
- },
68
- "services" : {
69
- "a4b" : {
70
- "endpoints" : {
71
- "us-east-1" : { }
72
- }
73
- },
74
- "acm" : {
75
- "endpoints" : {
76
- "ap-east-1" : { },
77
- "ap-northeast-1" : { },
78
- "ap-northeast-2" : { },
79
- "ap-south-1" : { },
80
- "ap-southeast-1" : { },
81
- "ap-southeast-2" : { },
82
- "ca-central-1" : { },
83
- "eu-central-1" : { },
84
- "eu-north-1" : { },
85
- "eu-west-1" : { },
86
- "eu-west-2" : { },
87
- "eu-west-3" : { },
88
- "me-south-1" : { },
89
- "sa-east-1" : { },
90
- "us-east-1" : { },
91
- "us-east-2" : { },
92
- "us-west-1" : { },
93
- "us-west-2" : { }
94
- }
95
- },
96
- "acm-pca" : {
97
- "defaults" : {
98
- "protocols" : [ "https" ]
99
- },
100
- "endpoints" : {
101
- "ap-east-1" : { },
102
- "ap-northeast-1" : { },
103
- "ap-northeast-2" : { },
104
- "ap-south-1" : { },
105
- "ap-southeast-1" : { },
106
- "ap-southeast-2" : { },
107
- "ca-central-1" : { },
108
- "eu-central-1" : { },
109
- "eu-north-1" : { },
110
- "eu-west-1" : { },
111
- "eu-west-2" : { },
112
- "eu-west-3" : { },
113
- "us-east-1" : { },
114
- "us-east-2" : { },
115
- "us-west-1" : { },
116
- "us-west-2" : { }
117
- }
118
- },
119
- "api.ecr" : {
120
- "endpoints" : {
121
- "ap-east-1" : {
122
- "credentialScope" : {
123
- "region" : "ap-east-1"
124
- },
125
- "hostname" : "api.ecr.ap-east-1.amazonaws.com"
126
- },
127
- "ap-northeast-1" : {
128
- "credentialScope" : {
129
- "region" : "ap-northeast-1"
130
- },
131
- "hostname" : "api.ecr.ap-northeast-1.amazonaws.com"
132
- },
133
- "ap-northeast-2" : {
134
- "credentialScope" : {
135
- "region" : "ap-northeast-2"
136
- },
137
- "hostname" : "api.ecr.ap-northeast-2.amazonaws.com"
138
- },
139
- "ap-south-1" : {
140
- "credentialScope" : {
141
- "region" : "ap-south-1"
142
- },
143
- "hostname" : "api.ecr.ap-south-1.amazonaws.com"
144
- },
145
- "ap-southeast-1" : {
146
- "credentialScope" : {
147
- "region" : "ap-southeast-1"
148
- },
149
- "hostname" : "api.ecr.ap-southeast-1.amazonaws.com"
150
- },
151
- "ap-southeast-2" : {
152
- "credentialScope" : {
153
- "region" : "ap-southeast-2"
154
- },
155
- "hostname" : "api.ecr.ap-southeast-2.amazonaws.com"
156
- },
157
- "ca-central-1" : {
158
- "credentialScope" : {
159
- "region" : "ca-central-1"
160
- },
161
- "hostname" : "api.ecr.ca-central-1.amazonaws.com"
162
- },
163
- "eu-central-1" : {
164
- "credentialScope" : {
165
- "region" : "eu-central-1"
166
- },
167
- "hostname" : "api.ecr.eu-central-1.amazonaws.com"
168
- },
169
- "eu-north-1" : {
170
- "credentialScope" : {
171
- "region" : "eu-north-1"
172
- },
173
- "hostname" : "api.ecr.eu-north-1.amazonaws.com"
174
- },
175
- "eu-west-1" : {
176
- "credentialScope" : {
177
- "region" : "eu-west-1"
178
- },
179
- "hostname" : "api.ecr.eu-west-1.amazonaws.com"
180
- },
181
- "eu-west-2" : {
182
- "credentialScope" : {
183
- "region" : "eu-west-2"
184
- },
185
- "hostname" : "api.ecr.eu-west-2.amazonaws.com"
186
- },
187
- "eu-west-3" : {
188
- "credentialScope" : {
189
- "region" : "eu-west-3"
190
- },
191
- "hostname" : "api.ecr.eu-west-3.amazonaws.com"
192
- },
193
- "me-south-1" : {
194
- "credentialScope" : {
195
- "region" : "me-south-1"
196
- },
197
- "hostname" : "api.ecr.me-south-1.amazonaws.com"
198
- },
199
- "sa-east-1" : {
200
- "credentialScope" : {
201
- "region" : "sa-east-1"
202
- },
203
- "hostname" : "api.ecr.sa-east-1.amazonaws.com"
204
- },
205
- "us-east-1" : {
206
- "credentialScope" : {
207
- "region" : "us-east-1"
208
- },
209
- "hostname" : "api.ecr.us-east-1.amazonaws.com"
210
- },
211
- "us-east-2" : {
212
- "credentialScope" : {
213
- "region" : "us-east-2"
214
- },
215
- "hostname" : "api.ecr.us-east-2.amazonaws.com"
216
- },
217
- "us-west-1" : {
218
- "credentialScope" : {
219
- "region" : "us-west-1"
220
- },
221
- "hostname" : "api.ecr.us-west-1.amazonaws.com"
222
- },
223
- "us-west-2" : {
224
- "credentialScope" : {
225
- "region" : "us-west-2"
226
- },
227
- "hostname" : "api.ecr.us-west-2.amazonaws.com"
228
- }
229
- }
230
- },
231
- "api.mediatailor" : {
232
- "endpoints" : {
233
- "ap-northeast-1" : { },
234
- "ap-southeast-1" : { },
235
- "ap-southeast-2" : { },
236
- "eu-central-1" : { },
237
- "eu-west-1" : { },
238
- "us-east-1" : { },
239
- "us-west-2" : { }
240
- }
241
- },
242
- "api.pricing" : {
243
- "defaults" : {
244
- "credentialScope" : {
245
- "service" : "pricing"
246
- }
247
- },
248
- "endpoints" : {
249
- "ap-south-1" : { },
250
- "us-east-1" : { }
251
- }
252
- },
253
- "api.sagemaker" : {
254
- "endpoints" : {
255
- "ap-east-1" : { },
256
- "ap-northeast-1" : { },
257
- "ap-northeast-2" : { },
258
- "ap-south-1" : { },
259
- "ap-southeast-1" : { },
260
- "ap-southeast-2" : { },
261
- "ca-central-1" : { },
262
- "eu-central-1" : { },
263
- "eu-north-1" : { },
264
- "eu-west-1" : { },
265
- "eu-west-2" : { },
266
- "eu-west-3" : { },
267
- "sa-east-1" : { },
268
- "us-east-1" : { },
269
- "us-east-1-fips" : {
270
- "credentialScope" : {
271
- "region" : "us-east-1"
272
- },
273
- "hostname" : "api-fips.sagemaker.us-east-1.amazonaws.com"
274
- },
275
- "us-east-2" : { },
276
- "us-east-2-fips" : {
277
- "credentialScope" : {
278
- "region" : "us-east-2"
279
- },
280
- "hostname" : "api-fips.sagemaker.us-east-2.amazonaws.com"
281
- },
282
- "us-west-1" : { },
283
- "us-west-1-fips" : {
284
- "credentialScope" : {
285
- "region" : "us-west-1"
286
- },
287
- "hostname" : "api-fips.sagemaker.us-west-1.amazonaws.com"
288
- },
289
- "us-west-2" : { },
290
- "us-west-2-fips" : {
291
- "credentialScope" : {
292
- "region" : "us-west-2"
293
- },
294
- "hostname" : "api-fips.sagemaker.us-west-2.amazonaws.com"
295
- }
296
- }
297
- },
298
- "apigateway" : {
299
- "endpoints" : {
300
- "ap-east-1" : { },
301
- "ap-northeast-1" : { },
302
- "ap-northeast-2" : { },
303
- "ap-south-1" : { },
304
- "ap-southeast-1" : { },
305
- "ap-southeast-2" : { },
306
- "ca-central-1" : { },
307
- "eu-central-1" : { },
308
- "eu-north-1" : { },
309
- "eu-west-1" : { },
310
- "eu-west-2" : { },
311
- "eu-west-3" : { },
312
- "me-south-1" : { },
313
- "sa-east-1" : { },
314
- "us-east-1" : { },
315
- "us-east-2" : { },
316
- "us-west-1" : { },
317
- "us-west-2" : { }
318
- }
319
- },
320
- "application-autoscaling" : {
321
- "defaults" : {
322
- "credentialScope" : {
323
- "service" : "application-autoscaling"
324
- },
325
- "hostname" : "autoscaling.{region}.amazonaws.com",
326
- "protocols" : [ "http", "https" ]
327
- },
328
- "endpoints" : {
329
- "ap-east-1" : { },
330
- "ap-northeast-1" : { },
331
- "ap-northeast-2" : { },
332
- "ap-south-1" : { },
333
- "ap-southeast-1" : { },
334
- "ap-southeast-2" : { },
335
- "ca-central-1" : { },
336
- "eu-central-1" : { },
337
- "eu-north-1" : { },
338
- "eu-west-1" : { },
339
- "eu-west-2" : { },
340
- "eu-west-3" : { },
341
- "me-south-1" : { },
342
- "sa-east-1" : { },
343
- "us-east-1" : { },
344
- "us-east-2" : { },
345
- "us-west-1" : { },
346
- "us-west-2" : { }
347
- }
348
- },
349
- "appmesh" : {
350
- "endpoints" : {
351
- "ap-northeast-1" : { },
352
- "ap-northeast-2" : { },
353
- "ap-south-1" : { },
354
- "ap-southeast-1" : { },
355
- "ap-southeast-2" : { },
356
- "ca-central-1" : { },
357
- "eu-central-1" : { },
358
- "eu-west-1" : { },
359
- "eu-west-2" : { },
360
- "us-east-1" : { },
361
- "us-east-2" : { },
362
- "us-west-1" : { },
363
- "us-west-2" : { }
364
- }
365
- },
366
- "appstream2" : {
367
- "defaults" : {
368
- "credentialScope" : {
369
- "service" : "appstream"
370
- },
371
- "protocols" : [ "https" ]
372
- },
373
- "endpoints" : {
374
- "ap-northeast-1" : { },
375
- "ap-northeast-2" : { },
376
- "ap-southeast-1" : { },
377
- "ap-southeast-2" : { },
378
- "eu-central-1" : { },
379
- "eu-west-1" : { },
380
- "us-east-1" : { },
381
- "us-west-2" : { }
382
- }
383
- },
384
- "appsync" : {
385
- "endpoints" : {
386
- "ap-northeast-1" : { },
387
- "ap-northeast-2" : { },
388
- "ap-south-1" : { },
389
- "ap-southeast-1" : { },
390
- "ap-southeast-2" : { },
391
- "eu-central-1" : { },
392
- "eu-west-1" : { },
393
- "eu-west-2" : { },
394
- "us-east-1" : { },
395
- "us-east-2" : { },
396
- "us-west-2" : { }
397
- }
398
- },
399
- "athena" : {
400
- "endpoints" : {
401
- "ap-northeast-1" : { },
402
- "ap-northeast-2" : { },
403
- "ap-south-1" : { },
404
- "ap-southeast-1" : { },
405
- "ap-southeast-2" : { },
406
- "ca-central-1" : { },
407
- "eu-central-1" : { },
408
- "eu-north-1" : { },
409
- "eu-west-1" : { },
410
- "eu-west-2" : { },
411
- "us-east-1" : { },
412
- "us-east-2" : { },
413
- "us-west-2" : { }
414
- }
415
- },
416
- "autoscaling" : {
417
- "defaults" : {
418
- "protocols" : [ "http", "https" ]
419
- },
420
- "endpoints" : {
421
- "ap-east-1" : { },
422
- "ap-northeast-1" : { },
423
- "ap-northeast-2" : { },
424
- "ap-south-1" : { },
425
- "ap-southeast-1" : { },
426
- "ap-southeast-2" : { },
427
- "ca-central-1" : { },
428
- "eu-central-1" : { },
429
- "eu-north-1" : { },
430
- "eu-west-1" : { },
431
- "eu-west-2" : { },
432
- "eu-west-3" : { },
433
- "me-south-1" : { },
434
- "sa-east-1" : { },
435
- "us-east-1" : { },
436
- "us-east-2" : { },
437
- "us-west-1" : { },
438
- "us-west-2" : { }
439
- }
440
- },
441
- "autoscaling-plans" : {
442
- "defaults" : {
443
- "credentialScope" : {
444
- "service" : "autoscaling-plans"
445
- },
446
- "hostname" : "autoscaling.{region}.amazonaws.com",
447
- "protocols" : [ "http", "https" ]
448
- },
449
- "endpoints" : {
450
- "ap-northeast-1" : { },
451
- "ap-northeast-2" : { },
452
- "ap-south-1" : { },
453
- "ap-southeast-1" : { },
454
- "ap-southeast-2" : { },
455
- "ca-central-1" : { },
456
- "eu-central-1" : { },
457
- "eu-west-1" : { },
458
- "eu-west-2" : { },
459
- "us-east-1" : { },
460
- "us-east-2" : { },
461
- "us-west-1" : { },
462
- "us-west-2" : { }
463
- }
464
- },
465
- "backup" : {
466
- "endpoints" : {
467
- "ap-northeast-1" : { },
468
- "ap-northeast-2" : { },
469
- "ap-southeast-1" : { },
470
- "ap-southeast-2" : { },
471
- "ca-central-1" : { },
472
- "eu-central-1" : { },
473
- "eu-west-1" : { },
474
- "eu-west-2" : { },
475
- "us-east-1" : { },
476
- "us-east-2" : { },
477
- "us-west-1" : { },
478
- "us-west-2" : { }
479
- }
480
- },
481
- "batch" : {
482
- "endpoints" : {
483
- "ap-east-1" : { },
484
- "ap-northeast-1" : { },
485
- "ap-northeast-2" : { },
486
- "ap-south-1" : { },
487
- "ap-southeast-1" : { },
488
- "ap-southeast-2" : { },
489
- "ca-central-1" : { },
490
- "eu-central-1" : { },
491
- "eu-north-1" : { },
492
- "eu-west-1" : { },
493
- "eu-west-2" : { },
494
- "eu-west-3" : { },
495
- "me-south-1" : { },
496
- "sa-east-1" : { },
497
- "us-east-1" : { },
498
- "us-east-2" : { },
499
- "us-west-1" : { },
500
- "us-west-2" : { }
501
- }
502
- },
503
- "budgets" : {
504
- "endpoints" : {
505
- "aws-global" : {
506
- "credentialScope" : {
507
- "region" : "us-east-1"
508
- },
509
- "hostname" : "budgets.amazonaws.com"
510
- }
511
- },
512
- "isRegionalized" : false,
513
- "partitionEndpoint" : "aws-global"
514
- },
515
- "ce" : {
516
- "endpoints" : {
517
- "aws-global" : {
518
- "credentialScope" : {
519
- "region" : "us-east-1"
520
- },
521
- "hostname" : "ce.us-east-1.amazonaws.com"
522
- }
523
- },
524
- "isRegionalized" : false,
525
- "partitionEndpoint" : "aws-global"
526
- },
527
- "chime" : {
528
- "defaults" : {
529
- "protocols" : [ "https" ],
530
- "sslCommonName" : "service.chime.aws.amazon.com"
531
- },
532
- "endpoints" : {
533
- "aws-global" : {
534
- "credentialScope" : {
535
- "region" : "us-east-1"
536
- },
537
- "hostname" : "service.chime.aws.amazon.com",
538
- "protocols" : [ "https" ]
539
- }
540
- },
541
- "isRegionalized" : false,
542
- "partitionEndpoint" : "aws-global"
543
- },
544
- "cloud9" : {
545
- "endpoints" : {
546
- "ap-northeast-1" : { },
547
- "ap-southeast-1" : { },
548
- "eu-central-1" : { },
549
- "eu-west-1" : { },
550
- "us-east-1" : { },
551
- "us-east-2" : { },
552
- "us-west-2" : { }
553
- }
554
- },
555
- "clouddirectory" : {
556
- "endpoints" : {
557
- "ap-southeast-1" : { },
558
- "ap-southeast-2" : { },
559
- "ca-central-1" : { },
560
- "eu-central-1" : { },
561
- "eu-west-1" : { },
562
- "eu-west-2" : { },
563
- "us-east-1" : { },
564
- "us-east-2" : { },
565
- "us-west-2" : { }
566
- }
567
- },
568
- "cloudformation" : {
569
- "endpoints" : {
570
- "ap-east-1" : { },
571
- "ap-northeast-1" : { },
572
- "ap-northeast-2" : { },
573
- "ap-south-1" : { },
574
- "ap-southeast-1" : { },
575
- "ap-southeast-2" : { },
576
- "ca-central-1" : { },
577
- "eu-central-1" : { },
578
- "eu-north-1" : { },
579
- "eu-west-1" : { },
580
- "eu-west-2" : { },
581
- "eu-west-3" : { },
582
- "me-south-1" : { },
583
- "sa-east-1" : { },
584
- "us-east-1" : { },
585
- "us-east-2" : { },
586
- "us-west-1" : { },
587
- "us-west-2" : { }
588
- }
589
- },
590
- "cloudfront" : {
591
- "endpoints" : {
592
- "aws-global" : {
593
- "credentialScope" : {
594
- "region" : "us-east-1"
595
- },
596
- "hostname" : "cloudfront.amazonaws.com",
597
- "protocols" : [ "http", "https" ]
598
- }
599
- },
600
- "isRegionalized" : false,
601
- "partitionEndpoint" : "aws-global"
602
- },
603
- "cloudhsm" : {
604
- "endpoints" : {
605
- "ap-northeast-1" : { },
606
- "ap-southeast-1" : { },
607
- "ap-southeast-2" : { },
608
- "ca-central-1" : { },
609
- "eu-central-1" : { },
610
- "eu-west-1" : { },
611
- "us-east-1" : { },
612
- "us-east-2" : { },
613
- "us-west-1" : { },
614
- "us-west-2" : { }
615
- }
616
- },
617
- "cloudhsmv2" : {
618
- "defaults" : {
619
- "credentialScope" : {
620
- "service" : "cloudhsm"
621
- }
622
- },
623
- "endpoints" : {
624
- "ap-east-1" : { },
625
- "ap-northeast-1" : { },
626
- "ap-northeast-2" : { },
627
- "ap-south-1" : { },
628
- "ap-southeast-1" : { },
629
- "ap-southeast-2" : { },
630
- "ca-central-1" : { },
631
- "eu-central-1" : { },
632
- "eu-north-1" : { },
633
- "eu-west-1" : { },
634
- "eu-west-2" : { },
635
- "eu-west-3" : { },
636
- "me-south-1" : { },
637
- "us-east-1" : { },
638
- "us-east-2" : { },
639
- "us-west-1" : { },
640
- "us-west-2" : { }
641
- }
642
- },
643
- "cloudsearch" : {
644
- "endpoints" : {
645
- "ap-northeast-1" : { },
646
- "ap-northeast-2" : { },
647
- "ap-southeast-1" : { },
648
- "ap-southeast-2" : { },
649
- "eu-central-1" : { },
650
- "eu-west-1" : { },
651
- "sa-east-1" : { },
652
- "us-east-1" : { },
653
- "us-west-1" : { },
654
- "us-west-2" : { }
655
- }
656
- },
657
- "cloudtrail" : {
658
- "endpoints" : {
659
- "ap-east-1" : { },
660
- "ap-northeast-1" : { },
661
- "ap-northeast-2" : { },
662
- "ap-south-1" : { },
663
- "ap-southeast-1" : { },
664
- "ap-southeast-2" : { },
665
- "ca-central-1" : { },
666
- "eu-central-1" : { },
667
- "eu-north-1" : { },
668
- "eu-west-1" : { },
669
- "eu-west-2" : { },
670
- "eu-west-3" : { },
671
- "me-south-1" : { },
672
- "sa-east-1" : { },
673
- "us-east-1" : { },
674
- "us-east-2" : { },
675
- "us-west-1" : { },
676
- "us-west-2" : { }
677
- }
678
- },
679
- "codebuild" : {
680
- "endpoints" : {
681
- "ap-east-1" : { },
682
- "ap-northeast-1" : { },
683
- "ap-northeast-2" : { },
684
- "ap-south-1" : { },
685
- "ap-southeast-1" : { },
686
- "ap-southeast-2" : { },
687
- "ca-central-1" : { },
688
- "eu-central-1" : { },
689
- "eu-north-1" : { },
690
- "eu-west-1" : { },
691
- "eu-west-2" : { },
692
- "eu-west-3" : { },
693
- "me-south-1" : { },
694
- "sa-east-1" : { },
695
- "us-east-1" : { },
696
- "us-east-1-fips" : {
697
- "credentialScope" : {
698
- "region" : "us-east-1"
699
- },
700
- "hostname" : "codebuild-fips.us-east-1.amazonaws.com"
701
- },
702
- "us-east-2" : { },
703
- "us-east-2-fips" : {
704
- "credentialScope" : {
705
- "region" : "us-east-2"
706
- },
707
- "hostname" : "codebuild-fips.us-east-2.amazonaws.com"
708
- },
709
- "us-west-1" : { },
710
- "us-west-1-fips" : {
711
- "credentialScope" : {
712
- "region" : "us-west-1"
713
- },
714
- "hostname" : "codebuild-fips.us-west-1.amazonaws.com"
715
- },
716
- "us-west-2" : { },
717
- "us-west-2-fips" : {
718
- "credentialScope" : {
719
- "region" : "us-west-2"
720
- },
721
- "hostname" : "codebuild-fips.us-west-2.amazonaws.com"
722
- }
723
- }
724
- },
725
- "codecommit" : {
726
- "endpoints" : {
727
- "ap-northeast-1" : { },
728
- "ap-northeast-2" : { },
729
- "ap-south-1" : { },
730
- "ap-southeast-1" : { },
731
- "ap-southeast-2" : { },
732
- "ca-central-1" : { },
733
- "eu-central-1" : { },
734
- "eu-north-1" : { },
735
- "eu-west-1" : { },
736
- "eu-west-2" : { },
737
- "eu-west-3" : { },
738
- "fips" : {
739
- "credentialScope" : {
740
- "region" : "ca-central-1"
741
- },
742
- "hostname" : "codecommit-fips.ca-central-1.amazonaws.com"
743
- },
744
- "sa-east-1" : { },
745
- "us-east-1" : { },
746
- "us-east-2" : { },
747
- "us-west-1" : { },
748
- "us-west-2" : { }
749
- }
750
- },
751
- "codedeploy" : {
752
- "endpoints" : {
753
- "ap-east-1" : { },
754
- "ap-northeast-1" : { },
755
- "ap-northeast-2" : { },
756
- "ap-south-1" : { },
757
- "ap-southeast-1" : { },
758
- "ap-southeast-2" : { },
759
- "ca-central-1" : { },
760
- "eu-central-1" : { },
761
- "eu-north-1" : { },
762
- "eu-west-1" : { },
763
- "eu-west-2" : { },
764
- "eu-west-3" : { },
765
- "me-south-1" : { },
766
- "sa-east-1" : { },
767
- "us-east-1" : { },
768
- "us-east-1-fips" : {
769
- "credentialScope" : {
770
- "region" : "us-east-1"
771
- },
772
- "hostname" : "codedeploy-fips.us-east-1.amazonaws.com"
773
- },
774
- "us-east-2" : { },
775
- "us-east-2-fips" : {
776
- "credentialScope" : {
777
- "region" : "us-east-2"
778
- },
779
- "hostname" : "codedeploy-fips.us-east-2.amazonaws.com"
780
- },
781
- "us-west-1" : { },
782
- "us-west-1-fips" : {
783
- "credentialScope" : {
784
- "region" : "us-west-1"
785
- },
786
- "hostname" : "codedeploy-fips.us-west-1.amazonaws.com"
787
- },
788
- "us-west-2" : { },
789
- "us-west-2-fips" : {
790
- "credentialScope" : {
791
- "region" : "us-west-2"
792
- },
793
- "hostname" : "codedeploy-fips.us-west-2.amazonaws.com"
794
- }
795
- }
796
- },
797
- "codepipeline" : {
798
- "endpoints" : {
799
- "ap-northeast-1" : { },
800
- "ap-northeast-2" : { },
801
- "ap-south-1" : { },
802
- "ap-southeast-1" : { },
803
- "ap-southeast-2" : { },
804
- "ca-central-1" : { },
805
- "eu-central-1" : { },
806
- "eu-west-1" : { },
807
- "eu-west-2" : { },
808
- "eu-west-3" : { },
809
- "sa-east-1" : { },
810
- "us-east-1" : { },
811
- "us-east-2" : { },
812
- "us-west-1" : { },
813
- "us-west-2" : { }
814
- }
815
- },
816
- "codestar" : {
817
- "endpoints" : {
818
- "ap-northeast-1" : { },
819
- "ap-northeast-2" : { },
820
- "ap-southeast-1" : { },
821
- "ap-southeast-2" : { },
822
- "ca-central-1" : { },
823
- "eu-central-1" : { },
824
- "eu-west-1" : { },
825
- "eu-west-2" : { },
826
- "us-east-1" : { },
827
- "us-east-2" : { },
828
- "us-west-1" : { },
829
- "us-west-2" : { }
830
- }
831
- },
832
- "cognito-identity" : {
833
- "endpoints" : {
834
- "ap-northeast-1" : { },
835
- "ap-northeast-2" : { },
836
- "ap-south-1" : { },
837
- "ap-southeast-1" : { },
838
- "ap-southeast-2" : { },
839
- "ca-central-1" : { },
840
- "eu-central-1" : { },
841
- "eu-west-1" : { },
842
- "eu-west-2" : { },
843
- "us-east-1" : { },
844
- "us-east-2" : { },
845
- "us-west-2" : { }
846
- }
847
- },
848
- "cognito-idp" : {
849
- "endpoints" : {
850
- "ap-northeast-1" : { },
851
- "ap-northeast-2" : { },
852
- "ap-south-1" : { },
853
- "ap-southeast-1" : { },
854
- "ap-southeast-2" : { },
855
- "ca-central-1" : { },
856
- "eu-central-1" : { },
857
- "eu-west-1" : { },
858
- "eu-west-2" : { },
859
- "us-east-1" : { },
860
- "us-east-2" : { },
861
- "us-west-2" : { }
862
- }
863
- },
864
- "cognito-sync" : {
865
- "endpoints" : {
866
- "ap-northeast-1" : { },
867
- "ap-northeast-2" : { },
868
- "ap-south-1" : { },
869
- "ap-southeast-1" : { },
870
- "ap-southeast-2" : { },
871
- "eu-central-1" : { },
872
- "eu-west-1" : { },
873
- "eu-west-2" : { },
874
- "us-east-1" : { },
875
- "us-east-2" : { },
876
- "us-west-2" : { }
877
- }
878
- },
879
- "comprehend" : {
880
- "defaults" : {
881
- "protocols" : [ "https" ]
882
- },
883
- "endpoints" : {
884
- "ap-southeast-1" : { },
885
- "ap-southeast-2" : { },
886
- "ca-central-1" : { },
887
- "eu-central-1" : { },
888
- "eu-west-1" : { },
889
- "eu-west-2" : { },
890
- "us-east-1" : { },
891
- "us-east-2" : { },
892
- "us-west-2" : { }
893
- }
894
- },
895
- "comprehendmedical" : {
896
- "endpoints" : {
897
- "ap-southeast-2" : { },
898
- "ca-central-1" : { },
899
- "eu-west-1" : { },
900
- "eu-west-2" : { },
901
- "us-east-1" : { },
902
- "us-east-2" : { },
903
- "us-west-2" : { }
904
- }
905
- },
906
- "config" : {
907
- "endpoints" : {
908
- "ap-east-1" : { },
909
- "ap-northeast-1" : { },
910
- "ap-northeast-2" : { },
911
- "ap-south-1" : { },
912
- "ap-southeast-1" : { },
913
- "ap-southeast-2" : { },
914
- "ca-central-1" : { },
915
- "eu-central-1" : { },
916
- "eu-north-1" : { },
917
- "eu-west-1" : { },
918
- "eu-west-2" : { },
919
- "eu-west-3" : { },
920
- "me-south-1" : { },
921
- "sa-east-1" : { },
922
- "us-east-1" : { },
923
- "us-east-2" : { },
924
- "us-west-1" : { },
925
- "us-west-2" : { }
926
- }
927
- },
928
- "cur" : {
929
- "endpoints" : {
930
- "us-east-1" : { }
931
- }
932
- },
933
- "data.iot" : {
934
- "defaults" : {
935
- "credentialScope" : {
936
- "service" : "iotdata"
937
- },
938
- "protocols" : [ "https" ]
939
- },
940
- "endpoints" : {
941
- "ap-northeast-1" : { },
942
- "ap-northeast-2" : { },
943
- "ap-south-1" : { },
944
- "ap-southeast-1" : { },
945
- "ap-southeast-2" : { },
946
- "ca-central-1" : { },
947
- "eu-central-1" : { },
948
- "eu-north-1" : { },
949
- "eu-west-1" : { },
950
- "eu-west-2" : { },
951
- "eu-west-3" : { },
952
- "sa-east-1" : { },
953
- "us-east-1" : { },
954
- "us-east-2" : { },
955
- "us-west-1" : { },
956
- "us-west-2" : { }
957
- }
958
- },
959
- "data.mediastore" : {
960
- "endpoints" : {
961
- "ap-northeast-1" : { },
962
- "ap-northeast-2" : { },
963
- "ap-southeast-2" : { },
964
- "eu-central-1" : { },
965
- "eu-north-1" : { },
966
- "eu-west-1" : { },
967
- "us-east-1" : { },
968
- "us-west-2" : { }
969
- }
970
- },
971
- "datapipeline" : {
972
- "endpoints" : {
973
- "ap-northeast-1" : { },
974
- "ap-southeast-2" : { },
975
- "eu-west-1" : { },
976
- "us-east-1" : { },
977
- "us-west-2" : { }
978
- }
979
- },
980
- "datasync" : {
981
- "endpoints" : {
982
- "ap-northeast-1" : { },
983
- "ap-northeast-2" : { },
984
- "ap-southeast-1" : { },
985
- "ap-southeast-2" : { },
986
- "eu-central-1" : { },
987
- "eu-west-1" : { },
988
- "fips-us-east-1" : {
989
- "credentialScope" : {
990
- "region" : "us-east-1"
991
- },
992
- "hostname" : "datasync-fips.us-east-1.amazonaws.com"
993
- },
994
- "fips-us-east-2" : {
995
- "credentialScope" : {
996
- "region" : "us-east-2"
997
- },
998
- "hostname" : "datasync-fips.us-east-2.amazonaws.com"
999
- },
1000
- "fips-us-west-1" : {
1001
- "credentialScope" : {
1002
- "region" : "us-west-1"
1003
- },
1004
- "hostname" : "datasync-fips.us-west-1.amazonaws.com"
1005
- },
1006
- "fips-us-west-2" : {
1007
- "credentialScope" : {
1008
- "region" : "us-west-2"
1009
- },
1010
- "hostname" : "datasync-fips.us-west-2.amazonaws.com"
1011
- },
1012
- "us-east-1" : { },
1013
- "us-east-2" : { },
1014
- "us-west-1" : { },
1015
- "us-west-2" : { }
1016
- }
1017
- },
1018
- "dax" : {
1019
- "endpoints" : {
1020
- "ap-northeast-1" : { },
1021
- "ap-south-1" : { },
1022
- "ap-southeast-1" : { },
1023
- "ap-southeast-2" : { },
1024
- "eu-central-1" : { },
1025
- "eu-west-1" : { },
1026
- "sa-east-1" : { },
1027
- "us-east-1" : { },
1028
- "us-east-2" : { },
1029
- "us-west-1" : { },
1030
- "us-west-2" : { }
1031
- }
1032
- },
1033
- "devicefarm" : {
1034
- "endpoints" : {
1035
- "us-west-2" : { }
1036
- }
1037
- },
1038
- "directconnect" : {
1039
- "endpoints" : {
1040
- "ap-northeast-1" : { },
1041
- "ap-northeast-2" : { },
1042
- "ap-south-1" : { },
1043
- "ap-southeast-1" : { },
1044
- "ap-southeast-2" : { },
1045
- "ca-central-1" : { },
1046
- "eu-central-1" : { },
1047
- "eu-north-1" : { },
1048
- "eu-west-1" : { },
1049
- "eu-west-2" : { },
1050
- "eu-west-3" : { },
1051
- "me-south-1" : { },
1052
- "sa-east-1" : { },
1053
- "us-east-1" : { },
1054
- "us-east-2" : { },
1055
- "us-west-1" : { },
1056
- "us-west-2" : { }
1057
- }
1058
- },
1059
- "discovery" : {
1060
- "endpoints" : {
1061
- "us-west-2" : { }
1062
- }
1063
- },
1064
- "dms" : {
1065
- "endpoints" : {
1066
- "ap-east-1" : { },
1067
- "ap-northeast-1" : { },
1068
- "ap-northeast-2" : { },
1069
- "ap-south-1" : { },
1070
- "ap-southeast-1" : { },
1071
- "ap-southeast-2" : { },
1072
- "ca-central-1" : { },
1073
- "eu-central-1" : { },
1074
- "eu-north-1" : { },
1075
- "eu-west-1" : { },
1076
- "eu-west-2" : { },
1077
- "eu-west-3" : { },
1078
- "me-south-1" : { },
1079
- "sa-east-1" : { },
1080
- "us-east-1" : { },
1081
- "us-east-2" : { },
1082
- "us-west-1" : { },
1083
- "us-west-2" : { }
1084
- }
1085
- },
1086
- "docdb" : {
1087
- "endpoints" : {
1088
- "ap-northeast-1" : {
1089
- "credentialScope" : {
1090
- "region" : "ap-northeast-1"
1091
- },
1092
- "hostname" : "rds.ap-northeast-1.amazonaws.com"
1093
- },
1094
- "ap-northeast-2" : {
1095
- "credentialScope" : {
1096
- "region" : "ap-northeast-2"
1097
- },
1098
- "hostname" : "rds.ap-northeast-2.amazonaws.com"
1099
- },
1100
- "ap-southeast-2" : {
1101
- "credentialScope" : {
1102
- "region" : "ap-southeast-2"
1103
- },
1104
- "hostname" : "rds.ap-southeast-2.amazonaws.com"
1105
- },
1106
- "eu-central-1" : {
1107
- "credentialScope" : {
1108
- "region" : "eu-central-1"
1109
- },
1110
- "hostname" : "rds.eu-central-1.amazonaws.com"
1111
- },
1112
- "eu-west-1" : {
1113
- "credentialScope" : {
1114
- "region" : "eu-west-1"
1115
- },
1116
- "hostname" : "rds.eu-west-1.amazonaws.com"
1117
- },
1118
- "eu-west-2" : {
1119
- "credentialScope" : {
1120
- "region" : "eu-west-2"
1121
- },
1122
- "hostname" : "rds.eu-west-2.amazonaws.com"
1123
- },
1124
- "us-east-1" : {
1125
- "credentialScope" : {
1126
- "region" : "us-east-1"
1127
- },
1128
- "hostname" : "rds.us-east-1.amazonaws.com"
1129
- },
1130
- "us-east-2" : {
1131
- "credentialScope" : {
1132
- "region" : "us-east-2"
1133
- },
1134
- "hostname" : "rds.us-east-2.amazonaws.com"
1135
- },
1136
- "us-west-2" : {
1137
- "credentialScope" : {
1138
- "region" : "us-west-2"
1139
- },
1140
- "hostname" : "rds.us-west-2.amazonaws.com"
1141
- }
1142
- }
1143
- },
1144
- "ds" : {
1145
- "endpoints" : {
1146
- "ap-northeast-1" : { },
1147
- "ap-northeast-2" : { },
1148
- "ap-south-1" : { },
1149
- "ap-southeast-1" : { },
1150
- "ap-southeast-2" : { },
1151
- "ca-central-1" : { },
1152
- "eu-central-1" : { },
1153
- "eu-north-1" : { },
1154
- "eu-west-1" : { },
1155
- "eu-west-2" : { },
1156
- "sa-east-1" : { },
1157
- "us-east-1" : { },
1158
- "us-east-2" : { },
1159
- "us-west-1" : { },
1160
- "us-west-2" : { }
1161
- }
1162
- },
1163
- "dynamodb" : {
1164
- "defaults" : {
1165
- "protocols" : [ "http", "https" ]
1166
- },
1167
- "endpoints" : {
1168
- "ap-east-1" : { },
1169
- "ap-northeast-1" : { },
1170
- "ap-northeast-2" : { },
1171
- "ap-south-1" : { },
1172
- "ap-southeast-1" : { },
1173
- "ap-southeast-2" : { },
1174
- "ca-central-1" : { },
1175
- "ca-central-1-fips" : {
1176
- "credentialScope" : {
1177
- "region" : "ca-central-1"
1178
- },
1179
- "hostname" : "dynamodb-fips.ca-central-1.amazonaws.com"
1180
- },
1181
- "eu-central-1" : { },
1182
- "eu-north-1" : { },
1183
- "eu-west-1" : { },
1184
- "eu-west-2" : { },
1185
- "eu-west-3" : { },
1186
- "local" : {
1187
- "credentialScope" : {
1188
- "region" : "us-east-1"
1189
- },
1190
- "hostname" : "localhost:8000",
1191
- "protocols" : [ "http" ]
1192
- },
1193
- "me-south-1" : { },
1194
- "sa-east-1" : { },
1195
- "us-east-1" : { },
1196
- "us-east-1-fips" : {
1197
- "credentialScope" : {
1198
- "region" : "us-east-1"
1199
- },
1200
- "hostname" : "dynamodb-fips.us-east-1.amazonaws.com"
1201
- },
1202
- "us-east-2" : { },
1203
- "us-east-2-fips" : {
1204
- "credentialScope" : {
1205
- "region" : "us-east-2"
1206
- },
1207
- "hostname" : "dynamodb-fips.us-east-2.amazonaws.com"
1208
- },
1209
- "us-west-1" : { },
1210
- "us-west-1-fips" : {
1211
- "credentialScope" : {
1212
- "region" : "us-west-1"
1213
- },
1214
- "hostname" : "dynamodb-fips.us-west-1.amazonaws.com"
1215
- },
1216
- "us-west-2" : { },
1217
- "us-west-2-fips" : {
1218
- "credentialScope" : {
1219
- "region" : "us-west-2"
1220
- },
1221
- "hostname" : "dynamodb-fips.us-west-2.amazonaws.com"
1222
- }
1223
- }
1224
- },
1225
- "ec2" : {
1226
- "defaults" : {
1227
- "protocols" : [ "http", "https" ]
1228
- },
1229
- "endpoints" : {
1230
- "ap-east-1" : { },
1231
- "ap-northeast-1" : { },
1232
- "ap-northeast-2" : { },
1233
- "ap-south-1" : { },
1234
- "ap-southeast-1" : { },
1235
- "ap-southeast-2" : { },
1236
- "ca-central-1" : { },
1237
- "eu-central-1" : { },
1238
- "eu-north-1" : { },
1239
- "eu-west-1" : { },
1240
- "eu-west-2" : { },
1241
- "eu-west-3" : { },
1242
- "me-south-1" : { },
1243
- "sa-east-1" : { },
1244
- "us-east-1" : { },
1245
- "us-east-2" : { },
1246
- "us-west-1" : { },
1247
- "us-west-2" : { }
1248
- }
1249
- },
1250
- "ecs" : {
1251
- "endpoints" : {
1252
- "ap-east-1" : { },
1253
- "ap-northeast-1" : { },
1254
- "ap-northeast-2" : { },
1255
- "ap-south-1" : { },
1256
- "ap-southeast-1" : { },
1257
- "ap-southeast-2" : { },
1258
- "ca-central-1" : { },
1259
- "eu-central-1" : { },
1260
- "eu-north-1" : { },
1261
- "eu-west-1" : { },
1262
- "eu-west-2" : { },
1263
- "eu-west-3" : { },
1264
- "me-south-1" : { },
1265
- "sa-east-1" : { },
1266
- "us-east-1" : { },
1267
- "us-east-2" : { },
1268
- "us-west-1" : { },
1269
- "us-west-2" : { }
1270
- }
1271
- },
1272
- "elasticache" : {
1273
- "endpoints" : {
1274
- "ap-east-1" : { },
1275
- "ap-northeast-1" : { },
1276
- "ap-northeast-2" : { },
1277
- "ap-south-1" : { },
1278
- "ap-southeast-1" : { },
1279
- "ap-southeast-2" : { },
1280
- "ca-central-1" : { },
1281
- "eu-central-1" : { },
1282
- "eu-north-1" : { },
1283
- "eu-west-1" : { },
1284
- "eu-west-2" : { },
1285
- "eu-west-3" : { },
1286
- "fips" : {
1287
- "credentialScope" : {
1288
- "region" : "us-west-1"
1289
- },
1290
- "hostname" : "elasticache-fips.us-west-1.amazonaws.com"
1291
- },
1292
- "me-south-1" : { },
1293
- "sa-east-1" : { },
1294
- "us-east-1" : { },
1295
- "us-east-2" : { },
1296
- "us-west-1" : { },
1297
- "us-west-2" : { }
1298
- }
1299
- },
1300
- "elasticbeanstalk" : {
1301
- "endpoints" : {
1302
- "ap-east-1" : { },
1303
- "ap-northeast-1" : { },
1304
- "ap-northeast-2" : { },
1305
- "ap-south-1" : { },
1306
- "ap-southeast-1" : { },
1307
- "ap-southeast-2" : { },
1308
- "ca-central-1" : { },
1309
- "eu-central-1" : { },
1310
- "eu-north-1" : { },
1311
- "eu-west-1" : { },
1312
- "eu-west-2" : { },
1313
- "eu-west-3" : { },
1314
- "me-south-1" : { },
1315
- "sa-east-1" : { },
1316
- "us-east-1" : { },
1317
- "us-east-2" : { },
1318
- "us-west-1" : { },
1319
- "us-west-2" : { }
1320
- }
1321
- },
1322
- "elasticfilesystem" : {
1323
- "endpoints" : {
1324
- "ap-northeast-1" : { },
1325
- "ap-northeast-2" : { },
1326
- "ap-south-1" : { },
1327
- "ap-southeast-1" : { },
1328
- "ap-southeast-2" : { },
1329
- "ca-central-1" : { },
1330
- "eu-central-1" : { },
1331
- "eu-west-1" : { },
1332
- "eu-west-2" : { },
1333
- "eu-west-3" : { },
1334
- "us-east-1" : { },
1335
- "us-east-2" : { },
1336
- "us-west-1" : { },
1337
- "us-west-2" : { }
1338
- }
1339
- },
1340
- "elasticloadbalancing" : {
1341
- "defaults" : {
1342
- "protocols" : [ "https" ]
1343
- },
1344
- "endpoints" : {
1345
- "ap-east-1" : { },
1346
- "ap-northeast-1" : { },
1347
- "ap-northeast-2" : { },
1348
- "ap-south-1" : { },
1349
- "ap-southeast-1" : { },
1350
- "ap-southeast-2" : { },
1351
- "ca-central-1" : { },
1352
- "eu-central-1" : { },
1353
- "eu-north-1" : { },
1354
- "eu-west-1" : { },
1355
- "eu-west-2" : { },
1356
- "eu-west-3" : { },
1357
- "me-south-1" : { },
1358
- "sa-east-1" : { },
1359
- "us-east-1" : { },
1360
- "us-east-2" : { },
1361
- "us-west-1" : { },
1362
- "us-west-2" : { }
1363
- }
1364
- },
1365
- "elasticmapreduce" : {
1366
- "defaults" : {
1367
- "protocols" : [ "https" ],
1368
- "sslCommonName" : "{region}.{service}.{dnsSuffix}"
1369
- },
1370
- "endpoints" : {
1371
- "ap-east-1" : { },
1372
- "ap-northeast-1" : { },
1373
- "ap-northeast-2" : { },
1374
- "ap-south-1" : { },
1375
- "ap-southeast-1" : { },
1376
- "ap-southeast-2" : { },
1377
- "ca-central-1" : { },
1378
- "eu-central-1" : {
1379
- "sslCommonName" : "{service}.{region}.{dnsSuffix}"
1380
- },
1381
- "eu-north-1" : { },
1382
- "eu-west-1" : { },
1383
- "eu-west-2" : { },
1384
- "eu-west-3" : { },
1385
- "me-south-1" : { },
1386
- "sa-east-1" : { },
1387
- "us-east-1" : {
1388
- "sslCommonName" : "{service}.{region}.{dnsSuffix}"
1389
- },
1390
- "us-east-2" : { },
1391
- "us-west-1" : { },
1392
- "us-west-2" : { }
1393
- }
1394
- },
1395
- "elastictranscoder" : {
1396
- "endpoints" : {
1397
- "ap-northeast-1" : { },
1398
- "ap-south-1" : { },
1399
- "ap-southeast-1" : { },
1400
- "ap-southeast-2" : { },
1401
- "eu-west-1" : { },
1402
- "us-east-1" : { },
1403
- "us-west-1" : { },
1404
- "us-west-2" : { }
1405
- }
1406
- },
1407
- "email" : {
1408
- "endpoints" : {
1409
- "ap-south-1" : { },
1410
- "ap-southeast-2" : { },
1411
- "eu-central-1" : { },
1412
- "eu-west-1" : { },
1413
- "us-east-1" : { },
1414
- "us-west-2" : { }
1415
- }
1416
- },
1417
- "entitlement.marketplace" : {
1418
- "defaults" : {
1419
- "credentialScope" : {
1420
- "service" : "aws-marketplace"
1421
- }
1422
- },
1423
- "endpoints" : {
1424
- "us-east-1" : { }
1425
- }
1426
- },
1427
- "es" : {
1428
- "endpoints" : {
1429
- "ap-east-1" : { },
1430
- "ap-northeast-1" : { },
1431
- "ap-northeast-2" : { },
1432
- "ap-south-1" : { },
1433
- "ap-southeast-1" : { },
1434
- "ap-southeast-2" : { },
1435
- "ca-central-1" : { },
1436
- "eu-central-1" : { },
1437
- "eu-north-1" : { },
1438
- "eu-west-1" : { },
1439
- "eu-west-2" : { },
1440
- "eu-west-3" : { },
1441
- "fips" : {
1442
- "credentialScope" : {
1443
- "region" : "us-west-1"
1444
- },
1445
- "hostname" : "es-fips.us-west-1.amazonaws.com"
1446
- },
1447
- "me-south-1" : { },
1448
- "sa-east-1" : { },
1449
- "us-east-1" : { },
1450
- "us-east-2" : { },
1451
- "us-west-1" : { },
1452
- "us-west-2" : { }
1453
- }
1454
- },
1455
- "events" : {
1456
- "endpoints" : {
1457
- "ap-east-1" : { },
1458
- "ap-northeast-1" : { },
1459
- "ap-northeast-2" : { },
1460
- "ap-south-1" : { },
1461
- "ap-southeast-1" : { },
1462
- "ap-southeast-2" : { },
1463
- "ca-central-1" : { },
1464
- "eu-central-1" : { },
1465
- "eu-north-1" : { },
1466
- "eu-west-1" : { },
1467
- "eu-west-2" : { },
1468
- "eu-west-3" : { },
1469
- "me-south-1" : { },
1470
- "sa-east-1" : { },
1471
- "us-east-1" : { },
1472
- "us-east-2" : { },
1473
- "us-west-1" : { },
1474
- "us-west-2" : { }
1475
- }
1476
- },
1477
- "firehose" : {
1478
- "endpoints" : {
1479
- "ap-east-1" : { },
1480
- "ap-northeast-1" : { },
1481
- "ap-northeast-2" : { },
1482
- "ap-south-1" : { },
1483
- "ap-southeast-1" : { },
1484
- "ap-southeast-2" : { },
1485
- "ca-central-1" : { },
1486
- "eu-central-1" : { },
1487
- "eu-north-1" : { },
1488
- "eu-west-1" : { },
1489
- "eu-west-2" : { },
1490
- "eu-west-3" : { },
1491
- "sa-east-1" : { },
1492
- "us-east-1" : { },
1493
- "us-east-2" : { },
1494
- "us-west-1" : { },
1495
- "us-west-2" : { }
1496
- }
1497
- },
1498
- "fms" : {
1499
- "defaults" : {
1500
- "protocols" : [ "https" ]
1501
- },
1502
- "endpoints" : {
1503
- "ap-northeast-1" : { },
1504
- "ap-northeast-2" : { },
1505
- "ap-southeast-1" : { },
1506
- "ap-southeast-2" : { },
1507
- "eu-central-1" : { },
1508
- "eu-west-1" : { },
1509
- "eu-west-2" : { },
1510
- "us-east-1" : { },
1511
- "us-east-2" : { },
1512
- "us-west-1" : { },
1513
- "us-west-2" : { }
1514
- }
1515
- },
1516
- "fsx" : {
1517
- "endpoints" : {
1518
- "ap-northeast-1" : { },
1519
- "ap-southeast-1" : { },
1520
- "ap-southeast-2" : { },
1521
- "eu-central-1" : { },
1522
- "eu-north-1" : { },
1523
- "eu-west-1" : { },
1524
- "eu-west-2" : { },
1525
- "us-east-1" : { },
1526
- "us-east-2" : { },
1527
- "us-west-1" : { },
1528
- "us-west-2" : { }
1529
- }
1530
- },
1531
- "gamelift" : {
1532
- "endpoints" : {
1533
- "ap-northeast-1" : { },
1534
- "ap-northeast-2" : { },
1535
- "ap-south-1" : { },
1536
- "ap-southeast-1" : { },
1537
- "ap-southeast-2" : { },
1538
- "ca-central-1" : { },
1539
- "eu-central-1" : { },
1540
- "eu-west-1" : { },
1541
- "eu-west-2" : { },
1542
- "sa-east-1" : { },
1543
- "us-east-1" : { },
1544
- "us-east-2" : { },
1545
- "us-west-1" : { },
1546
- "us-west-2" : { }
1547
- }
1548
- },
1549
- "glacier" : {
1550
- "defaults" : {
1551
- "protocols" : [ "http", "https" ]
1552
- },
1553
- "endpoints" : {
1554
- "ap-east-1" : { },
1555
- "ap-northeast-1" : { },
1556
- "ap-northeast-2" : { },
1557
- "ap-south-1" : { },
1558
- "ap-southeast-1" : { },
1559
- "ap-southeast-2" : { },
1560
- "ca-central-1" : { },
1561
- "eu-central-1" : { },
1562
- "eu-north-1" : { },
1563
- "eu-west-1" : { },
1564
- "eu-west-2" : { },
1565
- "eu-west-3" : { },
1566
- "me-south-1" : { },
1567
- "sa-east-1" : { },
1568
- "us-east-1" : { },
1569
- "us-east-2" : { },
1570
- "us-west-1" : { },
1571
- "us-west-2" : { }
1572
- }
1573
- },
1574
- "glue" : {
1575
- "endpoints" : {
1576
- "ap-east-1" : { },
1577
- "ap-northeast-1" : { },
1578
- "ap-northeast-2" : { },
1579
- "ap-south-1" : { },
1580
- "ap-southeast-1" : { },
1581
- "ap-southeast-2" : { },
1582
- "ca-central-1" : { },
1583
- "eu-central-1" : { },
1584
- "eu-north-1" : { },
1585
- "eu-west-1" : { },
1586
- "eu-west-2" : { },
1587
- "eu-west-3" : { },
1588
- "sa-east-1" : { },
1589
- "us-east-1" : { },
1590
- "us-east-2" : { },
1591
- "us-west-1" : { },
1592
- "us-west-2" : { }
1593
- }
1594
- },
1595
- "greengrass" : {
1596
- "defaults" : {
1597
- "protocols" : [ "https" ]
1598
- },
1599
- "endpoints" : {
1600
- "ap-northeast-1" : { },
1601
- "ap-northeast-2" : { },
1602
- "ap-south-1" : { },
1603
- "ap-southeast-1" : { },
1604
- "ap-southeast-2" : { },
1605
- "eu-central-1" : { },
1606
- "eu-west-1" : { },
1607
- "eu-west-2" : { },
1608
- "us-east-1" : { },
1609
- "us-east-2" : { },
1610
- "us-west-2" : { }
1611
- },
1612
- "isRegionalized" : true
1613
- },
1614
- "groundstation" : {
1615
- "endpoints" : {
1616
- "us-east-2" : { },
1617
- "us-west-2" : { }
1618
- }
1619
- },
1620
- "guardduty" : {
1621
- "defaults" : {
1622
- "protocols" : [ "https" ]
1623
- },
1624
- "endpoints" : {
1625
- "ap-east-1" : { },
1626
- "ap-northeast-1" : { },
1627
- "ap-northeast-2" : { },
1628
- "ap-south-1" : { },
1629
- "ap-southeast-1" : { },
1630
- "ap-southeast-2" : { },
1631
- "ca-central-1" : { },
1632
- "eu-central-1" : { },
1633
- "eu-north-1" : { },
1634
- "eu-west-1" : { },
1635
- "eu-west-2" : { },
1636
- "eu-west-3" : { },
1637
- "sa-east-1" : { },
1638
- "us-east-1" : { },
1639
- "us-east-1-fips" : {
1640
- "credentialScope" : {
1641
- "region" : "us-east-1"
1642
- },
1643
- "hostname" : "guardduty-fips.us-east-1.amazonaws.com"
1644
- },
1645
- "us-east-2" : { },
1646
- "us-east-2-fips" : {
1647
- "credentialScope" : {
1648
- "region" : "us-east-2"
1649
- },
1650
- "hostname" : "guardduty-fips.us-east-2.amazonaws.com"
1651
- },
1652
- "us-west-1" : { },
1653
- "us-west-1-fips" : {
1654
- "credentialScope" : {
1655
- "region" : "us-west-1"
1656
- },
1657
- "hostname" : "guardduty-fips.us-west-1.amazonaws.com"
1658
- },
1659
- "us-west-2" : { },
1660
- "us-west-2-fips" : {
1661
- "credentialScope" : {
1662
- "region" : "us-west-2"
1663
- },
1664
- "hostname" : "guardduty-fips.us-west-2.amazonaws.com"
1665
- }
1666
- },
1667
- "isRegionalized" : true
1668
- },
1669
- "health" : {
1670
- "endpoints" : {
1671
- "us-east-1" : { }
1672
- }
1673
- },
1674
- "iam" : {
1675
- "endpoints" : {
1676
- "aws-global" : {
1677
- "credentialScope" : {
1678
- "region" : "us-east-1"
1679
- },
1680
- "hostname" : "iam.amazonaws.com"
1681
- }
1682
- },
1683
- "isRegionalized" : false,
1684
- "partitionEndpoint" : "aws-global"
1685
- },
1686
- "importexport" : {
1687
- "endpoints" : {
1688
- "aws-global" : {
1689
- "credentialScope" : {
1690
- "region" : "us-east-1",
1691
- "service" : "IngestionService"
1692
- },
1693
- "hostname" : "importexport.amazonaws.com",
1694
- "signatureVersions" : [ "v2", "v4" ]
1695
- }
1696
- },
1697
- "isRegionalized" : false,
1698
- "partitionEndpoint" : "aws-global"
1699
- },
1700
- "inspector" : {
1701
- "endpoints" : {
1702
- "ap-northeast-1" : { },
1703
- "ap-northeast-2" : { },
1704
- "ap-south-1" : { },
1705
- "ap-southeast-2" : { },
1706
- "eu-central-1" : { },
1707
- "eu-north-1" : { },
1708
- "eu-west-1" : { },
1709
- "eu-west-2" : { },
1710
- "us-east-1" : { },
1711
- "us-east-2" : { },
1712
- "us-west-1" : { },
1713
- "us-west-2" : { }
1714
- }
1715
- },
1716
- "iot" : {
1717
- "defaults" : {
1718
- "credentialScope" : {
1719
- "service" : "execute-api"
1720
- }
1721
- },
1722
- "endpoints" : {
1723
- "ap-northeast-1" : { },
1724
- "ap-northeast-2" : { },
1725
- "ap-south-1" : { },
1726
- "ap-southeast-1" : { },
1727
- "ap-southeast-2" : { },
1728
- "ca-central-1" : { },
1729
- "eu-central-1" : { },
1730
- "eu-north-1" : { },
1731
- "eu-west-1" : { },
1732
- "eu-west-2" : { },
1733
- "eu-west-3" : { },
1734
- "sa-east-1" : { },
1735
- "us-east-1" : { },
1736
- "us-east-2" : { },
1737
- "us-west-1" : { },
1738
- "us-west-2" : { }
1739
- }
1740
- },
1741
- "iotanalytics" : {
1742
- "endpoints" : {
1743
- "ap-northeast-1" : { },
1744
- "eu-central-1" : { },
1745
- "eu-west-1" : { },
1746
- "us-east-1" : { },
1747
- "us-east-2" : { },
1748
- "us-west-2" : { }
1749
- }
1750
- },
1751
- "iotevents" : {
1752
- "endpoints" : {
1753
- "ap-northeast-1" : { },
1754
- "ap-southeast-2" : { },
1755
- "eu-central-1" : { },
1756
- "eu-west-1" : { },
1757
- "us-east-1" : { },
1758
- "us-east-2" : { },
1759
- "us-west-2" : { }
1760
- }
1761
- },
1762
- "ioteventsdata" : {
1763
- "endpoints" : {
1764
- "ap-northeast-1" : {
1765
- "credentialScope" : {
1766
- "region" : "ap-northeast-1"
1767
- },
1768
- "hostname" : "data.iotevents.ap-northeast-1.amazonaws.com"
1769
- },
1770
- "ap-southeast-2" : {
1771
- "credentialScope" : {
1772
- "region" : "ap-southeast-2"
1773
- },
1774
- "hostname" : "data.iotevents.ap-southeast-2.amazonaws.com"
1775
- },
1776
- "eu-central-1" : {
1777
- "credentialScope" : {
1778
- "region" : "eu-central-1"
1779
- },
1780
- "hostname" : "data.iotevents.eu-central-1.amazonaws.com"
1781
- },
1782
- "eu-west-1" : {
1783
- "credentialScope" : {
1784
- "region" : "eu-west-1"
1785
- },
1786
- "hostname" : "data.iotevents.eu-west-1.amazonaws.com"
1787
- },
1788
- "us-east-1" : {
1789
- "credentialScope" : {
1790
- "region" : "us-east-1"
1791
- },
1792
- "hostname" : "data.iotevents.us-east-1.amazonaws.com"
1793
- },
1794
- "us-east-2" : {
1795
- "credentialScope" : {
1796
- "region" : "us-east-2"
1797
- },
1798
- "hostname" : "data.iotevents.us-east-2.amazonaws.com"
1799
- },
1800
- "us-west-2" : {
1801
- "credentialScope" : {
1802
- "region" : "us-west-2"
1803
- },
1804
- "hostname" : "data.iotevents.us-west-2.amazonaws.com"
1805
- }
1806
- }
1807
- },
1808
- "iotthingsgraph" : {
1809
- "defaults" : {
1810
- "credentialScope" : {
1811
- "service" : "iotthingsgraph"
1812
- }
1813
- },
1814
- "endpoints" : {
1815
- "ap-northeast-1" : { },
1816
- "ap-southeast-2" : { },
1817
- "eu-west-1" : { },
1818
- "us-east-1" : { },
1819
- "us-west-2" : { }
1820
- }
1821
- },
1822
- "kafka" : {
1823
- "endpoints" : {
1824
- "ap-northeast-1" : { },
1825
- "ap-northeast-2" : { },
1826
- "ap-south-1" : { },
1827
- "ap-southeast-1" : { },
1828
- "ap-southeast-2" : { },
1829
- "eu-central-1" : { },
1830
- "eu-north-1" : { },
1831
- "eu-west-1" : { },
1832
- "eu-west-2" : { },
1833
- "eu-west-3" : { },
1834
- "us-east-1" : { },
1835
- "us-east-2" : { },
1836
- "us-west-2" : { }
1837
- }
1838
- },
1839
- "kinesis" : {
1840
- "endpoints" : {
1841
- "ap-east-1" : { },
1842
- "ap-northeast-1" : { },
1843
- "ap-northeast-2" : { },
1844
- "ap-south-1" : { },
1845
- "ap-southeast-1" : { },
1846
- "ap-southeast-2" : { },
1847
- "ca-central-1" : { },
1848
- "eu-central-1" : { },
1849
- "eu-north-1" : { },
1850
- "eu-west-1" : { },
1851
- "eu-west-2" : { },
1852
- "eu-west-3" : { },
1853
- "me-south-1" : { },
1854
- "sa-east-1" : { },
1855
- "us-east-1" : { },
1856
- "us-east-2" : { },
1857
- "us-west-1" : { },
1858
- "us-west-2" : { }
1859
- }
1860
- },
1861
- "kinesisanalytics" : {
1862
- "endpoints" : {
1863
- "ap-northeast-1" : { },
1864
- "ap-northeast-2" : { },
1865
- "ap-south-1" : { },
1866
- "ap-southeast-1" : { },
1867
- "ap-southeast-2" : { },
1868
- "eu-central-1" : { },
1869
- "eu-north-1" : { },
1870
- "eu-west-1" : { },
1871
- "eu-west-2" : { },
1872
- "eu-west-3" : { },
1873
- "us-east-1" : { },
1874
- "us-east-2" : { },
1875
- "us-west-2" : { }
1876
- }
1877
- },
1878
- "kinesisvideo" : {
1879
- "endpoints" : {
1880
- "ap-northeast-1" : { },
1881
- "ap-southeast-2" : { },
1882
- "eu-central-1" : { },
1883
- "eu-west-1" : { },
1884
- "us-east-1" : { },
1885
- "us-west-2" : { }
1886
- }
1887
- },
1888
- "kms" : {
1889
- "endpoints" : {
1890
- "ap-east-1" : { },
1891
- "ap-northeast-1" : { },
1892
- "ap-northeast-2" : { },
1893
- "ap-south-1" : { },
1894
- "ap-southeast-1" : { },
1895
- "ap-southeast-2" : { },
1896
- "ca-central-1" : { },
1897
- "eu-central-1" : { },
1898
- "eu-north-1" : { },
1899
- "eu-west-1" : { },
1900
- "eu-west-2" : { },
1901
- "eu-west-3" : { },
1902
- "me-south-1" : { },
1903
- "sa-east-1" : { },
1904
- "us-east-1" : { },
1905
- "us-east-2" : { },
1906
- "us-west-1" : { },
1907
- "us-west-2" : { }
1908
- }
1909
- },
1910
- "lakeformation" : {
1911
- "endpoints" : {
1912
- "ap-northeast-1" : { },
1913
- "eu-west-1" : { },
1914
- "us-east-1" : { },
1915
- "us-east-2" : { },
1916
- "us-west-2" : { }
1917
- }
1918
- },
1919
- "lambda" : {
1920
- "endpoints" : {
1921
- "ap-east-1" : { },
1922
- "ap-northeast-1" : { },
1923
- "ap-northeast-2" : { },
1924
- "ap-south-1" : { },
1925
- "ap-southeast-1" : { },
1926
- "ap-southeast-2" : { },
1927
- "ca-central-1" : { },
1928
- "eu-central-1" : { },
1929
- "eu-north-1" : { },
1930
- "eu-west-1" : { },
1931
- "eu-west-2" : { },
1932
- "eu-west-3" : { },
1933
- "me-south-1" : { },
1934
- "sa-east-1" : { },
1935
- "us-east-1" : { },
1936
- "us-east-2" : { },
1937
- "us-west-1" : { },
1938
- "us-west-2" : { }
1939
- }
1940
- },
1941
- "license-manager" : {
1942
- "endpoints" : {
1943
- "ap-east-1" : { },
1944
- "ap-northeast-1" : { },
1945
- "ap-northeast-2" : { },
1946
- "ap-south-1" : { },
1947
- "ap-southeast-1" : { },
1948
- "ap-southeast-2" : { },
1949
- "ca-central-1" : { },
1950
- "eu-central-1" : { },
1951
- "eu-north-1" : { },
1952
- "eu-west-1" : { },
1953
- "eu-west-2" : { },
1954
- "eu-west-3" : { },
1955
- "me-south-1" : { },
1956
- "sa-east-1" : { },
1957
- "us-east-1" : { },
1958
- "us-east-2" : { },
1959
- "us-west-1" : { },
1960
- "us-west-2" : { }
1961
- }
1962
- },
1963
- "lightsail" : {
1964
- "endpoints" : {
1965
- "ap-northeast-1" : { },
1966
- "ap-northeast-2" : { },
1967
- "ap-south-1" : { },
1968
- "ap-southeast-1" : { },
1969
- "ap-southeast-2" : { },
1970
- "ca-central-1" : { },
1971
- "eu-central-1" : { },
1972
- "eu-west-1" : { },
1973
- "eu-west-2" : { },
1974
- "eu-west-3" : { },
1975
- "us-east-1" : { },
1976
- "us-east-2" : { },
1977
- "us-west-2" : { }
1978
- }
1979
- },
1980
- "logs" : {
1981
- "endpoints" : {
1982
- "ap-east-1" : { },
1983
- "ap-northeast-1" : { },
1984
- "ap-northeast-2" : { },
1985
- "ap-south-1" : { },
1986
- "ap-southeast-1" : { },
1987
- "ap-southeast-2" : { },
1988
- "ca-central-1" : { },
1989
- "eu-central-1" : { },
1990
- "eu-north-1" : { },
1991
- "eu-west-1" : { },
1992
- "eu-west-2" : { },
1993
- "eu-west-3" : { },
1994
- "me-south-1" : { },
1995
- "sa-east-1" : { },
1996
- "us-east-1" : { },
1997
- "us-east-2" : { },
1998
- "us-west-1" : { },
1999
- "us-west-2" : { }
2000
- }
2001
- },
2002
- "machinelearning" : {
2003
- "endpoints" : {
2004
- "eu-west-1" : { },
2005
- "us-east-1" : { }
2006
- }
2007
- },
2008
- "marketplacecommerceanalytics" : {
2009
- "endpoints" : {
2010
- "us-east-1" : { }
2011
- }
2012
- },
2013
- "mediaconnect" : {
2014
- "endpoints" : {
2015
- "ap-northeast-1" : { },
2016
- "ap-northeast-2" : { },
2017
- "ap-south-1" : { },
2018
- "ap-southeast-1" : { },
2019
- "ap-southeast-2" : { },
2020
- "eu-central-1" : { },
2021
- "eu-north-1" : { },
2022
- "eu-west-1" : { },
2023
- "eu-west-2" : { },
2024
- "eu-west-3" : { },
2025
- "sa-east-1" : { },
2026
- "us-east-1" : { },
2027
- "us-east-2" : { },
2028
- "us-west-1" : { },
2029
- "us-west-2" : { }
2030
- }
2031
- },
2032
- "mediaconvert" : {
2033
- "endpoints" : {
2034
- "ap-northeast-1" : { },
2035
- "ap-northeast-2" : { },
2036
- "ap-south-1" : { },
2037
- "ap-southeast-1" : { },
2038
- "ap-southeast-2" : { },
2039
- "ca-central-1" : { },
2040
- "eu-central-1" : { },
2041
- "eu-west-1" : { },
2042
- "eu-west-2" : { },
2043
- "eu-west-3" : { },
2044
- "sa-east-1" : { },
2045
- "us-east-1" : { },
2046
- "us-east-2" : { },
2047
- "us-west-1" : { },
2048
- "us-west-2" : { }
2049
- }
2050
- },
2051
- "medialive" : {
2052
- "endpoints" : {
2053
- "ap-northeast-1" : { },
2054
- "ap-northeast-2" : { },
2055
- "ap-south-1" : { },
2056
- "ap-southeast-1" : { },
2057
- "ap-southeast-2" : { },
2058
- "eu-central-1" : { },
2059
- "eu-north-1" : { },
2060
- "eu-west-1" : { },
2061
- "sa-east-1" : { },
2062
- "us-east-1" : { },
2063
- "us-west-2" : { }
2064
- }
2065
- },
2066
- "mediapackage" : {
2067
- "endpoints" : {
2068
- "ap-northeast-1" : { },
2069
- "ap-northeast-2" : { },
2070
- "ap-south-1" : { },
2071
- "ap-southeast-1" : { },
2072
- "ap-southeast-2" : { },
2073
- "eu-central-1" : { },
2074
- "eu-west-1" : { },
2075
- "eu-west-3" : { },
2076
- "sa-east-1" : { },
2077
- "us-east-1" : { },
2078
- "us-west-1" : { },
2079
- "us-west-2" : { }
2080
- }
2081
- },
2082
- "mediastore" : {
2083
- "endpoints" : {
2084
- "ap-northeast-1" : { },
2085
- "ap-northeast-2" : { },
2086
- "ap-southeast-2" : { },
2087
- "eu-central-1" : { },
2088
- "eu-north-1" : { },
2089
- "eu-west-1" : { },
2090
- "us-east-1" : { },
2091
- "us-west-2" : { }
2092
- }
2093
- },
2094
- "metering.marketplace" : {
2095
- "defaults" : {
2096
- "credentialScope" : {
2097
- "service" : "aws-marketplace"
2098
- }
2099
- },
2100
- "endpoints" : {
2101
- "ap-east-1" : { },
2102
- "ap-northeast-1" : { },
2103
- "ap-northeast-2" : { },
2104
- "ap-south-1" : { },
2105
- "ap-southeast-1" : { },
2106
- "ap-southeast-2" : { },
2107
- "ca-central-1" : { },
2108
- "eu-central-1" : { },
2109
- "eu-north-1" : { },
2110
- "eu-west-1" : { },
2111
- "eu-west-2" : { },
2112
- "eu-west-3" : { },
2113
- "me-south-1" : { },
2114
- "sa-east-1" : { },
2115
- "us-east-1" : { },
2116
- "us-east-2" : { },
2117
- "us-west-1" : { },
2118
- "us-west-2" : { }
2119
- }
2120
- },
2121
- "mgh" : {
2122
- "endpoints" : {
2123
- "us-west-2" : { }
2124
- }
2125
- },
2126
- "mobileanalytics" : {
2127
- "endpoints" : {
2128
- "us-east-1" : { }
2129
- }
2130
- },
2131
- "models.lex" : {
2132
- "defaults" : {
2133
- "credentialScope" : {
2134
- "service" : "lex"
2135
- }
2136
- },
2137
- "endpoints" : {
2138
- "eu-west-1" : { },
2139
- "us-east-1" : { },
2140
- "us-west-2" : { }
2141
- }
2142
- },
2143
- "monitoring" : {
2144
- "defaults" : {
2145
- "protocols" : [ "http", "https" ]
2146
- },
2147
- "endpoints" : {
2148
- "ap-east-1" : { },
2149
- "ap-northeast-1" : { },
2150
- "ap-northeast-2" : { },
2151
- "ap-south-1" : { },
2152
- "ap-southeast-1" : { },
2153
- "ap-southeast-2" : { },
2154
- "ca-central-1" : { },
2155
- "eu-central-1" : { },
2156
- "eu-north-1" : { },
2157
- "eu-west-1" : { },
2158
- "eu-west-2" : { },
2159
- "eu-west-3" : { },
2160
- "me-south-1" : { },
2161
- "sa-east-1" : { },
2162
- "us-east-1" : { },
2163
- "us-east-2" : { },
2164
- "us-west-1" : { },
2165
- "us-west-2" : { }
2166
- }
2167
- },
2168
- "mq" : {
2169
- "endpoints" : {
2170
- "ap-northeast-1" : { },
2171
- "ap-northeast-2" : { },
2172
- "ap-south-1" : { },
2173
- "ap-southeast-1" : { },
2174
- "ap-southeast-2" : { },
2175
- "ca-central-1" : { },
2176
- "eu-central-1" : { },
2177
- "eu-west-1" : { },
2178
- "eu-west-2" : { },
2179
- "eu-west-3" : { },
2180
- "us-east-1" : { },
2181
- "us-east-2" : { },
2182
- "us-west-1" : { },
2183
- "us-west-2" : { }
2184
- }
2185
- },
2186
- "mturk-requester" : {
2187
- "endpoints" : {
2188
- "sandbox" : {
2189
- "hostname" : "mturk-requester-sandbox.us-east-1.amazonaws.com"
2190
- },
2191
- "us-east-1" : { }
2192
- },
2193
- "isRegionalized" : false
2194
- },
2195
- "neptune" : {
2196
- "endpoints" : {
2197
- "ap-northeast-1" : {
2198
- "credentialScope" : {
2199
- "region" : "ap-northeast-1"
2200
- },
2201
- "hostname" : "rds.ap-northeast-1.amazonaws.com"
2202
- },
2203
- "ap-northeast-2" : {
2204
- "credentialScope" : {
2205
- "region" : "ap-northeast-2"
2206
- },
2207
- "hostname" : "rds.ap-northeast-2.amazonaws.com"
2208
- },
2209
- "ap-south-1" : {
2210
- "credentialScope" : {
2211
- "region" : "ap-south-1"
2212
- },
2213
- "hostname" : "rds.ap-south-1.amazonaws.com"
2214
- },
2215
- "ap-southeast-1" : {
2216
- "credentialScope" : {
2217
- "region" : "ap-southeast-1"
2218
- },
2219
- "hostname" : "rds.ap-southeast-1.amazonaws.com"
2220
- },
2221
- "ap-southeast-2" : {
2222
- "credentialScope" : {
2223
- "region" : "ap-southeast-2"
2224
- },
2225
- "hostname" : "rds.ap-southeast-2.amazonaws.com"
2226
- },
2227
- "eu-central-1" : {
2228
- "credentialScope" : {
2229
- "region" : "eu-central-1"
2230
- },
2231
- "hostname" : "rds.eu-central-1.amazonaws.com"
2232
- },
2233
- "eu-north-1" : {
2234
- "credentialScope" : {
2235
- "region" : "eu-north-1"
2236
- },
2237
- "hostname" : "rds.eu-north-1.amazonaws.com"
2238
- },
2239
- "eu-west-1" : {
2240
- "credentialScope" : {
2241
- "region" : "eu-west-1"
2242
- },
2243
- "hostname" : "rds.eu-west-1.amazonaws.com"
2244
- },
2245
- "eu-west-2" : {
2246
- "credentialScope" : {
2247
- "region" : "eu-west-2"
2248
- },
2249
- "hostname" : "rds.eu-west-2.amazonaws.com"
2250
- },
2251
- "us-east-1" : {
2252
- "credentialScope" : {
2253
- "region" : "us-east-1"
2254
- },
2255
- "hostname" : "rds.us-east-1.amazonaws.com"
2256
- },
2257
- "us-east-2" : {
2258
- "credentialScope" : {
2259
- "region" : "us-east-2"
2260
- },
2261
- "hostname" : "rds.us-east-2.amazonaws.com"
2262
- },
2263
- "us-west-2" : {
2264
- "credentialScope" : {
2265
- "region" : "us-west-2"
2266
- },
2267
- "hostname" : "rds.us-west-2.amazonaws.com"
2268
- }
2269
- }
2270
- },
2271
- "opsworks" : {
2272
- "endpoints" : {
2273
- "ap-northeast-1" : { },
2274
- "ap-northeast-2" : { },
2275
- "ap-south-1" : { },
2276
- "ap-southeast-1" : { },
2277
- "ap-southeast-2" : { },
2278
- "ca-central-1" : { },
2279
- "eu-central-1" : { },
2280
- "eu-west-1" : { },
2281
- "eu-west-2" : { },
2282
- "eu-west-3" : { },
2283
- "sa-east-1" : { },
2284
- "us-east-1" : { },
2285
- "us-east-2" : { },
2286
- "us-west-1" : { },
2287
- "us-west-2" : { }
2288
- }
2289
- },
2290
- "opsworks-cm" : {
2291
- "endpoints" : {
2292
- "ap-northeast-1" : { },
2293
- "ap-southeast-1" : { },
2294
- "ap-southeast-2" : { },
2295
- "eu-central-1" : { },
2296
- "eu-west-1" : { },
2297
- "us-east-1" : { },
2298
- "us-east-2" : { },
2299
- "us-west-1" : { },
2300
- "us-west-2" : { }
2301
- }
2302
- },
2303
- "organizations" : {
2304
- "endpoints" : {
2305
- "aws-global" : {
2306
- "credentialScope" : {
2307
- "region" : "us-east-1"
2308
- },
2309
- "hostname" : "organizations.us-east-1.amazonaws.com"
2310
- }
2311
- },
2312
- "isRegionalized" : false,
2313
- "partitionEndpoint" : "aws-global"
2314
- },
2315
- "pinpoint" : {
2316
- "defaults" : {
2317
- "credentialScope" : {
2318
- "service" : "mobiletargeting"
2319
- }
2320
- },
2321
- "endpoints" : {
2322
- "ap-south-1" : { },
2323
- "ap-southeast-2" : { },
2324
- "eu-central-1" : { },
2325
- "eu-west-1" : { },
2326
- "us-east-1" : { },
2327
- "us-west-2" : { }
2328
- }
2329
- },
2330
- "polly" : {
2331
- "endpoints" : {
2332
- "ap-northeast-1" : { },
2333
- "ap-northeast-2" : { },
2334
- "ap-south-1" : { },
2335
- "ap-southeast-1" : { },
2336
- "ap-southeast-2" : { },
2337
- "ca-central-1" : { },
2338
- "eu-central-1" : { },
2339
- "eu-north-1" : { },
2340
- "eu-west-1" : { },
2341
- "eu-west-2" : { },
2342
- "eu-west-3" : { },
2343
- "sa-east-1" : { },
2344
- "us-east-1" : { },
2345
- "us-east-2" : { },
2346
- "us-west-1" : { },
2347
- "us-west-2" : { }
2348
- }
2349
- },
2350
- "projects.iot1click" : {
2351
- "endpoints" : {
2352
- "ap-northeast-1" : { },
2353
- "eu-central-1" : { },
2354
- "eu-west-1" : { },
2355
- "eu-west-2" : { },
2356
- "us-east-1" : { },
2357
- "us-east-2" : { },
2358
- "us-west-2" : { }
2359
- }
2360
- },
2361
- "ram" : {
2362
- "endpoints" : {
2363
- "ap-northeast-1" : { },
2364
- "ap-northeast-2" : { },
2365
- "ap-south-1" : { },
2366
- "ap-southeast-1" : { },
2367
- "ap-southeast-2" : { },
2368
- "ca-central-1" : { },
2369
- "eu-central-1" : { },
2370
- "eu-north-1" : { },
2371
- "eu-west-1" : { },
2372
- "eu-west-2" : { },
2373
- "eu-west-3" : { },
2374
- "us-east-1" : { },
2375
- "us-east-2" : { },
2376
- "us-west-1" : { },
2377
- "us-west-2" : { }
2378
- }
2379
- },
2380
- "rds" : {
2381
- "endpoints" : {
2382
- "ap-east-1" : { },
2383
- "ap-northeast-1" : { },
2384
- "ap-northeast-2" : { },
2385
- "ap-south-1" : { },
2386
- "ap-southeast-1" : { },
2387
- "ap-southeast-2" : { },
2388
- "ca-central-1" : { },
2389
- "eu-central-1" : { },
2390
- "eu-north-1" : { },
2391
- "eu-west-1" : { },
2392
- "eu-west-2" : { },
2393
- "eu-west-3" : { },
2394
- "me-south-1" : { },
2395
- "sa-east-1" : { },
2396
- "us-east-1" : {
2397
- "sslCommonName" : "{service}.{dnsSuffix}"
2398
- },
2399
- "us-east-2" : { },
2400
- "us-west-1" : { },
2401
- "us-west-2" : { }
2402
- }
2403
- },
2404
- "redshift" : {
2405
- "endpoints" : {
2406
- "ap-east-1" : { },
2407
- "ap-northeast-1" : { },
2408
- "ap-northeast-2" : { },
2409
- "ap-south-1" : { },
2410
- "ap-southeast-1" : { },
2411
- "ap-southeast-2" : { },
2412
- "ca-central-1" : { },
2413
- "eu-central-1" : { },
2414
- "eu-north-1" : { },
2415
- "eu-west-1" : { },
2416
- "eu-west-2" : { },
2417
- "eu-west-3" : { },
2418
- "me-south-1" : { },
2419
- "sa-east-1" : { },
2420
- "us-east-1" : { },
2421
- "us-east-2" : { },
2422
- "us-west-1" : { },
2423
- "us-west-2" : { }
2424
- }
2425
- },
2426
- "rekognition" : {
2427
- "endpoints" : {
2428
- "ap-northeast-1" : { },
2429
- "ap-northeast-2" : { },
2430
- "ap-south-1" : { },
2431
- "ap-southeast-1" : { },
2432
- "ap-southeast-2" : { },
2433
- "eu-central-1" : { },
2434
- "eu-west-1" : { },
2435
- "eu-west-2" : { },
2436
- "us-east-1" : { },
2437
- "us-east-2" : { },
2438
- "us-west-1" : { },
2439
- "us-west-2" : { }
2440
- }
2441
- },
2442
- "resource-groups" : {
2443
- "endpoints" : {
2444
- "ap-east-1" : { },
2445
- "ap-northeast-1" : { },
2446
- "ap-northeast-2" : { },
2447
- "ap-south-1" : { },
2448
- "ap-southeast-1" : { },
2449
- "ap-southeast-2" : { },
2450
- "ca-central-1" : { },
2451
- "eu-central-1" : { },
2452
- "eu-north-1" : { },
2453
- "eu-west-1" : { },
2454
- "eu-west-2" : { },
2455
- "eu-west-3" : { },
2456
- "me-south-1" : { },
2457
- "sa-east-1" : { },
2458
- "us-east-1" : { },
2459
- "us-east-2" : { },
2460
- "us-west-1" : { },
2461
- "us-west-2" : { }
2462
- }
2463
- },
2464
- "robomaker" : {
2465
- "endpoints" : {
2466
- "ap-northeast-1" : { },
2467
- "ap-southeast-1" : { },
2468
- "eu-central-1" : { },
2469
- "eu-west-1" : { },
2470
- "us-east-1" : { },
2471
- "us-east-2" : { },
2472
- "us-west-2" : { }
2473
- }
2474
- },
2475
- "route53" : {
2476
- "endpoints" : {
2477
- "aws-global" : {
2478
- "credentialScope" : {
2479
- "region" : "us-east-1"
2480
- },
2481
- "hostname" : "route53.amazonaws.com"
2482
- }
2483
- },
2484
- "isRegionalized" : false,
2485
- "partitionEndpoint" : "aws-global"
2486
- },
2487
- "route53domains" : {
2488
- "endpoints" : {
2489
- "us-east-1" : { }
2490
- }
2491
- },
2492
- "route53resolver" : {
2493
- "defaults" : {
2494
- "protocols" : [ "https" ]
2495
- },
2496
- "endpoints" : {
2497
- "ap-northeast-1" : { },
2498
- "ap-northeast-2" : { },
2499
- "ap-south-1" : { },
2500
- "ap-southeast-1" : { },
2501
- "ap-southeast-2" : { },
2502
- "ca-central-1" : { },
2503
- "eu-central-1" : { },
2504
- "eu-west-1" : { },
2505
- "eu-west-2" : { },
2506
- "eu-west-3" : { },
2507
- "us-east-1" : { },
2508
- "us-east-2" : { },
2509
- "us-west-1" : { },
2510
- "us-west-2" : { }
2511
- }
2512
- },
2513
- "runtime.lex" : {
2514
- "defaults" : {
2515
- "credentialScope" : {
2516
- "service" : "lex"
2517
- }
2518
- },
2519
- "endpoints" : {
2520
- "eu-west-1" : { },
2521
- "us-east-1" : { },
2522
- "us-west-2" : { }
2523
- }
2524
- },
2525
- "runtime.sagemaker" : {
2526
- "endpoints" : {
2527
- "ap-east-1" : { },
2528
- "ap-northeast-1" : { },
2529
- "ap-northeast-2" : { },
2530
- "ap-south-1" : { },
2531
- "ap-southeast-1" : { },
2532
- "ap-southeast-2" : { },
2533
- "ca-central-1" : { },
2534
- "eu-central-1" : { },
2535
- "eu-north-1" : { },
2536
- "eu-west-1" : { },
2537
- "eu-west-2" : { },
2538
- "eu-west-3" : { },
2539
- "sa-east-1" : { },
2540
- "us-east-1" : { },
2541
- "us-east-1-fips" : {
2542
- "credentialScope" : {
2543
- "region" : "us-east-1"
2544
- },
2545
- "hostname" : "runtime-fips.sagemaker.us-east-1.amazonaws.com"
2546
- },
2547
- "us-east-2" : { },
2548
- "us-east-2-fips" : {
2549
- "credentialScope" : {
2550
- "region" : "us-east-2"
2551
- },
2552
- "hostname" : "runtime-fips.sagemaker.us-east-2.amazonaws.com"
2553
- },
2554
- "us-west-1" : { },
2555
- "us-west-1-fips" : {
2556
- "credentialScope" : {
2557
- "region" : "us-west-1"
2558
- },
2559
- "hostname" : "runtime-fips.sagemaker.us-west-1.amazonaws.com"
2560
- },
2561
- "us-west-2" : { },
2562
- "us-west-2-fips" : {
2563
- "credentialScope" : {
2564
- "region" : "us-west-2"
2565
- },
2566
- "hostname" : "runtime-fips.sagemaker.us-west-2.amazonaws.com"
2567
- }
2568
- }
2569
- },
2570
- "s3" : {
2571
- "defaults" : {
2572
- "protocols" : [ "http", "https" ],
2573
- "signatureVersions" : [ "s3v4" ]
2574
- },
2575
- "endpoints" : {
2576
- "ap-east-1" : { },
2577
- "ap-northeast-1" : {
2578
- "hostname" : "s3.ap-northeast-1.amazonaws.com",
2579
- "signatureVersions" : [ "s3", "s3v4" ]
2580
- },
2581
- "ap-northeast-2" : { },
2582
- "ap-south-1" : { },
2583
- "ap-southeast-1" : {
2584
- "hostname" : "s3.ap-southeast-1.amazonaws.com",
2585
- "signatureVersions" : [ "s3", "s3v4" ]
2586
- },
2587
- "ap-southeast-2" : {
2588
- "hostname" : "s3.ap-southeast-2.amazonaws.com",
2589
- "signatureVersions" : [ "s3", "s3v4" ]
2590
- },
2591
- "ca-central-1" : { },
2592
- "eu-central-1" : { },
2593
- "eu-north-1" : { },
2594
- "eu-west-1" : {
2595
- "hostname" : "s3.eu-west-1.amazonaws.com",
2596
- "signatureVersions" : [ "s3", "s3v4" ]
2597
- },
2598
- "eu-west-2" : { },
2599
- "eu-west-3" : { },
2600
- "me-south-1" : { },
2601
- "s3-external-1" : {
2602
- "credentialScope" : {
2603
- "region" : "us-east-1"
2604
- },
2605
- "hostname" : "s3-external-1.amazonaws.com",
2606
- "signatureVersions" : [ "s3", "s3v4" ]
2607
- },
2608
- "sa-east-1" : {
2609
- "hostname" : "s3.sa-east-1.amazonaws.com",
2610
- "signatureVersions" : [ "s3", "s3v4" ]
2611
- },
2612
- "us-east-1" : {
2613
- "hostname" : "s3.amazonaws.com",
2614
- "signatureVersions" : [ "s3", "s3v4" ]
2615
- },
2616
- "us-east-2" : { },
2617
- "us-west-1" : {
2618
- "hostname" : "s3.us-west-1.amazonaws.com",
2619
- "signatureVersions" : [ "s3", "s3v4" ]
2620
- },
2621
- "us-west-2" : {
2622
- "hostname" : "s3.us-west-2.amazonaws.com",
2623
- "signatureVersions" : [ "s3", "s3v4" ]
2624
- }
2625
- },
2626
- "isRegionalized" : true,
2627
- "partitionEndpoint" : "us-east-1"
2628
- },
2629
- "s3-control" : {
2630
- "defaults" : {
2631
- "protocols" : [ "https" ],
2632
- "signatureVersions" : [ "s3v4" ]
2633
- },
2634
- "endpoints" : {
2635
- "ap-northeast-1" : {
2636
- "credentialScope" : {
2637
- "region" : "ap-northeast-1"
2638
- },
2639
- "hostname" : "s3-control.ap-northeast-1.amazonaws.com",
2640
- "signatureVersions" : [ "s3v4" ]
2641
- },
2642
- "ap-northeast-2" : {
2643
- "credentialScope" : {
2644
- "region" : "ap-northeast-2"
2645
- },
2646
- "hostname" : "s3-control.ap-northeast-2.amazonaws.com",
2647
- "signatureVersions" : [ "s3v4" ]
2648
- },
2649
- "ap-south-1" : {
2650
- "credentialScope" : {
2651
- "region" : "ap-south-1"
2652
- },
2653
- "hostname" : "s3-control.ap-south-1.amazonaws.com",
2654
- "signatureVersions" : [ "s3v4" ]
2655
- },
2656
- "ap-southeast-1" : {
2657
- "credentialScope" : {
2658
- "region" : "ap-southeast-1"
2659
- },
2660
- "hostname" : "s3-control.ap-southeast-1.amazonaws.com",
2661
- "signatureVersions" : [ "s3v4" ]
2662
- },
2663
- "ap-southeast-2" : {
2664
- "credentialScope" : {
2665
- "region" : "ap-southeast-2"
2666
- },
2667
- "hostname" : "s3-control.ap-southeast-2.amazonaws.com",
2668
- "signatureVersions" : [ "s3v4" ]
2669
- },
2670
- "ca-central-1" : {
2671
- "credentialScope" : {
2672
- "region" : "ca-central-1"
2673
- },
2674
- "hostname" : "s3-control.ca-central-1.amazonaws.com",
2675
- "signatureVersions" : [ "s3v4" ]
2676
- },
2677
- "eu-central-1" : {
2678
- "credentialScope" : {
2679
- "region" : "eu-central-1"
2680
- },
2681
- "hostname" : "s3-control.eu-central-1.amazonaws.com",
2682
- "signatureVersions" : [ "s3v4" ]
2683
- },
2684
- "eu-north-1" : {
2685
- "credentialScope" : {
2686
- "region" : "eu-north-1"
2687
- },
2688
- "hostname" : "s3-control.eu-north-1.amazonaws.com",
2689
- "signatureVersions" : [ "s3v4" ]
2690
- },
2691
- "eu-west-1" : {
2692
- "credentialScope" : {
2693
- "region" : "eu-west-1"
2694
- },
2695
- "hostname" : "s3-control.eu-west-1.amazonaws.com",
2696
- "signatureVersions" : [ "s3v4" ]
2697
- },
2698
- "eu-west-2" : {
2699
- "credentialScope" : {
2700
- "region" : "eu-west-2"
2701
- },
2702
- "hostname" : "s3-control.eu-west-2.amazonaws.com",
2703
- "signatureVersions" : [ "s3v4" ]
2704
- },
2705
- "eu-west-3" : {
2706
- "credentialScope" : {
2707
- "region" : "eu-west-3"
2708
- },
2709
- "hostname" : "s3-control.eu-west-3.amazonaws.com",
2710
- "signatureVersions" : [ "s3v4" ]
2711
- },
2712
- "sa-east-1" : {
2713
- "credentialScope" : {
2714
- "region" : "sa-east-1"
2715
- },
2716
- "hostname" : "s3-control.sa-east-1.amazonaws.com",
2717
- "signatureVersions" : [ "s3v4" ]
2718
- },
2719
- "us-east-1" : {
2720
- "credentialScope" : {
2721
- "region" : "us-east-1"
2722
- },
2723
- "hostname" : "s3-control.us-east-1.amazonaws.com",
2724
- "signatureVersions" : [ "s3v4" ]
2725
- },
2726
- "us-east-1-fips" : {
2727
- "credentialScope" : {
2728
- "region" : "us-east-1"
2729
- },
2730
- "hostname" : "s3-control-fips.us-east-1.amazonaws.com",
2731
- "signatureVersions" : [ "s3v4" ]
2732
- },
2733
- "us-east-2" : {
2734
- "credentialScope" : {
2735
- "region" : "us-east-2"
2736
- },
2737
- "hostname" : "s3-control.us-east-2.amazonaws.com",
2738
- "signatureVersions" : [ "s3v4" ]
2739
- },
2740
- "us-east-2-fips" : {
2741
- "credentialScope" : {
2742
- "region" : "us-east-2"
2743
- },
2744
- "hostname" : "s3-control-fips.us-east-2.amazonaws.com",
2745
- "signatureVersions" : [ "s3v4" ]
2746
- },
2747
- "us-west-1" : {
2748
- "credentialScope" : {
2749
- "region" : "us-west-1"
2750
- },
2751
- "hostname" : "s3-control.us-west-1.amazonaws.com",
2752
- "signatureVersions" : [ "s3v4" ]
2753
- },
2754
- "us-west-1-fips" : {
2755
- "credentialScope" : {
2756
- "region" : "us-west-1"
2757
- },
2758
- "hostname" : "s3-control-fips.us-west-1.amazonaws.com",
2759
- "signatureVersions" : [ "s3v4" ]
2760
- },
2761
- "us-west-2" : {
2762
- "credentialScope" : {
2763
- "region" : "us-west-2"
2764
- },
2765
- "hostname" : "s3-control.us-west-2.amazonaws.com",
2766
- "signatureVersions" : [ "s3v4" ]
2767
- },
2768
- "us-west-2-fips" : {
2769
- "credentialScope" : {
2770
- "region" : "us-west-2"
2771
- },
2772
- "hostname" : "s3-control-fips.us-west-2.amazonaws.com",
2773
- "signatureVersions" : [ "s3v4" ]
2774
- }
2775
- }
2776
- },
2777
- "sdb" : {
2778
- "defaults" : {
2779
- "protocols" : [ "http", "https" ],
2780
- "signatureVersions" : [ "v2" ]
2781
- },
2782
- "endpoints" : {
2783
- "ap-northeast-1" : { },
2784
- "ap-southeast-1" : { },
2785
- "ap-southeast-2" : { },
2786
- "eu-west-1" : { },
2787
- "sa-east-1" : { },
2788
- "us-east-1" : {
2789
- "hostname" : "sdb.amazonaws.com"
2790
- },
2791
- "us-west-1" : { },
2792
- "us-west-2" : { }
2793
- }
2794
- },
2795
- "secretsmanager" : {
2796
- "endpoints" : {
2797
- "ap-northeast-1" : { },
2798
- "ap-northeast-2" : { },
2799
- "ap-south-1" : { },
2800
- "ap-southeast-1" : { },
2801
- "ap-southeast-2" : { },
2802
- "ca-central-1" : { },
2803
- "eu-central-1" : { },
2804
- "eu-north-1" : { },
2805
- "eu-west-1" : { },
2806
- "eu-west-2" : { },
2807
- "eu-west-3" : { },
2808
- "sa-east-1" : { },
2809
- "us-east-1" : { },
2810
- "us-east-1-fips" : {
2811
- "credentialScope" : {
2812
- "region" : "us-east-1"
2813
- },
2814
- "hostname" : "secretsmanager-fips.us-east-1.amazonaws.com"
2815
- },
2816
- "us-east-2" : { },
2817
- "us-east-2-fips" : {
2818
- "credentialScope" : {
2819
- "region" : "us-east-2"
2820
- },
2821
- "hostname" : "secretsmanager-fips.us-east-2.amazonaws.com"
2822
- },
2823
- "us-west-1" : { },
2824
- "us-west-1-fips" : {
2825
- "credentialScope" : {
2826
- "region" : "us-west-1"
2827
- },
2828
- "hostname" : "secretsmanager-fips.us-west-1.amazonaws.com"
2829
- },
2830
- "us-west-2" : { },
2831
- "us-west-2-fips" : {
2832
- "credentialScope" : {
2833
- "region" : "us-west-2"
2834
- },
2835
- "hostname" : "secretsmanager-fips.us-west-2.amazonaws.com"
2836
- }
2837
- }
2838
- },
2839
- "securityhub" : {
2840
- "endpoints" : {
2841
- "ap-east-1" : { },
2842
- "ap-northeast-1" : { },
2843
- "ap-northeast-2" : { },
2844
- "ap-south-1" : { },
2845
- "ap-southeast-1" : { },
2846
- "ap-southeast-2" : { },
2847
- "ca-central-1" : { },
2848
- "eu-central-1" : { },
2849
- "eu-north-1" : { },
2850
- "eu-west-1" : { },
2851
- "eu-west-2" : { },
2852
- "eu-west-3" : { },
2853
- "sa-east-1" : { },
2854
- "us-east-1" : { },
2855
- "us-east-2" : { },
2856
- "us-west-1" : { },
2857
- "us-west-2" : { }
2858
- }
2859
- },
2860
- "serverlessrepo" : {
2861
- "defaults" : {
2862
- "protocols" : [ "https" ]
2863
- },
2864
- "endpoints" : {
2865
- "ap-northeast-1" : {
2866
- "protocols" : [ "https" ]
2867
- },
2868
- "ap-northeast-2" : {
2869
- "protocols" : [ "https" ]
2870
- },
2871
- "ap-south-1" : {
2872
- "protocols" : [ "https" ]
2873
- },
2874
- "ap-southeast-1" : {
2875
- "protocols" : [ "https" ]
2876
- },
2877
- "ap-southeast-2" : {
2878
- "protocols" : [ "https" ]
2879
- },
2880
- "ca-central-1" : {
2881
- "protocols" : [ "https" ]
2882
- },
2883
- "eu-central-1" : {
2884
- "protocols" : [ "https" ]
2885
- },
2886
- "eu-north-1" : {
2887
- "protocols" : [ "https" ]
2888
- },
2889
- "eu-west-1" : {
2890
- "protocols" : [ "https" ]
2891
- },
2892
- "eu-west-2" : {
2893
- "protocols" : [ "https" ]
2894
- },
2895
- "eu-west-3" : {
2896
- "protocols" : [ "https" ]
2897
- },
2898
- "sa-east-1" : {
2899
- "protocols" : [ "https" ]
2900
- },
2901
- "us-east-1" : {
2902
- "protocols" : [ "https" ]
2903
- },
2904
- "us-east-2" : {
2905
- "protocols" : [ "https" ]
2906
- },
2907
- "us-west-1" : {
2908
- "protocols" : [ "https" ]
2909
- },
2910
- "us-west-2" : {
2911
- "protocols" : [ "https" ]
2912
- }
2913
- }
2914
- },
2915
- "servicecatalog" : {
2916
- "endpoints" : {
2917
- "ap-northeast-1" : { },
2918
- "ap-northeast-2" : { },
2919
- "ap-south-1" : { },
2920
- "ap-southeast-1" : { },
2921
- "ap-southeast-2" : { },
2922
- "ca-central-1" : { },
2923
- "eu-central-1" : { },
2924
- "eu-north-1" : { },
2925
- "eu-west-1" : { },
2926
- "eu-west-2" : { },
2927
- "eu-west-3" : { },
2928
- "sa-east-1" : { },
2929
- "us-east-1" : { },
2930
- "us-east-1-fips" : {
2931
- "credentialScope" : {
2932
- "region" : "us-east-1"
2933
- },
2934
- "hostname" : "servicecatalog-fips.us-east-1.amazonaws.com"
2935
- },
2936
- "us-east-2" : { },
2937
- "us-east-2-fips" : {
2938
- "credentialScope" : {
2939
- "region" : "us-east-2"
2940
- },
2941
- "hostname" : "servicecatalog-fips.us-east-2.amazonaws.com"
2942
- },
2943
- "us-west-1" : { },
2944
- "us-west-1-fips" : {
2945
- "credentialScope" : {
2946
- "region" : "us-west-1"
2947
- },
2948
- "hostname" : "servicecatalog-fips.us-west-1.amazonaws.com"
2949
- },
2950
- "us-west-2" : { },
2951
- "us-west-2-fips" : {
2952
- "credentialScope" : {
2953
- "region" : "us-west-2"
2954
- },
2955
- "hostname" : "servicecatalog-fips.us-west-2.amazonaws.com"
2956
- }
2957
- }
2958
- },
2959
- "servicediscovery" : {
2960
- "endpoints" : {
2961
- "ap-northeast-1" : { },
2962
- "ap-northeast-2" : { },
2963
- "ap-south-1" : { },
2964
- "ap-southeast-1" : { },
2965
- "ap-southeast-2" : { },
2966
- "ca-central-1" : { },
2967
- "eu-central-1" : { },
2968
- "eu-west-1" : { },
2969
- "eu-west-2" : { },
2970
- "eu-west-3" : { },
2971
- "sa-east-1" : { },
2972
- "us-east-1" : { },
2973
- "us-east-2" : { },
2974
- "us-west-1" : { },
2975
- "us-west-2" : { }
2976
- }
2977
- },
2978
- "shield" : {
2979
- "defaults" : {
2980
- "protocols" : [ "https" ],
2981
- "sslCommonName" : "shield.us-east-1.amazonaws.com"
2982
- },
2983
- "endpoints" : {
2984
- "us-east-1" : { }
2985
- },
2986
- "isRegionalized" : false
2987
- },
2988
- "sms" : {
2989
- "endpoints" : {
2990
- "ap-east-1" : { },
2991
- "ap-northeast-1" : { },
2992
- "ap-northeast-2" : { },
2993
- "ap-south-1" : { },
2994
- "ap-southeast-1" : { },
2995
- "ap-southeast-2" : { },
2996
- "ca-central-1" : { },
2997
- "eu-central-1" : { },
2998
- "eu-north-1" : { },
2999
- "eu-west-1" : { },
3000
- "eu-west-2" : { },
3001
- "eu-west-3" : { },
3002
- "me-south-1" : { },
3003
- "sa-east-1" : { },
3004
- "us-east-1" : { },
3005
- "us-east-2" : { },
3006
- "us-west-1" : { },
3007
- "us-west-2" : { }
3008
- }
3009
- },
3010
- "snowball" : {
3011
- "endpoints" : {
3012
- "ap-northeast-1" : { },
3013
- "ap-northeast-2" : { },
3014
- "ap-south-1" : { },
3015
- "ap-southeast-1" : { },
3016
- "ap-southeast-2" : { },
3017
- "ca-central-1" : { },
3018
- "eu-central-1" : { },
3019
- "eu-west-1" : { },
3020
- "eu-west-2" : { },
3021
- "eu-west-3" : { },
3022
- "sa-east-1" : { },
3023
- "us-east-1" : { },
3024
- "us-east-2" : { },
3025
- "us-west-1" : { },
3026
- "us-west-2" : { }
3027
- }
3028
- },
3029
- "sns" : {
3030
- "defaults" : {
3031
- "protocols" : [ "http", "https" ]
3032
- },
3033
- "endpoints" : {
3034
- "ap-east-1" : { },
3035
- "ap-northeast-1" : { },
3036
- "ap-northeast-2" : { },
3037
- "ap-south-1" : { },
3038
- "ap-southeast-1" : { },
3039
- "ap-southeast-2" : { },
3040
- "ca-central-1" : { },
3041
- "eu-central-1" : { },
3042
- "eu-north-1" : { },
3043
- "eu-west-1" : { },
3044
- "eu-west-2" : { },
3045
- "eu-west-3" : { },
3046
- "me-south-1" : { },
3047
- "sa-east-1" : { },
3048
- "us-east-1" : { },
3049
- "us-east-2" : { },
3050
- "us-west-1" : { },
3051
- "us-west-2" : { }
3052
- }
3053
- },
3054
- "sqs" : {
3055
- "defaults" : {
3056
- "protocols" : [ "http", "https" ],
3057
- "sslCommonName" : "{region}.queue.{dnsSuffix}"
3058
- },
3059
- "endpoints" : {
3060
- "ap-east-1" : { },
3061
- "ap-northeast-1" : { },
3062
- "ap-northeast-2" : { },
3063
- "ap-south-1" : { },
3064
- "ap-southeast-1" : { },
3065
- "ap-southeast-2" : { },
3066
- "ca-central-1" : { },
3067
- "eu-central-1" : { },
3068
- "eu-north-1" : { },
3069
- "eu-west-1" : { },
3070
- "eu-west-2" : { },
3071
- "eu-west-3" : { },
3072
- "fips-us-east-1" : {
3073
- "credentialScope" : {
3074
- "region" : "us-east-1"
3075
- },
3076
- "hostname" : "sqs-fips.us-east-1.amazonaws.com"
3077
- },
3078
- "fips-us-east-2" : {
3079
- "credentialScope" : {
3080
- "region" : "us-east-2"
3081
- },
3082
- "hostname" : "sqs-fips.us-east-2.amazonaws.com"
3083
- },
3084
- "fips-us-west-1" : {
3085
- "credentialScope" : {
3086
- "region" : "us-west-1"
3087
- },
3088
- "hostname" : "sqs-fips.us-west-1.amazonaws.com"
3089
- },
3090
- "fips-us-west-2" : {
3091
- "credentialScope" : {
3092
- "region" : "us-west-2"
3093
- },
3094
- "hostname" : "sqs-fips.us-west-2.amazonaws.com"
3095
- },
3096
- "me-south-1" : { },
3097
- "sa-east-1" : { },
3098
- "us-east-1" : {
3099
- "sslCommonName" : "queue.{dnsSuffix}"
3100
- },
3101
- "us-east-2" : { },
3102
- "us-west-1" : { },
3103
- "us-west-2" : { }
3104
- }
3105
- },
3106
- "ssm" : {
3107
- "endpoints" : {
3108
- "ap-east-1" : { },
3109
- "ap-northeast-1" : { },
3110
- "ap-northeast-2" : { },
3111
- "ap-south-1" : { },
3112
- "ap-southeast-1" : { },
3113
- "ap-southeast-2" : { },
3114
- "ca-central-1" : { },
3115
- "eu-central-1" : { },
3116
- "eu-north-1" : { },
3117
- "eu-west-1" : { },
3118
- "eu-west-2" : { },
3119
- "eu-west-3" : { },
3120
- "me-south-1" : { },
3121
- "sa-east-1" : { },
3122
- "us-east-1" : { },
3123
- "us-east-2" : { },
3124
- "us-west-1" : { },
3125
- "us-west-2" : { }
3126
- }
3127
- },
3128
- "states" : {
3129
- "endpoints" : {
3130
- "ap-east-1" : { },
3131
- "ap-northeast-1" : { },
3132
- "ap-northeast-2" : { },
3133
- "ap-south-1" : { },
3134
- "ap-southeast-1" : { },
3135
- "ap-southeast-2" : { },
3136
- "ca-central-1" : { },
3137
- "eu-central-1" : { },
3138
- "eu-north-1" : { },
3139
- "eu-west-1" : { },
3140
- "eu-west-2" : { },
3141
- "eu-west-3" : { },
3142
- "me-south-1" : { },
3143
- "sa-east-1" : { },
3144
- "us-east-1" : { },
3145
- "us-east-2" : { },
3146
- "us-west-1" : { },
3147
- "us-west-2" : { }
3148
- }
3149
- },
3150
- "storagegateway" : {
3151
- "endpoints" : {
3152
- "ap-east-1" : { },
3153
- "ap-northeast-1" : { },
3154
- "ap-northeast-2" : { },
3155
- "ap-south-1" : { },
3156
- "ap-southeast-1" : { },
3157
- "ap-southeast-2" : { },
3158
- "ca-central-1" : { },
3159
- "eu-central-1" : { },
3160
- "eu-north-1" : { },
3161
- "eu-west-1" : { },
3162
- "eu-west-2" : { },
3163
- "eu-west-3" : { },
3164
- "me-south-1" : { },
3165
- "sa-east-1" : { },
3166
- "us-east-1" : { },
3167
- "us-east-2" : { },
3168
- "us-west-1" : { },
3169
- "us-west-2" : { }
3170
- }
3171
- },
3172
- "streams.dynamodb" : {
3173
- "defaults" : {
3174
- "credentialScope" : {
3175
- "service" : "dynamodb"
3176
- },
3177
- "protocols" : [ "http", "https" ]
3178
- },
3179
- "endpoints" : {
3180
- "ap-northeast-1" : { },
3181
- "ap-northeast-2" : { },
3182
- "ap-south-1" : { },
3183
- "ap-southeast-1" : { },
3184
- "ap-southeast-2" : { },
3185
- "ca-central-1" : { },
3186
- "ca-central-1-fips" : {
3187
- "credentialScope" : {
3188
- "region" : "ca-central-1"
3189
- },
3190
- "hostname" : "dynamodb-fips.ca-central-1.amazonaws.com"
3191
- },
3192
- "eu-central-1" : { },
3193
- "eu-north-1" : { },
3194
- "eu-west-1" : { },
3195
- "eu-west-2" : { },
3196
- "eu-west-3" : { },
3197
- "local" : {
3198
- "credentialScope" : {
3199
- "region" : "us-east-1"
3200
- },
3201
- "hostname" : "localhost:8000",
3202
- "protocols" : [ "http" ]
3203
- },
3204
- "me-south-1" : { },
3205
- "sa-east-1" : { },
3206
- "us-east-1" : { },
3207
- "us-east-1-fips" : {
3208
- "credentialScope" : {
3209
- "region" : "us-east-1"
3210
- },
3211
- "hostname" : "dynamodb-fips.us-east-1.amazonaws.com"
3212
- },
3213
- "us-east-2" : { },
3214
- "us-east-2-fips" : {
3215
- "credentialScope" : {
3216
- "region" : "us-east-2"
3217
- },
3218
- "hostname" : "dynamodb-fips.us-east-2.amazonaws.com"
3219
- },
3220
- "us-west-1" : { },
3221
- "us-west-1-fips" : {
3222
- "credentialScope" : {
3223
- "region" : "us-west-1"
3224
- },
3225
- "hostname" : "dynamodb-fips.us-west-1.amazonaws.com"
3226
- },
3227
- "us-west-2" : { },
3228
- "us-west-2-fips" : {
3229
- "credentialScope" : {
3230
- "region" : "us-west-2"
3231
- },
3232
- "hostname" : "dynamodb-fips.us-west-2.amazonaws.com"
3233
- }
3234
- }
3235
- },
3236
- "sts" : {
3237
- "defaults" : {
3238
- "credentialScope" : {
3239
- "region" : "us-east-1"
3240
- },
3241
- "hostname" : "sts.amazonaws.com"
3242
- },
3243
- "endpoints" : {
3244
- "ap-east-1" : {
3245
- "credentialScope" : {
3246
- "region" : "ap-east-1"
3247
- },
3248
- "hostname" : "sts.ap-east-1.amazonaws.com"
3249
- },
3250
- "ap-northeast-1" : { },
3251
- "ap-northeast-2" : {
3252
- "credentialScope" : {
3253
- "region" : "ap-northeast-2"
3254
- },
3255
- "hostname" : "sts.ap-northeast-2.amazonaws.com"
3256
- },
3257
- "ap-south-1" : { },
3258
- "ap-southeast-1" : { },
3259
- "ap-southeast-2" : { },
3260
- "aws-global" : { },
3261
- "ca-central-1" : { },
3262
- "eu-central-1" : { },
3263
- "eu-north-1" : { },
3264
- "eu-west-1" : { },
3265
- "eu-west-2" : { },
3266
- "eu-west-3" : { },
3267
- "me-south-1" : {
3268
- "credentialScope" : {
3269
- "region" : "me-south-1"
3270
- },
3271
- "hostname" : "sts.me-south-1.amazonaws.com"
3272
- },
3273
- "sa-east-1" : { },
3274
- "us-east-1" : { },
3275
- "us-east-1-fips" : {
3276
- "credentialScope" : {
3277
- "region" : "us-east-1"
3278
- },
3279
- "hostname" : "sts-fips.us-east-1.amazonaws.com"
3280
- },
3281
- "us-east-2" : { },
3282
- "us-east-2-fips" : {
3283
- "credentialScope" : {
3284
- "region" : "us-east-2"
3285
- },
3286
- "hostname" : "sts-fips.us-east-2.amazonaws.com"
3287
- },
3288
- "us-west-1" : { },
3289
- "us-west-1-fips" : {
3290
- "credentialScope" : {
3291
- "region" : "us-west-1"
3292
- },
3293
- "hostname" : "sts-fips.us-west-1.amazonaws.com"
3294
- },
3295
- "us-west-2" : { },
3296
- "us-west-2-fips" : {
3297
- "credentialScope" : {
3298
- "region" : "us-west-2"
3299
- },
3300
- "hostname" : "sts-fips.us-west-2.amazonaws.com"
3301
- }
3302
- },
3303
- "partitionEndpoint" : "aws-global"
3304
- },
3305
- "support" : {
3306
- "endpoints" : {
3307
- "aws-global" : {
3308
- "credentialScope" : {
3309
- "region" : "us-east-1"
3310
- },
3311
- "hostname" : "support.us-east-1.amazonaws.com"
3312
- }
3313
- },
3314
- "partitionEndpoint" : "aws-global"
3315
- },
3316
- "swf" : {
3317
- "endpoints" : {
3318
- "ap-east-1" : { },
3319
- "ap-northeast-1" : { },
3320
- "ap-northeast-2" : { },
3321
- "ap-south-1" : { },
3322
- "ap-southeast-1" : { },
3323
- "ap-southeast-2" : { },
3324
- "ca-central-1" : { },
3325
- "eu-central-1" : { },
3326
- "eu-north-1" : { },
3327
- "eu-west-1" : { },
3328
- "eu-west-2" : { },
3329
- "eu-west-3" : { },
3330
- "me-south-1" : { },
3331
- "sa-east-1" : { },
3332
- "us-east-1" : { },
3333
- "us-east-2" : { },
3334
- "us-west-1" : { },
3335
- "us-west-2" : { }
3336
- }
3337
- },
3338
- "tagging" : {
3339
- "endpoints" : {
3340
- "ap-east-1" : { },
3341
- "ap-northeast-1" : { },
3342
- "ap-northeast-2" : { },
3343
- "ap-south-1" : { },
3344
- "ap-southeast-1" : { },
3345
- "ap-southeast-2" : { },
3346
- "ca-central-1" : { },
3347
- "eu-central-1" : { },
3348
- "eu-north-1" : { },
3349
- "eu-west-1" : { },
3350
- "eu-west-2" : { },
3351
- "eu-west-3" : { },
3352
- "me-south-1" : { },
3353
- "sa-east-1" : { },
3354
- "us-east-1" : { },
3355
- "us-east-2" : { },
3356
- "us-west-1" : { },
3357
- "us-west-2" : { }
3358
- }
3359
- },
3360
- "transfer" : {
3361
- "endpoints" : {
3362
- "ap-northeast-1" : { },
3363
- "ap-northeast-2" : { },
3364
- "ap-south-1" : { },
3365
- "ap-southeast-1" : { },
3366
- "ap-southeast-2" : { },
3367
- "ca-central-1" : { },
3368
- "eu-central-1" : { },
3369
- "eu-north-1" : { },
3370
- "eu-west-1" : { },
3371
- "eu-west-2" : { },
3372
- "eu-west-3" : { },
3373
- "sa-east-1" : { },
3374
- "us-east-1" : { },
3375
- "us-east-2" : { },
3376
- "us-west-1" : { },
3377
- "us-west-2" : { }
3378
- }
3379
- },
3380
- "translate" : {
3381
- "defaults" : {
3382
- "protocols" : [ "https" ]
3383
- },
3384
- "endpoints" : {
3385
- "ap-northeast-1" : { },
3386
- "ap-northeast-2" : { },
3387
- "ap-south-1" : { },
3388
- "ap-southeast-1" : { },
3389
- "ca-central-1" : { },
3390
- "eu-central-1" : { },
3391
- "eu-west-1" : { },
3392
- "us-east-1" : { },
3393
- "us-east-1-fips" : {
3394
- "credentialScope" : {
3395
- "region" : "us-east-1"
3396
- },
3397
- "hostname" : "translate-fips.us-east-1.amazonaws.com"
3398
- },
3399
- "us-east-2" : { },
3400
- "us-east-2-fips" : {
3401
- "credentialScope" : {
3402
- "region" : "us-east-2"
3403
- },
3404
- "hostname" : "translate-fips.us-east-2.amazonaws.com"
3405
- },
3406
- "us-west-2" : { },
3407
- "us-west-2-fips" : {
3408
- "credentialScope" : {
3409
- "region" : "us-west-2"
3410
- },
3411
- "hostname" : "translate-fips.us-west-2.amazonaws.com"
3412
- }
3413
- }
3414
- },
3415
- "waf" : {
3416
- "endpoints" : {
3417
- "aws-global" : {
3418
- "credentialScope" : {
3419
- "region" : "us-east-1"
3420
- },
3421
- "hostname" : "waf.amazonaws.com"
3422
- }
3423
- },
3424
- "isRegionalized" : false,
3425
- "partitionEndpoint" : "aws-global"
3426
- },
3427
- "waf-regional" : {
3428
- "endpoints" : {
3429
- "ap-northeast-1" : { },
3430
- "ap-northeast-2" : { },
3431
- "ap-south-1" : { },
3432
- "ap-southeast-1" : { },
3433
- "ap-southeast-2" : { },
3434
- "ca-central-1" : { },
3435
- "eu-central-1" : { },
3436
- "eu-north-1" : { },
3437
- "eu-west-1" : { },
3438
- "eu-west-2" : { },
3439
- "eu-west-3" : { },
3440
- "sa-east-1" : { },
3441
- "us-east-1" : { },
3442
- "us-east-2" : { },
3443
- "us-west-1" : { },
3444
- "us-west-2" : { }
3445
- }
3446
- },
3447
- "workdocs" : {
3448
- "endpoints" : {
3449
- "ap-northeast-1" : { },
3450
- "ap-southeast-1" : { },
3451
- "ap-southeast-2" : { },
3452
- "eu-west-1" : { },
3453
- "us-east-1" : { },
3454
- "us-west-2" : { }
3455
- }
3456
- },
3457
- "workmail" : {
3458
- "defaults" : {
3459
- "protocols" : [ "https" ]
3460
- },
3461
- "endpoints" : {
3462
- "eu-west-1" : { },
3463
- "us-east-1" : { },
3464
- "us-west-2" : { }
3465
- }
3466
- },
3467
- "workspaces" : {
3468
- "endpoints" : {
3469
- "ap-northeast-1" : { },
3470
- "ap-northeast-2" : { },
3471
- "ap-southeast-1" : { },
3472
- "ap-southeast-2" : { },
3473
- "ca-central-1" : { },
3474
- "eu-central-1" : { },
3475
- "eu-west-1" : { },
3476
- "eu-west-2" : { },
3477
- "sa-east-1" : { },
3478
- "us-east-1" : { },
3479
- "us-west-2" : { }
3480
- }
3481
- },
3482
- "xray" : {
3483
- "endpoints" : {
3484
- "ap-east-1" : { },
3485
- "ap-northeast-1" : { },
3486
- "ap-northeast-2" : { },
3487
- "ap-south-1" : { },
3488
- "ap-southeast-1" : { },
3489
- "ap-southeast-2" : { },
3490
- "ca-central-1" : { },
3491
- "eu-central-1" : { },
3492
- "eu-north-1" : { },
3493
- "eu-west-1" : { },
3494
- "eu-west-2" : { },
3495
- "eu-west-3" : { },
3496
- "me-south-1" : { },
3497
- "sa-east-1" : { },
3498
- "us-east-1" : { },
3499
- "us-east-2" : { },
3500
- "us-west-1" : { },
3501
- "us-west-2" : { }
3502
- }
3503
- }
3504
- }
3505
- }, {
3506
- "defaults" : {
3507
- "hostname" : "{service}.{region}.{dnsSuffix}",
3508
- "protocols" : [ "https" ],
3509
- "signatureVersions" : [ "v4" ]
3510
- },
3511
- "dnsSuffix" : "amazonaws.com.cn",
3512
- "partition" : "aws-cn",
3513
- "partitionName" : "AWS China",
3514
- "regionRegex" : "^cn\\-\\w+\\-\\d+$",
3515
- "regions" : {
3516
- "cn-north-1" : {
3517
- "description" : "China (Beijing)"
3518
- },
3519
- "cn-northwest-1" : {
3520
- "description" : "China (Ningxia)"
3521
- }
3522
- },
3523
- "services" : {
3524
- "api.ecr" : {
3525
- "endpoints" : {
3526
- "cn-north-1" : {
3527
- "credentialScope" : {
3528
- "region" : "cn-north-1"
3529
- },
3530
- "hostname" : "api.ecr.cn-north-1.amazonaws.com.cn"
3531
- },
3532
- "cn-northwest-1" : {
3533
- "credentialScope" : {
3534
- "region" : "cn-northwest-1"
3535
- },
3536
- "hostname" : "api.ecr.cn-northwest-1.amazonaws.com.cn"
3537
- }
3538
- }
3539
- },
3540
- "apigateway" : {
3541
- "endpoints" : {
3542
- "cn-north-1" : { },
3543
- "cn-northwest-1" : { }
3544
- }
3545
- },
3546
- "application-autoscaling" : {
3547
- "defaults" : {
3548
- "credentialScope" : {
3549
- "service" : "application-autoscaling"
3550
- },
3551
- "hostname" : "autoscaling.{region}.amazonaws.com",
3552
- "protocols" : [ "http", "https" ]
3553
- },
3554
- "endpoints" : {
3555
- "cn-north-1" : { },
3556
- "cn-northwest-1" : { }
3557
- }
3558
- },
3559
- "autoscaling" : {
3560
- "defaults" : {
3561
- "protocols" : [ "http", "https" ]
3562
- },
3563
- "endpoints" : {
3564
- "cn-north-1" : { },
3565
- "cn-northwest-1" : { }
3566
- }
3567
- },
3568
- "cloudformation" : {
3569
- "endpoints" : {
3570
- "cn-north-1" : { },
3571
- "cn-northwest-1" : { }
3572
- }
3573
- },
3574
- "cloudfront" : {
3575
- "endpoints" : {
3576
- "aws-cn-global" : {
3577
- "credentialScope" : {
3578
- "region" : "cn-northwest-1"
3579
- },
3580
- "hostname" : "cloudfront.cn-northwest-1.amazonaws.com.cn",
3581
- "protocols" : [ "http", "https" ]
3582
- }
3583
- },
3584
- "isRegionalized" : false,
3585
- "partitionEndpoint" : "aws-cn-global"
3586
- },
3587
- "cloudtrail" : {
3588
- "endpoints" : {
3589
- "cn-north-1" : { },
3590
- "cn-northwest-1" : { }
3591
- }
3592
- },
3593
- "codebuild" : {
3594
- "endpoints" : {
3595
- "cn-north-1" : { },
3596
- "cn-northwest-1" : { }
3597
- }
3598
- },
3599
- "codedeploy" : {
3600
- "endpoints" : {
3601
- "cn-north-1" : { },
3602
- "cn-northwest-1" : { }
3603
- }
3604
- },
3605
- "cognito-identity" : {
3606
- "endpoints" : {
3607
- "cn-north-1" : { }
3608
- }
3609
- },
3610
- "config" : {
3611
- "endpoints" : {
3612
- "cn-north-1" : { },
3613
- "cn-northwest-1" : { }
3614
- }
3615
- },
3616
- "data.iot" : {
3617
- "defaults" : {
3618
- "credentialScope" : {
3619
- "service" : "iotdata"
3620
- },
3621
- "protocols" : [ "https" ]
3622
- },
3623
- "endpoints" : {
3624
- "cn-north-1" : { },
3625
- "cn-northwest-1" : { }
3626
- }
3627
- },
3628
- "directconnect" : {
3629
- "endpoints" : {
3630
- "cn-north-1" : { },
3631
- "cn-northwest-1" : { }
3632
- }
3633
- },
3634
- "dms" : {
3635
- "endpoints" : {
3636
- "cn-north-1" : { },
3637
- "cn-northwest-1" : { }
3638
- }
3639
- },
3640
- "ds" : {
3641
- "endpoints" : {
3642
- "cn-north-1" : { },
3643
- "cn-northwest-1" : { }
3644
- }
3645
- },
3646
- "dynamodb" : {
3647
- "defaults" : {
3648
- "protocols" : [ "http", "https" ]
3649
- },
3650
- "endpoints" : {
3651
- "cn-north-1" : { },
3652
- "cn-northwest-1" : { }
3653
- }
3654
- },
3655
- "ec2" : {
3656
- "defaults" : {
3657
- "protocols" : [ "http", "https" ]
3658
- },
3659
- "endpoints" : {
3660
- "cn-north-1" : { },
3661
- "cn-northwest-1" : { }
3662
- }
3663
- },
3664
- "ecs" : {
3665
- "endpoints" : {
3666
- "cn-north-1" : { },
3667
- "cn-northwest-1" : { }
3668
- }
3669
- },
3670
- "elasticache" : {
3671
- "endpoints" : {
3672
- "cn-north-1" : { },
3673
- "cn-northwest-1" : { }
3674
- }
3675
- },
3676
- "elasticbeanstalk" : {
3677
- "endpoints" : {
3678
- "cn-north-1" : { },
3679
- "cn-northwest-1" : { }
3680
- }
3681
- },
3682
- "elasticloadbalancing" : {
3683
- "defaults" : {
3684
- "protocols" : [ "https" ]
3685
- },
3686
- "endpoints" : {
3687
- "cn-north-1" : { },
3688
- "cn-northwest-1" : { }
3689
- }
3690
- },
3691
- "elasticmapreduce" : {
3692
- "defaults" : {
3693
- "protocols" : [ "https" ]
3694
- },
3695
- "endpoints" : {
3696
- "cn-north-1" : { },
3697
- "cn-northwest-1" : { }
3698
- }
3699
- },
3700
- "es" : {
3701
- "endpoints" : {
3702
- "cn-north-1" : { },
3703
- "cn-northwest-1" : { }
3704
- }
3705
- },
3706
- "events" : {
3707
- "endpoints" : {
3708
- "cn-north-1" : { },
3709
- "cn-northwest-1" : { }
3710
- }
3711
- },
3712
- "firehose" : {
3713
- "endpoints" : {
3714
- "cn-north-1" : { },
3715
- "cn-northwest-1" : { }
3716
- }
3717
- },
3718
- "gamelift" : {
3719
- "endpoints" : {
3720
- "cn-north-1" : { }
3721
- }
3722
- },
3723
- "glacier" : {
3724
- "defaults" : {
3725
- "protocols" : [ "http", "https" ]
3726
- },
3727
- "endpoints" : {
3728
- "cn-north-1" : { },
3729
- "cn-northwest-1" : { }
3730
- }
3731
- },
3732
- "greengrass" : {
3733
- "defaults" : {
3734
- "protocols" : [ "https" ]
3735
- },
3736
- "endpoints" : {
3737
- "cn-north-1" : { }
3738
- },
3739
- "isRegionalized" : true
3740
- },
3741
- "iam" : {
3742
- "endpoints" : {
3743
- "aws-cn-global" : {
3744
- "credentialScope" : {
3745
- "region" : "cn-north-1"
3746
- },
3747
- "hostname" : "iam.cn-north-1.amazonaws.com.cn"
3748
- }
3749
- },
3750
- "isRegionalized" : false,
3751
- "partitionEndpoint" : "aws-cn-global"
3752
- },
3753
- "iot" : {
3754
- "defaults" : {
3755
- "credentialScope" : {
3756
- "service" : "execute-api"
3757
- }
3758
- },
3759
- "endpoints" : {
3760
- "cn-north-1" : { },
3761
- "cn-northwest-1" : { }
3762
- }
3763
- },
3764
- "kinesis" : {
3765
- "endpoints" : {
3766
- "cn-north-1" : { },
3767
- "cn-northwest-1" : { }
3768
- }
3769
- },
3770
- "kms" : {
3771
- "endpoints" : {
3772
- "cn-north-1" : { },
3773
- "cn-northwest-1" : { }
3774
- }
3775
- },
3776
- "lambda" : {
3777
- "endpoints" : {
3778
- "cn-north-1" : { },
3779
- "cn-northwest-1" : { }
3780
- }
3781
- },
3782
- "license-manager" : {
3783
- "endpoints" : {
3784
- "cn-north-1" : { },
3785
- "cn-northwest-1" : { }
3786
- }
3787
- },
3788
- "logs" : {
3789
- "endpoints" : {
3790
- "cn-north-1" : { },
3791
- "cn-northwest-1" : { }
3792
- }
3793
- },
3794
- "mediaconvert" : {
3795
- "endpoints" : {
3796
- "cn-northwest-1" : {
3797
- "credentialScope" : {
3798
- "region" : "cn-northwest-1"
3799
- },
3800
- "hostname" : "subscribe.mediaconvert.cn-northwest-1.amazonaws.com.cn"
3801
- }
3802
- }
3803
- },
3804
- "monitoring" : {
3805
- "defaults" : {
3806
- "protocols" : [ "http", "https" ]
3807
- },
3808
- "endpoints" : {
3809
- "cn-north-1" : { },
3810
- "cn-northwest-1" : { }
3811
- }
3812
- },
3813
- "polly" : {
3814
- "endpoints" : {
3815
- "cn-northwest-1" : { }
3816
- }
3817
- },
3818
- "rds" : {
3819
- "endpoints" : {
3820
- "cn-north-1" : { },
3821
- "cn-northwest-1" : { }
3822
- }
3823
- },
3824
- "redshift" : {
3825
- "endpoints" : {
3826
- "cn-north-1" : { },
3827
- "cn-northwest-1" : { }
3828
- }
3829
- },
3830
- "s3" : {
3831
- "defaults" : {
3832
- "protocols" : [ "http", "https" ],
3833
- "signatureVersions" : [ "s3v4" ]
3834
- },
3835
- "endpoints" : {
3836
- "cn-north-1" : { },
3837
- "cn-northwest-1" : { }
3838
- }
3839
- },
3840
- "s3-control" : {
3841
- "defaults" : {
3842
- "protocols" : [ "https" ],
3843
- "signatureVersions" : [ "s3v4" ]
3844
- },
3845
- "endpoints" : {
3846
- "cn-north-1" : {
3847
- "credentialScope" : {
3848
- "region" : "cn-north-1"
3849
- },
3850
- "hostname" : "s3-control.cn-north-1.amazonaws.com.cn",
3851
- "signatureVersions" : [ "s3v4" ]
3852
- },
3853
- "cn-northwest-1" : {
3854
- "credentialScope" : {
3855
- "region" : "cn-northwest-1"
3856
- },
3857
- "hostname" : "s3-control.cn-northwest-1.amazonaws.com.cn",
3858
- "signatureVersions" : [ "s3v4" ]
3859
- }
3860
- }
3861
- },
3862
- "sms" : {
3863
- "endpoints" : {
3864
- "cn-north-1" : { },
3865
- "cn-northwest-1" : { }
3866
- }
3867
- },
3868
- "snowball" : {
3869
- "endpoints" : {
3870
- "cn-north-1" : { }
3871
- }
3872
- },
3873
- "sns" : {
3874
- "defaults" : {
3875
- "protocols" : [ "http", "https" ]
3876
- },
3877
- "endpoints" : {
3878
- "cn-north-1" : { },
3879
- "cn-northwest-1" : { }
3880
- }
3881
- },
3882
- "sqs" : {
3883
- "defaults" : {
3884
- "protocols" : [ "http", "https" ],
3885
- "sslCommonName" : "{region}.queue.{dnsSuffix}"
3886
- },
3887
- "endpoints" : {
3888
- "cn-north-1" : { },
3889
- "cn-northwest-1" : { }
3890
- }
3891
- },
3892
- "ssm" : {
3893
- "endpoints" : {
3894
- "cn-north-1" : { },
3895
- "cn-northwest-1" : { }
3896
- }
3897
- },
3898
- "states" : {
3899
- "endpoints" : {
3900
- "cn-north-1" : { },
3901
- "cn-northwest-1" : { }
3902
- }
3903
- },
3904
- "storagegateway" : {
3905
- "endpoints" : {
3906
- "cn-north-1" : { }
3907
- }
3908
- },
3909
- "streams.dynamodb" : {
3910
- "defaults" : {
3911
- "credentialScope" : {
3912
- "service" : "dynamodb"
3913
- },
3914
- "protocols" : [ "http", "https" ]
3915
- },
3916
- "endpoints" : {
3917
- "cn-north-1" : { },
3918
- "cn-northwest-1" : { }
3919
- }
3920
- },
3921
- "sts" : {
3922
- "endpoints" : {
3923
- "cn-north-1" : { },
3924
- "cn-northwest-1" : { }
3925
- }
3926
- },
3927
- "support" : {
3928
- "endpoints" : {
3929
- "aws-cn-global" : {
3930
- "credentialScope" : {
3931
- "region" : "cn-north-1"
3932
- },
3933
- "hostname" : "support.cn-north-1.amazonaws.com"
3934
- }
3935
- },
3936
- "partitionEndpoint" : "aws-cn-global"
3937
- },
3938
- "swf" : {
3939
- "endpoints" : {
3940
- "cn-north-1" : { },
3941
- "cn-northwest-1" : { }
3942
- }
3943
- },
3944
- "tagging" : {
3945
- "endpoints" : {
3946
- "cn-north-1" : { },
3947
- "cn-northwest-1" : { }
3948
- }
3949
- }
3950
- }
3951
- }, {
3952
- "defaults" : {
3953
- "hostname" : "{service}.{region}.{dnsSuffix}",
3954
- "protocols" : [ "https" ],
3955
- "signatureVersions" : [ "v4" ]
3956
- },
3957
- "dnsSuffix" : "amazonaws.com",
3958
- "partition" : "aws-us-gov",
3959
- "partitionName" : "AWS GovCloud (US)",
3960
- "regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
3961
- "regions" : {
3962
- "us-gov-east-1" : {
3963
- "description" : "AWS GovCloud (US-East)"
3964
- },
3965
- "us-gov-west-1" : {
3966
- "description" : "AWS GovCloud (US)"
3967
- }
3968
- },
3969
- "services" : {
3970
- "acm" : {
3971
- "endpoints" : {
3972
- "us-gov-east-1" : { },
3973
- "us-gov-west-1" : { }
3974
- }
3975
- },
3976
- "acm-pca" : {
3977
- "defaults" : {
3978
- "protocols" : [ "https" ]
3979
- },
3980
- "endpoints" : {
3981
- "us-gov-east-1" : { },
3982
- "us-gov-west-1" : { }
3983
- }
3984
- },
3985
- "api.ecr" : {
3986
- "endpoints" : {
3987
- "us-gov-east-1" : {
3988
- "credentialScope" : {
3989
- "region" : "us-gov-east-1"
3990
- },
3991
- "hostname" : "api.ecr.us-gov-east-1.amazonaws.com"
3992
- },
3993
- "us-gov-west-1" : {
3994
- "credentialScope" : {
3995
- "region" : "us-gov-west-1"
3996
- },
3997
- "hostname" : "api.ecr.us-gov-west-1.amazonaws.com"
3998
- }
3999
- }
4000
- },
4001
- "api.sagemaker" : {
4002
- "endpoints" : {
4003
- "us-gov-west-1" : { }
4004
- }
4005
- },
4006
- "apigateway" : {
4007
- "endpoints" : {
4008
- "us-gov-east-1" : { },
4009
- "us-gov-west-1" : { }
4010
- }
4011
- },
4012
- "application-autoscaling" : {
4013
- "endpoints" : {
4014
- "us-gov-east-1" : { },
4015
- "us-gov-west-1" : { }
4016
- }
4017
- },
4018
- "athena" : {
4019
- "endpoints" : {
4020
- "us-gov-east-1" : { },
4021
- "us-gov-west-1" : { }
4022
- }
4023
- },
4024
- "autoscaling" : {
4025
- "endpoints" : {
4026
- "us-gov-east-1" : { },
4027
- "us-gov-west-1" : {
4028
- "protocols" : [ "http", "https" ]
4029
- }
4030
- }
4031
- },
4032
- "clouddirectory" : {
4033
- "endpoints" : {
4034
- "us-gov-west-1" : { }
4035
- }
4036
- },
4037
- "cloudformation" : {
4038
- "endpoints" : {
4039
- "us-gov-east-1" : { },
4040
- "us-gov-west-1" : { }
4041
- }
4042
- },
4043
- "cloudhsm" : {
4044
- "endpoints" : {
4045
- "us-gov-west-1" : { }
4046
- }
4047
- },
4048
- "cloudhsmv2" : {
4049
- "defaults" : {
4050
- "credentialScope" : {
4051
- "service" : "cloudhsm"
4052
- }
4053
- },
4054
- "endpoints" : {
4055
- "us-gov-east-1" : { },
4056
- "us-gov-west-1" : { }
4057
- }
4058
- },
4059
- "cloudtrail" : {
4060
- "endpoints" : {
4061
- "us-gov-east-1" : { },
4062
- "us-gov-west-1" : { }
4063
- }
4064
- },
4065
- "codebuild" : {
4066
- "endpoints" : {
4067
- "us-gov-east-1" : { },
4068
- "us-gov-west-1" : { }
4069
- }
4070
- },
4071
- "codecommit" : {
4072
- "endpoints" : {
4073
- "us-gov-east-1" : { },
4074
- "us-gov-west-1" : { }
4075
- }
4076
- },
4077
- "codedeploy" : {
4078
- "endpoints" : {
4079
- "us-gov-east-1" : { },
4080
- "us-gov-east-1-fips" : {
4081
- "credentialScope" : {
4082
- "region" : "us-gov-east-1"
4083
- },
4084
- "hostname" : "codedeploy-fips.us-gov-east-1.amazonaws.com"
4085
- },
4086
- "us-gov-west-1" : { },
4087
- "us-gov-west-1-fips" : {
4088
- "credentialScope" : {
4089
- "region" : "us-gov-west-1"
4090
- },
4091
- "hostname" : "codedeploy-fips.us-gov-west-1.amazonaws.com"
4092
- }
4093
- }
4094
- },
4095
- "comprehend" : {
4096
- "defaults" : {
4097
- "protocols" : [ "https" ]
4098
- },
4099
- "endpoints" : {
4100
- "us-gov-west-1" : { }
4101
- }
4102
- },
4103
- "config" : {
4104
- "endpoints" : {
4105
- "us-gov-east-1" : { },
4106
- "us-gov-west-1" : { }
4107
- }
4108
- },
4109
- "data.iot" : {
4110
- "defaults" : {
4111
- "credentialScope" : {
4112
- "service" : "iotdata"
4113
- },
4114
- "protocols" : [ "https" ]
4115
- },
4116
- "endpoints" : {
4117
- "us-gov-west-1" : { }
4118
- }
4119
- },
4120
- "datasync" : {
4121
- "endpoints" : {
4122
- "fips-us-gov-west-1" : {
4123
- "credentialScope" : {
4124
- "region" : "us-gov-west-1"
4125
- },
4126
- "hostname" : "datasync-fips.us-gov-west-1.amazonaws.com"
4127
- },
4128
- "us-gov-west-1" : { }
4129
- }
4130
- },
4131
- "directconnect" : {
4132
- "endpoints" : {
4133
- "us-gov-east-1" : { },
4134
- "us-gov-west-1" : { }
4135
- }
4136
- },
4137
- "dms" : {
4138
- "endpoints" : {
4139
- "us-gov-east-1" : { },
4140
- "us-gov-west-1" : { }
4141
- }
4142
- },
4143
- "ds" : {
4144
- "endpoints" : {
4145
- "us-gov-east-1" : { },
4146
- "us-gov-west-1" : { }
4147
- }
4148
- },
4149
- "dynamodb" : {
4150
- "endpoints" : {
4151
- "us-gov-east-1" : { },
4152
- "us-gov-east-1-fips" : {
4153
- "credentialScope" : {
4154
- "region" : "us-gov-east-1"
4155
- },
4156
- "hostname" : "dynamodb.us-gov-east-1.amazonaws.com"
4157
- },
4158
- "us-gov-west-1" : { },
4159
- "us-gov-west-1-fips" : {
4160
- "credentialScope" : {
4161
- "region" : "us-gov-west-1"
4162
- },
4163
- "hostname" : "dynamodb.us-gov-west-1.amazonaws.com"
4164
- }
4165
- }
4166
- },
4167
- "ec2" : {
4168
- "endpoints" : {
4169
- "us-gov-east-1" : { },
4170
- "us-gov-west-1" : { }
4171
- }
4172
- },
4173
- "ecs" : {
4174
- "endpoints" : {
4175
- "us-gov-east-1" : { },
4176
- "us-gov-west-1" : { }
4177
- }
4178
- },
4179
- "elasticache" : {
4180
- "endpoints" : {
4181
- "fips" : {
4182
- "credentialScope" : {
4183
- "region" : "us-gov-west-1"
4184
- },
4185
- "hostname" : "elasticache-fips.us-gov-west-1.amazonaws.com"
4186
- },
4187
- "us-gov-east-1" : { },
4188
- "us-gov-west-1" : { }
4189
- }
4190
- },
4191
- "elasticbeanstalk" : {
4192
- "endpoints" : {
4193
- "us-gov-east-1" : { },
4194
- "us-gov-west-1" : { }
4195
- }
4196
- },
4197
- "elasticfilesystem" : {
4198
- "endpoints" : {
4199
- "us-gov-west-1" : { }
4200
- }
4201
- },
4202
- "elasticloadbalancing" : {
4203
- "endpoints" : {
4204
- "us-gov-east-1" : { },
4205
- "us-gov-west-1" : {
4206
- "protocols" : [ "http", "https" ]
4207
- }
4208
- }
4209
- },
4210
- "elasticmapreduce" : {
4211
- "endpoints" : {
4212
- "us-gov-east-1" : { },
4213
- "us-gov-west-1" : {
4214
- "protocols" : [ "https" ]
4215
- }
4216
- }
4217
- },
4218
- "es" : {
4219
- "endpoints" : {
4220
- "fips" : {
4221
- "credentialScope" : {
4222
- "region" : "us-gov-west-1"
4223
- },
4224
- "hostname" : "es-fips.us-gov-west-1.amazonaws.com"
4225
- },
4226
- "us-gov-east-1" : { },
4227
- "us-gov-west-1" : { }
4228
- }
4229
- },
4230
- "events" : {
4231
- "endpoints" : {
4232
- "us-gov-east-1" : { },
4233
- "us-gov-west-1" : { }
4234
- }
4235
- },
4236
- "firehose" : {
4237
- "endpoints" : {
4238
- "us-gov-east-1" : { },
4239
- "us-gov-west-1" : { }
4240
- }
4241
- },
4242
- "glacier" : {
4243
- "endpoints" : {
4244
- "us-gov-east-1" : { },
4245
- "us-gov-west-1" : {
4246
- "protocols" : [ "http", "https" ]
4247
- }
4248
- }
4249
- },
4250
- "glue" : {
4251
- "endpoints" : {
4252
- "us-gov-east-1" : { },
4253
- "us-gov-west-1" : { }
4254
- }
4255
- },
4256
- "greengrass" : {
4257
- "defaults" : {
4258
- "protocols" : [ "https" ]
4259
- },
4260
- "endpoints" : {
4261
- "us-gov-west-1" : { }
4262
- },
4263
- "isRegionalized" : true
4264
- },
4265
- "guardduty" : {
4266
- "defaults" : {
4267
- "protocols" : [ "https" ]
4268
- },
4269
- "endpoints" : {
4270
- "us-gov-west-1" : { }
4271
- },
4272
- "isRegionalized" : true
4273
- },
4274
- "health" : {
4275
- "endpoints" : {
4276
- "us-gov-east-1" : { },
4277
- "us-gov-west-1" : { }
4278
- }
4279
- },
4280
- "iam" : {
4281
- "endpoints" : {
4282
- "aws-us-gov-global" : {
4283
- "credentialScope" : {
4284
- "region" : "us-gov-west-1"
4285
- },
4286
- "hostname" : "iam.us-gov.amazonaws.com"
4287
- }
4288
- },
4289
- "isRegionalized" : false,
4290
- "partitionEndpoint" : "aws-us-gov-global"
4291
- },
4292
- "inspector" : {
4293
- "endpoints" : {
4294
- "us-gov-east-1" : { },
4295
- "us-gov-west-1" : { }
4296
- }
4297
- },
4298
- "iot" : {
4299
- "defaults" : {
4300
- "credentialScope" : {
4301
- "service" : "execute-api"
4302
- }
4303
- },
4304
- "endpoints" : {
4305
- "us-gov-west-1" : { }
4306
- }
4307
- },
4308
- "kinesis" : {
4309
- "endpoints" : {
4310
- "us-gov-east-1" : { },
4311
- "us-gov-west-1" : { }
4312
- }
4313
- },
4314
- "kms" : {
4315
- "endpoints" : {
4316
- "ProdFips" : {
4317
- "credentialScope" : {
4318
- "region" : "us-gov-west-1"
4319
- },
4320
- "hostname" : "kms-fips.us-gov-west-1.amazonaws.com"
4321
- },
4322
- "us-gov-east-1" : { },
4323
- "us-gov-west-1" : { }
4324
- }
4325
- },
4326
- "lambda" : {
4327
- "endpoints" : {
4328
- "us-gov-east-1" : { },
4329
- "us-gov-west-1" : { }
4330
- }
4331
- },
4332
- "license-manager" : {
4333
- "endpoints" : {
4334
- "us-gov-east-1" : { },
4335
- "us-gov-west-1" : { }
4336
- }
4337
- },
4338
- "logs" : {
4339
- "endpoints" : {
4340
- "us-gov-east-1" : { },
4341
- "us-gov-west-1" : { }
4342
- }
4343
- },
4344
- "mediaconvert" : {
4345
- "endpoints" : {
4346
- "us-gov-west-1" : { }
4347
- }
4348
- },
4349
- "metering.marketplace" : {
4350
- "defaults" : {
4351
- "credentialScope" : {
4352
- "service" : "aws-marketplace"
4353
- }
4354
- },
4355
- "endpoints" : {
4356
- "us-gov-east-1" : { },
4357
- "us-gov-west-1" : { }
4358
- }
4359
- },
4360
- "monitoring" : {
4361
- "endpoints" : {
4362
- "us-gov-east-1" : { },
4363
- "us-gov-west-1" : { }
4364
- }
4365
- },
4366
- "neptune" : {
4367
- "endpoints" : {
4368
- "us-gov-east-1" : {
4369
- "credentialScope" : {
4370
- "region" : "us-gov-east-1"
4371
- },
4372
- "hostname" : "rds.us-gov-east-1.amazonaws.com"
4373
- },
4374
- "us-gov-west-1" : {
4375
- "credentialScope" : {
4376
- "region" : "us-gov-west-1"
4377
- },
4378
- "hostname" : "rds.us-gov-west-1.amazonaws.com"
4379
- }
4380
- }
4381
- },
4382
- "organizations" : {
4383
- "endpoints" : {
4384
- "aws-us-gov-global" : {
4385
- "credentialScope" : {
4386
- "region" : "us-gov-west-1"
4387
- },
4388
- "hostname" : "organizations.us-gov-west-1.amazonaws.com"
4389
- }
4390
- },
4391
- "isRegionalized" : false,
4392
- "partitionEndpoint" : "aws-us-gov-global"
4393
- },
4394
- "polly" : {
4395
- "endpoints" : {
4396
- "us-gov-west-1" : { }
4397
- }
4398
- },
4399
- "ram" : {
4400
- "endpoints" : {
4401
- "us-gov-west-1" : { }
4402
- }
4403
- },
4404
- "rds" : {
4405
- "endpoints" : {
4406
- "us-gov-east-1" : { },
4407
- "us-gov-west-1" : { }
4408
- }
4409
- },
4410
- "redshift" : {
4411
- "endpoints" : {
4412
- "us-gov-east-1" : { },
4413
- "us-gov-west-1" : { }
4414
- }
4415
- },
4416
- "rekognition" : {
4417
- "endpoints" : {
4418
- "us-gov-west-1" : { }
4419
- }
4420
- },
4421
- "route53" : {
4422
- "endpoints" : {
4423
- "aws-us-gov-global" : {
4424
- "credentialScope" : {
4425
- "region" : "us-gov-west-1"
4426
- },
4427
- "hostname" : "route53.us-gov.amazonaws.com"
4428
- }
4429
- },
4430
- "isRegionalized" : false,
4431
- "partitionEndpoint" : "aws-us-gov-global"
4432
- },
4433
- "runtime.sagemaker" : {
4434
- "endpoints" : {
4435
- "us-gov-west-1" : { }
4436
- }
4437
- },
4438
- "s3" : {
4439
- "defaults" : {
4440
- "signatureVersions" : [ "s3", "s3v4" ]
4441
- },
4442
- "endpoints" : {
4443
- "fips-us-gov-west-1" : {
4444
- "credentialScope" : {
4445
- "region" : "us-gov-west-1"
4446
- },
4447
- "hostname" : "s3-fips-us-gov-west-1.amazonaws.com"
4448
- },
4449
- "us-gov-east-1" : {
4450
- "hostname" : "s3.us-gov-east-1.amazonaws.com",
4451
- "protocols" : [ "http", "https" ]
4452
- },
4453
- "us-gov-west-1" : {
4454
- "hostname" : "s3.us-gov-west-1.amazonaws.com",
4455
- "protocols" : [ "http", "https" ]
4456
- }
4457
- }
4458
- },
4459
- "s3-control" : {
4460
- "defaults" : {
4461
- "protocols" : [ "https" ],
4462
- "signatureVersions" : [ "s3v4" ]
4463
- },
4464
- "endpoints" : {
4465
- "us-gov-east-1" : {
4466
- "credentialScope" : {
4467
- "region" : "us-gov-east-1"
4468
- },
4469
- "hostname" : "s3-control.us-gov-east-1.amazonaws.com",
4470
- "signatureVersions" : [ "s3v4" ]
4471
- },
4472
- "us-gov-east-1-fips" : {
4473
- "credentialScope" : {
4474
- "region" : "us-gov-east-1"
4475
- },
4476
- "hostname" : "s3-control-fips.us-gov-east-1.amazonaws.com",
4477
- "signatureVersions" : [ "s3v4" ]
4478
- },
4479
- "us-gov-west-1" : {
4480
- "credentialScope" : {
4481
- "region" : "us-gov-west-1"
4482
- },
4483
- "hostname" : "s3-control.us-gov-west-1.amazonaws.com",
4484
- "signatureVersions" : [ "s3v4" ]
4485
- },
4486
- "us-gov-west-1-fips" : {
4487
- "credentialScope" : {
4488
- "region" : "us-gov-west-1"
4489
- },
4490
- "hostname" : "s3-control-fips.us-gov-west-1.amazonaws.com",
4491
- "signatureVersions" : [ "s3v4" ]
4492
- }
4493
- }
4494
- },
4495
- "secretsmanager" : {
4496
- "endpoints" : {
4497
- "us-gov-west-1" : { },
4498
- "us-gov-west-1-fips" : {
4499
- "credentialScope" : {
4500
- "region" : "us-gov-west-1"
4501
- },
4502
- "hostname" : "secretsmanager-fips.us-gov-west-1.amazonaws.com"
4503
- }
4504
- }
4505
- },
4506
- "serverlessrepo" : {
4507
- "defaults" : {
4508
- "protocols" : [ "https" ]
4509
- },
4510
- "endpoints" : {
4511
- "us-gov-east-1" : {
4512
- "protocols" : [ "https" ]
4513
- },
4514
- "us-gov-west-1" : {
4515
- "protocols" : [ "https" ]
4516
- }
4517
- }
4518
- },
4519
- "sms" : {
4520
- "endpoints" : {
4521
- "us-gov-east-1" : { },
4522
- "us-gov-west-1" : { }
4523
- }
4524
- },
4525
- "snowball" : {
4526
- "endpoints" : {
4527
- "us-gov-east-1" : { },
4528
- "us-gov-west-1" : { }
4529
- }
4530
- },
4531
- "sns" : {
4532
- "endpoints" : {
4533
- "us-gov-east-1" : { },
4534
- "us-gov-west-1" : {
4535
- "protocols" : [ "http", "https" ]
4536
- }
4537
- }
4538
- },
4539
- "sqs" : {
4540
- "endpoints" : {
4541
- "us-gov-east-1" : { },
4542
- "us-gov-west-1" : {
4543
- "protocols" : [ "http", "https" ],
4544
- "sslCommonName" : "{region}.queue.{dnsSuffix}"
4545
- }
4546
- }
4547
- },
4548
- "ssm" : {
4549
- "endpoints" : {
4550
- "us-gov-east-1" : { },
4551
- "us-gov-west-1" : { }
4552
- }
4553
- },
4554
- "states" : {
4555
- "endpoints" : {
4556
- "us-gov-east-1" : { },
4557
- "us-gov-west-1" : { }
4558
- }
4559
- },
4560
- "storagegateway" : {
4561
- "endpoints" : {
4562
- "us-gov-west-1" : { }
4563
- }
4564
- },
4565
- "streams.dynamodb" : {
4566
- "defaults" : {
4567
- "credentialScope" : {
4568
- "service" : "dynamodb"
4569
- }
4570
- },
4571
- "endpoints" : {
4572
- "us-gov-east-1" : { },
4573
- "us-gov-east-1-fips" : {
4574
- "credentialScope" : {
4575
- "region" : "us-gov-east-1"
4576
- },
4577
- "hostname" : "dynamodb.us-gov-east-1.amazonaws.com"
4578
- },
4579
- "us-gov-west-1" : { },
4580
- "us-gov-west-1-fips" : {
4581
- "credentialScope" : {
4582
- "region" : "us-gov-west-1"
4583
- },
4584
- "hostname" : "dynamodb.us-gov-west-1.amazonaws.com"
4585
- }
4586
- }
4587
- },
4588
- "sts" : {
4589
- "endpoints" : {
4590
- "us-gov-east-1" : { },
4591
- "us-gov-west-1" : { }
4592
- }
4593
- },
4594
- "swf" : {
4595
- "endpoints" : {
4596
- "us-gov-east-1" : { },
4597
- "us-gov-west-1" : { }
4598
- }
4599
- },
4600
- "tagging" : {
4601
- "endpoints" : {
4602
- "us-gov-east-1" : { },
4603
- "us-gov-west-1" : { }
4604
- }
4605
- },
4606
- "translate" : {
4607
- "defaults" : {
4608
- "protocols" : [ "https" ]
4609
- },
4610
- "endpoints" : {
4611
- "us-gov-west-1" : { },
4612
- "us-gov-west-1-fips" : {
4613
- "credentialScope" : {
4614
- "region" : "us-gov-west-1"
4615
- },
4616
- "hostname" : "translate-fips.us-gov-west-1.amazonaws.com"
4617
- }
4618
- }
4619
- },
4620
- "waf-regional" : {
4621
- "endpoints" : {
4622
- "us-gov-west-1" : { }
4623
- }
4624
- },
4625
- "workspaces" : {
4626
- "endpoints" : {
4627
- "us-gov-west-1" : { }
4628
- }
4629
- }
4630
- }
4631
- } ],
4632
- "version" : 3
4633
- }