aws-sdk-core 2.11.335 → 3.62.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1144) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -547
  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 +147 -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 -1021
  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 -3994
  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 -2304
  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 -247
  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 -1204
  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 -24837
  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 -3131
  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/fsx/2018-03-01/api-2.json +0 -1050
  477. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  478. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  479. data/apis/gamelift/2015-10-01/api-2.json +0 -3447
  480. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  481. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  482. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  483. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  484. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  485. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  486. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  487. data/apis/glacier/2012-06-01/smoke.json +0 -18
  488. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  489. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  490. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  491. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  492. data/apis/glue/2017-03-31/api-2.json +0 -6291
  493. data/apis/glue/2017-03-31/examples-1.json +0 -5
  494. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  495. data/apis/glue/2017-03-31/smoke.json +0 -11
  496. data/apis/greengrass/2017-06-07/api-2.json +0 -5103
  497. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  498. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  499. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  500. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  501. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  502. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  503. data/apis/health/2016-08-04/api-2.json +0 -554
  504. data/apis/health/2016-08-04/examples-1.json +0 -5
  505. data/apis/health/2016-08-04/paginators-1.json +0 -31
  506. data/apis/health/2016-08-04/smoke.json +0 -11
  507. data/apis/iam/2010-05-08/api-2.json +0 -5778
  508. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  509. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  510. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  511. data/apis/iam/2010-05-08/smoke.json +0 -18
  512. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  513. data/apis/importexport/2010-06-01/api-2.json +0 -667
  514. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  515. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  516. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  517. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  518. data/apis/inspector/2016-02-16/smoke.json +0 -18
  519. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  520. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  521. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  522. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  523. data/apis/iot/2015-05-28/api-2.json +0 -9676
  524. data/apis/iot/2015-05-28/examples-1.json +0 -5
  525. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  526. data/apis/iot/2015-05-28/smoke.json +0 -18
  527. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  528. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  529. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  530. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  531. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  532. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  533. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  534. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  535. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  536. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  537. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  538. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  539. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  540. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  541. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  542. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  543. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  544. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  545. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  546. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  547. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  548. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  549. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  550. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  551. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  552. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  553. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  554. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  555. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  556. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  557. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  558. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  559. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  560. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  561. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  562. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  563. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  564. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  565. data/apis/kms/2014-11-01/api-2.json +0 -1834
  566. data/apis/kms/2014-11-01/examples-1.json +0 -906
  567. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  568. data/apis/kms/2014-11-01/smoke.json +0 -19
  569. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  570. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  571. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  572. data/apis/lambda/2014-11-11/api-2.json +0 -668
  573. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  574. data/apis/lambda/2015-03-31/api-2.json +0 -2345
  575. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  576. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  577. data/apis/lambda/2015-03-31/smoke.json +0 -18
  578. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  579. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  580. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  581. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  582. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  583. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  584. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  585. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  586. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  587. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  588. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  589. data/apis/logs/2014-03-28/api-2.json +0 -1701
  590. data/apis/logs/2014-03-28/examples-1.json +0 -5
  591. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  592. data/apis/logs/2014-03-28/smoke.json +0 -19
  593. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  594. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  595. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  596. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  597. data/apis/macie/2017-12-19/api-2.json +0 -365
  598. data/apis/macie/2017-12-19/examples-1.json +0 -5
  599. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  600. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  601. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  602. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  603. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  604. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  605. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  606. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
  607. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  608. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
  609. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  610. data/apis/medialive/2017-10-14/api-2.json +0 -8711
  611. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  612. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  613. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
  614. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  615. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  616. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  617. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  618. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  619. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  620. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  621. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  622. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  623. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  624. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  625. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  626. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  627. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  628. data/apis/mobile/2017-07-01/api-2.json +0 -551
  629. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  630. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  631. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  632. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  633. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  634. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  635. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  636. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  637. data/apis/mq/2017-11-27/api-2.json +0 -2490
  638. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  639. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  640. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  641. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  642. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  643. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  644. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  645. data/apis/neptune/2014-10-31/smoke.json +0 -18
  646. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  647. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  648. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  649. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  650. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  651. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  652. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  653. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  654. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  655. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  656. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  657. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  658. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  659. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  660. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  661. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  662. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  663. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -132
  664. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  665. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  666. data/apis/personalize/2018-05-22/api-2.json +0 -1695
  667. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  668. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  669. data/apis/pi/2018-02-27/api-2.json +0 -253
  670. data/apis/pi/2018-02-27/examples-1.json +0 -5
  671. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  672. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  673. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  674. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  675. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  676. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  677. data/apis/polly/2016-06-10/api-2.json +0 -830
  678. data/apis/polly/2016-06-10/examples-1.json +0 -171
  679. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  680. data/apis/polly/2016-06-10/smoke.json +0 -11
  681. data/apis/pricing/2017-10-15/api-2.json +0 -227
  682. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  683. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  684. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  685. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  686. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  687. data/apis/ram/2018-01-04/api-2.json +0 -964
  688. data/apis/ram/2018-01-04/examples-1.json +0 -5
  689. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  690. data/apis/rds-data/2018-08-01/api-2.json +0 -787
  691. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  692. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  693. data/apis/rds/2013-01-10/api-2.json +0 -2903
  694. data/apis/rds/2013-01-10/examples-1.json +0 -5
  695. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  696. data/apis/rds/2013-01-10/smoke.json +0 -18
  697. data/apis/rds/2013-02-12/api-2.json +0 -3059
  698. data/apis/rds/2013-02-12/examples-1.json +0 -5
  699. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  700. data/apis/rds/2013-02-12/smoke.json +0 -18
  701. data/apis/rds/2013-09-09/api-2.json +0 -3160
  702. data/apis/rds/2013-09-09/examples-1.json +0 -5
  703. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  704. data/apis/rds/2013-09-09/smoke.json +0 -18
  705. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  706. data/apis/rds/2014-09-01/api-2.json +0 -3273
  707. data/apis/rds/2014-09-01/examples-1.json +0 -5
  708. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  709. data/apis/rds/2014-09-01/smoke.json +0 -18
  710. data/apis/rds/2014-10-31/api-2.json +0 -6575
  711. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  712. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  713. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  714. data/apis/rds/2014-10-31/smoke.json +0 -18
  715. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  716. data/apis/rds/2015-11-12/api-2.json +0 -5509
  717. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  718. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  719. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  720. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  721. data/apis/redshift/2012-12-01/api-2.json +0 -4891
  722. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  723. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  724. data/apis/redshift/2012-12-01/smoke.json +0 -18
  725. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  726. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  727. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  728. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  729. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  730. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  731. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  732. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  733. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  734. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  735. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  736. data/apis/robomaker/2018-06-29/api-2.json +0 -2093
  737. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  738. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  739. data/apis/route53/2013-04-01/api-2.json +0 -3780
  740. data/apis/route53/2013-04-01/examples-1.json +0 -762
  741. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  742. data/apis/route53/2013-04-01/smoke.json +0 -18
  743. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  744. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  745. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  746. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  747. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  748. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  749. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  750. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  751. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  752. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  753. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  754. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  755. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  756. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  757. data/apis/s3/2006-03-01/api-2.json +0 -6576
  758. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  759. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  760. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  761. data/apis/s3/2006-03-01/smoke.json +0 -11
  762. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  763. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  764. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  765. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  766. data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
  767. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  768. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  769. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  770. data/apis/sdb/2009-04-15/api-2.json +0 -955
  771. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  772. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  773. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  774. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  775. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  776. data/apis/securityhub/2018-10-26/api-2.json +0 -2095
  777. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  778. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  779. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  780. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  781. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  782. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  783. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  784. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  785. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  786. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  787. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  788. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  789. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  790. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  791. data/apis/shield/2016-06-02/api-2.json +0 -893
  792. data/apis/shield/2016-06-02/examples-1.json +0 -5
  793. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  794. data/apis/shield/2016-06-02/smoke.json +0 -11
  795. data/apis/signer/2017-08-25/api-2.json +0 -670
  796. data/apis/signer/2017-08-25/examples-1.json +0 -5
  797. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  798. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  799. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  800. data/apis/sms/2016-10-24/api-2.json +0 -1366
  801. data/apis/sms/2016-10-24/examples-1.json +0 -5
  802. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  803. data/apis/sms/2016-10-24/smoke.json +0 -18
  804. data/apis/snowball/2016-06-30/api-2.json +0 -929
  805. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  806. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  807. data/apis/snowball/2016-06-30/smoke.json +0 -11
  808. data/apis/sns/2010-03-31/api-2.json +0 -1468
  809. data/apis/sns/2010-03-31/examples-1.json +0 -5
  810. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  811. data/apis/sns/2010-03-31/resources-1.json +0 -327
  812. data/apis/sns/2010-03-31/smoke.json +0 -19
  813. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  814. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  815. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  816. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  817. data/apis/sqs/2012-11-05/smoke.json +0 -18
  818. data/apis/ssm/2014-11-06/api-2.json +0 -8913
  819. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  820. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  821. data/apis/ssm/2014-11-06/smoke.json +0 -18
  822. data/apis/states/2016-11-23/api-2.json +0 -1372
  823. data/apis/states/2016-11-23/examples-1.json +0 -5
  824. data/apis/states/2016-11-23/paginators-1.json +0 -28
  825. data/apis/states/2016-11-23/smoke.json +0 -11
  826. data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
  827. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  828. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  829. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  830. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  831. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  832. data/apis/sts/2011-06-15/api-2.json +0 -562
  833. data/apis/sts/2011-06-15/examples-1.json +0 -207
  834. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  835. data/apis/sts/2011-06-15/smoke.json +0 -19
  836. data/apis/support/2013-04-15/api-2.json +0 -772
  837. data/apis/support/2013-04-15/examples-1.json +0 -5
  838. data/apis/support/2013-04-15/paginators-1.json +0 -25
  839. data/apis/swf/2012-01-25/api-2.json +0 -2792
  840. data/apis/swf/2012-01-25/examples-1.json +0 -5
  841. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  842. data/apis/textract/2018-06-27/api-2.json +0 -572
  843. data/apis/textract/2018-06-27/examples-1.json +0 -5
  844. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  845. data/apis/transcribe/2017-10-26/api-2.json +0 -504
  846. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  847. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  848. data/apis/transfer/2018-11-05/api-2.json +0 -851
  849. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  850. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  851. data/apis/translate/2017-07-01/api-2.json +0 -408
  852. data/apis/translate/2017-07-01/examples-1.json +0 -5
  853. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  854. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  855. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  856. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  857. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  858. data/apis/waf/2015-08-24/api-2.json +0 -3857
  859. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  860. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  861. data/apis/waf/2015-08-24/smoke.json +0 -21
  862. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  863. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  864. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  865. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  866. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  867. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  868. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  869. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  870. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  871. data/apis/workspaces/2015-04-08/api-2.json +0 -1699
  872. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  873. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  874. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  875. data/apis/xray/2016-04-12/api-2.json +0 -1352
  876. data/apis/xray/2016-04-12/examples-1.json +0 -5
  877. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  878. data/bin/aws.rb +0 -180
  879. data/endpoints.json +0 -4601
  880. data/lib/aws-sdk-core/acm.rb +0 -7
  881. data/lib/aws-sdk-core/acmpca.rb +0 -7
  882. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  883. data/lib/aws-sdk-core/amplify.rb +0 -6
  884. data/lib/aws-sdk-core/api/builder.rb +0 -129
  885. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  886. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  887. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  888. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  889. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  890. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  891. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  892. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  893. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  894. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  895. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  896. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  897. data/lib/aws-sdk-core/apigateway.rb +0 -6
  898. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  899. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  900. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  901. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  902. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  903. data/lib/aws-sdk-core/appmesh.rb +0 -6
  904. data/lib/aws-sdk-core/appstream.rb +0 -7
  905. data/lib/aws-sdk-core/appsync.rb +0 -6
  906. data/lib/aws-sdk-core/athena.rb +0 -6
  907. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  908. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  909. data/lib/aws-sdk-core/backup.rb +0 -6
  910. data/lib/aws-sdk-core/batch.rb +0 -6
  911. data/lib/aws-sdk-core/budgets.rb +0 -6
  912. data/lib/aws-sdk-core/checksums.rb +0 -51
  913. data/lib/aws-sdk-core/chime.rb +0 -6
  914. data/lib/aws-sdk-core/client.rb +0 -62
  915. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  916. data/lib/aws-sdk-core/cloud9.rb +0 -6
  917. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  918. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  919. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  920. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  921. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  922. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  923. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  924. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  925. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  926. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  927. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  928. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  929. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  930. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  931. data/lib/aws-sdk-core/codebuild.rb +0 -6
  932. data/lib/aws-sdk-core/codecommit.rb +0 -6
  933. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  934. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  935. data/lib/aws-sdk-core/codestar.rb +0 -6
  936. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  937. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  938. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  939. data/lib/aws-sdk-core/comprehend.rb +0 -6
  940. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  941. data/lib/aws-sdk-core/configservice.rb +0 -6
  942. data/lib/aws-sdk-core/connect.rb +0 -6
  943. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  944. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  945. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  946. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  947. data/lib/aws-sdk-core/datasync.rb +0 -6
  948. data/lib/aws-sdk-core/dax.rb +0 -6
  949. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  950. data/lib/aws-sdk-core/directconnect.rb +0 -6
  951. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  952. data/lib/aws-sdk-core/dlm.rb +0 -6
  953. data/lib/aws-sdk-core/docdb.rb +0 -7
  954. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  955. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  956. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  957. data/lib/aws-sdk-core/ec2.rb +0 -8
  958. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  959. data/lib/aws-sdk-core/ecr.rb +0 -6
  960. data/lib/aws-sdk-core/ecs.rb +0 -7
  961. data/lib/aws-sdk-core/efs.rb +0 -6
  962. data/lib/aws-sdk-core/eks.rb +0 -7
  963. data/lib/aws-sdk-core/elasticache.rb +0 -7
  964. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  965. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  966. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  967. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  968. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  969. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  970. data/lib/aws-sdk-core/emr.rb +0 -7
  971. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  972. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  973. data/lib/aws-sdk-core/firehose.rb +0 -6
  974. data/lib/aws-sdk-core/fms.rb +0 -6
  975. data/lib/aws-sdk-core/fsx.rb +0 -6
  976. data/lib/aws-sdk-core/gamelift.rb +0 -6
  977. data/lib/aws-sdk-core/glacier.rb +0 -8
  978. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  979. data/lib/aws-sdk-core/glue.rb +0 -6
  980. data/lib/aws-sdk-core/greengrass.rb +0 -4
  981. data/lib/aws-sdk-core/groundstation.rb +0 -6
  982. data/lib/aws-sdk-core/guardduty.rb +0 -6
  983. data/lib/aws-sdk-core/health.rb +0 -6
  984. data/lib/aws-sdk-core/iam.rb +0 -8
  985. data/lib/aws-sdk-core/importexport.rb +0 -5
  986. data/lib/aws-sdk-core/inspector.rb +0 -6
  987. data/lib/aws-sdk-core/iot.rb +0 -6
  988. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  989. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  990. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  991. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  992. data/lib/aws-sdk-core/iotevents.rb +0 -6
  993. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  994. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  995. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  996. data/lib/aws-sdk-core/kafka.rb +0 -5
  997. data/lib/aws-sdk-core/kinesis.rb +0 -7
  998. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  999. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1000. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1001. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1002. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1003. data/lib/aws-sdk-core/kms.rb +0 -6
  1004. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1005. data/lib/aws-sdk-core/lambda.rb +0 -7
  1006. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1007. data/lib/aws-sdk-core/lex.rb +0 -6
  1008. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1009. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1010. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1011. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1012. data/lib/aws-sdk-core/macie.rb +0 -6
  1013. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1014. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1015. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1016. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1017. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1018. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1019. data/lib/aws-sdk-core/medialive.rb +0 -6
  1020. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1021. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1022. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1023. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1024. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1025. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1026. data/lib/aws-sdk-core/mobile.rb +0 -6
  1027. data/lib/aws-sdk-core/mq.rb +0 -5
  1028. data/lib/aws-sdk-core/mturk.rb +0 -6
  1029. data/lib/aws-sdk-core/neptune.rb +0 -7
  1030. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1031. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1032. data/lib/aws-sdk-core/organizations.rb +0 -6
  1033. data/lib/aws-sdk-core/partitions.rb +0 -174
  1034. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1035. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1036. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1037. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1038. data/lib/aws-sdk-core/personalize.rb +0 -6
  1039. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1040. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1041. data/lib/aws-sdk-core/pi.rb +0 -6
  1042. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1043. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1044. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1045. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1046. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1047. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1048. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1049. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1050. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1051. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1052. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1053. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1054. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1055. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1056. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1057. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1058. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1059. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1060. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1061. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1062. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1063. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1064. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1065. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1066. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1067. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1068. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1069. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1070. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1071. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1072. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1073. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1074. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1075. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1076. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1077. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1078. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1079. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1080. data/lib/aws-sdk-core/polly.rb +0 -14
  1081. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1082. data/lib/aws-sdk-core/pricing.rb +0 -6
  1083. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1084. data/lib/aws-sdk-core/ram.rb +0 -6
  1085. data/lib/aws-sdk-core/rds.rb +0 -16
  1086. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1087. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1088. data/lib/aws-sdk-core/redshift.rb +0 -7
  1089. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1090. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1091. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1092. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1093. data/lib/aws-sdk-core/route53.rb +0 -7
  1094. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1095. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1096. data/lib/aws-sdk-core/s3.rb +0 -26
  1097. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1098. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1099. data/lib/aws-sdk-core/s3control.rb +0 -6
  1100. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1101. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1102. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1103. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1104. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1105. data/lib/aws-sdk-core/service.rb +0 -4
  1106. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1107. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1108. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1109. data/lib/aws-sdk-core/ses.rb +0 -7
  1110. data/lib/aws-sdk-core/shield.rb +0 -6
  1111. data/lib/aws-sdk-core/signer.rb +0 -7
  1112. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1113. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1114. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1115. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1116. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1117. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1118. data/lib/aws-sdk-core/sms.rb +0 -6
  1119. data/lib/aws-sdk-core/snowball.rb +0 -6
  1120. data/lib/aws-sdk-core/sns.rb +0 -7
  1121. data/lib/aws-sdk-core/sqs.rb +0 -7
  1122. data/lib/aws-sdk-core/ssm.rb +0 -6
  1123. data/lib/aws-sdk-core/states.rb +0 -6
  1124. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1125. data/lib/aws-sdk-core/sts.rb +0 -6
  1126. data/lib/aws-sdk-core/support.rb +0 -6
  1127. data/lib/aws-sdk-core/swf.rb +0 -6
  1128. data/lib/aws-sdk-core/textract.rb +0 -6
  1129. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1130. data/lib/aws-sdk-core/transfer.rb +0 -6
  1131. data/lib/aws-sdk-core/translate.rb +0 -6
  1132. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1133. data/lib/aws-sdk-core/version.rb +0 -3
  1134. data/lib/aws-sdk-core/waf.rb +0 -6
  1135. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1136. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1137. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1138. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1139. data/lib/aws-sdk-core/worklink.rb +0 -6
  1140. data/lib/aws-sdk-core/workmail.rb +0 -6
  1141. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1142. data/lib/aws-sdk-core/xray.rb +0 -6
  1143. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1144. data/service-models.json +0 -749
