aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,20 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeWorkspaceBundles": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "result_key": "Bundles"
7
- },
8
- "DescribeWorkspaceDirectories": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "result_key": "Directories"
12
- },
13
- "DescribeWorkspaces": {
14
- "limit_key": "Limit",
15
- "input_token": "NextToken",
16
- "output_token": "NextToken",
17
- "result_key": "Workspaces"
18
- }
19
- }
20
- }
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,1460 +0,0 @@
1
- {
2
- "version": 3,
3
- "partitions": [
4
- {
5
- "partition": "aws",
6
- "partitionName": "AWS Standard",
7
- "dnsSuffix": "amazonaws.com",
8
- "regionRegex": "^(us|eu|ap|sa|ca)\\-\\w+\\-\\d+$",
9
- "defaults": {
10
- "hostname": "{service}.{region}.{dnsSuffix}",
11
- "protocols": [
12
- "https"
13
- ],
14
- "signatureVersions": [
15
- "v4"
16
- ]
17
- },
18
- "regions": {
19
- "aws-global": {
20
- "description": "AWS partition-global endpoint"
21
- },
22
- "us-east-1": {
23
- "description": "US East (N. Virginia)"
24
- },
25
- "us-west-1": {
26
- "description": "US West (N. California)"
27
- },
28
- "us-west-2": {
29
- "description": "US West (Oregon)"
30
- },
31
- "ap-northeast-1": {
32
- "description": "Asia Pacific (Tokyo)"
33
- },
34
- "ap-northeast-2": {
35
- "description": "Asia Pacific (Seoul)"
36
- },
37
- "ap-south-1": {
38
- "description": "Asia Pacific (Mumbai)"
39
- },
40
- "ap-southeast-1": {
41
- "description": "Asia Pacific (Singapore)"
42
- },
43
- "ap-southeast-2": {
44
- "description": "Asia Pacific (Sydney)"
45
- },
46
- "sa-east-1": {
47
- "description": "South America (Sao Paulo)"
48
- },
49
- "eu-west-1": {
50
- "description": "EU (Ireland)"
51
- },
52
- "eu-central-1": {
53
- "description": "EU (Frankfurt)"
54
- }
55
- },
56
- "services": {
57
- "acm": {
58
- "endpoints": {
59
- "us-east-1": {},
60
- "us-west-1": {},
61
- "us-west-2": {},
62
- "eu-west-1": {},
63
- "eu-central-1": {},
64
- "ap-northeast-1": {},
65
- "ap-northeast-2": {},
66
- "ap-south-1": {},
67
- "ap-southeast-1": {},
68
- "ap-southeast-2": {},
69
- "sa-east-1": {}
70
- }
71
- },
72
- "apigateway": {
73
- "endpoints": {
74
- "us-east-1": {},
75
- "us-west-2": {},
76
- "eu-west-1": {},
77
- "ap-northeast-1": {},
78
- "ap-southeast-1": {},
79
- "eu-central-1": {}
80
- }
81
- },
82
- "application-autoscaling": {
83
- "defaults": {
84
- "hostname": "autoscaling.{region}.amazonaws.com",
85
- "credentialScope": {
86
- "service": "application-autoscaling"
87
- },
88
- "protocols": [
89
- "http",
90
- "https"
91
- ]
92
- },
93
- "endpoints": {
94
- "us-east-1": {},
95
- "us-west-2": {},
96
- "eu-west-1": {}
97
- }
98
- },
99
- "appstream": {
100
- "endpoints": {
101
- "us-east-1": {},
102
- "ap-northeast-1": {}
103
- }
104
- },
105
- "autoscaling": {
106
- "defaults": {
107
- "protocols": [
108
- "http",
109
- "https"
110
- ]
111
- },
112
- "endpoints": {
113
- "us-east-1": {},
114
- "us-west-1": {},
115
- "us-west-2": {},
116
- "ap-northeast-1": {},
117
- "ap-northeast-2": {},
118
- "ap-southeast-1": {},
119
- "ap-southeast-2": {},
120
- "sa-east-1": {},
121
- "eu-west-1": {},
122
- "eu-central-1": {}
123
- }
124
- },
125
- "cloudformation": {
126
- "endpoints": {
127
- "us-east-1": {},
128
- "us-west-1": {},
129
- "us-west-2": {},
130
- "ap-northeast-1": {},
131
- "ap-northeast-2": {},
132
- "ap-south-1": {},
133
- "ap-southeast-1": {},
134
- "ap-southeast-2": {},
135
- "sa-east-1": {},
136
- "eu-west-1": {},
137
- "eu-central-1": {}
138
- }
139
- },
140
- "cloudfront": {
141
- "partitionEndpoint": "aws-global",
142
- "isRegionalized": false,
143
- "endpoints": {
144
- "aws-global": {
145
- "hostname": "cloudfront.amazonaws.com",
146
- "protocols": [
147
- "http",
148
- "https"
149
- ],
150
- "credentialScope": {
151
- "region": "us-east-1"
152
- }
153
- }
154
- }
155
- },
156
- "cloudhsm": {
157
- "endpoints": {
158
- "us-east-1": {},
159
- "us-west-2": {},
160
- "ap-northeast-1": {},
161
- "ap-southeast-1": {},
162
- "ap-southeast-2": {},
163
- "eu-west-1": {},
164
- "eu-central-1": {}
165
- }
166
- },
167
- "cloudsearch": {
168
- "endpoints": {
169
- "us-east-1": {},
170
- "us-west-1": {},
171
- "us-west-2": {},
172
- "ap-northeast-1": {},
173
- "ap-northeast-2": {},
174
- "ap-southeast-1": {},
175
- "ap-southeast-2": {},
176
- "sa-east-1": {},
177
- "eu-west-1": {},
178
- "eu-central-1": {}
179
- }
180
- },
181
- "cloudtrail": {
182
- "endpoints": {
183
- "us-east-1": {},
184
- "us-west-1": {},
185
- "us-west-2": {},
186
- "ap-northeast-1": {},
187
- "ap-northeast-2": {},
188
- "ap-south-1": {},
189
- "ap-southeast-1": {},
190
- "ap-southeast-2": {},
191
- "sa-east-1": {},
192
- "eu-west-1": {},
193
- "eu-central-1": {}
194
- }
195
- },
196
- "codecommit": {
197
- "endpoints": {
198
- "us-east-1": {}
199
- }
200
- },
201
- "codedeploy": {
202
- "endpoints": {
203
- "us-east-1": {},
204
- "us-west-1": {},
205
- "us-west-2": {},
206
- "ap-northeast-1": {},
207
- "ap-northeast-2": {},
208
- "ap-south-1": {},
209
- "ap-southeast-1": {},
210
- "ap-southeast-2": {},
211
- "eu-west-1": {},
212
- "eu-central-1": {},
213
- "sa-east-1": {}
214
- }
215
- },
216
- "codepipeline": {
217
- "endpoints": {
218
- "us-east-1": {},
219
- "us-west-2": {}
220
- }
221
- },
222
- "cognito-identity": {
223
- "endpoints": {
224
- "us-east-1": {},
225
- "eu-west-1": {},
226
- "ap-northeast-1": {}
227
- }
228
- },
229
- "cognito-idp": {
230
- "endpoints": {
231
- "us-east-1": {},
232
- "eu-west-1": {},
233
- "ap-northeast-1": {}
234
- }
235
- },
236
- "cognito-sync": {
237
- "endpoints": {
238
- "us-east-1": {},
239
- "eu-west-1": {},
240
- "ap-northeast-1": {}
241
- }
242
- },
243
- "config": {
244
- "endpoints": {
245
- "us-east-1": {},
246
- "us-west-1": {},
247
- "us-west-2": {},
248
- "ap-northeast-1": {},
249
- "ap-northeast-2": {},
250
- "ap-south-1": {},
251
- "ap-southeast-1": {},
252
- "ap-southeast-2": {},
253
- "sa-east-1": {},
254
- "eu-west-1": {},
255
- "eu-central-1": {}
256
- }
257
- },
258
- "datapipeline": {
259
- "endpoints": {
260
- "us-east-1": {},
261
- "us-west-2": {},
262
- "ap-northeast-1": {},
263
- "ap-southeast-2": {},
264
- "eu-west-1": {}
265
- }
266
- },
267
- "data.iot": {
268
- "defaults": {
269
- "protocols": [
270
- "https",
271
- "mqqt"
272
- ],
273
- "credentialScope": {
274
- "service": "iotdata"
275
- }
276
- },
277
- "endpoints": {
278
- "us-east-1": {},
279
- "us-west-2": {},
280
- "ap-northeast-1": {},
281
- "ap-southeast-1": {},
282
- "ap-southeast-2": {},
283
- "eu-west-1": {},
284
- "eu-central-1": {}
285
- }
286
- },
287
- "devicefarm": {
288
- "endpoints": {
289
- "us-west-2": {}
290
- }
291
- },
292
- "directconnect": {
293
- "endpoints": {
294
- "us-east-1": {},
295
- "us-west-1": {},
296
- "us-west-2": {},
297
- "ap-northeast-1": {},
298
- "ap-northeast-2": {},
299
- "ap-south-1": {},
300
- "ap-southeast-1": {},
301
- "ap-southeast-2": {},
302
- "sa-east-1": {},
303
- "eu-west-1": {},
304
- "eu-central-1": {}
305
- }
306
- },
307
- "discovery": {
308
- "endpoints": {
309
- "us-west-2": {}
310
- }
311
- },
312
- "dms": {
313
- "endpoints": {
314
- "us-east-1": {},
315
- "us-west-1": {},
316
- "us-west-2": {},
317
- "ap-northeast-1": {},
318
- "ap-southeast-1": {},
319
- "ap-southeast-2": {},
320
- "eu-west-1": {},
321
- "eu-central-1": {}
322
- }
323
- },
324
- "ds": {
325
- "endpoints": {
326
- "us-east-1": {},
327
- "us-west-2": {},
328
- "ap-northeast-1": {},
329
- "ap-southeast-1": {},
330
- "ap-southeast-2": {},
331
- "eu-west-1": {},
332
- "eu-central-1": {}
333
- }
334
- },
335
- "dynamodb": {
336
- "defaults": {
337
- "protocols": [
338
- "http",
339
- "https"
340
- ]
341
- },
342
- "endpoints": {
343
- "us-east-1": {},
344
- "us-west-1": {},
345
- "us-west-2": {},
346
- "ap-northeast-1": {},
347
- "ap-northeast-2": {},
348
- "ap-south-1": {},
349
- "ap-southeast-1": {},
350
- "ap-southeast-2": {},
351
- "sa-east-1": {},
352
- "eu-west-1": {},
353
- "eu-central-1": {},
354
- "local": {
355
- "hostname": "localhost:8000",
356
- "protocols": [
357
- "http"
358
- ],
359
- "credentialScope": {
360
- "region": "us-east-1"
361
- }
362
- }
363
- }
364
- },
365
- "ec2": {
366
- "defaults": {
367
- "protocols": [
368
- "http",
369
- "https"
370
- ]
371
- },
372
- "endpoints": {
373
- "us-east-1": {},
374
- "us-west-1": {},
375
- "us-west-2": {},
376
- "ap-northeast-1": {},
377
- "ap-northeast-2": {},
378
- "ap-south-1": {},
379
- "ap-southeast-1": {},
380
- "ap-southeast-2": {},
381
- "sa-east-1": {},
382
- "eu-west-1": {},
383
- "eu-central-1": {}
384
- }
385
- },
386
- "ecs": {
387
- "endpoints": {
388
- "us-east-1": {},
389
- "us-west-1": {},
390
- "us-west-2": {},
391
- "ap-northeast-1": {},
392
- "ap-southeast-1": {},
393
- "ap-southeast-2": {},
394
- "eu-west-1": {},
395
- "eu-central-1": {}
396
- }
397
- },
398
- "ecr": {
399
- "endpoints": {
400
- "us-east-1": {},
401
- "us-west-2": {},
402
- "eu-west-1": {}
403
- }
404
- },
405
- "elasticache": {
406
- "endpoints": {
407
- "us-east-1": {},
408
- "us-west-1": {},
409
- "us-west-2": {},
410
- "ap-northeast-1": {},
411
- "ap-northeast-2": {},
412
- "ap-south-1": {},
413
- "ap-southeast-1": {},
414
- "ap-southeast-2": {},
415
- "sa-east-1": {},
416
- "eu-west-1": {},
417
- "eu-central-1": {}
418
- }
419
- },
420
- "elasticbeanstalk": {
421
- "endpoints": {
422
- "us-east-1": {},
423
- "us-west-1": {},
424
- "us-west-2": {},
425
- "ap-northeast-1": {},
426
- "ap-northeast-2": {},
427
- "ap-south-1": {},
428
- "ap-southeast-1": {},
429
- "ap-southeast-2": {},
430
- "sa-east-1": {},
431
- "eu-west-1": {},
432
- "eu-central-1": {}
433
- }
434
- },
435
- "elasticfilesystem": {
436
- "endpoints": {
437
- "us-west-2": {}
438
- }
439
- },
440
- "elasticloadbalancing": {
441
- "defaults": {
442
- "protocols": [
443
- "http",
444
- "https"
445
- ]
446
- },
447
- "endpoints": {
448
- "us-east-1": {},
449
- "us-west-1": {},
450
- "us-west-2": {},
451
- "ap-northeast-1": {},
452
- "ap-northeast-2": {},
453
- "ap-south-1": {},
454
- "ap-southeast-1": {},
455
- "ap-southeast-2": {},
456
- "sa-east-1": {},
457
- "eu-west-1": {},
458
- "eu-central-1": {}
459
- }
460
- },
461
- "elasticmapreduce": {
462
- "defaults": {
463
- "protocols": [
464
- "http",
465
- "https"
466
- ],
467
- "sslCommonName": "{region}.{service}.{dnsSuffix}"
468
- },
469
- "endpoints": {
470
- "us-east-1": {
471
- "sslCommonName": "{service}.{region}.{dnsSuffix}"
472
- },
473
- "us-west-1": {},
474
- "us-west-2": {},
475
- "ap-northeast-1": {},
476
- "ap-northeast-2": {},
477
- "ap-south-1": {},
478
- "ap-southeast-1": {},
479
- "ap-southeast-2": {},
480
- "sa-east-1": {},
481
- "eu-west-1": {},
482
- "eu-central-1": {
483
- "sslCommonName": "{service}.{region}.{dnsSuffix}"
484
- }
485
- }
486
- },
487
- "elastictranscoder": {
488
- "endpoints": {
489
- "us-east-1": {},
490
- "us-west-1": {},
491
- "us-west-2": {},
492
- "ap-northeast-1": {},
493
- "ap-southeast-1": {},
494
- "eu-west-1": {}
495
- }
496
- },
497
- "email": {
498
- "endpoints": {
499
- "us-east-1": {},
500
- "us-west-2": {},
501
- "eu-west-1": {}
502
- }
503
- },
504
- "es": {
505
- "endpoints": {
506
- "us-east-1": {},
507
- "us-west-1": {},
508
- "us-west-2": {},
509
- "eu-west-1": {},
510
- "eu-central-1": {},
511
- "ap-south-1": {},
512
- "ap-southeast-1": {},
513
- "ap-southeast-2": {},
514
- "ap-northeast-1": {},
515
- "ap-northeast-2": {},
516
- "sa-east-1": {}
517
- }
518
- },
519
- "events": {
520
- "endpoints": {
521
- "us-east-1": {},
522
- "us-west-1": {},
523
- "us-west-2": {},
524
- "eu-west-1": {},
525
- "eu-central-1": {},
526
- "ap-southeast-1": {},
527
- "ap-southeast-2": {},
528
- "ap-northeast-1": {},
529
- "ap-northeast-2": {},
530
- "sa-east-1": {}
531
- }
532
- },
533
- "firehose": {
534
- "endpoints": {
535
- "us-east-1": {},
536
- "us-west-2": {},
537
- "eu-west-1": {}
538
- }
539
- },
540
- "gamelift": {
541
- "endpoints": {
542
- "us-east-1": {},
543
- "us-west-2": {},
544
- "eu-west-1": {},
545
- "ap-northeast-1": {}
546
- }
547
- },
548
- "glacier": {
549
- "defaults": {
550
- "protocols": [
551
- "http",
552
- "https"
553
- ]
554
- },
555
- "endpoints": {
556
- "us-east-1": {},
557
- "us-west-1": {},
558
- "us-west-2": {},
559
- "ap-northeast-1": {},
560
- "ap-northeast-2": {},
561
- "ap-south-1": {},
562
- "ap-southeast-2": {},
563
- "eu-west-1": {},
564
- "eu-central-1": {}
565
- }
566
- },
567
- "iam": {
568
- "partitionEndpoint": "aws-global",
569
- "isRegionalized": false,
570
- "endpoints": {
571
- "aws-global": {
572
- "hostname": "iam.amazonaws.com",
573
- "credentialScope": {
574
- "region": "us-east-1"
575
- }
576
- }
577
- }
578
- },
579
- "importexport": {
580
- "partitionEndpoint": "aws-global",
581
- "isRegionalized": false,
582
- "endpoints": {
583
- "aws-global": {
584
- "hostname": "importexport.amazonaws.com",
585
- "signatureVersions": [
586
- "v2",
587
- "v4"
588
- ],
589
- "credentialScope": {
590
- "service": "IngestionService",
591
- "region": "us-east-1"
592
- }
593
- }
594
- }
595
- },
596
- "inspector": {
597
- "endpoints": {
598
- "us-west-2": {},
599
- "us-east-1": {},
600
- "eu-west-1": {},
601
- "ap-northeast-1": {}
602
- }
603
- },
604
- "iot": {
605
- "defaults": {
606
- "credentialScope": {
607
- "service": "execute-api"
608
- }
609
- },
610
- "endpoints": {
611
- "us-east-1": {},
612
- "us-west-2": {},
613
- "ap-northeast-1": {},
614
- "ap-southeast-1": {},
615
- "ap-southeast-2": {},
616
- "eu-west-1": {},
617
- "eu-central-1": {}
618
- }
619
- },
620
- "kinesis": {
621
- "endpoints": {
622
- "us-east-1": {},
623
- "us-west-1": {},
624
- "us-west-2": {},
625
- "ap-northeast-1": {},
626
- "ap-northeast-2": {},
627
- "ap-south-1": {},
628
- "ap-southeast-1": {},
629
- "ap-southeast-2": {},
630
- "eu-west-1": {},
631
- "eu-central-1": {},
632
- "sa-east-1": {}
633
- }
634
- },
635
- "kms": {
636
- "endpoints": {
637
- "us-east-1": {},
638
- "us-west-1": {},
639
- "us-west-2": {},
640
- "ap-northeast-1": {},
641
- "ap-northeast-2": {},
642
- "ap-south-1": {},
643
- "ap-southeast-1": {},
644
- "ap-southeast-2": {},
645
- "sa-east-1": {},
646
- "eu-west-1": {},
647
- "eu-central-1": {}
648
- }
649
- },
650
- "lambda": {
651
- "endpoints": {
652
- "us-east-1": {},
653
- "us-west-2": {},
654
- "ap-northeast-1": {},
655
- "ap-southeast-2": {},
656
- "eu-west-1": {},
657
- "eu-central-1": {}
658
- }
659
- },
660
- "logs": {
661
- "endpoints": {
662
- "us-east-1": {},
663
- "us-west-1": {},
664
- "us-west-2": {},
665
- "ap-northeast-1": {},
666
- "ap-northeast-2": {},
667
- "ap-south-1": {},
668
- "ap-southeast-1": {},
669
- "ap-southeast-2": {},
670
- "eu-west-1": {},
671
- "eu-central-1": {},
672
- "sa-east-1": {}
673
- }
674
- },
675
- "machinelearning": {
676
- "endpoints": {
677
- "us-east-1": {},
678
- "eu-west-1": {}
679
- }
680
- },
681
- "marketplacecommerceanalytics": {
682
- "endpoints": {
683
- "us-east-1": {}
684
- }
685
- },
686
- "metering.marketplace": {
687
- "endpoints": {
688
- "us-east-1": {},
689
- "us-west-2": {}
690
- }
691
- },
692
- "mobileanalytics": {
693
- "endpoints": {
694
- "us-east-1": {}
695
- }
696
- },
697
- "monitoring": {
698
- "defaults": {
699
- "protocols": [
700
- "http",
701
- "https"
702
- ]
703
- },
704
- "endpoints": {
705
- "us-east-1": {},
706
- "us-west-1": {},
707
- "us-west-2": {},
708
- "ap-northeast-1": {},
709
- "ap-northeast-2": {},
710
- "ap-south-1": {},
711
- "ap-southeast-1": {},
712
- "ap-southeast-2": {},
713
- "sa-east-1": {},
714
- "eu-west-1": {},
715
- "eu-central-1": {}
716
- }
717
- },
718
- "opsworks": {
719
- "endpoints": {
720
- "us-east-1": {}
721
- }
722
- },
723
- "rds": {
724
- "endpoints": {
725
- "us-east-1": {
726
- "sslCommonName": "{service}.{dnsSuffix}"
727
- },
728
- "us-west-1": {},
729
- "us-west-2": {},
730
- "ap-northeast-1": {},
731
- "ap-northeast-2": {},
732
- "ap-southeast-1": {},
733
- "ap-southeast-2": {},
734
- "sa-east-1": {},
735
- "eu-west-1": {},
736
- "eu-central-1": {}
737
- }
738
- },
739
- "redshift": {
740
- "endpoints": {
741
- "us-east-1": {},
742
- "us-west-1": {},
743
- "us-west-2": {},
744
- "ap-northeast-1": {},
745
- "ap-northeast-2": {},
746
- "ap-south-1": {},
747
- "ap-southeast-1": {},
748
- "ap-southeast-2": {},
749
- "eu-west-1": {},
750
- "eu-central-1": {}
751
- }
752
- },
753
- "route53": {
754
- "partitionEndpoint": "aws-global",
755
- "isRegionalized": false,
756
- "endpoints": {
757
- "aws-global": {
758
- "hostname": "route53.amazonaws.com",
759
- "credentialScope": {
760
- "region": "us-east-1"
761
- }
762
- }
763
- }
764
- },
765
- "route53domains": {
766
- "endpoints": {
767
- "us-east-1": {}
768
- }
769
- },
770
- "s3": {
771
- "partitionEndpoint": "us-east-1",
772
- "isRegionalized": true,
773
- "defaults": {
774
- "protocols": [
775
- "http",
776
- "https"
777
- ],
778
- "signatureVersions": [
779
- "s3v4"
780
- ]
781
- },
782
- "endpoints": {
783
- "us-east-1": {
784
- "hostname": "s3.amazonaws.com",
785
- "signatureVersions": [
786
- "s3",
787
- "s3v4"
788
- ]
789
- },
790
- "s3-external-1": {
791
- "credentialScope": {
792
- "region": "us-east-1"
793
- },
794
- "hostname": "s3-external-1.amazonaws.com",
795
- "signatureVersions": [
796
- "s3",
797
- "s3v4"
798
- ]
799
- },
800
- "us-west-1": {
801
- "hostname": "s3-us-west-1.amazonaws.com",
802
- "signatureVersions": [
803
- "s3",
804
- "s3v4"
805
- ]
806
- },
807
- "us-west-2": {
808
- "hostname": "s3-us-west-2.amazonaws.com",
809
- "signatureVersions": [
810
- "s3",
811
- "s3v4"
812
- ]
813
- },
814
- "ap-northeast-1": {
815
- "hostname": "s3-ap-northeast-1.amazonaws.com",
816
- "signatureVersions": [
817
- "s3",
818
- "s3v4"
819
- ]
820
- },
821
- "ap-northeast-2": {},
822
- "ap-south-1": {
823
- "hostname": "s3-ap-south-1.amazonaws.com"
824
- },
825
- "ap-southeast-1": {
826
- "hostname": "s3-ap-southeast-1.amazonaws.com",
827
- "signatureVersions": [
828
- "s3",
829
- "s3v4"
830
- ]
831
- },
832
- "ap-southeast-2": {
833
- "hostname": "s3-ap-southeast-2.amazonaws.com",
834
- "signatureVersions": [
835
- "s3",
836
- "s3v4"
837
- ]
838
- },
839
- "sa-east-1": {
840
- "hostname": "s3-sa-east-1.amazonaws.com",
841
- "signatureVersions": [
842
- "s3",
843
- "s3v4"
844
- ]
845
- },
846
- "eu-west-1": {
847
- "hostname": "s3-eu-west-1.amazonaws.com",
848
- "signatureVersions": [
849
- "s3",
850
- "s3v4"
851
- ]
852
- },
853
- "eu-central-1": {}
854
- }
855
- },
856
- "sdb": {
857
- "defaults": {
858
- "protocols": [
859
- "http",
860
- "https"
861
- ],
862
- "signatureVersions": [
863
- "v2"
864
- ]
865
- },
866
- "endpoints": {
867
- "us-east-1": {
868
- "hostname": "sdb.amazonaws.com"
869
- },
870
- "us-west-1": {},
871
- "us-west-2": {},
872
- "ap-northeast-1": {},
873
- "ap-southeast-1": {},
874
- "ap-southeast-2": {},
875
- "sa-east-1": {},
876
- "eu-west-1": {}
877
- }
878
- },
879
- "servicecatalog": {
880
- "endpoints": {
881
- "us-east-1": {},
882
- "eu-west-1": {},
883
- "us-west-2": {},
884
- "ap-northeast-1": {},
885
- "ap-southeast-1": {}
886
- }
887
- },
888
- "sns": {
889
- "defaults": {
890
- "protocols": [
891
- "http",
892
- "https"
893
- ]
894
- },
895
- "endpoints": {
896
- "us-east-1": {},
897
- "us-west-1": {},
898
- "us-west-2": {},
899
- "ap-northeast-1": {},
900
- "ap-northeast-2": {},
901
- "ap-south-1": {},
902
- "ap-southeast-1": {},
903
- "ap-southeast-2": {},
904
- "sa-east-1": {},
905
- "eu-west-1": {},
906
- "eu-central-1": {}
907
- }
908
- },
909
- "sqs": {
910
- "defaults": {
911
- "protocols": [
912
- "http",
913
- "https"
914
- ],
915
- "sslCommonName": "{region}.queue.{dnsSuffix}"
916
- },
917
- "endpoints": {
918
- "us-east-1": {
919
- "sslCommonName": "queue.{dnsSuffix}"
920
- },
921
- "us-west-1": {},
922
- "us-west-2": {},
923
- "ap-northeast-1": {},
924
- "ap-northeast-2": {},
925
- "ap-south-1": {},
926
- "ap-southeast-1": {},
927
- "ap-southeast-2": {},
928
- "sa-east-1": {},
929
- "eu-west-1": {},
930
- "eu-central-1": {}
931
- }
932
- },
933
- "ssm": {
934
- "endpoints": {
935
- "us-east-1": {},
936
- "us-west-1": {},
937
- "us-west-2": {},
938
- "eu-central-1": {},
939
- "eu-west-1": {},
940
- "ap-northeast-1": {},
941
- "ap-southeast-1": {},
942
- "ap-southeast-2": {},
943
- "sa-east-1": {}
944
- }
945
- },
946
- "storagegateway": {
947
- "endpoints": {
948
- "us-east-1": {},
949
- "us-west-1": {},
950
- "us-west-2": {},
951
- "ap-northeast-1": {},
952
- "ap-southeast-1": {},
953
- "ap-southeast-2": {},
954
- "sa-east-1": {},
955
- "eu-west-1": {},
956
- "eu-central-1": {}
957
- }
958
- },
959
- "streams.dynamodb": {
960
- "defaults": {
961
- "protocols": [
962
- "http",
963
- "https"
964
- ],
965
- "credentialScope": {
966
- "service": "dynamodb"
967
- }
968
- },
969
- "endpoints": {
970
- "us-east-1": {},
971
- "us-west-1": {},
972
- "us-west-2": {},
973
- "ap-northeast-1": {},
974
- "ap-northeast-2": {},
975
- "ap-southeast-1": {},
976
- "ap-southeast-2": {},
977
- "sa-east-1": {},
978
- "eu-west-1": {},
979
- "eu-central-1": {}
980
- }
981
- },
982
- "sts": {
983
- "defaults": {
984
- "hostname": "sts.amazonaws.com",
985
- "credentialScope": {
986
- "region": "us-east-1"
987
- }
988
- },
989
- "partitionEndpoint": "aws-global",
990
- "endpoints": {
991
- "aws-global": {},
992
- "us-east-1": {},
993
- "us-west-1": {},
994
- "us-west-2": {},
995
- "ap-northeast-1": {},
996
- "ap-northeast-2": {
997
- "hostname": "sts.ap-northeast-2.amazonaws.com",
998
- "credentialScope": {
999
- "region": "ap-northeast-2"
1000
- }
1001
- },
1002
- "ap-southeast-1": {},
1003
- "ap-southeast-2": {},
1004
- "sa-east-1": {},
1005
- "eu-west-1": {},
1006
- "eu-central-1": {}
1007
- }
1008
- },
1009
- "support": {
1010
- "endpoints": {
1011
- "us-east-1": {}
1012
- }
1013
- },
1014
- "swf": {
1015
- "endpoints": {
1016
- "us-east-1": {},
1017
- "us-west-1": {},
1018
- "us-west-2": {},
1019
- "ap-northeast-1": {},
1020
- "ap-northeast-2": {},
1021
- "ap-south-1": {},
1022
- "ap-southeast-1": {},
1023
- "ap-southeast-2": {},
1024
- "sa-east-1": {},
1025
- "eu-west-1": {},
1026
- "eu-central-1": {}
1027
- }
1028
- },
1029
- "waf": {
1030
- "partitionEndpoint": "aws-global",
1031
- "isRegionalized": false,
1032
- "endpoints": {
1033
- "aws-global": {
1034
- "hostname": "waf.amazonaws.com",
1035
- "credentialScope": {
1036
- "region": "us-east-1"
1037
- }
1038
- }
1039
- }
1040
- },
1041
- "workspaces": {
1042
- "endpoints": {
1043
- "us-east-1": {},
1044
- "us-west-2": {},
1045
- "ap-northeast-1": {},
1046
- "ap-southeast-1": {},
1047
- "ap-southeast-2": {},
1048
- "eu-west-1": {}
1049
- }
1050
- }
1051
- }
1052
- },
1053
- {
1054
- "partition": "aws-cn",
1055
- "partitionName": "AWS China",
1056
- "dnsSuffix": "amazonaws.com.cn",
1057
- "regionRegex": "^cn\\-\\w+\\-\\d+$",
1058
- "defaults": {
1059
- "hostname": "{service}.{region}.{dnsSuffix}",
1060
- "protocols": [
1061
- "https"
1062
- ],
1063
- "signatureVersions": [
1064
- "v4"
1065
- ]
1066
- },
1067
- "regions": {
1068
- "aws-cn-global": {
1069
- "description": "AWS China partition-global endpoint"
1070
- },
1071
- "cn-north-1": {
1072
- "description": "China (Beijing)"
1073
- }
1074
- },
1075
- "services": {
1076
- "autoscaling": {
1077
- "defaults": {
1078
- "protocols": [
1079
- "http",
1080
- "https"
1081
- ]
1082
- },
1083
- "endpoints": {
1084
- "cn-north-1": {}
1085
- }
1086
- },
1087
- "cloudformation": {
1088
- "endpoints": {
1089
- "cn-north-1": {}
1090
- }
1091
- },
1092
- "cloudtrail": {
1093
- "endpoints": {
1094
- "cn-north-1": {}
1095
- }
1096
- },
1097
- "directconnect": {
1098
- "endpoints": {
1099
- "cn-north-1": {}
1100
- }
1101
- },
1102
- "dynamodb": {
1103
- "defaults": {
1104
- "protocols": [
1105
- "http",
1106
- "https"
1107
- ]
1108
- },
1109
- "endpoints": {
1110
- "cn-north-1": {}
1111
- }
1112
- },
1113
- "ec2": {
1114
- "defaults": {
1115
- "protocols": [
1116
- "http",
1117
- "https"
1118
- ]
1119
- },
1120
- "endpoints": {
1121
- "cn-north-1": {}
1122
- }
1123
- },
1124
- "elasticache": {
1125
- "endpoints": {
1126
- "cn-north-1": {}
1127
- }
1128
- },
1129
- "elasticbeanstalk": {
1130
- "endpoints": {
1131
- "cn-north-1": {}
1132
- }
1133
- },
1134
- "elasticloadbalancing": {
1135
- "defaults": {
1136
- "protocols": [
1137
- "http",
1138
- "https"
1139
- ]
1140
- },
1141
- "endpoints": {
1142
- "cn-north-1": {}
1143
- }
1144
- },
1145
- "elasticmapreduce": {
1146
- "defaults": {
1147
- "protocols": [
1148
- "http",
1149
- "https"
1150
- ]
1151
- },
1152
- "endpoints": {
1153
- "cn-north-1": {}
1154
- }
1155
- },
1156
- "glacier": {
1157
- "defaults": {
1158
- "protocols": [
1159
- "http",
1160
- "https"
1161
- ]
1162
- },
1163
- "endpoints": {
1164
- "cn-north-1": {}
1165
- }
1166
- },
1167
- "iam": {
1168
- "partitionEndpoint": "aws-cn-global",
1169
- "isRegionalized": false,
1170
- "endpoints": {
1171
- "aws-cn-global": {
1172
- "hostname": "iam.cn-north-1.amazonaws.com.cn",
1173
- "credentialScope": {
1174
- "region": "cn-north-1"
1175
- }
1176
- }
1177
- }
1178
- },
1179
- "kinesis": {
1180
- "endpoints": {
1181
- "cn-north-1": {}
1182
- }
1183
- },
1184
- "monitoring": {
1185
- "defaults": {
1186
- "protocols": [
1187
- "http",
1188
- "https"
1189
- ]
1190
- },
1191
- "endpoints": {
1192
- "cn-north-1": {}
1193
- }
1194
- },
1195
- "rds": {
1196
- "endpoints": {
1197
- "cn-north-1": {}
1198
- }
1199
- },
1200
- "s3": {
1201
- "defaults": {
1202
- "protocols": [
1203
- "http",
1204
- "https"
1205
- ],
1206
- "signatureVersions": [
1207
- "s3v4"
1208
- ]
1209
- },
1210
- "endpoints": {
1211
- "cn-north-1": {}
1212
- }
1213
- },
1214
- "sns": {
1215
- "defaults": {
1216
- "protocols": [
1217
- "http",
1218
- "https"
1219
- ]
1220
- },
1221
- "endpoints": {
1222
- "cn-north-1": {}
1223
- }
1224
- },
1225
- "sqs": {
1226
- "defaults": {
1227
- "sslCommonName": "{region}.queue.{dnsSuffix}",
1228
- "protocols": [
1229
- "http",
1230
- "https"
1231
- ]
1232
- },
1233
- "endpoints": {
1234
- "cn-north-1": {}
1235
- }
1236
- },
1237
- "storagegateway": {
1238
- "endpoints": {
1239
- "cn-north-1": {}
1240
- }
1241
- },
1242
- "streams.dynamodb": {
1243
- "defaults": {
1244
- "protocols": [
1245
- "http",
1246
- "https"
1247
- ],
1248
- "credentialScope": {
1249
- "service": "dynamodb"
1250
- }
1251
- },
1252
- "endpoints": {
1253
- "cn-north-1": {}
1254
- }
1255
- },
1256
- "sts": {
1257
- "endpoints": {
1258
- "cn-north-1": {}
1259
- }
1260
- },
1261
- "swf": {
1262
- "endpoints": {
1263
- "cn-north-1": {}
1264
- }
1265
- }
1266
- }
1267
- },
1268
- {
1269
- "partition": "aws-us-gov",
1270
- "partitionName": "AWS GovCloud (US)",
1271
- "dnsSuffix": "amazonaws.com",
1272
- "regionRegex": "^us\\-gov\\-\\w+\\-\\d+$",
1273
- "defaults": {
1274
- "hostname": "{service}.{region}.{dnsSuffix}",
1275
- "protocols": [
1276
- "https"
1277
- ],
1278
- "signatureVersions": [
1279
- "v4"
1280
- ]
1281
- },
1282
- "regions": {
1283
- "aws-us-gov-global": {
1284
- "description": "AWS GovCloud (US) partition-global endpoint"
1285
- },
1286
- "us-gov-west-1": {
1287
- "description": "AWS GovCloud (US)"
1288
- }
1289
- },
1290
- "services": {
1291
- "autoscaling": {
1292
- "endpoints": {
1293
- "us-gov-west-1": {
1294
- "protocols": [
1295
- "http",
1296
- "https"
1297
- ]
1298
- }
1299
- }
1300
- },
1301
- "cloudformation": {
1302
- "endpoints": {
1303
- "us-gov-west-1": {}
1304
- }
1305
- },
1306
- "cloudhsm": {
1307
- "endpoints": {
1308
- "us-gov-west-1": {}
1309
- }
1310
- },
1311
- "cloudtrail": {
1312
- "endpoints": {
1313
- "us-gov-west-1": {}
1314
- }
1315
- },
1316
- "dynamodb": {
1317
- "endpoints": {
1318
- "us-gov-west-1": {}
1319
- }
1320
- },
1321
- "streams.dynamodb": {
1322
- "defaults": {
1323
- "credentialScope": {
1324
- "service": "dynamodb"
1325
- }
1326
- },
1327
- "endpoints": {
1328
- "us-gov-west-1": {}
1329
- }
1330
- },
1331
- "ec2": {
1332
- "endpoints": {
1333
- "us-gov-west-1": {}
1334
- }
1335
- },
1336
- "elasticache": {
1337
- "endpoints": {
1338
- "us-gov-west-1": {}
1339
- }
1340
- },
1341
- "elasticloadbalancing": {
1342
- "endpoints": {
1343
- "us-gov-west-1": {
1344
- "protocols": [
1345
- "http",
1346
- "https"
1347
- ]
1348
- }
1349
- }
1350
- },
1351
- "elasticmapreduce": {
1352
- "endpoints": {
1353
- "us-gov-west-1": {
1354
- "protocols": [
1355
- "http",
1356
- "https"
1357
- ]
1358
- }
1359
- }
1360
- },
1361
- "glacier": {
1362
- "endpoints": {
1363
- "us-gov-west-1": {
1364
- "protocols": [
1365
- "http",
1366
- "https"
1367
- ]
1368
- }
1369
- }
1370
- },
1371
- "iam": {
1372
- "partitionEndpoint": "aws-us-gov-global",
1373
- "isRegionalized": false,
1374
- "endpoints": {
1375
- "aws-us-gov-global": {
1376
- "hostname": "iam.us-gov.amazonaws.com",
1377
- "credentialScope": {
1378
- "region": "us-gov-west-1"
1379
- }
1380
- }
1381
- }
1382
- },
1383
- "kms": {
1384
- "endpoints": {
1385
- "us-gov-west-1": {}
1386
- }
1387
- },
1388
- "monitoring": {
1389
- "endpoints": {
1390
- "us-gov-west-1": {}
1391
- }
1392
- },
1393
- "rds": {
1394
- "endpoints": {
1395
- "us-gov-west-1": {}
1396
- }
1397
- },
1398
- "redshift": {
1399
- "endpoints": {
1400
- "us-gov-west-1": {}
1401
- }
1402
- },
1403
- "s3": {
1404
- "defaults": {
1405
- "signatureVersions": [
1406
- "s3",
1407
- "s3v4"
1408
- ]
1409
- },
1410
- "endpoints": {
1411
- "us-gov-west-1": {
1412
- "protocols": [
1413
- "http",
1414
- "https"
1415
- ],
1416
- "hostname": "s3-us-gov-west-1.amazonaws.com"
1417
- },
1418
- "fips-us-gov-west-1": {
1419
- "credentialScope": {
1420
- "region": "us-gov-west-1"
1421
- },
1422
- "hostname": "s3-fips-us-gov-west-1.amazonaws.com"
1423
- }
1424
- }
1425
- },
1426
- "sns": {
1427
- "endpoints": {
1428
- "us-gov-west-1": {
1429
- "protocols": [
1430
- "http",
1431
- "https"
1432
- ]
1433
- }
1434
- }
1435
- },
1436
- "sqs": {
1437
- "endpoints": {
1438
- "us-gov-west-1": {
1439
- "sslCommonName": "{region}.queue.{dnsSuffix}",
1440
- "protocols": [
1441
- "http",
1442
- "https"
1443
- ]
1444
- }
1445
- }
1446
- },
1447
- "sts": {
1448
- "endpoints": {
1449
- "us-gov-west-1": {}
1450
- }
1451
- },
1452
- "swf": {
1453
- "endpoints": {
1454
- "us-gov-west-1": {}
1455
- }
1456
- }
1457
- }
1458
- }
1459
- ]
1460
- }