@@ -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,4601 +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-2" : { },
1640
- "us-west-1" : { },
1641
- "us-west-2" : { }
1642
- },
1643
- "isRegionalized" : true
1644
- },
1645
- "health" : {
1646
- "endpoints" : {
1647
- "us-east-1" : { }
1648
- }
1649
- },
1650
- "iam" : {
1651
- "endpoints" : {
1652
- "aws-global" : {
1653
- "credentialScope" : {
1654
- "region" : "us-east-1"
1655
- },
1656
- "hostname" : "iam.amazonaws.com"
1657
- }
1658
- },
1659
- "isRegionalized" : false,
1660
- "partitionEndpoint" : "aws-global"
1661
- },
1662
- "importexport" : {
1663
- "endpoints" : {
1664
- "aws-global" : {
1665
- "credentialScope" : {
1666
- "region" : "us-east-1",
1667
- "service" : "IngestionService"
1668
- },
1669
- "hostname" : "importexport.amazonaws.com",
1670
- "signatureVersions" : [ "v2", "v4" ]
1671
- }
1672
- },
1673
- "isRegionalized" : false,
1674
- "partitionEndpoint" : "aws-global"
1675
- },
1676
- "inspector" : {
1677
- "endpoints" : {
1678
- "ap-northeast-1" : { },
1679
- "ap-northeast-2" : { },
1680
- "ap-south-1" : { },
1681
- "ap-southeast-2" : { },
1682
- "eu-central-1" : { },
1683
- "eu-north-1" : { },
1684
- "eu-west-1" : { },
1685
- "eu-west-2" : { },
1686
- "us-east-1" : { },
1687
- "us-east-2" : { },
1688
- "us-west-1" : { },
1689
- "us-west-2" : { }
1690
- }
1691
- },
1692
- "iot" : {
1693
- "defaults" : {
1694
- "credentialScope" : {
1695
- "service" : "execute-api"
1696
- }
1697
- },
1698
- "endpoints" : {
1699
- "ap-northeast-1" : { },
1700
- "ap-northeast-2" : { },
1701
- "ap-south-1" : { },
1702
- "ap-southeast-1" : { },
1703
- "ap-southeast-2" : { },
1704
- "ca-central-1" : { },
1705
- "eu-central-1" : { },
1706
- "eu-north-1" : { },
1707
- "eu-west-1" : { },
1708
- "eu-west-2" : { },
1709
- "eu-west-3" : { },
1710
- "sa-east-1" : { },
1711
- "us-east-1" : { },
1712
- "us-east-2" : { },
1713
- "us-west-1" : { },
1714
- "us-west-2" : { }
1715
- }
1716
- },
1717
- "iotanalytics" : {
1718
- "endpoints" : {
1719
- "ap-northeast-1" : { },
1720
- "eu-central-1" : { },
1721
- "eu-west-1" : { },
1722
- "us-east-1" : { },
1723
- "us-east-2" : { },
1724
- "us-west-2" : { }
1725
- }
1726
- },
1727
- "iotevents" : {
1728
- "endpoints" : {
1729
- "ap-northeast-1" : { },
1730
- "ap-southeast-2" : { },
1731
- "eu-central-1" : { },
1732
- "eu-west-1" : { },
1733
- "us-east-1" : { },
1734
- "us-east-2" : { },
1735
- "us-west-2" : { }
1736
- }
1737
- },
1738
- "ioteventsdata" : {
1739
- "endpoints" : {
1740
- "ap-northeast-1" : {
1741
- "credentialScope" : {
1742
- "region" : "ap-northeast-1"
1743
- },
1744
- "hostname" : "data.iotevents.ap-northeast-1.amazonaws.com"
1745
- },
1746
- "ap-southeast-2" : {
1747
- "credentialScope" : {
1748
- "region" : "ap-southeast-2"
1749
- },
1750
- "hostname" : "data.iotevents.ap-southeast-2.amazonaws.com"
1751
- },
1752
- "eu-central-1" : {
1753
- "credentialScope" : {
1754
- "region" : "eu-central-1"
1755
- },
1756
- "hostname" : "data.iotevents.eu-central-1.amazonaws.com"
1757
- },
1758
- "eu-west-1" : {
1759
- "credentialScope" : {
1760
- "region" : "eu-west-1"
1761
- },
1762
- "hostname" : "data.iotevents.eu-west-1.amazonaws.com"
1763
- },
1764
- "us-east-1" : {
1765
- "credentialScope" : {
1766
- "region" : "us-east-1"
1767
- },
1768
- "hostname" : "data.iotevents.us-east-1.amazonaws.com"
1769
- },
1770
- "us-east-2" : {
1771
- "credentialScope" : {
1772
- "region" : "us-east-2"
1773
- },
1774
- "hostname" : "data.iotevents.us-east-2.amazonaws.com"
1775
- },
1776
- "us-west-2" : {
1777
- "credentialScope" : {
1778
- "region" : "us-west-2"
1779
- },
1780
- "hostname" : "data.iotevents.us-west-2.amazonaws.com"
1781
- }
1782
- }
1783
- },
1784
- "iotthingsgraph" : {
1785
- "defaults" : {
1786
- "credentialScope" : {
1787
- "service" : "iotthingsgraph"
1788
- }
1789
- },
1790
- "endpoints" : {
1791
- "ap-northeast-1" : { },
1792
- "ap-southeast-2" : { },
1793
- "eu-west-1" : { },
1794
- "us-east-1" : { },
1795
- "us-west-2" : { }
1796
- }
1797
- },
1798
- "kafka" : {
1799
- "endpoints" : {
1800
- "ap-northeast-1" : { },
1801
- "ap-northeast-2" : { },
1802
- "ap-south-1" : { },
1803
- "ap-southeast-1" : { },
1804
- "ap-southeast-2" : { },
1805
- "eu-central-1" : { },
1806
- "eu-north-1" : { },
1807
- "eu-west-1" : { },
1808
- "eu-west-2" : { },
1809
- "eu-west-3" : { },
1810
- "us-east-1" : { },
1811
- "us-east-2" : { },
1812
- "us-west-2" : { }
1813
- }
1814
- },
1815
- "kinesis" : {
1816
- "endpoints" : {
1817
- "ap-east-1" : { },
1818
- "ap-northeast-1" : { },
1819
- "ap-northeast-2" : { },
1820
- "ap-south-1" : { },
1821
- "ap-southeast-1" : { },
1822
- "ap-southeast-2" : { },
1823
- "ca-central-1" : { },
1824
- "eu-central-1" : { },
1825
- "eu-north-1" : { },
1826
- "eu-west-1" : { },
1827
- "eu-west-2" : { },
1828
- "eu-west-3" : { },
1829
- "me-south-1" : { },
1830
- "sa-east-1" : { },
1831
- "us-east-1" : { },
1832
- "us-east-2" : { },
1833
- "us-west-1" : { },
1834
- "us-west-2" : { }
1835
- }
1836
- },
1837
- "kinesisanalytics" : {
1838
- "endpoints" : {
1839
- "ap-northeast-1" : { },
1840
- "ap-northeast-2" : { },
1841
- "ap-south-1" : { },
1842
- "ap-southeast-1" : { },
1843
- "ap-southeast-2" : { },
1844
- "eu-central-1" : { },
1845
- "eu-north-1" : { },
1846
- "eu-west-1" : { },
1847
- "eu-west-2" : { },
1848
- "eu-west-3" : { },
1849
- "us-east-1" : { },
1850
- "us-east-2" : { },
1851
- "us-west-2" : { }
1852
- }
1853
- },
1854
- "kinesisvideo" : {
1855
- "endpoints" : {
1856
- "ap-northeast-1" : { },
1857
- "ap-southeast-2" : { },
1858
- "eu-central-1" : { },
1859
- "eu-west-1" : { },
1860
- "us-east-1" : { },
1861
- "us-west-2" : { }
1862
- }
1863
- },
1864
- "kms" : {
1865
- "endpoints" : {
1866
- "ap-east-1" : { },
1867
- "ap-northeast-1" : { },
1868
- "ap-northeast-2" : { },
1869
- "ap-south-1" : { },
1870
- "ap-southeast-1" : { },
1871
- "ap-southeast-2" : { },
1872
- "ca-central-1" : { },
1873
- "eu-central-1" : { },
1874
- "eu-north-1" : { },
1875
- "eu-west-1" : { },
1876
- "eu-west-2" : { },
1877
- "eu-west-3" : { },
1878
- "me-south-1" : { },
1879
- "sa-east-1" : { },
1880
- "us-east-1" : { },
1881
- "us-east-2" : { },
1882
- "us-west-1" : { },
1883
- "us-west-2" : { }
1884
- }
1885
- },
1886
- "lakeformation" : {
1887
- "endpoints" : {
1888
- "ap-northeast-1" : { },
1889
- "eu-west-1" : { },
1890
- "us-east-1" : { },
1891
- "us-east-2" : { },
1892
- "us-west-2" : { }
1893
- }
1894
- },
1895
- "lambda" : {
1896
- "endpoints" : {
1897
- "ap-east-1" : { },
1898
- "ap-northeast-1" : { },
1899
- "ap-northeast-2" : { },
1900
- "ap-south-1" : { },
1901
- "ap-southeast-1" : { },
1902
- "ap-southeast-2" : { },
1903
- "ca-central-1" : { },
1904
- "eu-central-1" : { },
1905
- "eu-north-1" : { },
1906
- "eu-west-1" : { },
1907
- "eu-west-2" : { },
1908
- "eu-west-3" : { },
1909
- "me-south-1" : { },
1910
- "sa-east-1" : { },
1911
- "us-east-1" : { },
1912
- "us-east-2" : { },
1913
- "us-west-1" : { },
1914
- "us-west-2" : { }
1915
- }
1916
- },
1917
- "license-manager" : {
1918
- "endpoints" : {
1919
- "ap-east-1" : { },
1920
- "ap-northeast-1" : { },
1921
- "ap-northeast-2" : { },
1922
- "ap-south-1" : { },
1923
- "ap-southeast-1" : { },
1924
- "ap-southeast-2" : { },
1925
- "ca-central-1" : { },
1926
- "eu-central-1" : { },
1927
- "eu-north-1" : { },
1928
- "eu-west-1" : { },
1929
- "eu-west-2" : { },
1930
- "eu-west-3" : { },
1931
- "me-south-1" : { },
1932
- "sa-east-1" : { },
1933
- "us-east-1" : { },
1934
- "us-east-2" : { },
1935
- "us-west-1" : { },
1936
- "us-west-2" : { }
1937
- }
1938
- },
1939
- "lightsail" : {
1940
- "endpoints" : {
1941
- "ap-northeast-1" : { },
1942
- "ap-northeast-2" : { },
1943
- "ap-south-1" : { },
1944
- "ap-southeast-1" : { },
1945
- "ap-southeast-2" : { },
1946
- "ca-central-1" : { },
1947
- "eu-central-1" : { },
1948
- "eu-west-1" : { },
1949
- "eu-west-2" : { },
1950
- "eu-west-3" : { },
1951
- "us-east-1" : { },
1952
- "us-east-2" : { },
1953
- "us-west-2" : { }
1954
- }
1955
- },
1956
- "logs" : {
1957
- "endpoints" : {
1958
- "ap-east-1" : { },
1959
- "ap-northeast-1" : { },
1960
- "ap-northeast-2" : { },
1961
- "ap-south-1" : { },
1962
- "ap-southeast-1" : { },
1963
- "ap-southeast-2" : { },
1964
- "ca-central-1" : { },
1965
- "eu-central-1" : { },
1966
- "eu-north-1" : { },
1967
- "eu-west-1" : { },
1968
- "eu-west-2" : { },
1969
- "eu-west-3" : { },
1970
- "me-south-1" : { },
1971
- "sa-east-1" : { },
1972
- "us-east-1" : { },
1973
- "us-east-2" : { },
1974
- "us-west-1" : { },
1975
- "us-west-2" : { }
1976
- }
1977
- },
1978
- "machinelearning" : {
1979
- "endpoints" : {
1980
- "eu-west-1" : { },
1981
- "us-east-1" : { }
1982
- }
1983
- },
1984
- "marketplacecommerceanalytics" : {
1985
- "endpoints" : {
1986
- "us-east-1" : { }
1987
- }
1988
- },
1989
- "mediaconnect" : {
1990
- "endpoints" : {
1991
- "ap-northeast-1" : { },
1992
- "ap-northeast-2" : { },
1993
- "ap-south-1" : { },
1994
- "ap-southeast-1" : { },
1995
- "ap-southeast-2" : { },
1996
- "eu-central-1" : { },
1997
- "eu-west-1" : { },
1998
- "eu-west-2" : { },
1999
- "eu-west-3" : { },
2000
- "sa-east-1" : { },
2001
- "us-east-1" : { },
2002
- "us-east-2" : { },
2003
- "us-west-1" : { },
2004
- "us-west-2" : { }
2005
- }
2006
- },
2007
- "mediaconvert" : {
2008
- "endpoints" : {
2009
- "ap-northeast-1" : { },
2010
- "ap-northeast-2" : { },
2011
- "ap-south-1" : { },
2012
- "ap-southeast-1" : { },
2013
- "ap-southeast-2" : { },
2014
- "ca-central-1" : { },
2015
- "eu-central-1" : { },
2016
- "eu-west-1" : { },
2017
- "eu-west-2" : { },
2018
- "eu-west-3" : { },
2019
- "sa-east-1" : { },
2020
- "us-east-1" : { },
2021
- "us-east-2" : { },
2022
- "us-west-1" : { },
2023
- "us-west-2" : { }
2024
- }
2025
- },
2026
- "medialive" : {
2027
- "endpoints" : {
2028
- "ap-northeast-1" : { },
2029
- "ap-northeast-2" : { },
2030
- "ap-south-1" : { },
2031
- "ap-southeast-1" : { },
2032
- "ap-southeast-2" : { },
2033
- "eu-central-1" : { },
2034
- "eu-north-1" : { },
2035
- "eu-west-1" : { },
2036
- "sa-east-1" : { },
2037
- "us-east-1" : { },
2038
- "us-west-2" : { }
2039
- }
2040
- },
2041
- "mediapackage" : {
2042
- "endpoints" : {
2043
- "ap-northeast-1" : { },
2044
- "ap-northeast-2" : { },
2045
- "ap-south-1" : { },
2046
- "ap-southeast-1" : { },
2047
- "ap-southeast-2" : { },
2048
- "eu-central-1" : { },
2049
- "eu-west-1" : { },
2050
- "eu-west-3" : { },
2051
- "sa-east-1" : { },
2052
- "us-east-1" : { },
2053
- "us-west-1" : { },
2054
- "us-west-2" : { }
2055
- }
2056
- },
2057
- "mediastore" : {
2058
- "endpoints" : {
2059
- "ap-northeast-1" : { },
2060
- "ap-northeast-2" : { },
2061
- "ap-southeast-2" : { },
2062
- "eu-central-1" : { },
2063
- "eu-north-1" : { },
2064
- "eu-west-1" : { },
2065
- "us-east-1" : { },
2066
- "us-west-2" : { }
2067
- }
2068
- },
2069
- "metering.marketplace" : {
2070
- "defaults" : {
2071
- "credentialScope" : {
2072
- "service" : "aws-marketplace"
2073
- }
2074
- },
2075
- "endpoints" : {
2076
- "ap-east-1" : { },
2077
- "ap-northeast-1" : { },
2078
- "ap-northeast-2" : { },
2079
- "ap-south-1" : { },
2080
- "ap-southeast-1" : { },
2081
- "ap-southeast-2" : { },
2082
- "ca-central-1" : { },
2083
- "eu-central-1" : { },
2084
- "eu-north-1" : { },
2085
- "eu-west-1" : { },
2086
- "eu-west-2" : { },
2087
- "eu-west-3" : { },
2088
- "me-south-1" : { },
2089
- "sa-east-1" : { },
2090
- "us-east-1" : { },
2091
- "us-east-2" : { },
2092
- "us-west-1" : { },
2093
- "us-west-2" : { }
2094
- }
2095
- },
2096
- "mgh" : {
2097
- "endpoints" : {
2098
- "us-west-2" : { }
2099
- }
2100
- },
2101
- "mobileanalytics" : {
2102
- "endpoints" : {
2103
- "us-east-1" : { }
2104
- }
2105
- },
2106
- "models.lex" : {
2107
- "defaults" : {
2108
- "credentialScope" : {
2109
- "service" : "lex"
2110
- }
2111
- },
2112
- "endpoints" : {
2113
- "eu-west-1" : { },
2114
- "us-east-1" : { },
2115
- "us-west-2" : { }
2116
- }
2117
- },
2118
- "monitoring" : {
2119
- "defaults" : {
2120
- "protocols" : [ "http", "https" ]
2121
- },
2122
- "endpoints" : {
2123
- "ap-east-1" : { },
2124
- "ap-northeast-1" : { },
2125
- "ap-northeast-2" : { },
2126
- "ap-south-1" : { },
2127
- "ap-southeast-1" : { },
2128
- "ap-southeast-2" : { },
2129
- "ca-central-1" : { },
2130
- "eu-central-1" : { },
2131
- "eu-north-1" : { },
2132
- "eu-west-1" : { },
2133
- "eu-west-2" : { },
2134
- "eu-west-3" : { },
2135
- "me-south-1" : { },
2136
- "sa-east-1" : { },
2137
- "us-east-1" : { },
2138
- "us-east-2" : { },
2139
- "us-west-1" : { },
2140
- "us-west-2" : { }
2141
- }
2142
- },
2143
- "mq" : {
2144
- "endpoints" : {
2145
- "ap-northeast-1" : { },
2146
- "ap-northeast-2" : { },
2147
- "ap-south-1" : { },
2148
- "ap-southeast-1" : { },
2149
- "ap-southeast-2" : { },
2150
- "ca-central-1" : { },
2151
- "eu-central-1" : { },
2152
- "eu-west-1" : { },
2153
- "eu-west-2" : { },
2154
- "eu-west-3" : { },
2155
- "us-east-1" : { },
2156
- "us-east-2" : { },
2157
- "us-west-1" : { },
2158
- "us-west-2" : { }
2159
- }
2160
- },
2161
- "mturk-requester" : {
2162
- "endpoints" : {
2163
- "sandbox" : {
2164
- "hostname" : "mturk-requester-sandbox.us-east-1.amazonaws.com"
2165
- },
2166
- "us-east-1" : { }
2167
- },
2168
- "isRegionalized" : false
2169
- },
2170
- "neptune" : {
2171
- "endpoints" : {
2172
- "ap-northeast-1" : {
2173
- "credentialScope" : {
2174
- "region" : "ap-northeast-1"
2175
- },
2176
- "hostname" : "rds.ap-northeast-1.amazonaws.com"
2177
- },
2178
- "ap-northeast-2" : {
2179
- "credentialScope" : {
2180
- "region" : "ap-northeast-2"
2181
- },
2182
- "hostname" : "rds.ap-northeast-2.amazonaws.com"
2183
- },
2184
- "ap-south-1" : {
2185
- "credentialScope" : {
2186
- "region" : "ap-south-1"
2187
- },
2188
- "hostname" : "rds.ap-south-1.amazonaws.com"
2189
- },
2190
- "ap-southeast-1" : {
2191
- "credentialScope" : {
2192
- "region" : "ap-southeast-1"
2193
- },
2194
- "hostname" : "rds.ap-southeast-1.amazonaws.com"
2195
- },
2196
- "ap-southeast-2" : {
2197
- "credentialScope" : {
2198
- "region" : "ap-southeast-2"
2199
- },
2200
- "hostname" : "rds.ap-southeast-2.amazonaws.com"
2201
- },
2202
- "eu-central-1" : {
2203
- "credentialScope" : {
2204
- "region" : "eu-central-1"
2205
- },
2206
- "hostname" : "rds.eu-central-1.amazonaws.com"
2207
- },
2208
- "eu-north-1" : {
2209
- "credentialScope" : {
2210
- "region" : "eu-north-1"
2211
- },
2212
- "hostname" : "rds.eu-north-1.amazonaws.com"
2213
- },
2214
- "eu-west-1" : {
2215
- "credentialScope" : {
2216
- "region" : "eu-west-1"
2217
- },
2218
- "hostname" : "rds.eu-west-1.amazonaws.com"
2219
- },
2220
- "eu-west-2" : {
2221
- "credentialScope" : {
2222
- "region" : "eu-west-2"
2223
- },
2224
- "hostname" : "rds.eu-west-2.amazonaws.com"
2225
- },
2226
- "us-east-1" : {
2227
- "credentialScope" : {
2228
- "region" : "us-east-1"
2229
- },
2230
- "hostname" : "rds.us-east-1.amazonaws.com"
2231
- },
2232
- "us-east-2" : {
2233
- "credentialScope" : {
2234
- "region" : "us-east-2"
2235
- },
2236
- "hostname" : "rds.us-east-2.amazonaws.com"
2237
- },
2238
- "us-west-2" : {
2239
- "credentialScope" : {
2240
- "region" : "us-west-2"
2241
- },
2242
- "hostname" : "rds.us-west-2.amazonaws.com"
2243
- }
2244
- }
2245
- },
2246
- "opsworks" : {
2247
- "endpoints" : {
2248
- "ap-northeast-1" : { },
2249
- "ap-northeast-2" : { },
2250
- "ap-south-1" : { },
2251
- "ap-southeast-1" : { },
2252
- "ap-southeast-2" : { },
2253
- "ca-central-1" : { },
2254
- "eu-central-1" : { },
2255
- "eu-west-1" : { },
2256
- "eu-west-2" : { },
2257
- "eu-west-3" : { },
2258
- "sa-east-1" : { },
2259
- "us-east-1" : { },
2260
- "us-east-2" : { },
2261
- "us-west-1" : { },
2262
- "us-west-2" : { }
2263
- }
2264
- },
2265
- "opsworks-cm" : {
2266
- "endpoints" : {
2267
- "ap-northeast-1" : { },
2268
- "ap-southeast-1" : { },
2269
- "ap-southeast-2" : { },
2270
- "eu-central-1" : { },
2271
- "eu-west-1" : { },
2272
- "us-east-1" : { },
2273
- "us-east-2" : { },
2274
- "us-west-1" : { },
2275
- "us-west-2" : { }
2276
- }
2277
- },
2278
- "organizations" : {
2279
- "endpoints" : {
2280
- "aws-global" : {
2281
- "credentialScope" : {
2282
- "region" : "us-east-1"
2283
- },
2284
- "hostname" : "organizations.us-east-1.amazonaws.com"
2285
- }
2286
- },
2287
- "isRegionalized" : false,
2288
- "partitionEndpoint" : "aws-global"
2289
- },
2290
- "pinpoint" : {
2291
- "defaults" : {
2292
- "credentialScope" : {
2293
- "service" : "mobiletargeting"
2294
- }
2295
- },
2296
- "endpoints" : {
2297
- "ap-south-1" : { },
2298
- "ap-southeast-2" : { },
2299
- "eu-central-1" : { },
2300
- "eu-west-1" : { },
2301
- "us-east-1" : { },
2302
- "us-west-2" : { }
2303
- }
2304
- },
2305
- "polly" : {
2306
- "endpoints" : {
2307
- "ap-northeast-1" : { },
2308
- "ap-northeast-2" : { },
2309
- "ap-south-1" : { },
2310
- "ap-southeast-1" : { },
2311
- "ap-southeast-2" : { },
2312
- "ca-central-1" : { },
2313
- "eu-central-1" : { },
2314
- "eu-north-1" : { },
2315
- "eu-west-1" : { },
2316
- "eu-west-2" : { },
2317
- "eu-west-3" : { },
2318
- "sa-east-1" : { },
2319
- "us-east-1" : { },
2320
- "us-east-2" : { },
2321
- "us-west-1" : { },
2322
- "us-west-2" : { }
2323
- }
2324
- },
2325
- "projects.iot1click" : {
2326
- "endpoints" : {
2327
- "ap-northeast-1" : { },
2328
- "eu-central-1" : { },
2329
- "eu-west-1" : { },
2330
- "eu-west-2" : { },
2331
- "us-east-1" : { },
2332
- "us-east-2" : { },
2333
- "us-west-2" : { }
2334
- }
2335
- },
2336
- "ram" : {
2337
- "endpoints" : {
2338
- "ap-northeast-1" : { },
2339
- "ap-northeast-2" : { },
2340
- "ap-south-1" : { },
2341
- "ap-southeast-1" : { },
2342
- "ap-southeast-2" : { },
2343
- "ca-central-1" : { },
2344
- "eu-central-1" : { },
2345
- "eu-north-1" : { },
2346
- "eu-west-1" : { },
2347
- "eu-west-2" : { },
2348
- "eu-west-3" : { },
2349
- "us-east-1" : { },
2350
- "us-east-2" : { },
2351
- "us-west-1" : { },
2352
- "us-west-2" : { }
2353
- }
2354
- },
2355
- "rds" : {
2356
- "endpoints" : {
2357
- "ap-east-1" : { },
2358
- "ap-northeast-1" : { },
2359
- "ap-northeast-2" : { },
2360
- "ap-south-1" : { },
2361
- "ap-southeast-1" : { },
2362
- "ap-southeast-2" : { },
2363
- "ca-central-1" : { },
2364
- "eu-central-1" : { },
2365
- "eu-north-1" : { },
2366
- "eu-west-1" : { },
2367
- "eu-west-2" : { },
2368
- "eu-west-3" : { },
2369
- "me-south-1" : { },
2370
- "sa-east-1" : { },
2371
- "us-east-1" : {
2372
- "sslCommonName" : "{service}.{dnsSuffix}"
2373
- },
2374
- "us-east-2" : { },
2375
- "us-west-1" : { },
2376
- "us-west-2" : { }
2377
- }
2378
- },
2379
- "redshift" : {
2380
- "endpoints" : {
2381
- "ap-east-1" : { },
2382
- "ap-northeast-1" : { },
2383
- "ap-northeast-2" : { },
2384
- "ap-south-1" : { },
2385
- "ap-southeast-1" : { },
2386
- "ap-southeast-2" : { },
2387
- "ca-central-1" : { },
2388
- "eu-central-1" : { },
2389
- "eu-north-1" : { },
2390
- "eu-west-1" : { },
2391
- "eu-west-2" : { },
2392
- "eu-west-3" : { },
2393
- "me-south-1" : { },
2394
- "sa-east-1" : { },
2395
- "us-east-1" : { },
2396
- "us-east-2" : { },
2397
- "us-west-1" : { },
2398
- "us-west-2" : { }
2399
- }
2400
- },
2401
- "rekognition" : {
2402
- "endpoints" : {
2403
- "ap-northeast-1" : { },
2404
- "ap-northeast-2" : { },
2405
- "ap-south-1" : { },
2406
- "ap-southeast-1" : { },
2407
- "ap-southeast-2" : { },
2408
- "eu-central-1" : { },
2409
- "eu-west-1" : { },
2410
- "eu-west-2" : { },
2411
- "us-east-1" : { },
2412
- "us-east-2" : { },
2413
- "us-west-1" : { },
2414
- "us-west-2" : { }
2415
- }
2416
- },
2417
- "resource-groups" : {
2418
- "endpoints" : {
2419
- "ap-east-1" : { },
2420
- "ap-northeast-1" : { },
2421
- "ap-northeast-2" : { },
2422
- "ap-south-1" : { },
2423
- "ap-southeast-1" : { },
2424
- "ap-southeast-2" : { },
2425
- "ca-central-1" : { },
2426
- "eu-central-1" : { },
2427
- "eu-north-1" : { },
2428
- "eu-west-1" : { },
2429
- "eu-west-2" : { },
2430
- "eu-west-3" : { },
2431
- "me-south-1" : { },
2432
- "sa-east-1" : { },
2433
- "us-east-1" : { },
2434
- "us-east-2" : { },
2435
- "us-west-1" : { },
2436
- "us-west-2" : { }
2437
- }
2438
- },
2439
- "robomaker" : {
2440
- "endpoints" : {
2441
- "ap-northeast-1" : { },
2442
- "ap-southeast-1" : { },
2443
- "eu-central-1" : { },
2444
- "eu-west-1" : { },
2445
- "us-east-1" : { },
2446
- "us-east-2" : { },
2447
- "us-west-2" : { }
2448
- }
2449
- },
2450
- "route53" : {
2451
- "endpoints" : {
2452
- "aws-global" : {
2453
- "credentialScope" : {
2454
- "region" : "us-east-1"
2455
- },
2456
- "hostname" : "route53.amazonaws.com"
2457
- }
2458
- },
2459
- "isRegionalized" : false,
2460
- "partitionEndpoint" : "aws-global"
2461
- },
2462
- "route53domains" : {
2463
- "endpoints" : {
2464
- "us-east-1" : { }
2465
- }
2466
- },
2467
- "route53resolver" : {
2468
- "defaults" : {
2469
- "protocols" : [ "https" ]
2470
- },
2471
- "endpoints" : {
2472
- "ap-northeast-1" : { },
2473
- "ap-northeast-2" : { },
2474
- "ap-south-1" : { },
2475
- "ap-southeast-1" : { },
2476
- "ap-southeast-2" : { },
2477
- "ca-central-1" : { },
2478
- "eu-central-1" : { },
2479
- "eu-west-1" : { },
2480
- "eu-west-2" : { },
2481
- "eu-west-3" : { },
2482
- "us-east-1" : { },
2483
- "us-east-2" : { },
2484
- "us-west-1" : { },
2485
- "us-west-2" : { }
2486
- }
2487
- },
2488
- "runtime.lex" : {
2489
- "defaults" : {
2490
- "credentialScope" : {
2491
- "service" : "lex"
2492
- }
2493
- },
2494
- "endpoints" : {
2495
- "eu-west-1" : { },
2496
- "us-east-1" : { },
2497
- "us-west-2" : { }
2498
- }
2499
- },
2500
- "runtime.sagemaker" : {
2501
- "endpoints" : {
2502
- "ap-east-1" : { },
2503
- "ap-northeast-1" : { },
2504
- "ap-northeast-2" : { },
2505
- "ap-south-1" : { },
2506
- "ap-southeast-1" : { },
2507
- "ap-southeast-2" : { },
2508
- "ca-central-1" : { },
2509
- "eu-central-1" : { },
2510
- "eu-north-1" : { },
2511
- "eu-west-1" : { },
2512
- "eu-west-2" : { },
2513
- "eu-west-3" : { },
2514
- "sa-east-1" : { },
2515
- "us-east-1" : { },
2516
- "us-east-1-fips" : {
2517
- "credentialScope" : {
2518
- "region" : "us-east-1"
2519
- },
2520
- "hostname" : "runtime-fips.sagemaker.us-east-1.amazonaws.com"
2521
- },
2522
- "us-east-2" : { },
2523
- "us-east-2-fips" : {
2524
- "credentialScope" : {
2525
- "region" : "us-east-2"
2526
- },
2527
- "hostname" : "runtime-fips.sagemaker.us-east-2.amazonaws.com"
2528
- },
2529
- "us-west-1" : { },
2530
- "us-west-1-fips" : {
2531
- "credentialScope" : {
2532
- "region" : "us-west-1"
2533
- },
2534
- "hostname" : "runtime-fips.sagemaker.us-west-1.amazonaws.com"
2535
- },
2536
- "us-west-2" : { },
2537
- "us-west-2-fips" : {
2538
- "credentialScope" : {
2539
- "region" : "us-west-2"
2540
- },
2541
- "hostname" : "runtime-fips.sagemaker.us-west-2.amazonaws.com"
2542
- }
2543
- }
2544
- },
2545
- "s3" : {
2546
- "defaults" : {
2547
- "protocols" : [ "http", "https" ],
2548
- "signatureVersions" : [ "s3v4" ]
2549
- },
2550
- "endpoints" : {
2551
- "ap-east-1" : { },
2552
- "ap-northeast-1" : {
2553
- "hostname" : "s3.ap-northeast-1.amazonaws.com",
2554
- "signatureVersions" : [ "s3", "s3v4" ]
2555
- },
2556
- "ap-northeast-2" : { },
2557
- "ap-south-1" : { },
2558
- "ap-southeast-1" : {
2559
- "hostname" : "s3.ap-southeast-1.amazonaws.com",
2560
- "signatureVersions" : [ "s3", "s3v4" ]
2561
- },
2562
- "ap-southeast-2" : {
2563
- "hostname" : "s3.ap-southeast-2.amazonaws.com",
2564
- "signatureVersions" : [ "s3", "s3v4" ]
2565
- },
2566
- "ca-central-1" : { },
2567
- "eu-central-1" : { },
2568
- "eu-north-1" : { },
2569
- "eu-west-1" : {
2570
- "hostname" : "s3.eu-west-1.amazonaws.com",
2571
- "signatureVersions" : [ "s3", "s3v4" ]
2572
- },
2573
- "eu-west-2" : { },
2574
- "eu-west-3" : { },
2575
- "me-south-1" : { },
2576
- "s3-external-1" : {
2577
- "credentialScope" : {
2578
- "region" : "us-east-1"
2579
- },
2580
- "hostname" : "s3-external-1.amazonaws.com",
2581
- "signatureVersions" : [ "s3", "s3v4" ]
2582
- },
2583
- "sa-east-1" : {
2584
- "hostname" : "s3.sa-east-1.amazonaws.com",
2585
- "signatureVersions" : [ "s3", "s3v4" ]
2586
- },
2587
- "us-east-1" : {
2588
- "hostname" : "s3.amazonaws.com",
2589
- "signatureVersions" : [ "s3", "s3v4" ]
2590
- },
2591
- "us-east-2" : { },
2592
- "us-west-1" : {
2593
- "hostname" : "s3.us-west-1.amazonaws.com",
2594
- "signatureVersions" : [ "s3", "s3v4" ]
2595
- },
2596
- "us-west-2" : {
2597
- "hostname" : "s3.us-west-2.amazonaws.com",
2598
- "signatureVersions" : [ "s3", "s3v4" ]
2599
- }
2600
- },
2601
- "isRegionalized" : true,
2602
- "partitionEndpoint" : "us-east-1"
2603
- },
2604
- "s3-control" : {
2605
- "defaults" : {
2606
- "protocols" : [ "https" ],
2607
- "signatureVersions" : [ "s3v4" ]
2608
- },
2609
- "endpoints" : {
2610
- "ap-northeast-1" : {
2611
- "credentialScope" : {
2612
- "region" : "ap-northeast-1"
2613
- },
2614
- "hostname" : "s3-control.ap-northeast-1.amazonaws.com",
2615
- "signatureVersions" : [ "s3v4" ]
2616
- },
2617
- "ap-northeast-2" : {
2618
- "credentialScope" : {
2619
- "region" : "ap-northeast-2"
2620
- },
2621
- "hostname" : "s3-control.ap-northeast-2.amazonaws.com",
2622
- "signatureVersions" : [ "s3v4" ]
2623
- },
2624
- "ap-south-1" : {
2625
- "credentialScope" : {
2626
- "region" : "ap-south-1"
2627
- },
2628
- "hostname" : "s3-control.ap-south-1.amazonaws.com",
2629
- "signatureVersions" : [ "s3v4" ]
2630
- },
2631
- "ap-southeast-1" : {
2632
- "credentialScope" : {
2633
- "region" : "ap-southeast-1"
2634
- },
2635
- "hostname" : "s3-control.ap-southeast-1.amazonaws.com",
2636
- "signatureVersions" : [ "s3v4" ]
2637
- },
2638
- "ap-southeast-2" : {
2639
- "credentialScope" : {
2640
- "region" : "ap-southeast-2"
2641
- },
2642
- "hostname" : "s3-control.ap-southeast-2.amazonaws.com",
2643
- "signatureVersions" : [ "s3v4" ]
2644
- },
2645
- "ca-central-1" : {
2646
- "credentialScope" : {
2647
- "region" : "ca-central-1"
2648
- },
2649
- "hostname" : "s3-control.ca-central-1.amazonaws.com",
2650
- "signatureVersions" : [ "s3v4" ]
2651
- },
2652
- "eu-central-1" : {
2653
- "credentialScope" : {
2654
- "region" : "eu-central-1"
2655
- },
2656
- "hostname" : "s3-control.eu-central-1.amazonaws.com",
2657
- "signatureVersions" : [ "s3v4" ]
2658
- },
2659
- "eu-north-1" : {
2660
- "credentialScope" : {
2661
- "region" : "eu-north-1"
2662
- },
2663
- "hostname" : "s3-control.eu-north-1.amazonaws.com",
2664
- "signatureVersions" : [ "s3v4" ]
2665
- },
2666
- "eu-west-1" : {
2667
- "credentialScope" : {
2668
- "region" : "eu-west-1"
2669
- },
2670
- "hostname" : "s3-control.eu-west-1.amazonaws.com",
2671
- "signatureVersions" : [ "s3v4" ]
2672
- },
2673
- "eu-west-2" : {
2674
- "credentialScope" : {
2675
- "region" : "eu-west-2"
2676
- },
2677
- "hostname" : "s3-control.eu-west-2.amazonaws.com",
2678
- "signatureVersions" : [ "s3v4" ]
2679
- },
2680
- "eu-west-3" : {
2681
- "credentialScope" : {
2682
- "region" : "eu-west-3"
2683
- },
2684
- "hostname" : "s3-control.eu-west-3.amazonaws.com",
2685
- "signatureVersions" : [ "s3v4" ]
2686
- },
2687
- "sa-east-1" : {
2688
- "credentialScope" : {
2689
- "region" : "sa-east-1"
2690
- },
2691
- "hostname" : "s3-control.sa-east-1.amazonaws.com",
2692
- "signatureVersions" : [ "s3v4" ]
2693
- },
2694
- "us-east-1" : {
2695
- "credentialScope" : {
2696
- "region" : "us-east-1"
2697
- },
2698
- "hostname" : "s3-control.us-east-1.amazonaws.com",
2699
- "signatureVersions" : [ "s3v4" ]
2700
- },
2701
- "us-east-1-fips" : {
2702
- "credentialScope" : {
2703
- "region" : "us-east-1"
2704
- },
2705
- "hostname" : "s3-control-fips.us-east-1.amazonaws.com",
2706
- "signatureVersions" : [ "s3v4" ]
2707
- },
2708
- "us-east-2" : {
2709
- "credentialScope" : {
2710
- "region" : "us-east-2"
2711
- },
2712
- "hostname" : "s3-control.us-east-2.amazonaws.com",
2713
- "signatureVersions" : [ "s3v4" ]
2714
- },
2715
- "us-east-2-fips" : {
2716
- "credentialScope" : {
2717
- "region" : "us-east-2"
2718
- },
2719
- "hostname" : "s3-control-fips.us-east-2.amazonaws.com",
2720
- "signatureVersions" : [ "s3v4" ]
2721
- },
2722
- "us-west-1" : {
2723
- "credentialScope" : {
2724
- "region" : "us-west-1"
2725
- },
2726
- "hostname" : "s3-control.us-west-1.amazonaws.com",
2727
- "signatureVersions" : [ "s3v4" ]
2728
- },
2729
- "us-west-1-fips" : {
2730
- "credentialScope" : {
2731
- "region" : "us-west-1"
2732
- },
2733
- "hostname" : "s3-control-fips.us-west-1.amazonaws.com",
2734
- "signatureVersions" : [ "s3v4" ]
2735
- },
2736
- "us-west-2" : {
2737
- "credentialScope" : {
2738
- "region" : "us-west-2"
2739
- },
2740
- "hostname" : "s3-control.us-west-2.amazonaws.com",
2741
- "signatureVersions" : [ "s3v4" ]
2742
- },
2743
- "us-west-2-fips" : {
2744
- "credentialScope" : {
2745
- "region" : "us-west-2"
2746
- },
2747
- "hostname" : "s3-control-fips.us-west-2.amazonaws.com",
2748
- "signatureVersions" : [ "s3v4" ]
2749
- }
2750
- }
2751
- },
2752
- "sdb" : {
2753
- "defaults" : {
2754
- "protocols" : [ "http", "https" ],
2755
- "signatureVersions" : [ "v2" ]
2756
- },
2757
- "endpoints" : {
2758
- "ap-northeast-1" : { },
2759
- "ap-southeast-1" : { },
2760
- "ap-southeast-2" : { },
2761
- "eu-west-1" : { },
2762
- "sa-east-1" : { },
2763
- "us-east-1" : {
2764
- "hostname" : "sdb.amazonaws.com"
2765
- },
2766
- "us-west-1" : { },
2767
- "us-west-2" : { }
2768
- }
2769
- },
2770
- "secretsmanager" : {
2771
- "endpoints" : {
2772
- "ap-northeast-1" : { },
2773
- "ap-northeast-2" : { },
2774
- "ap-south-1" : { },
2775
- "ap-southeast-1" : { },
2776
- "ap-southeast-2" : { },
2777
- "ca-central-1" : { },
2778
- "eu-central-1" : { },
2779
- "eu-north-1" : { },
2780
- "eu-west-1" : { },
2781
- "eu-west-2" : { },
2782
- "eu-west-3" : { },
2783
- "sa-east-1" : { },
2784
- "us-east-1" : { },
2785
- "us-east-1-fips" : {
2786
- "credentialScope" : {
2787
- "region" : "us-east-1"
2788
- },
2789
- "hostname" : "secretsmanager-fips.us-east-1.amazonaws.com"
2790
- },
2791
- "us-east-2" : { },
2792
- "us-east-2-fips" : {
2793
- "credentialScope" : {
2794
- "region" : "us-east-2"
2795
- },
2796
- "hostname" : "secretsmanager-fips.us-east-2.amazonaws.com"
2797
- },
2798
- "us-west-1" : { },
2799
- "us-west-1-fips" : {
2800
- "credentialScope" : {
2801
- "region" : "us-west-1"
2802
- },
2803
- "hostname" : "secretsmanager-fips.us-west-1.amazonaws.com"
2804
- },
2805
- "us-west-2" : { },
2806
- "us-west-2-fips" : {
2807
- "credentialScope" : {
2808
- "region" : "us-west-2"
2809
- },
2810
- "hostname" : "secretsmanager-fips.us-west-2.amazonaws.com"
2811
- }
2812
- }
2813
- },
2814
- "securityhub" : {
2815
- "endpoints" : {
2816
- "ap-east-1" : { },
2817
- "ap-northeast-1" : { },
2818
- "ap-northeast-2" : { },
2819
- "ap-south-1" : { },
2820
- "ap-southeast-1" : { },
2821
- "ap-southeast-2" : { },
2822
- "ca-central-1" : { },
2823
- "eu-central-1" : { },
2824
- "eu-north-1" : { },
2825
- "eu-west-1" : { },
2826
- "eu-west-2" : { },
2827
- "eu-west-3" : { },
2828
- "sa-east-1" : { },
2829
- "us-east-1" : { },
2830
- "us-east-2" : { },
2831
- "us-west-1" : { },
2832
- "us-west-2" : { }
2833
- }
2834
- },
2835
- "serverlessrepo" : {
2836
- "defaults" : {
2837
- "protocols" : [ "https" ]
2838
- },
2839
- "endpoints" : {
2840
- "ap-northeast-1" : {
2841
- "protocols" : [ "https" ]
2842
- },
2843
- "ap-northeast-2" : {
2844
- "protocols" : [ "https" ]
2845
- },
2846
- "ap-south-1" : {
2847
- "protocols" : [ "https" ]
2848
- },
2849
- "ap-southeast-1" : {
2850
- "protocols" : [ "https" ]
2851
- },
2852
- "ap-southeast-2" : {
2853
- "protocols" : [ "https" ]
2854
- },
2855
- "ca-central-1" : {
2856
- "protocols" : [ "https" ]
2857
- },
2858
- "eu-central-1" : {
2859
- "protocols" : [ "https" ]
2860
- },
2861
- "eu-north-1" : {
2862
- "protocols" : [ "https" ]
2863
- },
2864
- "eu-west-1" : {
2865
- "protocols" : [ "https" ]
2866
- },
2867
- "eu-west-2" : {
2868
- "protocols" : [ "https" ]
2869
- },
2870
- "eu-west-3" : {
2871
- "protocols" : [ "https" ]
2872
- },
2873
- "sa-east-1" : {
2874
- "protocols" : [ "https" ]
2875
- },
2876
- "us-east-1" : {
2877
- "protocols" : [ "https" ]
2878
- },
2879
- "us-east-2" : {
2880
- "protocols" : [ "https" ]
2881
- },
2882
- "us-west-1" : {
2883
- "protocols" : [ "https" ]
2884
- },
2885
- "us-west-2" : {
2886
- "protocols" : [ "https" ]
2887
- }
2888
- }
2889
- },
2890
- "servicecatalog" : {
2891
- "endpoints" : {
2892
- "ap-northeast-1" : { },
2893
- "ap-northeast-2" : { },
2894
- "ap-south-1" : { },
2895
- "ap-southeast-1" : { },
2896
- "ap-southeast-2" : { },
2897
- "ca-central-1" : { },
2898
- "eu-central-1" : { },
2899
- "eu-north-1" : { },
2900
- "eu-west-1" : { },
2901
- "eu-west-2" : { },
2902
- "eu-west-3" : { },
2903
- "sa-east-1" : { },
2904
- "us-east-1" : { },
2905
- "us-east-1-fips" : {
2906
- "credentialScope" : {
2907
- "region" : "us-east-1"
2908
- },
2909
- "hostname" : "servicecatalog-fips.us-east-1.amazonaws.com"
2910
- },
2911
- "us-east-2" : { },
2912
- "us-east-2-fips" : {
2913
- "credentialScope" : {
2914
- "region" : "us-east-2"
2915
- },
2916
- "hostname" : "servicecatalog-fips.us-east-2.amazonaws.com"
2917
- },
2918
- "us-west-1" : { },
2919
- "us-west-1-fips" : {
2920
- "credentialScope" : {
2921
- "region" : "us-west-1"
2922
- },
2923
- "hostname" : "servicecatalog-fips.us-west-1.amazonaws.com"
2924
- },
2925
- "us-west-2" : { },
2926
- "us-west-2-fips" : {
2927
- "credentialScope" : {
2928
- "region" : "us-west-2"
2929
- },
2930
- "hostname" : "servicecatalog-fips.us-west-2.amazonaws.com"
2931
- }
2932
- }
2933
- },
2934
- "servicediscovery" : {
2935
- "endpoints" : {
2936
- "ap-northeast-1" : { },
2937
- "ap-northeast-2" : { },
2938
- "ap-south-1" : { },
2939
- "ap-southeast-1" : { },
2940
- "ap-southeast-2" : { },
2941
- "ca-central-1" : { },
2942
- "eu-central-1" : { },
2943
- "eu-west-1" : { },
2944
- "eu-west-2" : { },
2945
- "eu-west-3" : { },
2946
- "sa-east-1" : { },
2947
- "us-east-1" : { },
2948
- "us-east-2" : { },
2949
- "us-west-1" : { },
2950
- "us-west-2" : { }
2951
- }
2952
- },
2953
- "shield" : {
2954
- "defaults" : {
2955
- "protocols" : [ "https" ],
2956
- "sslCommonName" : "shield.us-east-1.amazonaws.com"
2957
- },
2958
- "endpoints" : {
2959
- "us-east-1" : { }
2960
- },
2961
- "isRegionalized" : false
2962
- },
2963
- "sms" : {
2964
- "endpoints" : {
2965
- "ap-east-1" : { },
2966
- "ap-northeast-1" : { },
2967
- "ap-northeast-2" : { },
2968
- "ap-south-1" : { },
2969
- "ap-southeast-1" : { },
2970
- "ap-southeast-2" : { },
2971
- "ca-central-1" : { },
2972
- "eu-central-1" : { },
2973
- "eu-north-1" : { },
2974
- "eu-west-1" : { },
2975
- "eu-west-2" : { },
2976
- "eu-west-3" : { },
2977
- "me-south-1" : { },
2978
- "sa-east-1" : { },
2979
- "us-east-1" : { },
2980
- "us-east-2" : { },
2981
- "us-west-1" : { },
2982
- "us-west-2" : { }
2983
- }
2984
- },
2985
- "snowball" : {
2986
- "endpoints" : {
2987
- "ap-northeast-1" : { },
2988
- "ap-northeast-2" : { },
2989
- "ap-south-1" : { },
2990
- "ap-southeast-1" : { },
2991
- "ap-southeast-2" : { },
2992
- "ca-central-1" : { },
2993
- "eu-central-1" : { },
2994
- "eu-west-1" : { },
2995
- "eu-west-2" : { },
2996
- "eu-west-3" : { },
2997
- "sa-east-1" : { },
2998
- "us-east-1" : { },
2999
- "us-east-2" : { },
3000
- "us-west-1" : { },
3001
- "us-west-2" : { }
3002
- }
3003
- },
3004
- "sns" : {
3005
- "defaults" : {
3006
- "protocols" : [ "http", "https" ]
3007
- },
3008
- "endpoints" : {
3009
- "ap-east-1" : { },
3010
- "ap-northeast-1" : { },
3011
- "ap-northeast-2" : { },
3012
- "ap-south-1" : { },
3013
- "ap-southeast-1" : { },
3014
- "ap-southeast-2" : { },
3015
- "ca-central-1" : { },
3016
- "eu-central-1" : { },
3017
- "eu-north-1" : { },
3018
- "eu-west-1" : { },
3019
- "eu-west-2" : { },
3020
- "eu-west-3" : { },
3021
- "me-south-1" : { },
3022
- "sa-east-1" : { },
3023
- "us-east-1" : { },
3024
- "us-east-2" : { },
3025
- "us-west-1" : { },
3026
- "us-west-2" : { }
3027
- }
3028
- },
3029
- "sqs" : {
3030
- "defaults" : {
3031
- "protocols" : [ "http", "https" ],
3032
- "sslCommonName" : "{region}.queue.{dnsSuffix}"
3033
- },
3034
- "endpoints" : {
3035
- "ap-east-1" : { },
3036
- "ap-northeast-1" : { },
3037
- "ap-northeast-2" : { },
3038
- "ap-south-1" : { },
3039
- "ap-southeast-1" : { },
3040
- "ap-southeast-2" : { },
3041
- "ca-central-1" : { },
3042
- "eu-central-1" : { },
3043
- "eu-north-1" : { },
3044
- "eu-west-1" : { },
3045
- "eu-west-2" : { },
3046
- "eu-west-3" : { },
3047
- "fips-us-east-1" : {
3048
- "credentialScope" : {
3049
- "region" : "us-east-1"
3050
- },
3051
- "hostname" : "sqs-fips.us-east-1.amazonaws.com"
3052
- },
3053
- "fips-us-east-2" : {
3054
- "credentialScope" : {
3055
- "region" : "us-east-2"
3056
- },
3057
- "hostname" : "sqs-fips.us-east-2.amazonaws.com"
3058
- },
3059
- "fips-us-west-1" : {
3060
- "credentialScope" : {
3061
- "region" : "us-west-1"
3062
- },
3063
- "hostname" : "sqs-fips.us-west-1.amazonaws.com"
3064
- },
3065
- "fips-us-west-2" : {
3066
- "credentialScope" : {
3067
- "region" : "us-west-2"
3068
- },
3069
- "hostname" : "sqs-fips.us-west-2.amazonaws.com"
3070
- },
3071
- "me-south-1" : { },
3072
- "sa-east-1" : { },
3073
- "us-east-1" : {
3074
- "sslCommonName" : "queue.{dnsSuffix}"
3075
- },
3076
- "us-east-2" : { },
3077
- "us-west-1" : { },
3078
- "us-west-2" : { }
3079
- }
3080
- },
3081
- "ssm" : {
3082
- "endpoints" : {
3083
- "ap-east-1" : { },
3084
- "ap-northeast-1" : { },
3085
- "ap-northeast-2" : { },
3086
- "ap-south-1" : { },
3087
- "ap-southeast-1" : { },
3088
- "ap-southeast-2" : { },
3089
- "ca-central-1" : { },
3090
- "eu-central-1" : { },
3091
- "eu-north-1" : { },
3092
- "eu-west-1" : { },
3093
- "eu-west-2" : { },
3094
- "eu-west-3" : { },
3095
- "me-south-1" : { },
3096
- "sa-east-1" : { },
3097
- "us-east-1" : { },
3098
- "us-east-2" : { },
3099
- "us-west-1" : { },
3100
- "us-west-2" : { }
3101
- }
3102
- },
3103
- "states" : {
3104
- "endpoints" : {
3105
- "ap-east-1" : { },
3106
- "ap-northeast-1" : { },
3107
- "ap-northeast-2" : { },
3108
- "ap-south-1" : { },
3109
- "ap-southeast-1" : { },
3110
- "ap-southeast-2" : { },
3111
- "ca-central-1" : { },
3112
- "eu-central-1" : { },
3113
- "eu-north-1" : { },
3114
- "eu-west-1" : { },
3115
- "eu-west-2" : { },
3116
- "eu-west-3" : { },
3117
- "me-south-1" : { },
3118
- "sa-east-1" : { },
3119
- "us-east-1" : { },
3120
- "us-east-2" : { },
3121
- "us-west-1" : { },
3122
- "us-west-2" : { }
3123
- }
3124
- },
3125
- "storagegateway" : {
3126
- "endpoints" : {
3127
- "ap-east-1" : { },
3128
- "ap-northeast-1" : { },
3129
- "ap-northeast-2" : { },
3130
- "ap-south-1" : { },
3131
- "ap-southeast-1" : { },
3132
- "ap-southeast-2" : { },
3133
- "ca-central-1" : { },
3134
- "eu-central-1" : { },
3135
- "eu-north-1" : { },
3136
- "eu-west-1" : { },
3137
- "eu-west-2" : { },
3138
- "eu-west-3" : { },
3139
- "me-south-1" : { },
3140
- "sa-east-1" : { },
3141
- "us-east-1" : { },
3142
- "us-east-2" : { },
3143
- "us-west-1" : { },
3144
- "us-west-2" : { }
3145
- }
3146
- },
3147
- "streams.dynamodb" : {
3148
- "defaults" : {
3149
- "credentialScope" : {
3150
- "service" : "dynamodb"
3151
- },
3152
- "protocols" : [ "http", "https" ]
3153
- },
3154
- "endpoints" : {
3155
- "ap-northeast-1" : { },
3156
- "ap-northeast-2" : { },
3157
- "ap-south-1" : { },
3158
- "ap-southeast-1" : { },
3159
- "ap-southeast-2" : { },
3160
- "ca-central-1" : { },
3161
- "ca-central-1-fips" : {
3162
- "credentialScope" : {
3163
- "region" : "ca-central-1"
3164
- },
3165
- "hostname" : "dynamodb-fips.ca-central-1.amazonaws.com"
3166
- },
3167
- "eu-central-1" : { },
3168
- "eu-north-1" : { },
3169
- "eu-west-1" : { },
3170
- "eu-west-2" : { },
3171
- "eu-west-3" : { },
3172
- "local" : {
3173
- "credentialScope" : {
3174
- "region" : "us-east-1"
3175
- },
3176
- "hostname" : "localhost:8000",
3177
- "protocols" : [ "http" ]
3178
- },
3179
- "me-south-1" : { },
3180
- "sa-east-1" : { },
3181
- "us-east-1" : { },
3182
- "us-east-1-fips" : {
3183
- "credentialScope" : {
3184
- "region" : "us-east-1"
3185
- },
3186
- "hostname" : "dynamodb-fips.us-east-1.amazonaws.com"
3187
- },
3188
- "us-east-2" : { },
3189
- "us-east-2-fips" : {
3190
- "credentialScope" : {
3191
- "region" : "us-east-2"
3192
- },
3193
- "hostname" : "dynamodb-fips.us-east-2.amazonaws.com"
3194
- },
3195
- "us-west-1" : { },
3196
- "us-west-1-fips" : {
3197
- "credentialScope" : {
3198
- "region" : "us-west-1"
3199
- },
3200
- "hostname" : "dynamodb-fips.us-west-1.amazonaws.com"
3201
- },
3202
- "us-west-2" : { },
3203
- "us-west-2-fips" : {
3204
- "credentialScope" : {
3205
- "region" : "us-west-2"
3206
- },
3207
- "hostname" : "dynamodb-fips.us-west-2.amazonaws.com"
3208
- }
3209
- }
3210
- },
3211
- "sts" : {
3212
- "defaults" : {
3213
- "credentialScope" : {
3214
- "region" : "us-east-1"
3215
- },
3216
- "hostname" : "sts.amazonaws.com"
3217
- },
3218
- "endpoints" : {
3219
- "ap-east-1" : {
3220
- "credentialScope" : {
3221
- "region" : "ap-east-1"
3222
- },
3223
- "hostname" : "sts.ap-east-1.amazonaws.com"
3224
- },
3225
- "ap-northeast-1" : { },
3226
- "ap-northeast-2" : {
3227
- "credentialScope" : {
3228
- "region" : "ap-northeast-2"
3229
- },
3230
- "hostname" : "sts.ap-northeast-2.amazonaws.com"
3231
- },
3232
- "ap-south-1" : { },
3233
- "ap-southeast-1" : { },
3234
- "ap-southeast-2" : { },
3235
- "aws-global" : { },
3236
- "ca-central-1" : { },
3237
- "eu-central-1" : { },
3238
- "eu-north-1" : { },
3239
- "eu-west-1" : { },
3240
- "eu-west-2" : { },
3241
- "eu-west-3" : { },
3242
- "me-south-1" : {
3243
- "credentialScope" : {
3244
- "region" : "me-south-1"
3245
- },
3246
- "hostname" : "sts.me-south-1.amazonaws.com"
3247
- },
3248
- "sa-east-1" : { },
3249
- "us-east-1" : { },
3250
- "us-east-1-fips" : {
3251
- "credentialScope" : {
3252
- "region" : "us-east-1"
3253
- },
3254
- "hostname" : "sts-fips.us-east-1.amazonaws.com"
3255
- },
3256
- "us-east-2" : { },
3257
- "us-east-2-fips" : {
3258
- "credentialScope" : {
3259
- "region" : "us-east-2"
3260
- },
3261
- "hostname" : "sts-fips.us-east-2.amazonaws.com"
3262
- },
3263
- "us-west-1" : { },
3264
- "us-west-1-fips" : {
3265
- "credentialScope" : {
3266
- "region" : "us-west-1"
3267
- },
3268
- "hostname" : "sts-fips.us-west-1.amazonaws.com"
3269
- },
3270
- "us-west-2" : { },
3271
- "us-west-2-fips" : {
3272
- "credentialScope" : {
3273
- "region" : "us-west-2"
3274
- },
3275
- "hostname" : "sts-fips.us-west-2.amazonaws.com"
3276
- }
3277
- },
3278
- "partitionEndpoint" : "aws-global"
3279
- },
3280
- "support" : {
3281
- "endpoints" : {
3282
- "aws-global" : {
3283
- "credentialScope" : {
3284
- "region" : "us-east-1"
3285
- },
3286
- "hostname" : "support.us-east-1.amazonaws.com"
3287
- }
3288
- },
3289
- "partitionEndpoint" : "aws-global"
3290
- },
3291
- "swf" : {
3292
- "endpoints" : {
3293
- "ap-east-1" : { },
3294
- "ap-northeast-1" : { },
3295
- "ap-northeast-2" : { },
3296
- "ap-south-1" : { },
3297
- "ap-southeast-1" : { },
3298
- "ap-southeast-2" : { },
3299
- "ca-central-1" : { },
3300
- "eu-central-1" : { },
3301
- "eu-north-1" : { },
3302
- "eu-west-1" : { },
3303
- "eu-west-2" : { },
3304
- "eu-west-3" : { },
3305
- "me-south-1" : { },
3306
- "sa-east-1" : { },
3307
- "us-east-1" : { },
3308
- "us-east-2" : { },
3309
- "us-west-1" : { },
3310
- "us-west-2" : { }
3311
- }
3312
- },
3313
- "tagging" : {
3314
- "endpoints" : {
3315
- "ap-east-1" : { },
3316
- "ap-northeast-1" : { },
3317
- "ap-northeast-2" : { },
3318
- "ap-south-1" : { },
3319
- "ap-southeast-1" : { },
3320
- "ap-southeast-2" : { },
3321
- "ca-central-1" : { },
3322
- "eu-central-1" : { },
3323
- "eu-north-1" : { },
3324
- "eu-west-1" : { },
3325
- "eu-west-2" : { },
3326
- "eu-west-3" : { },
3327
- "me-south-1" : { },
3328
- "sa-east-1" : { },
3329
- "us-east-1" : { },
3330
- "us-east-2" : { },
3331
- "us-west-1" : { },
3332
- "us-west-2" : { }
3333
- }
3334
- },
3335
- "transfer" : {
3336
- "endpoints" : {
3337
- "ap-northeast-1" : { },
3338
- "ap-northeast-2" : { },
3339
- "ap-south-1" : { },
3340
- "ap-southeast-1" : { },
3341
- "ap-southeast-2" : { },
3342
- "ca-central-1" : { },
3343
- "eu-central-1" : { },
3344
- "eu-north-1" : { },
3345
- "eu-west-1" : { },
3346
- "eu-west-2" : { },
3347
- "eu-west-3" : { },
3348
- "sa-east-1" : { },
3349
- "us-east-1" : { },
3350
- "us-east-2" : { },
3351
- "us-west-1" : { },
3352
- "us-west-2" : { }
3353
- }
3354
- },
3355
- "translate" : {
3356
- "defaults" : {
3357
- "protocols" : [ "https" ]
3358
- },
3359
- "endpoints" : {
3360
- "ap-northeast-1" : { },
3361
- "ap-northeast-2" : { },
3362
- "ap-south-1" : { },
3363
- "ap-southeast-1" : { },
3364
- "ca-central-1" : { },
3365
- "eu-central-1" : { },
3366
- "eu-west-1" : { },
3367
- "us-east-1" : { },
3368
- "us-east-1-fips" : {
3369
- "credentialScope" : {
3370
- "region" : "us-east-1"
3371
- },
3372
- "hostname" : "translate-fips.us-east-1.amazonaws.com"
3373
- },
3374
- "us-east-2" : { },
3375
- "us-east-2-fips" : {
3376
- "credentialScope" : {
3377
- "region" : "us-east-2"
3378
- },
3379
- "hostname" : "translate-fips.us-east-2.amazonaws.com"
3380
- },
3381
- "us-west-2" : { },
3382
- "us-west-2-fips" : {
3383
- "credentialScope" : {
3384
- "region" : "us-west-2"
3385
- },
3386
- "hostname" : "translate-fips.us-west-2.amazonaws.com"
3387
- }
3388
- }
3389
- },
3390
- "waf" : {
3391
- "endpoints" : {
3392
- "aws-global" : {
3393
- "credentialScope" : {
3394
- "region" : "us-east-1"
3395
- },
3396
- "hostname" : "waf.amazonaws.com"
3397
- }
3398
- },
3399
- "isRegionalized" : false,
3400
- "partitionEndpoint" : "aws-global"
3401
- },
3402
- "waf-regional" : {
3403
- "endpoints" : {
3404
- "ap-northeast-1" : { },
3405
- "ap-northeast-2" : { },
3406
- "ap-south-1" : { },
3407
- "ap-southeast-1" : { },
3408
- "ap-southeast-2" : { },
3409
- "ca-central-1" : { },
3410
- "eu-central-1" : { },
3411
- "eu-north-1" : { },
3412
- "eu-west-1" : { },
3413
- "eu-west-2" : { },
3414
- "eu-west-3" : { },
3415
- "sa-east-1" : { },
3416
- "us-east-1" : { },
3417
- "us-east-2" : { },
3418
- "us-west-1" : { },
3419
- "us-west-2" : { }
3420
- }
3421
- },
3422
- "workdocs" : {
3423
- "endpoints" : {
3424
- "ap-northeast-1" : { },
3425
- "ap-southeast-1" : { },
3426
- "ap-southeast-2" : { },
3427
- "eu-west-1" : { },
3428
- "us-east-1" : { },
3429
- "us-west-2" : { }
3430
- }
3431
- },
3432
- "workmail" : {
3433
- "defaults" : {
3434
- "protocols" : [ "https" ]
3435
- },
3436
- "endpoints" : {
3437
- "eu-west-1" : { },
3438
- "us-east-1" : { },
3439
- "us-west-2" : { }
3440
- }
3441
- },
3442
- "workspaces" : {
3443
- "endpoints" : {
3444
- "ap-northeast-1" : { },
3445
- "ap-northeast-2" : { },
3446
- "ap-southeast-1" : { },
3447
- "ap-southeast-2" : { },
3448
- "ca-central-1" : { },
3449
- "eu-central-1" : { },
3450
- "eu-west-1" : { },
3451
- "eu-west-2" : { },
3452
- "sa-east-1" : { },
3453
- "us-east-1" : { },
3454
- "us-west-2" : { }
3455
- }
3456
- },
3457
- "xray" : {
3458
- "endpoints" : {
3459
- "ap-east-1" : { },
3460
- "ap-northeast-1" : { },
3461
- "ap-northeast-2" : { },
3462
- "ap-south-1" : { },
3463
- "ap-southeast-1" : { },
3464
- "ap-southeast-2" : { },
3465
- "ca-central-1" : { },
3466
- "eu-central-1" : { },
3467
- "eu-north-1" : { },
3468
- "eu-west-1" : { },
3469
- "eu-west-2" : { },
3470
- "eu-west-3" : { },
3471
- "me-south-1" : { },
3472
- "sa-east-1" : { },
3473
- "us-east-1" : { },
3474
- "us-east-2" : { },
3475
- "us-west-1" : { },
3476
- "us-west-2" : { }
3477
- }
3478
- }
3479
- }
3480
- }, {
3481
- "defaults" : {
3482
- "hostname" : "{service}.{region}.{dnsSuffix}",
3483
- "protocols" : [ "https" ],
3484
- "signatureVersions" : [ "v4" ]
3485
- },
3486
- "dnsSuffix" : "amazonaws.com.cn",
3487
- "partition" : "aws-cn",
3488
- "partitionName" : "AWS China",
3489
- "regionRegex" : "^cn\\-\\w+\\-\\d+$",
3490
- "regions" : {
3491
- "cn-north-1" : {
3492
- "description" : "China (Beijing)"
3493
- },
3494
- "cn-northwest-1" : {
3495
- "description" : "China (Ningxia)"
3496
- }
3497
- },
3498
- "services" : {
3499
- "api.ecr" : {
3500
- "endpoints" : {
3501
- "cn-north-1" : {
3502
- "credentialScope" : {
3503
- "region" : "cn-north-1"
3504
- },
3505
- "hostname" : "api.ecr.cn-north-1.amazonaws.com.cn"
3506
- },
3507
- "cn-northwest-1" : {
3508
- "credentialScope" : {
3509
- "region" : "cn-northwest-1"
3510
- },
3511
- "hostname" : "api.ecr.cn-northwest-1.amazonaws.com.cn"
3512
- }
3513
- }
3514
- },
3515
- "apigateway" : {
3516
- "endpoints" : {
3517
- "cn-north-1" : { },
3518
- "cn-northwest-1" : { }
3519
- }
3520
- },
3521
- "application-autoscaling" : {
3522
- "defaults" : {
3523
- "credentialScope" : {
3524
- "service" : "application-autoscaling"
3525
- },
3526
- "hostname" : "autoscaling.{region}.amazonaws.com",
3527
- "protocols" : [ "http", "https" ]
3528
- },
3529
- "endpoints" : {
3530
- "cn-north-1" : { },
3531
- "cn-northwest-1" : { }
3532
- }
3533
- },
3534
- "autoscaling" : {
3535
- "defaults" : {
3536
- "protocols" : [ "http", "https" ]
3537
- },
3538
- "endpoints" : {
3539
- "cn-north-1" : { },
3540
- "cn-northwest-1" : { }
3541
- }
3542
- },
3543
- "cloudformation" : {
3544
- "endpoints" : {
3545
- "cn-north-1" : { },
3546
- "cn-northwest-1" : { }
3547
- }
3548
- },
3549
- "cloudfront" : {
3550
- "endpoints" : {
3551
- "aws-cn-global" : {
3552
- "credentialScope" : {
3553
- "region" : "cn-northwest-1"
3554
- },
3555
- "hostname" : "cloudfront.cn-northwest-1.amazonaws.com.cn",
3556
- "protocols" : [ "http", "https" ]
3557
- }
3558
- },
3559
- "isRegionalized" : false,
3560
- "partitionEndpoint" : "aws-cn-global"
3561
- },
3562
- "cloudtrail" : {
3563
- "endpoints" : {
3564
- "cn-north-1" : { },
3565
- "cn-northwest-1" : { }
3566
- }
3567
- },
3568
- "codebuild" : {
3569
- "endpoints" : {
3570
- "cn-north-1" : { },
3571
- "cn-northwest-1" : { }
3572
- }
3573
- },
3574
- "codedeploy" : {
3575
- "endpoints" : {
3576
- "cn-north-1" : { },
3577
- "cn-northwest-1" : { }
3578
- }
3579
- },
3580
- "cognito-identity" : {
3581
- "endpoints" : {
3582
- "cn-north-1" : { }
3583
- }
3584
- },
3585
- "config" : {
3586
- "endpoints" : {
3587
- "cn-north-1" : { },
3588
- "cn-northwest-1" : { }
3589
- }
3590
- },
3591
- "data.iot" : {
3592
- "defaults" : {
3593
- "credentialScope" : {
3594
- "service" : "iotdata"
3595
- },
3596
- "protocols" : [ "https" ]
3597
- },
3598
- "endpoints" : {
3599
- "cn-north-1" : { },
3600
- "cn-northwest-1" : { }
3601
- }
3602
- },
3603
- "directconnect" : {
3604
- "endpoints" : {
3605
- "cn-north-1" : { },
3606
- "cn-northwest-1" : { }
3607
- }
3608
- },
3609
- "dms" : {
3610
- "endpoints" : {
3611
- "cn-north-1" : { },
3612
- "cn-northwest-1" : { }
3613
- }
3614
- },
3615
- "ds" : {
3616
- "endpoints" : {
3617
- "cn-north-1" : { },
3618
- "cn-northwest-1" : { }
3619
- }
3620
- },
3621
- "dynamodb" : {
3622
- "defaults" : {
3623
- "protocols" : [ "http", "https" ]
3624
- },
3625
- "endpoints" : {
3626
- "cn-north-1" : { },
3627
- "cn-northwest-1" : { }
3628
- }
3629
- },
3630
- "ec2" : {
3631
- "defaults" : {
3632
- "protocols" : [ "http", "https" ]
3633
- },
3634
- "endpoints" : {
3635
- "cn-north-1" : { },
3636
- "cn-northwest-1" : { }
3637
- }
3638
- },
3639
- "ecs" : {
3640
- "endpoints" : {
3641
- "cn-north-1" : { },
3642
- "cn-northwest-1" : { }
3643
- }
3644
- },
3645
- "elasticache" : {
3646
- "endpoints" : {
3647
- "cn-north-1" : { },
3648
- "cn-northwest-1" : { }
3649
- }
3650
- },
3651
- "elasticbeanstalk" : {
3652
- "endpoints" : {
3653
- "cn-north-1" : { },
3654
- "cn-northwest-1" : { }
3655
- }
3656
- },
3657
- "elasticloadbalancing" : {
3658
- "defaults" : {
3659
- "protocols" : [ "https" ]
3660
- },
3661
- "endpoints" : {
3662
- "cn-north-1" : { },
3663
- "cn-northwest-1" : { }
3664
- }
3665
- },
3666
- "elasticmapreduce" : {
3667
- "defaults" : {
3668
- "protocols" : [ "https" ]
3669
- },
3670
- "endpoints" : {
3671
- "cn-north-1" : { },
3672
- "cn-northwest-1" : { }
3673
- }
3674
- },
3675
- "es" : {
3676
- "endpoints" : {
3677
- "cn-north-1" : { },
3678
- "cn-northwest-1" : { }
3679
- }
3680
- },
3681
- "events" : {
3682
- "endpoints" : {
3683
- "cn-north-1" : { },
3684
- "cn-northwest-1" : { }
3685
- }
3686
- },
3687
- "firehose" : {
3688
- "endpoints" : {
3689
- "cn-north-1" : { },
3690
- "cn-northwest-1" : { }
3691
- }
3692
- },
3693
- "gamelift" : {
3694
- "endpoints" : {
3695
- "cn-north-1" : { }
3696
- }
3697
- },
3698
- "glacier" : {
3699
- "defaults" : {
3700
- "protocols" : [ "http", "https" ]
3701
- },
3702
- "endpoints" : {
3703
- "cn-north-1" : { },
3704
- "cn-northwest-1" : { }
3705
- }
3706
- },
3707
- "greengrass" : {
3708
- "defaults" : {
3709
- "protocols" : [ "https" ]
3710
- },
3711
- "endpoints" : {
3712
- "cn-north-1" : { }
3713
- },
3714
- "isRegionalized" : true
3715
- },
3716
- "iam" : {
3717
- "endpoints" : {
3718
- "aws-cn-global" : {
3719
- "credentialScope" : {
3720
- "region" : "cn-north-1"
3721
- },
3722
- "hostname" : "iam.cn-north-1.amazonaws.com.cn"
3723
- }
3724
- },
3725
- "isRegionalized" : false,
3726
- "partitionEndpoint" : "aws-cn-global"
3727
- },
3728
- "iot" : {
3729
- "defaults" : {
3730
- "credentialScope" : {
3731
- "service" : "execute-api"
3732
- }
3733
- },
3734
- "endpoints" : {
3735
- "cn-north-1" : { },
3736
- "cn-northwest-1" : { }
3737
- }
3738
- },
3739
- "kinesis" : {
3740
- "endpoints" : {
3741
- "cn-north-1" : { },
3742
- "cn-northwest-1" : { }
3743
- }
3744
- },
3745
- "kms" : {
3746
- "endpoints" : {
3747
- "cn-north-1" : { },
3748
- "cn-northwest-1" : { }
3749
- }
3750
- },
3751
- "lambda" : {
3752
- "endpoints" : {
3753
- "cn-north-1" : { },
3754
- "cn-northwest-1" : { }
3755
- }
3756
- },
3757
- "license-manager" : {
3758
- "endpoints" : {
3759
- "cn-north-1" : { },
3760
- "cn-northwest-1" : { }
3761
- }
3762
- },
3763
- "logs" : {
3764
- "endpoints" : {
3765
- "cn-north-1" : { },
3766
- "cn-northwest-1" : { }
3767
- }
3768
- },
3769
- "mediaconvert" : {
3770
- "endpoints" : {
3771
- "cn-northwest-1" : {
3772
- "credentialScope" : {
3773
- "region" : "cn-northwest-1"
3774
- },
3775
- "hostname" : "subscribe.mediaconvert.cn-northwest-1.amazonaws.com.cn"
3776
- }
3777
- }
3778
- },
3779
- "monitoring" : {
3780
- "defaults" : {
3781
- "protocols" : [ "http", "https" ]
3782
- },
3783
- "endpoints" : {
3784
- "cn-north-1" : { },
3785
- "cn-northwest-1" : { }
3786
- }
3787
- },
3788
- "polly" : {
3789
- "endpoints" : {
3790
- "cn-northwest-1" : { }
3791
- }
3792
- },
3793
- "rds" : {
3794
- "endpoints" : {
3795
- "cn-north-1" : { },
3796
- "cn-northwest-1" : { }
3797
- }
3798
- },
3799
- "redshift" : {
3800
- "endpoints" : {
3801
- "cn-north-1" : { },
3802
- "cn-northwest-1" : { }
3803
- }
3804
- },
3805
- "s3" : {
3806
- "defaults" : {
3807
- "protocols" : [ "http", "https" ],
3808
- "signatureVersions" : [ "s3v4" ]
3809
- },
3810
- "endpoints" : {
3811
- "cn-north-1" : { },
3812
- "cn-northwest-1" : { }
3813
- }
3814
- },
3815
- "s3-control" : {
3816
- "defaults" : {
3817
- "protocols" : [ "https" ],
3818
- "signatureVersions" : [ "s3v4" ]
3819
- },
3820
- "endpoints" : {
3821
- "cn-north-1" : {
3822
- "credentialScope" : {
3823
- "region" : "cn-north-1"
3824
- },
3825
- "hostname" : "s3-control.cn-north-1.amazonaws.com.cn",
3826
- "signatureVersions" : [ "s3v4" ]
3827
- },
3828
- "cn-northwest-1" : {
3829
- "credentialScope" : {
3830
- "region" : "cn-northwest-1"
3831
- },
3832
- "hostname" : "s3-control.cn-northwest-1.amazonaws.com.cn",
3833
- "signatureVersions" : [ "s3v4" ]
3834
- }
3835
- }
3836
- },
3837
- "sms" : {
3838
- "endpoints" : {
3839
- "cn-north-1" : { },
3840
- "cn-northwest-1" : { }
3841
- }
3842
- },
3843
- "snowball" : {
3844
- "endpoints" : {
3845
- "cn-north-1" : { }
3846
- }
3847
- },
3848
- "sns" : {
3849
- "defaults" : {
3850
- "protocols" : [ "http", "https" ]
3851
- },
3852
- "endpoints" : {
3853
- "cn-north-1" : { },
3854
- "cn-northwest-1" : { }
3855
- }
3856
- },
3857
- "sqs" : {
3858
- "defaults" : {
3859
- "protocols" : [ "http", "https" ],
3860
- "sslCommonName" : "{region}.queue.{dnsSuffix}"
3861
- },
3862
- "endpoints" : {
3863
- "cn-north-1" : { },
3864
- "cn-northwest-1" : { }
3865
- }
3866
- },
3867
- "ssm" : {
3868
- "endpoints" : {
3869
- "cn-north-1" : { },
3870
- "cn-northwest-1" : { }
3871
- }
3872
- },
3873
- "states" : {
3874
- "endpoints" : {
3875
- "cn-north-1" : { },
3876
- "cn-northwest-1" : { }
3877
- }
3878
- },
3879
- "storagegateway" : {
3880
- "endpoints" : {
3881
- "cn-north-1" : { }
3882
- }
3883
- },
3884
- "streams.dynamodb" : {
3885
- "defaults" : {
3886
- "credentialScope" : {
3887
- "service" : "dynamodb"
3888
- },
3889
- "protocols" : [ "http", "https" ]
3890
- },
3891
- "endpoints" : {
3892
- "cn-north-1" : { },
3893
- "cn-northwest-1" : { }
3894
- }
3895
- },
3896
- "sts" : {
3897
- "endpoints" : {
3898
- "cn-north-1" : { },
3899
- "cn-northwest-1" : { }
3900
- }
3901
- },
3902
- "support" : {
3903
- "endpoints" : {
3904
- "aws-cn-global" : {
3905
- "credentialScope" : {
3906
- "region" : "cn-north-1"
3907
- },
3908
- "hostname" : "support.cn-north-1.amazonaws.com"
3909
- }
3910
- },
3911
- "partitionEndpoint" : "aws-cn-global"
3912
- },
3913
- "swf" : {
3914
- "endpoints" : {
3915
- "cn-north-1" : { },
3916
- "cn-northwest-1" : { }
3917
- }
3918
- },
3919
- "tagging" : {
3920
- "endpoints" : {
3921
- "cn-north-1" : { },
3922
- "cn-northwest-1" : { }
3923
- }
3924
- }
3925
- }
3926
- }, {
3927
- "defaults" : {
3928
- "hostname" : "{service}.{region}.{dnsSuffix}",
3929
- "protocols" : [ "https" ],
3930
- "signatureVersions" : [ "v4" ]
3931
- },
3932
- "dnsSuffix" : "amazonaws.com",
3933
- "partition" : "aws-us-gov",
3934
- "partitionName" : "AWS GovCloud (US)",
3935
- "regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
3936
- "regions" : {
3937
- "us-gov-east-1" : {
3938
- "description" : "AWS GovCloud (US-East)"
3939
- },
3940
- "us-gov-west-1" : {
3941
- "description" : "AWS GovCloud (US)"
3942
- }
3943
- },
3944
- "services" : {
3945
- "acm" : {
3946
- "endpoints" : {
3947
- "us-gov-east-1" : { },
3948
- "us-gov-west-1" : { }
3949
- }
3950
- },
3951
- "acm-pca" : {
3952
- "defaults" : {
3953
- "protocols" : [ "https" ]
3954
- },
3955
- "endpoints" : {
3956
- "us-gov-east-1" : { },
3957
- "us-gov-west-1" : { }
3958
- }
3959
- },
3960
- "api.ecr" : {
3961
- "endpoints" : {
3962
- "us-gov-east-1" : {
3963
- "credentialScope" : {
3964
- "region" : "us-gov-east-1"
3965
- },
3966
- "hostname" : "api.ecr.us-gov-east-1.amazonaws.com"
3967
- },
3968
- "us-gov-west-1" : {
3969
- "credentialScope" : {
3970
- "region" : "us-gov-west-1"
3971
- },
3972
- "hostname" : "api.ecr.us-gov-west-1.amazonaws.com"
3973
- }
3974
- }
3975
- },
3976
- "api.sagemaker" : {
3977
- "endpoints" : {
3978
- "us-gov-west-1" : { }
3979
- }
3980
- },
3981
- "apigateway" : {
3982
- "endpoints" : {
3983
- "us-gov-east-1" : { },
3984
- "us-gov-west-1" : { }
3985
- }
3986
- },
3987
- "application-autoscaling" : {
3988
- "endpoints" : {
3989
- "us-gov-east-1" : { },
3990
- "us-gov-west-1" : { }
3991
- }
3992
- },
3993
- "athena" : {
3994
- "endpoints" : {
3995
- "us-gov-east-1" : { },
3996
- "us-gov-west-1" : { }
3997
- }
3998
- },
3999
- "autoscaling" : {
4000
- "endpoints" : {
4001
- "us-gov-east-1" : { },
4002
- "us-gov-west-1" : {
4003
- "protocols" : [ "http", "https" ]
4004
- }
4005
- }
4006
- },
4007
- "clouddirectory" : {
4008
- "endpoints" : {
4009
- "us-gov-west-1" : { }
4010
- }
4011
- },
4012
- "cloudformation" : {
4013
- "endpoints" : {
4014
- "us-gov-east-1" : { },
4015
- "us-gov-west-1" : { }
4016
- }
4017
- },
4018
- "cloudhsm" : {
4019
- "endpoints" : {
4020
- "us-gov-west-1" : { }
4021
- }
4022
- },
4023
- "cloudhsmv2" : {
4024
- "defaults" : {
4025
- "credentialScope" : {
4026
- "service" : "cloudhsm"
4027
- }
4028
- },
4029
- "endpoints" : {
4030
- "us-gov-east-1" : { },
4031
- "us-gov-west-1" : { }
4032
- }
4033
- },
4034
- "cloudtrail" : {
4035
- "endpoints" : {
4036
- "us-gov-east-1" : { },
4037
- "us-gov-west-1" : { }
4038
- }
4039
- },
4040
- "codebuild" : {
4041
- "endpoints" : {
4042
- "us-gov-east-1" : { },
4043
- "us-gov-west-1" : { }
4044
- }
4045
- },
4046
- "codecommit" : {
4047
- "endpoints" : {
4048
- "us-gov-east-1" : { },
4049
- "us-gov-west-1" : { }
4050
- }
4051
- },
4052
- "codedeploy" : {
4053
- "endpoints" : {
4054
- "us-gov-east-1" : { },
4055
- "us-gov-east-1-fips" : {
4056
- "credentialScope" : {
4057
- "region" : "us-gov-east-1"
4058
- },
4059
- "hostname" : "codedeploy-fips.us-gov-east-1.amazonaws.com"
4060
- },
4061
- "us-gov-west-1" : { },
4062
- "us-gov-west-1-fips" : {
4063
- "credentialScope" : {
4064
- "region" : "us-gov-west-1"
4065
- },
4066
- "hostname" : "codedeploy-fips.us-gov-west-1.amazonaws.com"
4067
- }
4068
- }
4069
- },
4070
- "comprehend" : {
4071
- "defaults" : {
4072
- "protocols" : [ "https" ]
4073
- },
4074
- "endpoints" : {
4075
- "us-gov-west-1" : { }
4076
- }
4077
- },
4078
- "config" : {
4079
- "endpoints" : {
4080
- "us-gov-east-1" : { },
4081
- "us-gov-west-1" : { }
4082
- }
4083
- },
4084
- "data.iot" : {
4085
- "defaults" : {
4086
- "credentialScope" : {
4087
- "service" : "iotdata"
4088
- },
4089
- "protocols" : [ "https" ]
4090
- },
4091
- "endpoints" : {
4092
- "us-gov-west-1" : { }
4093
- }
4094
- },
4095
- "datasync" : {
4096
- "endpoints" : {
4097
- "fips-us-gov-west-1" : {
4098
- "credentialScope" : {
4099
- "region" : "us-gov-west-1"
4100
- },
4101
- "hostname" : "datasync-fips.us-gov-west-1.amazonaws.com"
4102
- },
4103
- "us-gov-west-1" : { }
4104
- }
4105
- },
4106
- "directconnect" : {
4107
- "endpoints" : {
4108
- "us-gov-east-1" : { },
4109
- "us-gov-west-1" : { }
4110
- }
4111
- },
4112
- "dms" : {
4113
- "endpoints" : {
4114
- "us-gov-east-1" : { },
4115
- "us-gov-west-1" : { }
4116
- }
4117
- },
4118
- "ds" : {
4119
- "endpoints" : {
4120
- "us-gov-east-1" : { },
4121
- "us-gov-west-1" : { }
4122
- }
4123
- },
4124
- "dynamodb" : {
4125
- "endpoints" : {
4126
- "us-gov-east-1" : { },
4127
- "us-gov-east-1-fips" : {
4128
- "credentialScope" : {
4129
- "region" : "us-gov-east-1"
4130
- },
4131
- "hostname" : "dynamodb.us-gov-east-1.amazonaws.com"
4132
- },
4133
- "us-gov-west-1" : { },
4134
- "us-gov-west-1-fips" : {
4135
- "credentialScope" : {
4136
- "region" : "us-gov-west-1"
4137
- },
4138
- "hostname" : "dynamodb.us-gov-west-1.amazonaws.com"
4139
- }
4140
- }
4141
- },
4142
- "ec2" : {
4143
- "endpoints" : {
4144
- "us-gov-east-1" : { },
4145
- "us-gov-west-1" : { }
4146
- }
4147
- },
4148
- "ecs" : {
4149
- "endpoints" : {
4150
- "us-gov-east-1" : { },
4151
- "us-gov-west-1" : { }
4152
- }
4153
- },
4154
- "elasticache" : {
4155
- "endpoints" : {
4156
- "fips" : {
4157
- "credentialScope" : {
4158
- "region" : "us-gov-west-1"
4159
- },
4160
- "hostname" : "elasticache-fips.us-gov-west-1.amazonaws.com"
4161
- },
4162
- "us-gov-east-1" : { },
4163
- "us-gov-west-1" : { }
4164
- }
4165
- },
4166
- "elasticbeanstalk" : {
4167
- "endpoints" : {
4168
- "us-gov-east-1" : { },
4169
- "us-gov-west-1" : { }
4170
- }
4171
- },
4172
- "elasticfilesystem" : {
4173
- "endpoints" : {
4174
- "us-gov-west-1" : { }
4175
- }
4176
- },
4177
- "elasticloadbalancing" : {
4178
- "endpoints" : {
4179
- "us-gov-east-1" : { },
4180
- "us-gov-west-1" : {
4181
- "protocols" : [ "http", "https" ]
4182
- }
4183
- }
4184
- },
4185
- "elasticmapreduce" : {
4186
- "endpoints" : {
4187
- "us-gov-east-1" : { },
4188
- "us-gov-west-1" : {
4189
- "protocols" : [ "https" ]
4190
- }
4191
- }
4192
- },
4193
- "es" : {
4194
- "endpoints" : {
4195
- "fips" : {
4196
- "credentialScope" : {
4197
- "region" : "us-gov-west-1"
4198
- },
4199
- "hostname" : "es-fips.us-gov-west-1.amazonaws.com"
4200
- },
4201
- "us-gov-east-1" : { },
4202
- "us-gov-west-1" : { }
4203
- }
4204
- },
4205
- "events" : {
4206
- "endpoints" : {
4207
- "us-gov-east-1" : { },
4208
- "us-gov-west-1" : { }
4209
- }
4210
- },
4211
- "firehose" : {
4212
- "endpoints" : {
4213
- "us-gov-east-1" : { },
4214
- "us-gov-west-1" : { }
4215
- }
4216
- },
4217
- "glacier" : {
4218
- "endpoints" : {
4219
- "us-gov-east-1" : { },
4220
- "us-gov-west-1" : {
4221
- "protocols" : [ "http", "https" ]
4222
- }
4223
- }
4224
- },
4225
- "glue" : {
4226
- "endpoints" : {
4227
- "us-gov-east-1" : { },
4228
- "us-gov-west-1" : { }
4229
- }
4230
- },
4231
- "greengrass" : {
4232
- "defaults" : {
4233
- "protocols" : [ "https" ]
4234
- },
4235
- "endpoints" : {
4236
- "us-gov-west-1" : { }
4237
- },
4238
- "isRegionalized" : true
4239
- },
4240
- "guardduty" : {
4241
- "defaults" : {
4242
- "protocols" : [ "https" ]
4243
- },
4244
- "endpoints" : {
4245
- "us-gov-west-1" : { }
4246
- },
4247
- "isRegionalized" : true
4248
- },
4249
- "health" : {
4250
- "endpoints" : {
4251
- "us-gov-west-1" : { }
4252
- }
4253
- },
4254
- "iam" : {
4255
- "endpoints" : {
4256
- "aws-us-gov-global" : {
4257
- "credentialScope" : {
4258
- "region" : "us-gov-west-1"
4259
- },
4260
- "hostname" : "iam.us-gov.amazonaws.com"
4261
- }
4262
- },
4263
- "isRegionalized" : false,
4264
- "partitionEndpoint" : "aws-us-gov-global"
4265
- },
4266
- "inspector" : {
4267
- "endpoints" : {
4268
- "us-gov-east-1" : { },
4269
- "us-gov-west-1" : { }
4270
- }
4271
- },
4272
- "iot" : {
4273
- "defaults" : {
4274
- "credentialScope" : {
4275
- "service" : "execute-api"
4276
- }
4277
- },
4278
- "endpoints" : {
4279
- "us-gov-west-1" : { }
4280
- }
4281
- },
4282
- "kinesis" : {
4283
- "endpoints" : {
4284
- "us-gov-east-1" : { },
4285
- "us-gov-west-1" : { }
4286
- }
4287
- },
4288
- "kms" : {
4289
- "endpoints" : {
4290
- "ProdFips" : {
4291
- "credentialScope" : {
4292
- "region" : "us-gov-west-1"
4293
- },
4294
- "hostname" : "kms-fips.us-gov-west-1.amazonaws.com"
4295
- },
4296
- "us-gov-east-1" : { },
4297
- "us-gov-west-1" : { }
4298
- }
4299
- },
4300
- "lambda" : {
4301
- "endpoints" : {
4302
- "us-gov-east-1" : { },
4303
- "us-gov-west-1" : { }
4304
- }
4305
- },
4306
- "license-manager" : {
4307
- "endpoints" : {
4308
- "us-gov-east-1" : { },
4309
- "us-gov-west-1" : { }
4310
- }
4311
- },
4312
- "logs" : {
4313
- "endpoints" : {
4314
- "us-gov-east-1" : { },
4315
- "us-gov-west-1" : { }
4316
- }
4317
- },
4318
- "mediaconvert" : {
4319
- "endpoints" : {
4320
- "us-gov-west-1" : { }
4321
- }
4322
- },
4323
- "metering.marketplace" : {
4324
- "defaults" : {
4325
- "credentialScope" : {
4326
- "service" : "aws-marketplace"
4327
- }
4328
- },
4329
- "endpoints" : {
4330
- "us-gov-east-1" : { },
4331
- "us-gov-west-1" : { }
4332
- }
4333
- },
4334
- "monitoring" : {
4335
- "endpoints" : {
4336
- "us-gov-east-1" : { },
4337
- "us-gov-west-1" : { }
4338
- }
4339
- },
4340
- "neptune" : {
4341
- "endpoints" : {
4342
- "us-gov-west-1" : {
4343
- "credentialScope" : {
4344
- "region" : "us-gov-west-1"
4345
- },
4346
- "hostname" : "rds.us-gov-west-1.amazonaws.com"
4347
- }
4348
- }
4349
- },
4350
- "organizations" : {
4351
- "endpoints" : {
4352
- "aws-us-gov-global" : {
4353
- "credentialScope" : {
4354
- "region" : "us-gov-west-1"
4355
- },
4356
- "hostname" : "organizations.us-gov-west-1.amazonaws.com"
4357
- }
4358
- },
4359
- "isRegionalized" : false,
4360
- "partitionEndpoint" : "aws-us-gov-global"
4361
- },
4362
- "polly" : {
4363
- "endpoints" : {
4364
- "us-gov-west-1" : { }
4365
- }
4366
- },
4367
- "ram" : {
4368
- "endpoints" : {
4369
- "us-gov-west-1" : { }
4370
- }
4371
- },
4372
- "rds" : {
4373
- "endpoints" : {
4374
- "us-gov-east-1" : { },
4375
- "us-gov-west-1" : { }
4376
- }
4377
- },
4378
- "redshift" : {
4379
- "endpoints" : {
4380
- "us-gov-east-1" : { },
4381
- "us-gov-west-1" : { }
4382
- }
4383
- },
4384
- "rekognition" : {
4385
- "endpoints" : {
4386
- "us-gov-west-1" : { }
4387
- }
4388
- },
4389
- "route53" : {
4390
- "endpoints" : {
4391
- "aws-us-gov-global" : {
4392
- "credentialScope" : {
4393
- "region" : "us-gov-west-1"
4394
- },
4395
- "hostname" : "route53.us-gov.amazonaws.com"
4396
- }
4397
- },
4398
- "isRegionalized" : false,
4399
- "partitionEndpoint" : "aws-us-gov-global"
4400
- },
4401
- "runtime.sagemaker" : {
4402
- "endpoints" : {
4403
- "us-gov-west-1" : { }
4404
- }
4405
- },
4406
- "s3" : {
4407
- "defaults" : {
4408
- "signatureVersions" : [ "s3", "s3v4" ]
4409
- },
4410
- "endpoints" : {
4411
- "fips-us-gov-west-1" : {
4412
- "credentialScope" : {
4413
- "region" : "us-gov-west-1"
4414
- },
4415
- "hostname" : "s3-fips-us-gov-west-1.amazonaws.com"
4416
- },
4417
- "us-gov-east-1" : {
4418
- "hostname" : "s3.us-gov-east-1.amazonaws.com",
4419
- "protocols" : [ "http", "https" ]
4420
- },
4421
- "us-gov-west-1" : {
4422
- "hostname" : "s3.us-gov-west-1.amazonaws.com",
4423
- "protocols" : [ "http", "https" ]
4424
- }
4425
- }
4426
- },
4427
- "s3-control" : {
4428
- "defaults" : {
4429
- "protocols" : [ "https" ],
4430
- "signatureVersions" : [ "s3v4" ]
4431
- },
4432
- "endpoints" : {
4433
- "us-gov-east-1" : {
4434
- "credentialScope" : {
4435
- "region" : "us-gov-east-1"
4436
- },
4437
- "hostname" : "s3-control.us-gov-east-1.amazonaws.com",
4438
- "signatureVersions" : [ "s3v4" ]
4439
- },
4440
- "us-gov-east-1-fips" : {
4441
- "credentialScope" : {
4442
- "region" : "us-gov-east-1"
4443
- },
4444
- "hostname" : "s3-control-fips.us-gov-east-1.amazonaws.com",
4445
- "signatureVersions" : [ "s3v4" ]
4446
- },
4447
- "us-gov-west-1" : {
4448
- "credentialScope" : {
4449
- "region" : "us-gov-west-1"
4450
- },
4451
- "hostname" : "s3-control.us-gov-west-1.amazonaws.com",
4452
- "signatureVersions" : [ "s3v4" ]
4453
- },
4454
- "us-gov-west-1-fips" : {
4455
- "credentialScope" : {
4456
- "region" : "us-gov-west-1"
4457
- },
4458
- "hostname" : "s3-control-fips.us-gov-west-1.amazonaws.com",
4459
- "signatureVersions" : [ "s3v4" ]
4460
- }
4461
- }
4462
- },
4463
- "secretsmanager" : {
4464
- "endpoints" : {
4465
- "us-gov-west-1" : { },
4466
- "us-gov-west-1-fips" : {
4467
- "credentialScope" : {
4468
- "region" : "us-gov-west-1"
4469
- },
4470
- "hostname" : "secretsmanager-fips.us-gov-west-1.amazonaws.com"
4471
- }
4472
- }
4473
- },
4474
- "serverlessrepo" : {
4475
- "defaults" : {
4476
- "protocols" : [ "https" ]
4477
- },
4478
- "endpoints" : {
4479
- "us-gov-east-1" : {
4480
- "protocols" : [ "https" ]
4481
- },
4482
- "us-gov-west-1" : {
4483
- "protocols" : [ "https" ]
4484
- }
4485
- }
4486
- },
4487
- "sms" : {
4488
- "endpoints" : {
4489
- "us-gov-east-1" : { },
4490
- "us-gov-west-1" : { }
4491
- }
4492
- },
4493
- "snowball" : {
4494
- "endpoints" : {
4495
- "us-gov-east-1" : { },
4496
- "us-gov-west-1" : { }
4497
- }
4498
- },
4499
- "sns" : {
4500
- "endpoints" : {
4501
- "us-gov-east-1" : { },
4502
- "us-gov-west-1" : {
4503
- "protocols" : [ "http", "https" ]
4504
- }
4505
- }
4506
- },
4507
- "sqs" : {
4508
- "endpoints" : {
4509
- "us-gov-east-1" : { },
4510
- "us-gov-west-1" : {
4511
- "protocols" : [ "http", "https" ],
4512
- "sslCommonName" : "{region}.queue.{dnsSuffix}"
4513
- }
4514
- }
4515
- },
4516
- "ssm" : {
4517
- "endpoints" : {
4518
- "us-gov-east-1" : { },
4519
- "us-gov-west-1" : { }
4520
- }
4521
- },
4522
- "states" : {
4523
- "endpoints" : {
4524
- "us-gov-east-1" : { },
4525
- "us-gov-west-1" : { }
4526
- }
4527
- },
4528
- "storagegateway" : {
4529
- "endpoints" : {
4530
- "us-gov-west-1" : { }
4531
- }
4532
- },
4533
- "streams.dynamodb" : {
4534
- "defaults" : {
4535
- "credentialScope" : {
4536
- "service" : "dynamodb"
4537
- }
4538
- },
4539
- "endpoints" : {
4540
- "us-gov-east-1" : { },
4541
- "us-gov-east-1-fips" : {
4542
- "credentialScope" : {
4543
- "region" : "us-gov-east-1"
4544
- },
4545
- "hostname" : "dynamodb.us-gov-east-1.amazonaws.com"
4546
- },
4547
- "us-gov-west-1" : { },
4548
- "us-gov-west-1-fips" : {
4549
- "credentialScope" : {
4550
- "region" : "us-gov-west-1"
4551
- },
4552
- "hostname" : "dynamodb.us-gov-west-1.amazonaws.com"
4553
- }
4554
- }
4555
- },
4556
- "sts" : {
4557
- "endpoints" : {
4558
- "us-gov-east-1" : { },
4559
- "us-gov-west-1" : { }
4560
- }
4561
- },
4562
- "swf" : {
4563
- "endpoints" : {
4564
- "us-gov-east-1" : { },
4565
- "us-gov-west-1" : { }
4566
- }
4567
- },
4568
- "tagging" : {
4569
- "endpoints" : {
4570
- "us-gov-east-1" : { },
4571
- "us-gov-west-1" : { }
4572
- }
4573
- },
4574
- "translate" : {
4575
- "defaults" : {
4576
- "protocols" : [ "https" ]
4577
- },
4578
- "endpoints" : {
4579
- "us-gov-west-1" : { },
4580
- "us-gov-west-1-fips" : {
4581
- "credentialScope" : {
4582
- "region" : "us-gov-west-1"
4583
- },
4584
- "hostname" : "translate-fips.us-gov-west-1.amazonaws.com"
4585
- }
4586
- }
4587
- },
4588
- "waf-regional" : {
4589
- "endpoints" : {
4590
- "us-gov-west-1" : { }
4591
- }
4592
- },
4593
- "workspaces" : {
4594
- "endpoints" : {
4595
- "us-gov-west-1" : { }
4596
- }
4597
- }
4598
- }
4599
- } ],
4600
- "version" : 3
4601
- }