aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -696
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -3179
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,4 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": { }
4
- }
@@ -1,28 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListMeshes": {
4
- "input_token": "nextToken",
5
- "limit_key": "limit",
6
- "output_token": "nextToken",
7
- "result_key": "meshes"
8
- },
9
- "ListRoutes": {
10
- "input_token": "nextToken",
11
- "limit_key": "limit",
12
- "output_token": "nextToken",
13
- "result_key": "routes"
14
- },
15
- "ListVirtualNodes": {
16
- "input_token": "nextToken",
17
- "limit_key": "limit",
18
- "output_token": "nextToken",
19
- "result_key": "virtualNodes"
20
- },
21
- "ListVirtualRouters": {
22
- "input_token": "nextToken",
23
- "limit_key": "limit",
24
- "output_token": "nextToken",
25
- "result_key": "virtualRouters"
26
- }
27
- }
28
- }
@@ -1,3764 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-01-25",
5
- "endpointPrefix":"appmesh",
6
- "jsonVersion":"1.1",
7
- "protocol":"rest-json",
8
- "serviceFullName":"AWS App Mesh",
9
- "serviceId":"App Mesh",
10
- "signatureVersion":"v4",
11
- "signingName":"appmesh",
12
- "uid":"appmesh-2019-01-25"
13
- },
14
- "operations":{
15
- "CreateGatewayRoute":{
16
- "name":"CreateGatewayRoute",
17
- "http":{
18
- "method":"PUT",
19
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes",
20
- "responseCode":200
21
- },
22
- "input":{"shape":"CreateGatewayRouteInput"},
23
- "output":{"shape":"CreateGatewayRouteOutput"},
24
- "errors":[
25
- {"shape":"NotFoundException"},
26
- {"shape":"BadRequestException"},
27
- {"shape":"ConflictException"},
28
- {"shape":"TooManyRequestsException"},
29
- {"shape":"ForbiddenException"},
30
- {"shape":"ServiceUnavailableException"},
31
- {"shape":"InternalServerErrorException"},
32
- {"shape":"LimitExceededException"}
33
- ],
34
- "idempotent":true
35
- },
36
- "CreateMesh":{
37
- "name":"CreateMesh",
38
- "http":{
39
- "method":"PUT",
40
- "requestUri":"/v20190125/meshes",
41
- "responseCode":200
42
- },
43
- "input":{"shape":"CreateMeshInput"},
44
- "output":{"shape":"CreateMeshOutput"},
45
- "errors":[
46
- {"shape":"NotFoundException"},
47
- {"shape":"BadRequestException"},
48
- {"shape":"ConflictException"},
49
- {"shape":"TooManyRequestsException"},
50
- {"shape":"ForbiddenException"},
51
- {"shape":"ServiceUnavailableException"},
52
- {"shape":"InternalServerErrorException"},
53
- {"shape":"LimitExceededException"}
54
- ],
55
- "idempotent":true
56
- },
57
- "CreateRoute":{
58
- "name":"CreateRoute",
59
- "http":{
60
- "method":"PUT",
61
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes",
62
- "responseCode":200
63
- },
64
- "input":{"shape":"CreateRouteInput"},
65
- "output":{"shape":"CreateRouteOutput"},
66
- "errors":[
67
- {"shape":"NotFoundException"},
68
- {"shape":"BadRequestException"},
69
- {"shape":"ConflictException"},
70
- {"shape":"TooManyRequestsException"},
71
- {"shape":"ForbiddenException"},
72
- {"shape":"ServiceUnavailableException"},
73
- {"shape":"InternalServerErrorException"},
74
- {"shape":"LimitExceededException"}
75
- ],
76
- "idempotent":true
77
- },
78
- "CreateVirtualGateway":{
79
- "name":"CreateVirtualGateway",
80
- "http":{
81
- "method":"PUT",
82
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateways",
83
- "responseCode":200
84
- },
85
- "input":{"shape":"CreateVirtualGatewayInput"},
86
- "output":{"shape":"CreateVirtualGatewayOutput"},
87
- "errors":[
88
- {"shape":"NotFoundException"},
89
- {"shape":"BadRequestException"},
90
- {"shape":"ConflictException"},
91
- {"shape":"TooManyRequestsException"},
92
- {"shape":"ForbiddenException"},
93
- {"shape":"ServiceUnavailableException"},
94
- {"shape":"InternalServerErrorException"},
95
- {"shape":"LimitExceededException"}
96
- ],
97
- "idempotent":true
98
- },
99
- "CreateVirtualNode":{
100
- "name":"CreateVirtualNode",
101
- "http":{
102
- "method":"PUT",
103
- "requestUri":"/v20190125/meshes/{meshName}/virtualNodes",
104
- "responseCode":200
105
- },
106
- "input":{"shape":"CreateVirtualNodeInput"},
107
- "output":{"shape":"CreateVirtualNodeOutput"},
108
- "errors":[
109
- {"shape":"NotFoundException"},
110
- {"shape":"BadRequestException"},
111
- {"shape":"ConflictException"},
112
- {"shape":"TooManyRequestsException"},
113
- {"shape":"ForbiddenException"},
114
- {"shape":"ServiceUnavailableException"},
115
- {"shape":"InternalServerErrorException"},
116
- {"shape":"LimitExceededException"}
117
- ],
118
- "idempotent":true
119
- },
120
- "CreateVirtualRouter":{
121
- "name":"CreateVirtualRouter",
122
- "http":{
123
- "method":"PUT",
124
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouters",
125
- "responseCode":200
126
- },
127
- "input":{"shape":"CreateVirtualRouterInput"},
128
- "output":{"shape":"CreateVirtualRouterOutput"},
129
- "errors":[
130
- {"shape":"NotFoundException"},
131
- {"shape":"BadRequestException"},
132
- {"shape":"ConflictException"},
133
- {"shape":"TooManyRequestsException"},
134
- {"shape":"ForbiddenException"},
135
- {"shape":"ServiceUnavailableException"},
136
- {"shape":"InternalServerErrorException"},
137
- {"shape":"LimitExceededException"}
138
- ],
139
- "idempotent":true
140
- },
141
- "CreateVirtualService":{
142
- "name":"CreateVirtualService",
143
- "http":{
144
- "method":"PUT",
145
- "requestUri":"/v20190125/meshes/{meshName}/virtualServices",
146
- "responseCode":200
147
- },
148
- "input":{"shape":"CreateVirtualServiceInput"},
149
- "output":{"shape":"CreateVirtualServiceOutput"},
150
- "errors":[
151
- {"shape":"NotFoundException"},
152
- {"shape":"BadRequestException"},
153
- {"shape":"ConflictException"},
154
- {"shape":"TooManyRequestsException"},
155
- {"shape":"ForbiddenException"},
156
- {"shape":"ServiceUnavailableException"},
157
- {"shape":"InternalServerErrorException"},
158
- {"shape":"LimitExceededException"}
159
- ],
160
- "idempotent":true
161
- },
162
- "DeleteGatewayRoute":{
163
- "name":"DeleteGatewayRoute",
164
- "http":{
165
- "method":"DELETE",
166
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}",
167
- "responseCode":200
168
- },
169
- "input":{"shape":"DeleteGatewayRouteInput"},
170
- "output":{"shape":"DeleteGatewayRouteOutput"},
171
- "errors":[
172
- {"shape":"NotFoundException"},
173
- {"shape":"BadRequestException"},
174
- {"shape":"TooManyRequestsException"},
175
- {"shape":"ForbiddenException"},
176
- {"shape":"ResourceInUseException"},
177
- {"shape":"ServiceUnavailableException"},
178
- {"shape":"InternalServerErrorException"}
179
- ],
180
- "idempotent":true
181
- },
182
- "DeleteMesh":{
183
- "name":"DeleteMesh",
184
- "http":{
185
- "method":"DELETE",
186
- "requestUri":"/v20190125/meshes/{meshName}",
187
- "responseCode":200
188
- },
189
- "input":{"shape":"DeleteMeshInput"},
190
- "output":{"shape":"DeleteMeshOutput"},
191
- "errors":[
192
- {"shape":"NotFoundException"},
193
- {"shape":"BadRequestException"},
194
- {"shape":"TooManyRequestsException"},
195
- {"shape":"ForbiddenException"},
196
- {"shape":"ResourceInUseException"},
197
- {"shape":"ServiceUnavailableException"},
198
- {"shape":"InternalServerErrorException"}
199
- ],
200
- "idempotent":true
201
- },
202
- "DeleteRoute":{
203
- "name":"DeleteRoute",
204
- "http":{
205
- "method":"DELETE",
206
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
207
- "responseCode":200
208
- },
209
- "input":{"shape":"DeleteRouteInput"},
210
- "output":{"shape":"DeleteRouteOutput"},
211
- "errors":[
212
- {"shape":"NotFoundException"},
213
- {"shape":"BadRequestException"},
214
- {"shape":"TooManyRequestsException"},
215
- {"shape":"ForbiddenException"},
216
- {"shape":"ResourceInUseException"},
217
- {"shape":"ServiceUnavailableException"},
218
- {"shape":"InternalServerErrorException"}
219
- ],
220
- "idempotent":true
221
- },
222
- "DeleteVirtualGateway":{
223
- "name":"DeleteVirtualGateway",
224
- "http":{
225
- "method":"DELETE",
226
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}",
227
- "responseCode":200
228
- },
229
- "input":{"shape":"DeleteVirtualGatewayInput"},
230
- "output":{"shape":"DeleteVirtualGatewayOutput"},
231
- "errors":[
232
- {"shape":"NotFoundException"},
233
- {"shape":"BadRequestException"},
234
- {"shape":"TooManyRequestsException"},
235
- {"shape":"ForbiddenException"},
236
- {"shape":"ResourceInUseException"},
237
- {"shape":"ServiceUnavailableException"},
238
- {"shape":"InternalServerErrorException"}
239
- ],
240
- "idempotent":true
241
- },
242
- "DeleteVirtualNode":{
243
- "name":"DeleteVirtualNode",
244
- "http":{
245
- "method":"DELETE",
246
- "requestUri":"/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}",
247
- "responseCode":200
248
- },
249
- "input":{"shape":"DeleteVirtualNodeInput"},
250
- "output":{"shape":"DeleteVirtualNodeOutput"},
251
- "errors":[
252
- {"shape":"NotFoundException"},
253
- {"shape":"BadRequestException"},
254
- {"shape":"TooManyRequestsException"},
255
- {"shape":"ForbiddenException"},
256
- {"shape":"ResourceInUseException"},
257
- {"shape":"ServiceUnavailableException"},
258
- {"shape":"InternalServerErrorException"}
259
- ],
260
- "idempotent":true
261
- },
262
- "DeleteVirtualRouter":{
263
- "name":"DeleteVirtualRouter",
264
- "http":{
265
- "method":"DELETE",
266
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}",
267
- "responseCode":200
268
- },
269
- "input":{"shape":"DeleteVirtualRouterInput"},
270
- "output":{"shape":"DeleteVirtualRouterOutput"},
271
- "errors":[
272
- {"shape":"NotFoundException"},
273
- {"shape":"BadRequestException"},
274
- {"shape":"TooManyRequestsException"},
275
- {"shape":"ForbiddenException"},
276
- {"shape":"ResourceInUseException"},
277
- {"shape":"ServiceUnavailableException"},
278
- {"shape":"InternalServerErrorException"}
279
- ],
280
- "idempotent":true
281
- },
282
- "DeleteVirtualService":{
283
- "name":"DeleteVirtualService",
284
- "http":{
285
- "method":"DELETE",
286
- "requestUri":"/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}",
287
- "responseCode":200
288
- },
289
- "input":{"shape":"DeleteVirtualServiceInput"},
290
- "output":{"shape":"DeleteVirtualServiceOutput"},
291
- "errors":[
292
- {"shape":"NotFoundException"},
293
- {"shape":"BadRequestException"},
294
- {"shape":"TooManyRequestsException"},
295
- {"shape":"ForbiddenException"},
296
- {"shape":"ResourceInUseException"},
297
- {"shape":"ServiceUnavailableException"},
298
- {"shape":"InternalServerErrorException"}
299
- ],
300
- "idempotent":true
301
- },
302
- "DescribeGatewayRoute":{
303
- "name":"DescribeGatewayRoute",
304
- "http":{
305
- "method":"GET",
306
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}",
307
- "responseCode":200
308
- },
309
- "input":{"shape":"DescribeGatewayRouteInput"},
310
- "output":{"shape":"DescribeGatewayRouteOutput"},
311
- "errors":[
312
- {"shape":"NotFoundException"},
313
- {"shape":"BadRequestException"},
314
- {"shape":"TooManyRequestsException"},
315
- {"shape":"ForbiddenException"},
316
- {"shape":"ServiceUnavailableException"},
317
- {"shape":"InternalServerErrorException"}
318
- ]
319
- },
320
- "DescribeMesh":{
321
- "name":"DescribeMesh",
322
- "http":{
323
- "method":"GET",
324
- "requestUri":"/v20190125/meshes/{meshName}",
325
- "responseCode":200
326
- },
327
- "input":{"shape":"DescribeMeshInput"},
328
- "output":{"shape":"DescribeMeshOutput"},
329
- "errors":[
330
- {"shape":"NotFoundException"},
331
- {"shape":"BadRequestException"},
332
- {"shape":"TooManyRequestsException"},
333
- {"shape":"ForbiddenException"},
334
- {"shape":"ServiceUnavailableException"},
335
- {"shape":"InternalServerErrorException"}
336
- ]
337
- },
338
- "DescribeRoute":{
339
- "name":"DescribeRoute",
340
- "http":{
341
- "method":"GET",
342
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
343
- "responseCode":200
344
- },
345
- "input":{"shape":"DescribeRouteInput"},
346
- "output":{"shape":"DescribeRouteOutput"},
347
- "errors":[
348
- {"shape":"NotFoundException"},
349
- {"shape":"BadRequestException"},
350
- {"shape":"TooManyRequestsException"},
351
- {"shape":"ForbiddenException"},
352
- {"shape":"ServiceUnavailableException"},
353
- {"shape":"InternalServerErrorException"}
354
- ]
355
- },
356
- "DescribeVirtualGateway":{
357
- "name":"DescribeVirtualGateway",
358
- "http":{
359
- "method":"GET",
360
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}",
361
- "responseCode":200
362
- },
363
- "input":{"shape":"DescribeVirtualGatewayInput"},
364
- "output":{"shape":"DescribeVirtualGatewayOutput"},
365
- "errors":[
366
- {"shape":"NotFoundException"},
367
- {"shape":"BadRequestException"},
368
- {"shape":"TooManyRequestsException"},
369
- {"shape":"ForbiddenException"},
370
- {"shape":"ServiceUnavailableException"},
371
- {"shape":"InternalServerErrorException"}
372
- ]
373
- },
374
- "DescribeVirtualNode":{
375
- "name":"DescribeVirtualNode",
376
- "http":{
377
- "method":"GET",
378
- "requestUri":"/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}",
379
- "responseCode":200
380
- },
381
- "input":{"shape":"DescribeVirtualNodeInput"},
382
- "output":{"shape":"DescribeVirtualNodeOutput"},
383
- "errors":[
384
- {"shape":"NotFoundException"},
385
- {"shape":"BadRequestException"},
386
- {"shape":"TooManyRequestsException"},
387
- {"shape":"ForbiddenException"},
388
- {"shape":"ServiceUnavailableException"},
389
- {"shape":"InternalServerErrorException"}
390
- ]
391
- },
392
- "DescribeVirtualRouter":{
393
- "name":"DescribeVirtualRouter",
394
- "http":{
395
- "method":"GET",
396
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}",
397
- "responseCode":200
398
- },
399
- "input":{"shape":"DescribeVirtualRouterInput"},
400
- "output":{"shape":"DescribeVirtualRouterOutput"},
401
- "errors":[
402
- {"shape":"NotFoundException"},
403
- {"shape":"BadRequestException"},
404
- {"shape":"TooManyRequestsException"},
405
- {"shape":"ForbiddenException"},
406
- {"shape":"ServiceUnavailableException"},
407
- {"shape":"InternalServerErrorException"}
408
- ]
409
- },
410
- "DescribeVirtualService":{
411
- "name":"DescribeVirtualService",
412
- "http":{
413
- "method":"GET",
414
- "requestUri":"/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}",
415
- "responseCode":200
416
- },
417
- "input":{"shape":"DescribeVirtualServiceInput"},
418
- "output":{"shape":"DescribeVirtualServiceOutput"},
419
- "errors":[
420
- {"shape":"NotFoundException"},
421
- {"shape":"BadRequestException"},
422
- {"shape":"TooManyRequestsException"},
423
- {"shape":"ForbiddenException"},
424
- {"shape":"ServiceUnavailableException"},
425
- {"shape":"InternalServerErrorException"}
426
- ]
427
- },
428
- "ListGatewayRoutes":{
429
- "name":"ListGatewayRoutes",
430
- "http":{
431
- "method":"GET",
432
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes",
433
- "responseCode":200
434
- },
435
- "input":{"shape":"ListGatewayRoutesInput"},
436
- "output":{"shape":"ListGatewayRoutesOutput"},
437
- "errors":[
438
- {"shape":"NotFoundException"},
439
- {"shape":"BadRequestException"},
440
- {"shape":"TooManyRequestsException"},
441
- {"shape":"ForbiddenException"},
442
- {"shape":"ServiceUnavailableException"},
443
- {"shape":"InternalServerErrorException"}
444
- ]
445
- },
446
- "ListMeshes":{
447
- "name":"ListMeshes",
448
- "http":{
449
- "method":"GET",
450
- "requestUri":"/v20190125/meshes",
451
- "responseCode":200
452
- },
453
- "input":{"shape":"ListMeshesInput"},
454
- "output":{"shape":"ListMeshesOutput"},
455
- "errors":[
456
- {"shape":"NotFoundException"},
457
- {"shape":"BadRequestException"},
458
- {"shape":"TooManyRequestsException"},
459
- {"shape":"ForbiddenException"},
460
- {"shape":"ServiceUnavailableException"},
461
- {"shape":"InternalServerErrorException"}
462
- ]
463
- },
464
- "ListRoutes":{
465
- "name":"ListRoutes",
466
- "http":{
467
- "method":"GET",
468
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes",
469
- "responseCode":200
470
- },
471
- "input":{"shape":"ListRoutesInput"},
472
- "output":{"shape":"ListRoutesOutput"},
473
- "errors":[
474
- {"shape":"NotFoundException"},
475
- {"shape":"BadRequestException"},
476
- {"shape":"TooManyRequestsException"},
477
- {"shape":"ForbiddenException"},
478
- {"shape":"ServiceUnavailableException"},
479
- {"shape":"InternalServerErrorException"}
480
- ]
481
- },
482
- "ListTagsForResource":{
483
- "name":"ListTagsForResource",
484
- "http":{
485
- "method":"GET",
486
- "requestUri":"/v20190125/tags",
487
- "responseCode":200
488
- },
489
- "input":{"shape":"ListTagsForResourceInput"},
490
- "output":{"shape":"ListTagsForResourceOutput"},
491
- "errors":[
492
- {"shape":"NotFoundException"},
493
- {"shape":"BadRequestException"},
494
- {"shape":"TooManyRequestsException"},
495
- {"shape":"ForbiddenException"},
496
- {"shape":"ServiceUnavailableException"},
497
- {"shape":"InternalServerErrorException"}
498
- ]
499
- },
500
- "ListVirtualGateways":{
501
- "name":"ListVirtualGateways",
502
- "http":{
503
- "method":"GET",
504
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateways",
505
- "responseCode":200
506
- },
507
- "input":{"shape":"ListVirtualGatewaysInput"},
508
- "output":{"shape":"ListVirtualGatewaysOutput"},
509
- "errors":[
510
- {"shape":"NotFoundException"},
511
- {"shape":"BadRequestException"},
512
- {"shape":"TooManyRequestsException"},
513
- {"shape":"ForbiddenException"},
514
- {"shape":"ServiceUnavailableException"},
515
- {"shape":"InternalServerErrorException"}
516
- ]
517
- },
518
- "ListVirtualNodes":{
519
- "name":"ListVirtualNodes",
520
- "http":{
521
- "method":"GET",
522
- "requestUri":"/v20190125/meshes/{meshName}/virtualNodes",
523
- "responseCode":200
524
- },
525
- "input":{"shape":"ListVirtualNodesInput"},
526
- "output":{"shape":"ListVirtualNodesOutput"},
527
- "errors":[
528
- {"shape":"NotFoundException"},
529
- {"shape":"BadRequestException"},
530
- {"shape":"TooManyRequestsException"},
531
- {"shape":"ForbiddenException"},
532
- {"shape":"ServiceUnavailableException"},
533
- {"shape":"InternalServerErrorException"}
534
- ]
535
- },
536
- "ListVirtualRouters":{
537
- "name":"ListVirtualRouters",
538
- "http":{
539
- "method":"GET",
540
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouters",
541
- "responseCode":200
542
- },
543
- "input":{"shape":"ListVirtualRoutersInput"},
544
- "output":{"shape":"ListVirtualRoutersOutput"},
545
- "errors":[
546
- {"shape":"NotFoundException"},
547
- {"shape":"BadRequestException"},
548
- {"shape":"TooManyRequestsException"},
549
- {"shape":"ForbiddenException"},
550
- {"shape":"ServiceUnavailableException"},
551
- {"shape":"InternalServerErrorException"}
552
- ]
553
- },
554
- "ListVirtualServices":{
555
- "name":"ListVirtualServices",
556
- "http":{
557
- "method":"GET",
558
- "requestUri":"/v20190125/meshes/{meshName}/virtualServices",
559
- "responseCode":200
560
- },
561
- "input":{"shape":"ListVirtualServicesInput"},
562
- "output":{"shape":"ListVirtualServicesOutput"},
563
- "errors":[
564
- {"shape":"NotFoundException"},
565
- {"shape":"BadRequestException"},
566
- {"shape":"TooManyRequestsException"},
567
- {"shape":"ForbiddenException"},
568
- {"shape":"ServiceUnavailableException"},
569
- {"shape":"InternalServerErrorException"}
570
- ]
571
- },
572
- "TagResource":{
573
- "name":"TagResource",
574
- "http":{
575
- "method":"PUT",
576
- "requestUri":"/v20190125/tag",
577
- "responseCode":200
578
- },
579
- "input":{"shape":"TagResourceInput"},
580
- "output":{"shape":"TagResourceOutput"},
581
- "errors":[
582
- {"shape":"NotFoundException"},
583
- {"shape":"BadRequestException"},
584
- {"shape":"TooManyTagsException"},
585
- {"shape":"TooManyRequestsException"},
586
- {"shape":"ForbiddenException"},
587
- {"shape":"ServiceUnavailableException"},
588
- {"shape":"InternalServerErrorException"}
589
- ],
590
- "idempotent":true
591
- },
592
- "UntagResource":{
593
- "name":"UntagResource",
594
- "http":{
595
- "method":"PUT",
596
- "requestUri":"/v20190125/untag",
597
- "responseCode":200
598
- },
599
- "input":{"shape":"UntagResourceInput"},
600
- "output":{"shape":"UntagResourceOutput"},
601
- "errors":[
602
- {"shape":"NotFoundException"},
603
- {"shape":"BadRequestException"},
604
- {"shape":"TooManyRequestsException"},
605
- {"shape":"ForbiddenException"},
606
- {"shape":"ServiceUnavailableException"},
607
- {"shape":"InternalServerErrorException"}
608
- ],
609
- "idempotent":true
610
- },
611
- "UpdateGatewayRoute":{
612
- "name":"UpdateGatewayRoute",
613
- "http":{
614
- "method":"PUT",
615
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}",
616
- "responseCode":200
617
- },
618
- "input":{"shape":"UpdateGatewayRouteInput"},
619
- "output":{"shape":"UpdateGatewayRouteOutput"},
620
- "errors":[
621
- {"shape":"NotFoundException"},
622
- {"shape":"BadRequestException"},
623
- {"shape":"ConflictException"},
624
- {"shape":"TooManyRequestsException"},
625
- {"shape":"ForbiddenException"},
626
- {"shape":"ServiceUnavailableException"},
627
- {"shape":"InternalServerErrorException"},
628
- {"shape":"LimitExceededException"}
629
- ],
630
- "idempotent":true
631
- },
632
- "UpdateMesh":{
633
- "name":"UpdateMesh",
634
- "http":{
635
- "method":"PUT",
636
- "requestUri":"/v20190125/meshes/{meshName}",
637
- "responseCode":200
638
- },
639
- "input":{"shape":"UpdateMeshInput"},
640
- "output":{"shape":"UpdateMeshOutput"},
641
- "errors":[
642
- {"shape":"NotFoundException"},
643
- {"shape":"BadRequestException"},
644
- {"shape":"ConflictException"},
645
- {"shape":"TooManyRequestsException"},
646
- {"shape":"ForbiddenException"},
647
- {"shape":"ServiceUnavailableException"},
648
- {"shape":"InternalServerErrorException"}
649
- ],
650
- "idempotent":true
651
- },
652
- "UpdateRoute":{
653
- "name":"UpdateRoute",
654
- "http":{
655
- "method":"PUT",
656
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
657
- "responseCode":200
658
- },
659
- "input":{"shape":"UpdateRouteInput"},
660
- "output":{"shape":"UpdateRouteOutput"},
661
- "errors":[
662
- {"shape":"NotFoundException"},
663
- {"shape":"BadRequestException"},
664
- {"shape":"ConflictException"},
665
- {"shape":"TooManyRequestsException"},
666
- {"shape":"ForbiddenException"},
667
- {"shape":"ServiceUnavailableException"},
668
- {"shape":"InternalServerErrorException"},
669
- {"shape":"LimitExceededException"}
670
- ],
671
- "idempotent":true
672
- },
673
- "UpdateVirtualGateway":{
674
- "name":"UpdateVirtualGateway",
675
- "http":{
676
- "method":"PUT",
677
- "requestUri":"/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}",
678
- "responseCode":200
679
- },
680
- "input":{"shape":"UpdateVirtualGatewayInput"},
681
- "output":{"shape":"UpdateVirtualGatewayOutput"},
682
- "errors":[
683
- {"shape":"NotFoundException"},
684
- {"shape":"BadRequestException"},
685
- {"shape":"ConflictException"},
686
- {"shape":"TooManyRequestsException"},
687
- {"shape":"ForbiddenException"},
688
- {"shape":"ServiceUnavailableException"},
689
- {"shape":"InternalServerErrorException"},
690
- {"shape":"LimitExceededException"}
691
- ],
692
- "idempotent":true
693
- },
694
- "UpdateVirtualNode":{
695
- "name":"UpdateVirtualNode",
696
- "http":{
697
- "method":"PUT",
698
- "requestUri":"/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}",
699
- "responseCode":200
700
- },
701
- "input":{"shape":"UpdateVirtualNodeInput"},
702
- "output":{"shape":"UpdateVirtualNodeOutput"},
703
- "errors":[
704
- {"shape":"NotFoundException"},
705
- {"shape":"BadRequestException"},
706
- {"shape":"ConflictException"},
707
- {"shape":"TooManyRequestsException"},
708
- {"shape":"ForbiddenException"},
709
- {"shape":"ServiceUnavailableException"},
710
- {"shape":"InternalServerErrorException"},
711
- {"shape":"LimitExceededException"}
712
- ],
713
- "idempotent":true
714
- },
715
- "UpdateVirtualRouter":{
716
- "name":"UpdateVirtualRouter",
717
- "http":{
718
- "method":"PUT",
719
- "requestUri":"/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}",
720
- "responseCode":200
721
- },
722
- "input":{"shape":"UpdateVirtualRouterInput"},
723
- "output":{"shape":"UpdateVirtualRouterOutput"},
724
- "errors":[
725
- {"shape":"NotFoundException"},
726
- {"shape":"BadRequestException"},
727
- {"shape":"ConflictException"},
728
- {"shape":"TooManyRequestsException"},
729
- {"shape":"ForbiddenException"},
730
- {"shape":"ServiceUnavailableException"},
731
- {"shape":"InternalServerErrorException"},
732
- {"shape":"LimitExceededException"}
733
- ],
734
- "idempotent":true
735
- },
736
- "UpdateVirtualService":{
737
- "name":"UpdateVirtualService",
738
- "http":{
739
- "method":"PUT",
740
- "requestUri":"/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}",
741
- "responseCode":200
742
- },
743
- "input":{"shape":"UpdateVirtualServiceInput"},
744
- "output":{"shape":"UpdateVirtualServiceOutput"},
745
- "errors":[
746
- {"shape":"NotFoundException"},
747
- {"shape":"BadRequestException"},
748
- {"shape":"ConflictException"},
749
- {"shape":"TooManyRequestsException"},
750
- {"shape":"ForbiddenException"},
751
- {"shape":"ServiceUnavailableException"},
752
- {"shape":"InternalServerErrorException"},
753
- {"shape":"LimitExceededException"}
754
- ],
755
- "idempotent":true
756
- }
757
- },
758
- "shapes":{
759
- "AccessLog":{
760
- "type":"structure",
761
- "members":{
762
- "file":{"shape":"FileAccessLog"}
763
- },
764
- "union":true
765
- },
766
- "AccountId":{
767
- "type":"string",
768
- "max":12,
769
- "min":12
770
- },
771
- "Arn":{"type":"string"},
772
- "AwsCloudMapInstanceAttribute":{
773
- "type":"structure",
774
- "required":[
775
- "key",
776
- "value"
777
- ],
778
- "members":{
779
- "key":{"shape":"AwsCloudMapInstanceAttributeKey"},
780
- "value":{"shape":"AwsCloudMapInstanceAttributeValue"}
781
- }
782
- },
783
- "AwsCloudMapInstanceAttributeKey":{
784
- "type":"string",
785
- "max":255,
786
- "min":1,
787
- "pattern":"^[a-zA-Z0-9!-~]+$"
788
- },
789
- "AwsCloudMapInstanceAttributeValue":{
790
- "type":"string",
791
- "max":1024,
792
- "min":1,
793
- "pattern":"^([a-zA-Z0-9!-~][ a-zA-Z0-9!-~]*){0,1}[a-zA-Z0-9!-~]{0,1}$"
794
- },
795
- "AwsCloudMapInstanceAttributes":{
796
- "type":"list",
797
- "member":{"shape":"AwsCloudMapInstanceAttribute"}
798
- },
799
- "AwsCloudMapName":{
800
- "type":"string",
801
- "max":1024,
802
- "min":1
803
- },
804
- "AwsCloudMapServiceDiscovery":{
805
- "type":"structure",
806
- "required":[
807
- "namespaceName",
808
- "serviceName"
809
- ],
810
- "members":{
811
- "attributes":{"shape":"AwsCloudMapInstanceAttributes"},
812
- "namespaceName":{"shape":"AwsCloudMapName"},
813
- "serviceName":{"shape":"AwsCloudMapName"}
814
- }
815
- },
816
- "Backend":{
817
- "type":"structure",
818
- "members":{
819
- "virtualService":{"shape":"VirtualServiceBackend"}
820
- },
821
- "union":true
822
- },
823
- "BackendDefaults":{
824
- "type":"structure",
825
- "members":{
826
- "clientPolicy":{"shape":"ClientPolicy"}
827
- }
828
- },
829
- "Backends":{
830
- "type":"list",
831
- "member":{"shape":"Backend"}
832
- },
833
- "BadRequestException":{
834
- "type":"structure",
835
- "members":{
836
- "message":{"shape":"String"}
837
- },
838
- "error":{
839
- "httpStatusCode":400,
840
- "senderFault":true
841
- },
842
- "exception":true
843
- },
844
- "Boolean":{
845
- "type":"boolean",
846
- "box":true
847
- },
848
- "CertificateAuthorityArns":{
849
- "type":"list",
850
- "member":{"shape":"Arn"},
851
- "max":3,
852
- "min":1
853
- },
854
- "ClientPolicy":{
855
- "type":"structure",
856
- "members":{
857
- "tls":{"shape":"ClientPolicyTls"}
858
- }
859
- },
860
- "ClientPolicyTls":{
861
- "type":"structure",
862
- "required":["validation"],
863
- "members":{
864
- "enforce":{
865
- "shape":"Boolean",
866
- "box":true
867
- },
868
- "ports":{"shape":"PortSet"},
869
- "validation":{"shape":"TlsValidationContext"}
870
- }
871
- },
872
- "ConflictException":{
873
- "type":"structure",
874
- "members":{
875
- "message":{"shape":"String"}
876
- },
877
- "error":{
878
- "httpStatusCode":409,
879
- "senderFault":true
880
- },
881
- "exception":true
882
- },
883
- "CreateGatewayRouteInput":{
884
- "type":"structure",
885
- "required":[
886
- "gatewayRouteName",
887
- "meshName",
888
- "spec",
889
- "virtualGatewayName"
890
- ],
891
- "members":{
892
- "clientToken":{
893
- "shape":"String",
894
- "idempotencyToken":true
895
- },
896
- "gatewayRouteName":{"shape":"ResourceName"},
897
- "meshName":{
898
- "shape":"ResourceName",
899
- "location":"uri",
900
- "locationName":"meshName"
901
- },
902
- "meshOwner":{
903
- "shape":"AccountId",
904
- "location":"querystring",
905
- "locationName":"meshOwner"
906
- },
907
- "spec":{"shape":"GatewayRouteSpec"},
908
- "tags":{"shape":"TagList"},
909
- "virtualGatewayName":{
910
- "shape":"ResourceName",
911
- "location":"uri",
912
- "locationName":"virtualGatewayName"
913
- }
914
- }
915
- },
916
- "CreateGatewayRouteOutput":{
917
- "type":"structure",
918
- "required":["gatewayRoute"],
919
- "members":{
920
- "gatewayRoute":{"shape":"GatewayRouteData"}
921
- },
922
- "payload":"gatewayRoute"
923
- },
924
- "CreateMeshInput":{
925
- "type":"structure",
926
- "required":["meshName"],
927
- "members":{
928
- "clientToken":{
929
- "shape":"String",
930
- "idempotencyToken":true
931
- },
932
- "meshName":{"shape":"ResourceName"},
933
- "spec":{"shape":"MeshSpec"},
934
- "tags":{"shape":"TagList"}
935
- }
936
- },
937
- "CreateMeshOutput":{
938
- "type":"structure",
939
- "required":["mesh"],
940
- "members":{
941
- "mesh":{"shape":"MeshData"}
942
- },
943
- "payload":"mesh"
944
- },
945
- "CreateRouteInput":{
946
- "type":"structure",
947
- "required":[
948
- "meshName",
949
- "routeName",
950
- "spec",
951
- "virtualRouterName"
952
- ],
953
- "members":{
954
- "clientToken":{
955
- "shape":"String",
956
- "idempotencyToken":true
957
- },
958
- "meshName":{
959
- "shape":"ResourceName",
960
- "location":"uri",
961
- "locationName":"meshName"
962
- },
963
- "meshOwner":{
964
- "shape":"AccountId",
965
- "location":"querystring",
966
- "locationName":"meshOwner"
967
- },
968
- "routeName":{"shape":"ResourceName"},
969
- "spec":{"shape":"RouteSpec"},
970
- "tags":{"shape":"TagList"},
971
- "virtualRouterName":{
972
- "shape":"ResourceName",
973
- "location":"uri",
974
- "locationName":"virtualRouterName"
975
- }
976
- }
977
- },
978
- "CreateRouteOutput":{
979
- "type":"structure",
980
- "required":["route"],
981
- "members":{
982
- "route":{"shape":"RouteData"}
983
- },
984
- "payload":"route"
985
- },
986
- "CreateVirtualGatewayInput":{
987
- "type":"structure",
988
- "required":[
989
- "meshName",
990
- "spec",
991
- "virtualGatewayName"
992
- ],
993
- "members":{
994
- "clientToken":{
995
- "shape":"String",
996
- "idempotencyToken":true
997
- },
998
- "meshName":{
999
- "shape":"ResourceName",
1000
- "location":"uri",
1001
- "locationName":"meshName"
1002
- },
1003
- "meshOwner":{
1004
- "shape":"AccountId",
1005
- "location":"querystring",
1006
- "locationName":"meshOwner"
1007
- },
1008
- "spec":{"shape":"VirtualGatewaySpec"},
1009
- "tags":{"shape":"TagList"},
1010
- "virtualGatewayName":{"shape":"ResourceName"}
1011
- }
1012
- },
1013
- "CreateVirtualGatewayOutput":{
1014
- "type":"structure",
1015
- "required":["virtualGateway"],
1016
- "members":{
1017
- "virtualGateway":{"shape":"VirtualGatewayData"}
1018
- },
1019
- "payload":"virtualGateway"
1020
- },
1021
- "CreateVirtualNodeInput":{
1022
- "type":"structure",
1023
- "required":[
1024
- "meshName",
1025
- "spec",
1026
- "virtualNodeName"
1027
- ],
1028
- "members":{
1029
- "clientToken":{
1030
- "shape":"String",
1031
- "idempotencyToken":true
1032
- },
1033
- "meshName":{
1034
- "shape":"ResourceName",
1035
- "location":"uri",
1036
- "locationName":"meshName"
1037
- },
1038
- "meshOwner":{
1039
- "shape":"AccountId",
1040
- "location":"querystring",
1041
- "locationName":"meshOwner"
1042
- },
1043
- "spec":{"shape":"VirtualNodeSpec"},
1044
- "tags":{"shape":"TagList"},
1045
- "virtualNodeName":{"shape":"ResourceName"}
1046
- }
1047
- },
1048
- "CreateVirtualNodeOutput":{
1049
- "type":"structure",
1050
- "required":["virtualNode"],
1051
- "members":{
1052
- "virtualNode":{"shape":"VirtualNodeData"}
1053
- },
1054
- "payload":"virtualNode"
1055
- },
1056
- "CreateVirtualRouterInput":{
1057
- "type":"structure",
1058
- "required":[
1059
- "meshName",
1060
- "spec",
1061
- "virtualRouterName"
1062
- ],
1063
- "members":{
1064
- "clientToken":{
1065
- "shape":"String",
1066
- "idempotencyToken":true
1067
- },
1068
- "meshName":{
1069
- "shape":"ResourceName",
1070
- "location":"uri",
1071
- "locationName":"meshName"
1072
- },
1073
- "meshOwner":{
1074
- "shape":"AccountId",
1075
- "location":"querystring",
1076
- "locationName":"meshOwner"
1077
- },
1078
- "spec":{"shape":"VirtualRouterSpec"},
1079
- "tags":{"shape":"TagList"},
1080
- "virtualRouterName":{"shape":"ResourceName"}
1081
- }
1082
- },
1083
- "CreateVirtualRouterOutput":{
1084
- "type":"structure",
1085
- "required":["virtualRouter"],
1086
- "members":{
1087
- "virtualRouter":{"shape":"VirtualRouterData"}
1088
- },
1089
- "payload":"virtualRouter"
1090
- },
1091
- "CreateVirtualServiceInput":{
1092
- "type":"structure",
1093
- "required":[
1094
- "meshName",
1095
- "spec",
1096
- "virtualServiceName"
1097
- ],
1098
- "members":{
1099
- "clientToken":{
1100
- "shape":"String",
1101
- "idempotencyToken":true
1102
- },
1103
- "meshName":{
1104
- "shape":"ResourceName",
1105
- "location":"uri",
1106
- "locationName":"meshName"
1107
- },
1108
- "meshOwner":{
1109
- "shape":"AccountId",
1110
- "location":"querystring",
1111
- "locationName":"meshOwner"
1112
- },
1113
- "spec":{"shape":"VirtualServiceSpec"},
1114
- "tags":{"shape":"TagList"},
1115
- "virtualServiceName":{"shape":"ServiceName"}
1116
- }
1117
- },
1118
- "CreateVirtualServiceOutput":{
1119
- "type":"structure",
1120
- "required":["virtualService"],
1121
- "members":{
1122
- "virtualService":{"shape":"VirtualServiceData"}
1123
- },
1124
- "payload":"virtualService"
1125
- },
1126
- "DeleteGatewayRouteInput":{
1127
- "type":"structure",
1128
- "required":[
1129
- "gatewayRouteName",
1130
- "meshName",
1131
- "virtualGatewayName"
1132
- ],
1133
- "members":{
1134
- "gatewayRouteName":{
1135
- "shape":"ResourceName",
1136
- "location":"uri",
1137
- "locationName":"gatewayRouteName"
1138
- },
1139
- "meshName":{
1140
- "shape":"ResourceName",
1141
- "location":"uri",
1142
- "locationName":"meshName"
1143
- },
1144
- "meshOwner":{
1145
- "shape":"AccountId",
1146
- "location":"querystring",
1147
- "locationName":"meshOwner"
1148
- },
1149
- "virtualGatewayName":{
1150
- "shape":"ResourceName",
1151
- "location":"uri",
1152
- "locationName":"virtualGatewayName"
1153
- }
1154
- }
1155
- },
1156
- "DeleteGatewayRouteOutput":{
1157
- "type":"structure",
1158
- "required":["gatewayRoute"],
1159
- "members":{
1160
- "gatewayRoute":{"shape":"GatewayRouteData"}
1161
- },
1162
- "payload":"gatewayRoute"
1163
- },
1164
- "DeleteMeshInput":{
1165
- "type":"structure",
1166
- "required":["meshName"],
1167
- "members":{
1168
- "meshName":{
1169
- "shape":"ResourceName",
1170
- "location":"uri",
1171
- "locationName":"meshName"
1172
- }
1173
- }
1174
- },
1175
- "DeleteMeshOutput":{
1176
- "type":"structure",
1177
- "required":["mesh"],
1178
- "members":{
1179
- "mesh":{"shape":"MeshData"}
1180
- },
1181
- "payload":"mesh"
1182
- },
1183
- "DeleteRouteInput":{
1184
- "type":"structure",
1185
- "required":[
1186
- "meshName",
1187
- "routeName",
1188
- "virtualRouterName"
1189
- ],
1190
- "members":{
1191
- "meshName":{
1192
- "shape":"ResourceName",
1193
- "location":"uri",
1194
- "locationName":"meshName"
1195
- },
1196
- "meshOwner":{
1197
- "shape":"AccountId",
1198
- "location":"querystring",
1199
- "locationName":"meshOwner"
1200
- },
1201
- "routeName":{
1202
- "shape":"ResourceName",
1203
- "location":"uri",
1204
- "locationName":"routeName"
1205
- },
1206
- "virtualRouterName":{
1207
- "shape":"ResourceName",
1208
- "location":"uri",
1209
- "locationName":"virtualRouterName"
1210
- }
1211
- }
1212
- },
1213
- "DeleteRouteOutput":{
1214
- "type":"structure",
1215
- "required":["route"],
1216
- "members":{
1217
- "route":{"shape":"RouteData"}
1218
- },
1219
- "payload":"route"
1220
- },
1221
- "DeleteVirtualGatewayInput":{
1222
- "type":"structure",
1223
- "required":[
1224
- "meshName",
1225
- "virtualGatewayName"
1226
- ],
1227
- "members":{
1228
- "meshName":{
1229
- "shape":"ResourceName",
1230
- "location":"uri",
1231
- "locationName":"meshName"
1232
- },
1233
- "meshOwner":{
1234
- "shape":"AccountId",
1235
- "location":"querystring",
1236
- "locationName":"meshOwner"
1237
- },
1238
- "virtualGatewayName":{
1239
- "shape":"ResourceName",
1240
- "location":"uri",
1241
- "locationName":"virtualGatewayName"
1242
- }
1243
- }
1244
- },
1245
- "DeleteVirtualGatewayOutput":{
1246
- "type":"structure",
1247
- "required":["virtualGateway"],
1248
- "members":{
1249
- "virtualGateway":{"shape":"VirtualGatewayData"}
1250
- },
1251
- "payload":"virtualGateway"
1252
- },
1253
- "DeleteVirtualNodeInput":{
1254
- "type":"structure",
1255
- "required":[
1256
- "meshName",
1257
- "virtualNodeName"
1258
- ],
1259
- "members":{
1260
- "meshName":{
1261
- "shape":"ResourceName",
1262
- "location":"uri",
1263
- "locationName":"meshName"
1264
- },
1265
- "meshOwner":{
1266
- "shape":"AccountId",
1267
- "location":"querystring",
1268
- "locationName":"meshOwner"
1269
- },
1270
- "virtualNodeName":{
1271
- "shape":"ResourceName",
1272
- "location":"uri",
1273
- "locationName":"virtualNodeName"
1274
- }
1275
- }
1276
- },
1277
- "DeleteVirtualNodeOutput":{
1278
- "type":"structure",
1279
- "required":["virtualNode"],
1280
- "members":{
1281
- "virtualNode":{"shape":"VirtualNodeData"}
1282
- },
1283
- "payload":"virtualNode"
1284
- },
1285
- "DeleteVirtualRouterInput":{
1286
- "type":"structure",
1287
- "required":[
1288
- "meshName",
1289
- "virtualRouterName"
1290
- ],
1291
- "members":{
1292
- "meshName":{
1293
- "shape":"ResourceName",
1294
- "location":"uri",
1295
- "locationName":"meshName"
1296
- },
1297
- "meshOwner":{
1298
- "shape":"AccountId",
1299
- "location":"querystring",
1300
- "locationName":"meshOwner"
1301
- },
1302
- "virtualRouterName":{
1303
- "shape":"ResourceName",
1304
- "location":"uri",
1305
- "locationName":"virtualRouterName"
1306
- }
1307
- }
1308
- },
1309
- "DeleteVirtualRouterOutput":{
1310
- "type":"structure",
1311
- "required":["virtualRouter"],
1312
- "members":{
1313
- "virtualRouter":{"shape":"VirtualRouterData"}
1314
- },
1315
- "payload":"virtualRouter"
1316
- },
1317
- "DeleteVirtualServiceInput":{
1318
- "type":"structure",
1319
- "required":[
1320
- "meshName",
1321
- "virtualServiceName"
1322
- ],
1323
- "members":{
1324
- "meshName":{
1325
- "shape":"ResourceName",
1326
- "location":"uri",
1327
- "locationName":"meshName"
1328
- },
1329
- "meshOwner":{
1330
- "shape":"AccountId",
1331
- "location":"querystring",
1332
- "locationName":"meshOwner"
1333
- },
1334
- "virtualServiceName":{
1335
- "shape":"ServiceName",
1336
- "location":"uri",
1337
- "locationName":"virtualServiceName"
1338
- }
1339
- }
1340
- },
1341
- "DeleteVirtualServiceOutput":{
1342
- "type":"structure",
1343
- "required":["virtualService"],
1344
- "members":{
1345
- "virtualService":{"shape":"VirtualServiceData"}
1346
- },
1347
- "payload":"virtualService"
1348
- },
1349
- "DescribeGatewayRouteInput":{
1350
- "type":"structure",
1351
- "required":[
1352
- "gatewayRouteName",
1353
- "meshName",
1354
- "virtualGatewayName"
1355
- ],
1356
- "members":{
1357
- "gatewayRouteName":{
1358
- "shape":"ResourceName",
1359
- "location":"uri",
1360
- "locationName":"gatewayRouteName"
1361
- },
1362
- "meshName":{
1363
- "shape":"ResourceName",
1364
- "location":"uri",
1365
- "locationName":"meshName"
1366
- },
1367
- "meshOwner":{
1368
- "shape":"AccountId",
1369
- "location":"querystring",
1370
- "locationName":"meshOwner"
1371
- },
1372
- "virtualGatewayName":{
1373
- "shape":"ResourceName",
1374
- "location":"uri",
1375
- "locationName":"virtualGatewayName"
1376
- }
1377
- }
1378
- },
1379
- "DescribeGatewayRouteOutput":{
1380
- "type":"structure",
1381
- "required":["gatewayRoute"],
1382
- "members":{
1383
- "gatewayRoute":{"shape":"GatewayRouteData"}
1384
- },
1385
- "payload":"gatewayRoute"
1386
- },
1387
- "DescribeMeshInput":{
1388
- "type":"structure",
1389
- "required":["meshName"],
1390
- "members":{
1391
- "meshName":{
1392
- "shape":"ResourceName",
1393
- "location":"uri",
1394
- "locationName":"meshName"
1395
- },
1396
- "meshOwner":{
1397
- "shape":"AccountId",
1398
- "location":"querystring",
1399
- "locationName":"meshOwner"
1400
- }
1401
- }
1402
- },
1403
- "DescribeMeshOutput":{
1404
- "type":"structure",
1405
- "required":["mesh"],
1406
- "members":{
1407
- "mesh":{"shape":"MeshData"}
1408
- },
1409
- "payload":"mesh"
1410
- },
1411
- "DescribeRouteInput":{
1412
- "type":"structure",
1413
- "required":[
1414
- "meshName",
1415
- "routeName",
1416
- "virtualRouterName"
1417
- ],
1418
- "members":{
1419
- "meshName":{
1420
- "shape":"ResourceName",
1421
- "location":"uri",
1422
- "locationName":"meshName"
1423
- },
1424
- "meshOwner":{
1425
- "shape":"AccountId",
1426
- "location":"querystring",
1427
- "locationName":"meshOwner"
1428
- },
1429
- "routeName":{
1430
- "shape":"ResourceName",
1431
- "location":"uri",
1432
- "locationName":"routeName"
1433
- },
1434
- "virtualRouterName":{
1435
- "shape":"ResourceName",
1436
- "location":"uri",
1437
- "locationName":"virtualRouterName"
1438
- }
1439
- }
1440
- },
1441
- "DescribeRouteOutput":{
1442
- "type":"structure",
1443
- "required":["route"],
1444
- "members":{
1445
- "route":{"shape":"RouteData"}
1446
- },
1447
- "payload":"route"
1448
- },
1449
- "DescribeVirtualGatewayInput":{
1450
- "type":"structure",
1451
- "required":[
1452
- "meshName",
1453
- "virtualGatewayName"
1454
- ],
1455
- "members":{
1456
- "meshName":{
1457
- "shape":"ResourceName",
1458
- "location":"uri",
1459
- "locationName":"meshName"
1460
- },
1461
- "meshOwner":{
1462
- "shape":"AccountId",
1463
- "location":"querystring",
1464
- "locationName":"meshOwner"
1465
- },
1466
- "virtualGatewayName":{
1467
- "shape":"ResourceName",
1468
- "location":"uri",
1469
- "locationName":"virtualGatewayName"
1470
- }
1471
- }
1472
- },
1473
- "DescribeVirtualGatewayOutput":{
1474
- "type":"structure",
1475
- "required":["virtualGateway"],
1476
- "members":{
1477
- "virtualGateway":{"shape":"VirtualGatewayData"}
1478
- },
1479
- "payload":"virtualGateway"
1480
- },
1481
- "DescribeVirtualNodeInput":{
1482
- "type":"structure",
1483
- "required":[
1484
- "meshName",
1485
- "virtualNodeName"
1486
- ],
1487
- "members":{
1488
- "meshName":{
1489
- "shape":"ResourceName",
1490
- "location":"uri",
1491
- "locationName":"meshName"
1492
- },
1493
- "meshOwner":{
1494
- "shape":"AccountId",
1495
- "location":"querystring",
1496
- "locationName":"meshOwner"
1497
- },
1498
- "virtualNodeName":{
1499
- "shape":"ResourceName",
1500
- "location":"uri",
1501
- "locationName":"virtualNodeName"
1502
- }
1503
- }
1504
- },
1505
- "DescribeVirtualNodeOutput":{
1506
- "type":"structure",
1507
- "required":["virtualNode"],
1508
- "members":{
1509
- "virtualNode":{"shape":"VirtualNodeData"}
1510
- },
1511
- "payload":"virtualNode"
1512
- },
1513
- "DescribeVirtualRouterInput":{
1514
- "type":"structure",
1515
- "required":[
1516
- "meshName",
1517
- "virtualRouterName"
1518
- ],
1519
- "members":{
1520
- "meshName":{
1521
- "shape":"ResourceName",
1522
- "location":"uri",
1523
- "locationName":"meshName"
1524
- },
1525
- "meshOwner":{
1526
- "shape":"AccountId",
1527
- "location":"querystring",
1528
- "locationName":"meshOwner"
1529
- },
1530
- "virtualRouterName":{
1531
- "shape":"ResourceName",
1532
- "location":"uri",
1533
- "locationName":"virtualRouterName"
1534
- }
1535
- }
1536
- },
1537
- "DescribeVirtualRouterOutput":{
1538
- "type":"structure",
1539
- "required":["virtualRouter"],
1540
- "members":{
1541
- "virtualRouter":{"shape":"VirtualRouterData"}
1542
- },
1543
- "payload":"virtualRouter"
1544
- },
1545
- "DescribeVirtualServiceInput":{
1546
- "type":"structure",
1547
- "required":[
1548
- "meshName",
1549
- "virtualServiceName"
1550
- ],
1551
- "members":{
1552
- "meshName":{
1553
- "shape":"ResourceName",
1554
- "location":"uri",
1555
- "locationName":"meshName"
1556
- },
1557
- "meshOwner":{
1558
- "shape":"AccountId",
1559
- "location":"querystring",
1560
- "locationName":"meshOwner"
1561
- },
1562
- "virtualServiceName":{
1563
- "shape":"ServiceName",
1564
- "location":"uri",
1565
- "locationName":"virtualServiceName"
1566
- }
1567
- }
1568
- },
1569
- "DescribeVirtualServiceOutput":{
1570
- "type":"structure",
1571
- "required":["virtualService"],
1572
- "members":{
1573
- "virtualService":{"shape":"VirtualServiceData"}
1574
- },
1575
- "payload":"virtualService"
1576
- },
1577
- "DnsServiceDiscovery":{
1578
- "type":"structure",
1579
- "required":["hostname"],
1580
- "members":{
1581
- "hostname":{"shape":"Hostname"}
1582
- }
1583
- },
1584
- "Duration":{
1585
- "type":"structure",
1586
- "members":{
1587
- "unit":{"shape":"DurationUnit"},
1588
- "value":{"shape":"DurationValue"}
1589
- }
1590
- },
1591
- "DurationUnit":{
1592
- "type":"string",
1593
- "enum":[
1594
- "s",
1595
- "ms"
1596
- ]
1597
- },
1598
- "DurationValue":{
1599
- "type":"long",
1600
- "box":true,
1601
- "min":0
1602
- },
1603
- "EgressFilter":{
1604
- "type":"structure",
1605
- "required":["type"],
1606
- "members":{
1607
- "type":{"shape":"EgressFilterType"}
1608
- }
1609
- },
1610
- "EgressFilterType":{
1611
- "type":"string",
1612
- "enum":[
1613
- "ALLOW_ALL",
1614
- "DROP_ALL"
1615
- ]
1616
- },
1617
- "FileAccessLog":{
1618
- "type":"structure",
1619
- "required":["path"],
1620
- "members":{
1621
- "path":{"shape":"FilePath"}
1622
- }
1623
- },
1624
- "FilePath":{
1625
- "type":"string",
1626
- "max":255,
1627
- "min":1
1628
- },
1629
- "ForbiddenException":{
1630
- "type":"structure",
1631
- "members":{
1632
- "message":{"shape":"String"}
1633
- },
1634
- "error":{
1635
- "httpStatusCode":403,
1636
- "senderFault":true
1637
- },
1638
- "exception":true
1639
- },
1640
- "GatewayRouteData":{
1641
- "type":"structure",
1642
- "required":[
1643
- "gatewayRouteName",
1644
- "meshName",
1645
- "metadata",
1646
- "spec",
1647
- "status",
1648
- "virtualGatewayName"
1649
- ],
1650
- "members":{
1651
- "gatewayRouteName":{"shape":"ResourceName"},
1652
- "meshName":{"shape":"ResourceName"},
1653
- "metadata":{"shape":"ResourceMetadata"},
1654
- "spec":{"shape":"GatewayRouteSpec"},
1655
- "status":{"shape":"GatewayRouteStatus"},
1656
- "virtualGatewayName":{"shape":"ResourceName"}
1657
- }
1658
- },
1659
- "GatewayRouteList":{
1660
- "type":"list",
1661
- "member":{"shape":"GatewayRouteRef"}
1662
- },
1663
- "GatewayRouteRef":{
1664
- "type":"structure",
1665
- "required":[
1666
- "arn",
1667
- "createdAt",
1668
- "gatewayRouteName",
1669
- "lastUpdatedAt",
1670
- "meshName",
1671
- "meshOwner",
1672
- "resourceOwner",
1673
- "version",
1674
- "virtualGatewayName"
1675
- ],
1676
- "members":{
1677
- "arn":{"shape":"Arn"},
1678
- "createdAt":{"shape":"Timestamp"},
1679
- "gatewayRouteName":{"shape":"ResourceName"},
1680
- "lastUpdatedAt":{"shape":"Timestamp"},
1681
- "meshName":{"shape":"ResourceName"},
1682
- "meshOwner":{"shape":"AccountId"},
1683
- "resourceOwner":{"shape":"AccountId"},
1684
- "version":{"shape":"Long"},
1685
- "virtualGatewayName":{"shape":"ResourceName"}
1686
- }
1687
- },
1688
- "GatewayRouteSpec":{
1689
- "type":"structure",
1690
- "members":{
1691
- "grpcRoute":{"shape":"GrpcGatewayRoute"},
1692
- "http2Route":{"shape":"HttpGatewayRoute"},
1693
- "httpRoute":{"shape":"HttpGatewayRoute"}
1694
- }
1695
- },
1696
- "GatewayRouteStatus":{
1697
- "type":"structure",
1698
- "required":["status"],
1699
- "members":{
1700
- "status":{"shape":"GatewayRouteStatusCode"}
1701
- }
1702
- },
1703
- "GatewayRouteStatusCode":{
1704
- "type":"string",
1705
- "enum":[
1706
- "ACTIVE",
1707
- "INACTIVE",
1708
- "DELETED"
1709
- ]
1710
- },
1711
- "GatewayRouteTarget":{
1712
- "type":"structure",
1713
- "required":["virtualService"],
1714
- "members":{
1715
- "virtualService":{"shape":"GatewayRouteVirtualService"}
1716
- }
1717
- },
1718
- "GatewayRouteVirtualService":{
1719
- "type":"structure",
1720
- "required":["virtualServiceName"],
1721
- "members":{
1722
- "virtualServiceName":{"shape":"ResourceName"}
1723
- }
1724
- },
1725
- "GrpcGatewayRoute":{
1726
- "type":"structure",
1727
- "required":[
1728
- "action",
1729
- "match"
1730
- ],
1731
- "members":{
1732
- "action":{"shape":"GrpcGatewayRouteAction"},
1733
- "match":{"shape":"GrpcGatewayRouteMatch"}
1734
- }
1735
- },
1736
- "GrpcGatewayRouteAction":{
1737
- "type":"structure",
1738
- "required":["target"],
1739
- "members":{
1740
- "target":{"shape":"GatewayRouteTarget"}
1741
- }
1742
- },
1743
- "GrpcGatewayRouteMatch":{
1744
- "type":"structure",
1745
- "members":{
1746
- "serviceName":{"shape":"ServiceName"}
1747
- }
1748
- },
1749
- "GrpcRetryPolicy":{
1750
- "type":"structure",
1751
- "required":[
1752
- "maxRetries",
1753
- "perRetryTimeout"
1754
- ],
1755
- "members":{
1756
- "grpcRetryEvents":{"shape":"GrpcRetryPolicyEvents"},
1757
- "httpRetryEvents":{"shape":"HttpRetryPolicyEvents"},
1758
- "maxRetries":{"shape":"MaxRetries"},
1759
- "perRetryTimeout":{"shape":"Duration"},
1760
- "tcpRetryEvents":{"shape":"TcpRetryPolicyEvents"}
1761
- }
1762
- },
1763
- "GrpcRetryPolicyEvent":{
1764
- "type":"string",
1765
- "enum":[
1766
- "cancelled",
1767
- "deadline-exceeded",
1768
- "internal",
1769
- "resource-exhausted",
1770
- "unavailable"
1771
- ]
1772
- },
1773
- "GrpcRetryPolicyEvents":{
1774
- "type":"list",
1775
- "member":{"shape":"GrpcRetryPolicyEvent"},
1776
- "max":5,
1777
- "min":1
1778
- },
1779
- "GrpcRoute":{
1780
- "type":"structure",
1781
- "required":[
1782
- "action",
1783
- "match"
1784
- ],
1785
- "members":{
1786
- "action":{"shape":"GrpcRouteAction"},
1787
- "match":{"shape":"GrpcRouteMatch"},
1788
- "retryPolicy":{"shape":"GrpcRetryPolicy"},
1789
- "timeout":{"shape":"GrpcTimeout"}
1790
- }
1791
- },
1792
- "GrpcRouteAction":{
1793
- "type":"structure",
1794
- "required":["weightedTargets"],
1795
- "members":{
1796
- "weightedTargets":{"shape":"WeightedTargets"}
1797
- }
1798
- },
1799
- "GrpcRouteMatch":{
1800
- "type":"structure",
1801
- "members":{
1802
- "metadata":{"shape":"GrpcRouteMetadataList"},
1803
- "methodName":{"shape":"MethodName"},
1804
- "serviceName":{"shape":"ServiceName"}
1805
- }
1806
- },
1807
- "GrpcRouteMetadata":{
1808
- "type":"structure",
1809
- "required":["name"],
1810
- "members":{
1811
- "invert":{"shape":"Boolean"},
1812
- "match":{"shape":"GrpcRouteMetadataMatchMethod"},
1813
- "name":{"shape":"HeaderName"}
1814
- }
1815
- },
1816
- "GrpcRouteMetadataList":{
1817
- "type":"list",
1818
- "member":{"shape":"GrpcRouteMetadata"},
1819
- "max":10,
1820
- "min":1
1821
- },
1822
- "GrpcRouteMetadataMatchMethod":{
1823
- "type":"structure",
1824
- "members":{
1825
- "exact":{"shape":"HeaderMatch"},
1826
- "prefix":{"shape":"HeaderMatch"},
1827
- "range":{"shape":"MatchRange"},
1828
- "regex":{"shape":"HeaderMatch"},
1829
- "suffix":{"shape":"HeaderMatch"}
1830
- },
1831
- "union":true
1832
- },
1833
- "GrpcTimeout":{
1834
- "type":"structure",
1835
- "members":{
1836
- "idle":{"shape":"Duration"},
1837
- "perRequest":{"shape":"Duration"}
1838
- }
1839
- },
1840
- "HeaderMatch":{
1841
- "type":"string",
1842
- "max":255,
1843
- "min":1
1844
- },
1845
- "HeaderMatchMethod":{
1846
- "type":"structure",
1847
- "members":{
1848
- "exact":{"shape":"HeaderMatch"},
1849
- "prefix":{"shape":"HeaderMatch"},
1850
- "range":{"shape":"MatchRange"},
1851
- "regex":{"shape":"HeaderMatch"},
1852
- "suffix":{"shape":"HeaderMatch"}
1853
- },
1854
- "union":true
1855
- },
1856
- "HeaderName":{
1857
- "type":"string",
1858
- "max":50,
1859
- "min":1
1860
- },
1861
- "HealthCheckIntervalMillis":{
1862
- "type":"long",
1863
- "box":true,
1864
- "max":300000,
1865
- "min":5000
1866
- },
1867
- "HealthCheckPolicy":{
1868
- "type":"structure",
1869
- "required":[
1870
- "healthyThreshold",
1871
- "intervalMillis",
1872
- "protocol",
1873
- "timeoutMillis",
1874
- "unhealthyThreshold"
1875
- ],
1876
- "members":{
1877
- "healthyThreshold":{"shape":"HealthCheckThreshold"},
1878
- "intervalMillis":{"shape":"HealthCheckIntervalMillis"},
1879
- "path":{"shape":"String"},
1880
- "port":{"shape":"PortNumber"},
1881
- "protocol":{"shape":"PortProtocol"},
1882
- "timeoutMillis":{"shape":"HealthCheckTimeoutMillis"},
1883
- "unhealthyThreshold":{"shape":"HealthCheckThreshold"}
1884
- }
1885
- },
1886
- "HealthCheckThreshold":{
1887
- "type":"integer",
1888
- "max":10,
1889
- "min":2
1890
- },
1891
- "HealthCheckTimeoutMillis":{
1892
- "type":"long",
1893
- "box":true,
1894
- "max":60000,
1895
- "min":2000
1896
- },
1897
- "Hostname":{"type":"string"},
1898
- "HttpGatewayRoute":{
1899
- "type":"structure",
1900
- "required":[
1901
- "action",
1902
- "match"
1903
- ],
1904
- "members":{
1905
- "action":{"shape":"HttpGatewayRouteAction"},
1906
- "match":{"shape":"HttpGatewayRouteMatch"}
1907
- }
1908
- },
1909
- "HttpGatewayRouteAction":{
1910
- "type":"structure",
1911
- "required":["target"],
1912
- "members":{
1913
- "target":{"shape":"GatewayRouteTarget"}
1914
- }
1915
- },
1916
- "HttpGatewayRouteMatch":{
1917
- "type":"structure",
1918
- "required":["prefix"],
1919
- "members":{
1920
- "prefix":{"shape":"String"}
1921
- }
1922
- },
1923
- "HttpMethod":{
1924
- "type":"string",
1925
- "enum":[
1926
- "GET",
1927
- "HEAD",
1928
- "POST",
1929
- "PUT",
1930
- "DELETE",
1931
- "CONNECT",
1932
- "OPTIONS",
1933
- "TRACE",
1934
- "PATCH"
1935
- ]
1936
- },
1937
- "HttpRetryPolicy":{
1938
- "type":"structure",
1939
- "required":[
1940
- "maxRetries",
1941
- "perRetryTimeout"
1942
- ],
1943
- "members":{
1944
- "httpRetryEvents":{"shape":"HttpRetryPolicyEvents"},
1945
- "maxRetries":{"shape":"MaxRetries"},
1946
- "perRetryTimeout":{"shape":"Duration"},
1947
- "tcpRetryEvents":{"shape":"TcpRetryPolicyEvents"}
1948
- }
1949
- },
1950
- "HttpRetryPolicyEvent":{
1951
- "type":"string",
1952
- "max":25,
1953
- "min":1
1954
- },
1955
- "HttpRetryPolicyEvents":{
1956
- "type":"list",
1957
- "member":{"shape":"HttpRetryPolicyEvent"},
1958
- "max":25,
1959
- "min":1
1960
- },
1961
- "HttpRoute":{
1962
- "type":"structure",
1963
- "required":[
1964
- "action",
1965
- "match"
1966
- ],
1967
- "members":{
1968
- "action":{"shape":"HttpRouteAction"},
1969
- "match":{"shape":"HttpRouteMatch"},
1970
- "retryPolicy":{"shape":"HttpRetryPolicy"},
1971
- "timeout":{"shape":"HttpTimeout"}
1972
- }
1973
- },
1974
- "HttpRouteAction":{
1975
- "type":"structure",
1976
- "required":["weightedTargets"],
1977
- "members":{
1978
- "weightedTargets":{"shape":"WeightedTargets"}
1979
- }
1980
- },
1981
- "HttpRouteHeader":{
1982
- "type":"structure",
1983
- "required":["name"],
1984
- "members":{
1985
- "invert":{"shape":"Boolean"},
1986
- "match":{"shape":"HeaderMatchMethod"},
1987
- "name":{"shape":"HeaderName"}
1988
- }
1989
- },
1990
- "HttpRouteHeaders":{
1991
- "type":"list",
1992
- "member":{"shape":"HttpRouteHeader"},
1993
- "max":10,
1994
- "min":1
1995
- },
1996
- "HttpRouteMatch":{
1997
- "type":"structure",
1998
- "required":["prefix"],
1999
- "members":{
2000
- "headers":{"shape":"HttpRouteHeaders"},
2001
- "method":{"shape":"HttpMethod"},
2002
- "prefix":{"shape":"String"},
2003
- "scheme":{"shape":"HttpScheme"}
2004
- }
2005
- },
2006
- "HttpScheme":{
2007
- "type":"string",
2008
- "enum":[
2009
- "http",
2010
- "https"
2011
- ]
2012
- },
2013
- "HttpTimeout":{
2014
- "type":"structure",
2015
- "members":{
2016
- "idle":{"shape":"Duration"},
2017
- "perRequest":{"shape":"Duration"}
2018
- }
2019
- },
2020
- "InternalServerErrorException":{
2021
- "type":"structure",
2022
- "members":{
2023
- "message":{"shape":"String"}
2024
- },
2025
- "error":{"httpStatusCode":500},
2026
- "exception":true,
2027
- "fault":true,
2028
- "retryable":{"throttling":false}
2029
- },
2030
- "LimitExceededException":{
2031
- "type":"structure",
2032
- "members":{
2033
- "message":{"shape":"String"}
2034
- },
2035
- "error":{
2036
- "httpStatusCode":400,
2037
- "senderFault":true
2038
- },
2039
- "exception":true
2040
- },
2041
- "ListGatewayRoutesInput":{
2042
- "type":"structure",
2043
- "required":[
2044
- "meshName",
2045
- "virtualGatewayName"
2046
- ],
2047
- "members":{
2048
- "limit":{
2049
- "shape":"ListGatewayRoutesLimit",
2050
- "location":"querystring",
2051
- "locationName":"limit"
2052
- },
2053
- "meshName":{
2054
- "shape":"ResourceName",
2055
- "location":"uri",
2056
- "locationName":"meshName"
2057
- },
2058
- "meshOwner":{
2059
- "shape":"AccountId",
2060
- "location":"querystring",
2061
- "locationName":"meshOwner"
2062
- },
2063
- "nextToken":{
2064
- "shape":"String",
2065
- "location":"querystring",
2066
- "locationName":"nextToken"
2067
- },
2068
- "virtualGatewayName":{
2069
- "shape":"ResourceName",
2070
- "location":"uri",
2071
- "locationName":"virtualGatewayName"
2072
- }
2073
- }
2074
- },
2075
- "ListGatewayRoutesLimit":{
2076
- "type":"integer",
2077
- "box":true,
2078
- "max":100,
2079
- "min":1
2080
- },
2081
- "ListGatewayRoutesOutput":{
2082
- "type":"structure",
2083
- "required":["gatewayRoutes"],
2084
- "members":{
2085
- "gatewayRoutes":{"shape":"GatewayRouteList"},
2086
- "nextToken":{"shape":"String"}
2087
- }
2088
- },
2089
- "ListMeshesInput":{
2090
- "type":"structure",
2091
- "members":{
2092
- "limit":{
2093
- "shape":"ListMeshesLimit",
2094
- "location":"querystring",
2095
- "locationName":"limit"
2096
- },
2097
- "nextToken":{
2098
- "shape":"String",
2099
- "location":"querystring",
2100
- "locationName":"nextToken"
2101
- }
2102
- }
2103
- },
2104
- "ListMeshesLimit":{
2105
- "type":"integer",
2106
- "box":true,
2107
- "max":100,
2108
- "min":1
2109
- },
2110
- "ListMeshesOutput":{
2111
- "type":"structure",
2112
- "required":["meshes"],
2113
- "members":{
2114
- "meshes":{"shape":"MeshList"},
2115
- "nextToken":{"shape":"String"}
2116
- }
2117
- },
2118
- "ListRoutesInput":{
2119
- "type":"structure",
2120
- "required":[
2121
- "meshName",
2122
- "virtualRouterName"
2123
- ],
2124
- "members":{
2125
- "limit":{
2126
- "shape":"ListRoutesLimit",
2127
- "location":"querystring",
2128
- "locationName":"limit"
2129
- },
2130
- "meshName":{
2131
- "shape":"ResourceName",
2132
- "location":"uri",
2133
- "locationName":"meshName"
2134
- },
2135
- "meshOwner":{
2136
- "shape":"AccountId",
2137
- "location":"querystring",
2138
- "locationName":"meshOwner"
2139
- },
2140
- "nextToken":{
2141
- "shape":"String",
2142
- "location":"querystring",
2143
- "locationName":"nextToken"
2144
- },
2145
- "virtualRouterName":{
2146
- "shape":"ResourceName",
2147
- "location":"uri",
2148
- "locationName":"virtualRouterName"
2149
- }
2150
- }
2151
- },
2152
- "ListRoutesLimit":{
2153
- "type":"integer",
2154
- "box":true,
2155
- "max":100,
2156
- "min":1
2157
- },
2158
- "ListRoutesOutput":{
2159
- "type":"structure",
2160
- "required":["routes"],
2161
- "members":{
2162
- "nextToken":{"shape":"String"},
2163
- "routes":{"shape":"RouteList"}
2164
- }
2165
- },
2166
- "ListTagsForResourceInput":{
2167
- "type":"structure",
2168
- "required":["resourceArn"],
2169
- "members":{
2170
- "limit":{
2171
- "shape":"TagsLimit",
2172
- "location":"querystring",
2173
- "locationName":"limit"
2174
- },
2175
- "nextToken":{
2176
- "shape":"String",
2177
- "location":"querystring",
2178
- "locationName":"nextToken"
2179
- },
2180
- "resourceArn":{
2181
- "shape":"Arn",
2182
- "location":"querystring",
2183
- "locationName":"resourceArn"
2184
- }
2185
- }
2186
- },
2187
- "ListTagsForResourceOutput":{
2188
- "type":"structure",
2189
- "required":["tags"],
2190
- "members":{
2191
- "nextToken":{"shape":"String"},
2192
- "tags":{"shape":"TagList"}
2193
- }
2194
- },
2195
- "ListVirtualGatewaysInput":{
2196
- "type":"structure",
2197
- "required":["meshName"],
2198
- "members":{
2199
- "limit":{
2200
- "shape":"ListVirtualGatewaysLimit",
2201
- "location":"querystring",
2202
- "locationName":"limit"
2203
- },
2204
- "meshName":{
2205
- "shape":"ResourceName",
2206
- "location":"uri",
2207
- "locationName":"meshName"
2208
- },
2209
- "meshOwner":{
2210
- "shape":"AccountId",
2211
- "location":"querystring",
2212
- "locationName":"meshOwner"
2213
- },
2214
- "nextToken":{
2215
- "shape":"String",
2216
- "location":"querystring",
2217
- "locationName":"nextToken"
2218
- }
2219
- }
2220
- },
2221
- "ListVirtualGatewaysLimit":{
2222
- "type":"integer",
2223
- "box":true,
2224
- "max":100,
2225
- "min":1
2226
- },
2227
- "ListVirtualGatewaysOutput":{
2228
- "type":"structure",
2229
- "required":["virtualGateways"],
2230
- "members":{
2231
- "nextToken":{"shape":"String"},
2232
- "virtualGateways":{"shape":"VirtualGatewayList"}
2233
- }
2234
- },
2235
- "ListVirtualNodesInput":{
2236
- "type":"structure",
2237
- "required":["meshName"],
2238
- "members":{
2239
- "limit":{
2240
- "shape":"ListVirtualNodesLimit",
2241
- "location":"querystring",
2242
- "locationName":"limit"
2243
- },
2244
- "meshName":{
2245
- "shape":"ResourceName",
2246
- "location":"uri",
2247
- "locationName":"meshName"
2248
- },
2249
- "meshOwner":{
2250
- "shape":"AccountId",
2251
- "location":"querystring",
2252
- "locationName":"meshOwner"
2253
- },
2254
- "nextToken":{
2255
- "shape":"String",
2256
- "location":"querystring",
2257
- "locationName":"nextToken"
2258
- }
2259
- }
2260
- },
2261
- "ListVirtualNodesLimit":{
2262
- "type":"integer",
2263
- "box":true,
2264
- "max":100,
2265
- "min":1
2266
- },
2267
- "ListVirtualNodesOutput":{
2268
- "type":"structure",
2269
- "required":["virtualNodes"],
2270
- "members":{
2271
- "nextToken":{"shape":"String"},
2272
- "virtualNodes":{"shape":"VirtualNodeList"}
2273
- }
2274
- },
2275
- "ListVirtualRoutersInput":{
2276
- "type":"structure",
2277
- "required":["meshName"],
2278
- "members":{
2279
- "limit":{
2280
- "shape":"ListVirtualRoutersLimit",
2281
- "location":"querystring",
2282
- "locationName":"limit"
2283
- },
2284
- "meshName":{
2285
- "shape":"ResourceName",
2286
- "location":"uri",
2287
- "locationName":"meshName"
2288
- },
2289
- "meshOwner":{
2290
- "shape":"AccountId",
2291
- "location":"querystring",
2292
- "locationName":"meshOwner"
2293
- },
2294
- "nextToken":{
2295
- "shape":"String",
2296
- "location":"querystring",
2297
- "locationName":"nextToken"
2298
- }
2299
- }
2300
- },
2301
- "ListVirtualRoutersLimit":{
2302
- "type":"integer",
2303
- "box":true,
2304
- "max":100,
2305
- "min":1
2306
- },
2307
- "ListVirtualRoutersOutput":{
2308
- "type":"structure",
2309
- "required":["virtualRouters"],
2310
- "members":{
2311
- "nextToken":{"shape":"String"},
2312
- "virtualRouters":{"shape":"VirtualRouterList"}
2313
- }
2314
- },
2315
- "ListVirtualServicesInput":{
2316
- "type":"structure",
2317
- "required":["meshName"],
2318
- "members":{
2319
- "limit":{
2320
- "shape":"ListVirtualServicesLimit",
2321
- "location":"querystring",
2322
- "locationName":"limit"
2323
- },
2324
- "meshName":{
2325
- "shape":"ResourceName",
2326
- "location":"uri",
2327
- "locationName":"meshName"
2328
- },
2329
- "meshOwner":{
2330
- "shape":"AccountId",
2331
- "location":"querystring",
2332
- "locationName":"meshOwner"
2333
- },
2334
- "nextToken":{
2335
- "shape":"String",
2336
- "location":"querystring",
2337
- "locationName":"nextToken"
2338
- }
2339
- }
2340
- },
2341
- "ListVirtualServicesLimit":{
2342
- "type":"integer",
2343
- "box":true,
2344
- "max":100,
2345
- "min":1
2346
- },
2347
- "ListVirtualServicesOutput":{
2348
- "type":"structure",
2349
- "required":["virtualServices"],
2350
- "members":{
2351
- "nextToken":{"shape":"String"},
2352
- "virtualServices":{"shape":"VirtualServiceList"}
2353
- }
2354
- },
2355
- "Listener":{
2356
- "type":"structure",
2357
- "required":["portMapping"],
2358
- "members":{
2359
- "connectionPool":{"shape":"VirtualNodeConnectionPool"},
2360
- "healthCheck":{"shape":"HealthCheckPolicy"},
2361
- "outlierDetection":{"shape":"OutlierDetection"},
2362
- "portMapping":{"shape":"PortMapping"},
2363
- "timeout":{"shape":"ListenerTimeout"},
2364
- "tls":{"shape":"ListenerTls"}
2365
- }
2366
- },
2367
- "ListenerTimeout":{
2368
- "type":"structure",
2369
- "members":{
2370
- "grpc":{"shape":"GrpcTimeout"},
2371
- "http":{"shape":"HttpTimeout"},
2372
- "http2":{"shape":"HttpTimeout"},
2373
- "tcp":{"shape":"TcpTimeout"}
2374
- },
2375
- "union":true
2376
- },
2377
- "ListenerTls":{
2378
- "type":"structure",
2379
- "required":[
2380
- "certificate",
2381
- "mode"
2382
- ],
2383
- "members":{
2384
- "certificate":{"shape":"ListenerTlsCertificate"},
2385
- "mode":{"shape":"ListenerTlsMode"}
2386
- }
2387
- },
2388
- "ListenerTlsAcmCertificate":{
2389
- "type":"structure",
2390
- "required":["certificateArn"],
2391
- "members":{
2392
- "certificateArn":{"shape":"Arn"}
2393
- }
2394
- },
2395
- "ListenerTlsCertificate":{
2396
- "type":"structure",
2397
- "members":{
2398
- "acm":{"shape":"ListenerTlsAcmCertificate"},
2399
- "file":{"shape":"ListenerTlsFileCertificate"}
2400
- },
2401
- "union":true
2402
- },
2403
- "ListenerTlsFileCertificate":{
2404
- "type":"structure",
2405
- "required":[
2406
- "certificateChain",
2407
- "privateKey"
2408
- ],
2409
- "members":{
2410
- "certificateChain":{"shape":"FilePath"},
2411
- "privateKey":{"shape":"FilePath"}
2412
- }
2413
- },
2414
- "ListenerTlsMode":{
2415
- "type":"string",
2416
- "enum":[
2417
- "STRICT",
2418
- "PERMISSIVE",
2419
- "DISABLED"
2420
- ]
2421
- },
2422
- "Listeners":{
2423
- "type":"list",
2424
- "member":{"shape":"Listener"},
2425
- "max":1,
2426
- "min":0
2427
- },
2428
- "Logging":{
2429
- "type":"structure",
2430
- "members":{
2431
- "accessLog":{"shape":"AccessLog"}
2432
- }
2433
- },
2434
- "Long":{
2435
- "type":"long",
2436
- "box":true
2437
- },
2438
- "MatchRange":{
2439
- "type":"structure",
2440
- "required":[
2441
- "end",
2442
- "start"
2443
- ],
2444
- "members":{
2445
- "end":{"shape":"Long"},
2446
- "start":{"shape":"Long"}
2447
- }
2448
- },
2449
- "MaxConnections":{
2450
- "type":"integer",
2451
- "min":1
2452
- },
2453
- "MaxPendingRequests":{
2454
- "type":"integer",
2455
- "min":1
2456
- },
2457
- "MaxRequests":{
2458
- "type":"integer",
2459
- "min":1
2460
- },
2461
- "MaxRetries":{
2462
- "type":"long",
2463
- "box":true,
2464
- "min":0
2465
- },
2466
- "MeshData":{
2467
- "type":"structure",
2468
- "required":[
2469
- "meshName",
2470
- "metadata",
2471
- "spec",
2472
- "status"
2473
- ],
2474
- "members":{
2475
- "meshName":{"shape":"ResourceName"},
2476
- "metadata":{"shape":"ResourceMetadata"},
2477
- "spec":{"shape":"MeshSpec"},
2478
- "status":{"shape":"MeshStatus"}
2479
- }
2480
- },
2481
- "MeshList":{
2482
- "type":"list",
2483
- "member":{"shape":"MeshRef"}
2484
- },
2485
- "MeshRef":{
2486
- "type":"structure",
2487
- "required":[
2488
- "arn",
2489
- "createdAt",
2490
- "lastUpdatedAt",
2491
- "meshName",
2492
- "meshOwner",
2493
- "resourceOwner",
2494
- "version"
2495
- ],
2496
- "members":{
2497
- "arn":{"shape":"Arn"},
2498
- "createdAt":{"shape":"Timestamp"},
2499
- "lastUpdatedAt":{"shape":"Timestamp"},
2500
- "meshName":{"shape":"ResourceName"},
2501
- "meshOwner":{"shape":"AccountId"},
2502
- "resourceOwner":{"shape":"AccountId"},
2503
- "version":{"shape":"Long"}
2504
- }
2505
- },
2506
- "MeshSpec":{
2507
- "type":"structure",
2508
- "members":{
2509
- "egressFilter":{"shape":"EgressFilter"}
2510
- }
2511
- },
2512
- "MeshStatus":{
2513
- "type":"structure",
2514
- "members":{
2515
- "status":{"shape":"MeshStatusCode"}
2516
- }
2517
- },
2518
- "MeshStatusCode":{
2519
- "type":"string",
2520
- "enum":[
2521
- "ACTIVE",
2522
- "INACTIVE",
2523
- "DELETED"
2524
- ]
2525
- },
2526
- "MethodName":{
2527
- "type":"string",
2528
- "max":50,
2529
- "min":1
2530
- },
2531
- "NotFoundException":{
2532
- "type":"structure",
2533
- "members":{
2534
- "message":{"shape":"String"}
2535
- },
2536
- "error":{
2537
- "httpStatusCode":404,
2538
- "senderFault":true
2539
- },
2540
- "exception":true
2541
- },
2542
- "OutlierDetection":{
2543
- "type":"structure",
2544
- "required":[
2545
- "baseEjectionDuration",
2546
- "interval",
2547
- "maxEjectionPercent",
2548
- "maxServerErrors"
2549
- ],
2550
- "members":{
2551
- "baseEjectionDuration":{"shape":"Duration"},
2552
- "interval":{"shape":"Duration"},
2553
- "maxEjectionPercent":{"shape":"OutlierDetectionMaxEjectionPercent"},
2554
- "maxServerErrors":{"shape":"OutlierDetectionMaxServerErrors"}
2555
- }
2556
- },
2557
- "OutlierDetectionMaxEjectionPercent":{
2558
- "type":"integer",
2559
- "box":true,
2560
- "max":100,
2561
- "min":0
2562
- },
2563
- "OutlierDetectionMaxServerErrors":{
2564
- "type":"long",
2565
- "box":true,
2566
- "min":1
2567
- },
2568
- "PercentInt":{
2569
- "type":"integer",
2570
- "max":100,
2571
- "min":0
2572
- },
2573
- "PortMapping":{
2574
- "type":"structure",
2575
- "required":[
2576
- "port",
2577
- "protocol"
2578
- ],
2579
- "members":{
2580
- "port":{"shape":"PortNumber"},
2581
- "protocol":{"shape":"PortProtocol"}
2582
- }
2583
- },
2584
- "PortNumber":{
2585
- "type":"integer",
2586
- "max":65535,
2587
- "min":1
2588
- },
2589
- "PortProtocol":{
2590
- "type":"string",
2591
- "enum":[
2592
- "http",
2593
- "tcp",
2594
- "http2",
2595
- "grpc"
2596
- ]
2597
- },
2598
- "PortSet":{
2599
- "type":"list",
2600
- "member":{"shape":"PortNumber"}
2601
- },
2602
- "ResourceInUseException":{
2603
- "type":"structure",
2604
- "members":{
2605
- "message":{"shape":"String"}
2606
- },
2607
- "error":{
2608
- "httpStatusCode":409,
2609
- "senderFault":true
2610
- },
2611
- "exception":true
2612
- },
2613
- "ResourceMetadata":{
2614
- "type":"structure",
2615
- "required":[
2616
- "arn",
2617
- "createdAt",
2618
- "lastUpdatedAt",
2619
- "meshOwner",
2620
- "resourceOwner",
2621
- "uid",
2622
- "version"
2623
- ],
2624
- "members":{
2625
- "arn":{"shape":"Arn"},
2626
- "createdAt":{"shape":"Timestamp"},
2627
- "lastUpdatedAt":{"shape":"Timestamp"},
2628
- "meshOwner":{"shape":"AccountId"},
2629
- "resourceOwner":{"shape":"AccountId"},
2630
- "uid":{"shape":"String"},
2631
- "version":{"shape":"Long"}
2632
- }
2633
- },
2634
- "ResourceName":{
2635
- "type":"string",
2636
- "max":255,
2637
- "min":1
2638
- },
2639
- "RouteData":{
2640
- "type":"structure",
2641
- "required":[
2642
- "meshName",
2643
- "metadata",
2644
- "routeName",
2645
- "spec",
2646
- "status",
2647
- "virtualRouterName"
2648
- ],
2649
- "members":{
2650
- "meshName":{"shape":"ResourceName"},
2651
- "metadata":{"shape":"ResourceMetadata"},
2652
- "routeName":{"shape":"ResourceName"},
2653
- "spec":{"shape":"RouteSpec"},
2654
- "status":{"shape":"RouteStatus"},
2655
- "virtualRouterName":{"shape":"ResourceName"}
2656
- }
2657
- },
2658
- "RouteList":{
2659
- "type":"list",
2660
- "member":{"shape":"RouteRef"}
2661
- },
2662
- "RoutePriority":{
2663
- "type":"integer",
2664
- "box":true,
2665
- "max":1000,
2666
- "min":0
2667
- },
2668
- "RouteRef":{
2669
- "type":"structure",
2670
- "required":[
2671
- "arn",
2672
- "createdAt",
2673
- "lastUpdatedAt",
2674
- "meshName",
2675
- "meshOwner",
2676
- "resourceOwner",
2677
- "routeName",
2678
- "version",
2679
- "virtualRouterName"
2680
- ],
2681
- "members":{
2682
- "arn":{"shape":"Arn"},
2683
- "createdAt":{"shape":"Timestamp"},
2684
- "lastUpdatedAt":{"shape":"Timestamp"},
2685
- "meshName":{"shape":"ResourceName"},
2686
- "meshOwner":{"shape":"AccountId"},
2687
- "resourceOwner":{"shape":"AccountId"},
2688
- "routeName":{"shape":"ResourceName"},
2689
- "version":{"shape":"Long"},
2690
- "virtualRouterName":{"shape":"ResourceName"}
2691
- }
2692
- },
2693
- "RouteSpec":{
2694
- "type":"structure",
2695
- "members":{
2696
- "grpcRoute":{"shape":"GrpcRoute"},
2697
- "http2Route":{"shape":"HttpRoute"},
2698
- "httpRoute":{"shape":"HttpRoute"},
2699
- "priority":{"shape":"RoutePriority"},
2700
- "tcpRoute":{"shape":"TcpRoute"}
2701
- }
2702
- },
2703
- "RouteStatus":{
2704
- "type":"structure",
2705
- "required":["status"],
2706
- "members":{
2707
- "status":{"shape":"RouteStatusCode"}
2708
- }
2709
- },
2710
- "RouteStatusCode":{
2711
- "type":"string",
2712
- "enum":[
2713
- "ACTIVE",
2714
- "INACTIVE",
2715
- "DELETED"
2716
- ]
2717
- },
2718
- "ServiceDiscovery":{
2719
- "type":"structure",
2720
- "members":{
2721
- "awsCloudMap":{"shape":"AwsCloudMapServiceDiscovery"},
2722
- "dns":{"shape":"DnsServiceDiscovery"}
2723
- },
2724
- "union":true
2725
- },
2726
- "ServiceName":{"type":"string"},
2727
- "ServiceUnavailableException":{
2728
- "type":"structure",
2729
- "members":{
2730
- "message":{"shape":"String"}
2731
- },
2732
- "error":{"httpStatusCode":503},
2733
- "exception":true,
2734
- "fault":true,
2735
- "retryable":{"throttling":false}
2736
- },
2737
- "String":{"type":"string"},
2738
- "TagKey":{
2739
- "type":"string",
2740
- "max":128,
2741
- "min":1
2742
- },
2743
- "TagKeyList":{
2744
- "type":"list",
2745
- "member":{"shape":"TagKey"},
2746
- "max":50,
2747
- "min":0
2748
- },
2749
- "TagList":{
2750
- "type":"list",
2751
- "member":{"shape":"TagRef"},
2752
- "max":50,
2753
- "min":0
2754
- },
2755
- "TagRef":{
2756
- "type":"structure",
2757
- "required":[
2758
- "key",
2759
- "value"
2760
- ],
2761
- "members":{
2762
- "key":{"shape":"TagKey"},
2763
- "value":{"shape":"TagValue"}
2764
- }
2765
- },
2766
- "TagResourceInput":{
2767
- "type":"structure",
2768
- "required":[
2769
- "resourceArn",
2770
- "tags"
2771
- ],
2772
- "members":{
2773
- "resourceArn":{
2774
- "shape":"Arn",
2775
- "location":"querystring",
2776
- "locationName":"resourceArn"
2777
- },
2778
- "tags":{"shape":"TagList"}
2779
- }
2780
- },
2781
- "TagResourceOutput":{
2782
- "type":"structure",
2783
- "members":{
2784
- }
2785
- },
2786
- "TagValue":{
2787
- "type":"string",
2788
- "max":256,
2789
- "min":0
2790
- },
2791
- "TagsLimit":{
2792
- "type":"integer",
2793
- "box":true,
2794
- "max":50,
2795
- "min":1
2796
- },
2797
- "TcpRetryPolicyEvent":{
2798
- "type":"string",
2799
- "enum":["connection-error"]
2800
- },
2801
- "TcpRetryPolicyEvents":{
2802
- "type":"list",
2803
- "member":{"shape":"TcpRetryPolicyEvent"},
2804
- "max":1,
2805
- "min":1
2806
- },
2807
- "TcpRoute":{
2808
- "type":"structure",
2809
- "required":["action"],
2810
- "members":{
2811
- "action":{"shape":"TcpRouteAction"},
2812
- "timeout":{"shape":"TcpTimeout"}
2813
- }
2814
- },
2815
- "TcpRouteAction":{
2816
- "type":"structure",
2817
- "required":["weightedTargets"],
2818
- "members":{
2819
- "weightedTargets":{"shape":"WeightedTargets"}
2820
- }
2821
- },
2822
- "TcpTimeout":{
2823
- "type":"structure",
2824
- "members":{
2825
- "idle":{"shape":"Duration"}
2826
- }
2827
- },
2828
- "Timestamp":{"type":"timestamp"},
2829
- "TlsValidationContext":{
2830
- "type":"structure",
2831
- "required":["trust"],
2832
- "members":{
2833
- "trust":{"shape":"TlsValidationContextTrust"}
2834
- }
2835
- },
2836
- "TlsValidationContextAcmTrust":{
2837
- "type":"structure",
2838
- "required":["certificateAuthorityArns"],
2839
- "members":{
2840
- "certificateAuthorityArns":{"shape":"CertificateAuthorityArns"}
2841
- }
2842
- },
2843
- "TlsValidationContextFileTrust":{
2844
- "type":"structure",
2845
- "required":["certificateChain"],
2846
- "members":{
2847
- "certificateChain":{"shape":"FilePath"}
2848
- }
2849
- },
2850
- "TlsValidationContextTrust":{
2851
- "type":"structure",
2852
- "members":{
2853
- "acm":{"shape":"TlsValidationContextAcmTrust"},
2854
- "file":{"shape":"TlsValidationContextFileTrust"}
2855
- },
2856
- "union":true
2857
- },
2858
- "TooManyRequestsException":{
2859
- "type":"structure",
2860
- "members":{
2861
- "message":{"shape":"String"}
2862
- },
2863
- "error":{
2864
- "httpStatusCode":429,
2865
- "senderFault":true
2866
- },
2867
- "exception":true,
2868
- "retryable":{"throttling":true}
2869
- },
2870
- "TooManyTagsException":{
2871
- "type":"structure",
2872
- "members":{
2873
- "message":{"shape":"String"}
2874
- },
2875
- "error":{
2876
- "httpStatusCode":400,
2877
- "senderFault":true
2878
- },
2879
- "exception":true
2880
- },
2881
- "UntagResourceInput":{
2882
- "type":"structure",
2883
- "required":[
2884
- "resourceArn",
2885
- "tagKeys"
2886
- ],
2887
- "members":{
2888
- "resourceArn":{
2889
- "shape":"Arn",
2890
- "location":"querystring",
2891
- "locationName":"resourceArn"
2892
- },
2893
- "tagKeys":{"shape":"TagKeyList"}
2894
- }
2895
- },
2896
- "UntagResourceOutput":{
2897
- "type":"structure",
2898
- "members":{
2899
- }
2900
- },
2901
- "UpdateGatewayRouteInput":{
2902
- "type":"structure",
2903
- "required":[
2904
- "gatewayRouteName",
2905
- "meshName",
2906
- "spec",
2907
- "virtualGatewayName"
2908
- ],
2909
- "members":{
2910
- "clientToken":{
2911
- "shape":"String",
2912
- "idempotencyToken":true
2913
- },
2914
- "gatewayRouteName":{
2915
- "shape":"ResourceName",
2916
- "location":"uri",
2917
- "locationName":"gatewayRouteName"
2918
- },
2919
- "meshName":{
2920
- "shape":"ResourceName",
2921
- "location":"uri",
2922
- "locationName":"meshName"
2923
- },
2924
- "meshOwner":{
2925
- "shape":"AccountId",
2926
- "location":"querystring",
2927
- "locationName":"meshOwner"
2928
- },
2929
- "spec":{"shape":"GatewayRouteSpec"},
2930
- "virtualGatewayName":{
2931
- "shape":"ResourceName",
2932
- "location":"uri",
2933
- "locationName":"virtualGatewayName"
2934
- }
2935
- }
2936
- },
2937
- "UpdateGatewayRouteOutput":{
2938
- "type":"structure",
2939
- "required":["gatewayRoute"],
2940
- "members":{
2941
- "gatewayRoute":{"shape":"GatewayRouteData"}
2942
- },
2943
- "payload":"gatewayRoute"
2944
- },
2945
- "UpdateMeshInput":{
2946
- "type":"structure",
2947
- "required":["meshName"],
2948
- "members":{
2949
- "clientToken":{
2950
- "shape":"String",
2951
- "idempotencyToken":true
2952
- },
2953
- "meshName":{
2954
- "shape":"ResourceName",
2955
- "location":"uri",
2956
- "locationName":"meshName"
2957
- },
2958
- "spec":{"shape":"MeshSpec"}
2959
- }
2960
- },
2961
- "UpdateMeshOutput":{
2962
- "type":"structure",
2963
- "required":["mesh"],
2964
- "members":{
2965
- "mesh":{"shape":"MeshData"}
2966
- },
2967
- "payload":"mesh"
2968
- },
2969
- "UpdateRouteInput":{
2970
- "type":"structure",
2971
- "required":[
2972
- "meshName",
2973
- "routeName",
2974
- "spec",
2975
- "virtualRouterName"
2976
- ],
2977
- "members":{
2978
- "clientToken":{
2979
- "shape":"String",
2980
- "idempotencyToken":true
2981
- },
2982
- "meshName":{
2983
- "shape":"ResourceName",
2984
- "location":"uri",
2985
- "locationName":"meshName"
2986
- },
2987
- "meshOwner":{
2988
- "shape":"AccountId",
2989
- "location":"querystring",
2990
- "locationName":"meshOwner"
2991
- },
2992
- "routeName":{
2993
- "shape":"ResourceName",
2994
- "location":"uri",
2995
- "locationName":"routeName"
2996
- },
2997
- "spec":{"shape":"RouteSpec"},
2998
- "virtualRouterName":{
2999
- "shape":"ResourceName",
3000
- "location":"uri",
3001
- "locationName":"virtualRouterName"
3002
- }
3003
- }
3004
- },
3005
- "UpdateRouteOutput":{
3006
- "type":"structure",
3007
- "required":["route"],
3008
- "members":{
3009
- "route":{"shape":"RouteData"}
3010
- },
3011
- "payload":"route"
3012
- },
3013
- "UpdateVirtualGatewayInput":{
3014
- "type":"structure",
3015
- "required":[
3016
- "meshName",
3017
- "spec",
3018
- "virtualGatewayName"
3019
- ],
3020
- "members":{
3021
- "clientToken":{
3022
- "shape":"String",
3023
- "idempotencyToken":true
3024
- },
3025
- "meshName":{
3026
- "shape":"ResourceName",
3027
- "location":"uri",
3028
- "locationName":"meshName"
3029
- },
3030
- "meshOwner":{
3031
- "shape":"AccountId",
3032
- "location":"querystring",
3033
- "locationName":"meshOwner"
3034
- },
3035
- "spec":{"shape":"VirtualGatewaySpec"},
3036
- "virtualGatewayName":{
3037
- "shape":"ResourceName",
3038
- "location":"uri",
3039
- "locationName":"virtualGatewayName"
3040
- }
3041
- }
3042
- },
3043
- "UpdateVirtualGatewayOutput":{
3044
- "type":"structure",
3045
- "required":["virtualGateway"],
3046
- "members":{
3047
- "virtualGateway":{"shape":"VirtualGatewayData"}
3048
- },
3049
- "payload":"virtualGateway"
3050
- },
3051
- "UpdateVirtualNodeInput":{
3052
- "type":"structure",
3053
- "required":[
3054
- "meshName",
3055
- "spec",
3056
- "virtualNodeName"
3057
- ],
3058
- "members":{
3059
- "clientToken":{
3060
- "shape":"String",
3061
- "idempotencyToken":true
3062
- },
3063
- "meshName":{
3064
- "shape":"ResourceName",
3065
- "location":"uri",
3066
- "locationName":"meshName"
3067
- },
3068
- "meshOwner":{
3069
- "shape":"AccountId",
3070
- "location":"querystring",
3071
- "locationName":"meshOwner"
3072
- },
3073
- "spec":{"shape":"VirtualNodeSpec"},
3074
- "virtualNodeName":{
3075
- "shape":"ResourceName",
3076
- "location":"uri",
3077
- "locationName":"virtualNodeName"
3078
- }
3079
- }
3080
- },
3081
- "UpdateVirtualNodeOutput":{
3082
- "type":"structure",
3083
- "required":["virtualNode"],
3084
- "members":{
3085
- "virtualNode":{"shape":"VirtualNodeData"}
3086
- },
3087
- "payload":"virtualNode"
3088
- },
3089
- "UpdateVirtualRouterInput":{
3090
- "type":"structure",
3091
- "required":[
3092
- "meshName",
3093
- "spec",
3094
- "virtualRouterName"
3095
- ],
3096
- "members":{
3097
- "clientToken":{
3098
- "shape":"String",
3099
- "idempotencyToken":true
3100
- },
3101
- "meshName":{
3102
- "shape":"ResourceName",
3103
- "location":"uri",
3104
- "locationName":"meshName"
3105
- },
3106
- "meshOwner":{
3107
- "shape":"AccountId",
3108
- "location":"querystring",
3109
- "locationName":"meshOwner"
3110
- },
3111
- "spec":{"shape":"VirtualRouterSpec"},
3112
- "virtualRouterName":{
3113
- "shape":"ResourceName",
3114
- "location":"uri",
3115
- "locationName":"virtualRouterName"
3116
- }
3117
- }
3118
- },
3119
- "UpdateVirtualRouterOutput":{
3120
- "type":"structure",
3121
- "required":["virtualRouter"],
3122
- "members":{
3123
- "virtualRouter":{"shape":"VirtualRouterData"}
3124
- },
3125
- "payload":"virtualRouter"
3126
- },
3127
- "UpdateVirtualServiceInput":{
3128
- "type":"structure",
3129
- "required":[
3130
- "meshName",
3131
- "spec",
3132
- "virtualServiceName"
3133
- ],
3134
- "members":{
3135
- "clientToken":{
3136
- "shape":"String",
3137
- "idempotencyToken":true
3138
- },
3139
- "meshName":{
3140
- "shape":"ResourceName",
3141
- "location":"uri",
3142
- "locationName":"meshName"
3143
- },
3144
- "meshOwner":{
3145
- "shape":"AccountId",
3146
- "location":"querystring",
3147
- "locationName":"meshOwner"
3148
- },
3149
- "spec":{"shape":"VirtualServiceSpec"},
3150
- "virtualServiceName":{
3151
- "shape":"ServiceName",
3152
- "location":"uri",
3153
- "locationName":"virtualServiceName"
3154
- }
3155
- }
3156
- },
3157
- "UpdateVirtualServiceOutput":{
3158
- "type":"structure",
3159
- "required":["virtualService"],
3160
- "members":{
3161
- "virtualService":{"shape":"VirtualServiceData"}
3162
- },
3163
- "payload":"virtualService"
3164
- },
3165
- "VirtualGatewayAccessLog":{
3166
- "type":"structure",
3167
- "members":{
3168
- "file":{"shape":"VirtualGatewayFileAccessLog"}
3169
- },
3170
- "union":true
3171
- },
3172
- "VirtualGatewayBackendDefaults":{
3173
- "type":"structure",
3174
- "members":{
3175
- "clientPolicy":{"shape":"VirtualGatewayClientPolicy"}
3176
- }
3177
- },
3178
- "VirtualGatewayCertificateAuthorityArns":{
3179
- "type":"list",
3180
- "member":{"shape":"Arn"},
3181
- "max":3,
3182
- "min":1
3183
- },
3184
- "VirtualGatewayClientPolicy":{
3185
- "type":"structure",
3186
- "members":{
3187
- "tls":{"shape":"VirtualGatewayClientPolicyTls"}
3188
- }
3189
- },
3190
- "VirtualGatewayClientPolicyTls":{
3191
- "type":"structure",
3192
- "required":["validation"],
3193
- "members":{
3194
- "enforce":{
3195
- "shape":"Boolean",
3196
- "box":true
3197
- },
3198
- "ports":{"shape":"PortSet"},
3199
- "validation":{"shape":"VirtualGatewayTlsValidationContext"}
3200
- }
3201
- },
3202
- "VirtualGatewayConnectionPool":{
3203
- "type":"structure",
3204
- "members":{
3205
- "grpc":{"shape":"VirtualGatewayGrpcConnectionPool"},
3206
- "http":{"shape":"VirtualGatewayHttpConnectionPool"},
3207
- "http2":{"shape":"VirtualGatewayHttp2ConnectionPool"}
3208
- },
3209
- "union":true
3210
- },
3211
- "VirtualGatewayData":{
3212
- "type":"structure",
3213
- "required":[
3214
- "meshName",
3215
- "metadata",
3216
- "spec",
3217
- "status",
3218
- "virtualGatewayName"
3219
- ],
3220
- "members":{
3221
- "meshName":{"shape":"ResourceName"},
3222
- "metadata":{"shape":"ResourceMetadata"},
3223
- "spec":{"shape":"VirtualGatewaySpec"},
3224
- "status":{"shape":"VirtualGatewayStatus"},
3225
- "virtualGatewayName":{"shape":"ResourceName"}
3226
- }
3227
- },
3228
- "VirtualGatewayFileAccessLog":{
3229
- "type":"structure",
3230
- "required":["path"],
3231
- "members":{
3232
- "path":{"shape":"FilePath"}
3233
- }
3234
- },
3235
- "VirtualGatewayGrpcConnectionPool":{
3236
- "type":"structure",
3237
- "required":["maxRequests"],
3238
- "members":{
3239
- "maxRequests":{"shape":"MaxRequests"}
3240
- }
3241
- },
3242
- "VirtualGatewayHealthCheckIntervalMillis":{
3243
- "type":"long",
3244
- "box":true,
3245
- "max":300000,
3246
- "min":5000
3247
- },
3248
- "VirtualGatewayHealthCheckPolicy":{
3249
- "type":"structure",
3250
- "required":[
3251
- "healthyThreshold",
3252
- "intervalMillis",
3253
- "protocol",
3254
- "timeoutMillis",
3255
- "unhealthyThreshold"
3256
- ],
3257
- "members":{
3258
- "healthyThreshold":{"shape":"VirtualGatewayHealthCheckThreshold"},
3259
- "intervalMillis":{"shape":"VirtualGatewayHealthCheckIntervalMillis"},
3260
- "path":{"shape":"String"},
3261
- "port":{"shape":"PortNumber"},
3262
- "protocol":{"shape":"VirtualGatewayPortProtocol"},
3263
- "timeoutMillis":{"shape":"VirtualGatewayHealthCheckTimeoutMillis"},
3264
- "unhealthyThreshold":{"shape":"VirtualGatewayHealthCheckThreshold"}
3265
- }
3266
- },
3267
- "VirtualGatewayHealthCheckThreshold":{
3268
- "type":"integer",
3269
- "max":10,
3270
- "min":2
3271
- },
3272
- "VirtualGatewayHealthCheckTimeoutMillis":{
3273
- "type":"long",
3274
- "box":true,
3275
- "max":60000,
3276
- "min":2000
3277
- },
3278
- "VirtualGatewayHttp2ConnectionPool":{
3279
- "type":"structure",
3280
- "required":["maxRequests"],
3281
- "members":{
3282
- "maxRequests":{"shape":"MaxRequests"}
3283
- }
3284
- },
3285
- "VirtualGatewayHttpConnectionPool":{
3286
- "type":"structure",
3287
- "required":["maxConnections"],
3288
- "members":{
3289
- "maxConnections":{"shape":"MaxConnections"},
3290
- "maxPendingRequests":{
3291
- "shape":"MaxPendingRequests",
3292
- "box":true
3293
- }
3294
- }
3295
- },
3296
- "VirtualGatewayList":{
3297
- "type":"list",
3298
- "member":{"shape":"VirtualGatewayRef"}
3299
- },
3300
- "VirtualGatewayListener":{
3301
- "type":"structure",
3302
- "required":["portMapping"],
3303
- "members":{
3304
- "connectionPool":{"shape":"VirtualGatewayConnectionPool"},
3305
- "healthCheck":{"shape":"VirtualGatewayHealthCheckPolicy"},
3306
- "portMapping":{"shape":"VirtualGatewayPortMapping"},
3307
- "tls":{"shape":"VirtualGatewayListenerTls"}
3308
- }
3309
- },
3310
- "VirtualGatewayListenerTls":{
3311
- "type":"structure",
3312
- "required":[
3313
- "certificate",
3314
- "mode"
3315
- ],
3316
- "members":{
3317
- "certificate":{"shape":"VirtualGatewayListenerTlsCertificate"},
3318
- "mode":{"shape":"VirtualGatewayListenerTlsMode"}
3319
- }
3320
- },
3321
- "VirtualGatewayListenerTlsAcmCertificate":{
3322
- "type":"structure",
3323
- "required":["certificateArn"],
3324
- "members":{
3325
- "certificateArn":{"shape":"Arn"}
3326
- }
3327
- },
3328
- "VirtualGatewayListenerTlsCertificate":{
3329
- "type":"structure",
3330
- "members":{
3331
- "acm":{"shape":"VirtualGatewayListenerTlsAcmCertificate"},
3332
- "file":{"shape":"VirtualGatewayListenerTlsFileCertificate"}
3333
- },
3334
- "union":true
3335
- },
3336
- "VirtualGatewayListenerTlsFileCertificate":{
3337
- "type":"structure",
3338
- "required":[
3339
- "certificateChain",
3340
- "privateKey"
3341
- ],
3342
- "members":{
3343
- "certificateChain":{"shape":"FilePath"},
3344
- "privateKey":{"shape":"FilePath"}
3345
- }
3346
- },
3347
- "VirtualGatewayListenerTlsMode":{
3348
- "type":"string",
3349
- "enum":[
3350
- "STRICT",
3351
- "PERMISSIVE",
3352
- "DISABLED"
3353
- ]
3354
- },
3355
- "VirtualGatewayListeners":{
3356
- "type":"list",
3357
- "member":{"shape":"VirtualGatewayListener"},
3358
- "max":1,
3359
- "min":0
3360
- },
3361
- "VirtualGatewayLogging":{
3362
- "type":"structure",
3363
- "members":{
3364
- "accessLog":{"shape":"VirtualGatewayAccessLog"}
3365
- }
3366
- },
3367
- "VirtualGatewayPortMapping":{
3368
- "type":"structure",
3369
- "required":[
3370
- "port",
3371
- "protocol"
3372
- ],
3373
- "members":{
3374
- "port":{"shape":"PortNumber"},
3375
- "protocol":{"shape":"VirtualGatewayPortProtocol"}
3376
- }
3377
- },
3378
- "VirtualGatewayPortProtocol":{
3379
- "type":"string",
3380
- "enum":[
3381
- "http",
3382
- "http2",
3383
- "grpc"
3384
- ]
3385
- },
3386
- "VirtualGatewayRef":{
3387
- "type":"structure",
3388
- "required":[
3389
- "arn",
3390
- "createdAt",
3391
- "lastUpdatedAt",
3392
- "meshName",
3393
- "meshOwner",
3394
- "resourceOwner",
3395
- "version",
3396
- "virtualGatewayName"
3397
- ],
3398
- "members":{
3399
- "arn":{"shape":"Arn"},
3400
- "createdAt":{"shape":"Timestamp"},
3401
- "lastUpdatedAt":{"shape":"Timestamp"},
3402
- "meshName":{"shape":"ResourceName"},
3403
- "meshOwner":{"shape":"AccountId"},
3404
- "resourceOwner":{"shape":"AccountId"},
3405
- "version":{"shape":"Long"},
3406
- "virtualGatewayName":{"shape":"ResourceName"}
3407
- }
3408
- },
3409
- "VirtualGatewaySpec":{
3410
- "type":"structure",
3411
- "required":["listeners"],
3412
- "members":{
3413
- "backendDefaults":{"shape":"VirtualGatewayBackendDefaults"},
3414
- "listeners":{"shape":"VirtualGatewayListeners"},
3415
- "logging":{"shape":"VirtualGatewayLogging"}
3416
- }
3417
- },
3418
- "VirtualGatewayStatus":{
3419
- "type":"structure",
3420
- "required":["status"],
3421
- "members":{
3422
- "status":{"shape":"VirtualGatewayStatusCode"}
3423
- }
3424
- },
3425
- "VirtualGatewayStatusCode":{
3426
- "type":"string",
3427
- "enum":[
3428
- "ACTIVE",
3429
- "INACTIVE",
3430
- "DELETED"
3431
- ]
3432
- },
3433
- "VirtualGatewayTlsValidationContext":{
3434
- "type":"structure",
3435
- "required":["trust"],
3436
- "members":{
3437
- "trust":{"shape":"VirtualGatewayTlsValidationContextTrust"}
3438
- }
3439
- },
3440
- "VirtualGatewayTlsValidationContextAcmTrust":{
3441
- "type":"structure",
3442
- "required":["certificateAuthorityArns"],
3443
- "members":{
3444
- "certificateAuthorityArns":{"shape":"VirtualGatewayCertificateAuthorityArns"}
3445
- }
3446
- },
3447
- "VirtualGatewayTlsValidationContextFileTrust":{
3448
- "type":"structure",
3449
- "required":["certificateChain"],
3450
- "members":{
3451
- "certificateChain":{"shape":"FilePath"}
3452
- }
3453
- },
3454
- "VirtualGatewayTlsValidationContextTrust":{
3455
- "type":"structure",
3456
- "members":{
3457
- "acm":{"shape":"VirtualGatewayTlsValidationContextAcmTrust"},
3458
- "file":{"shape":"VirtualGatewayTlsValidationContextFileTrust"}
3459
- },
3460
- "union":true
3461
- },
3462
- "VirtualNodeConnectionPool":{
3463
- "type":"structure",
3464
- "members":{
3465
- "grpc":{"shape":"VirtualNodeGrpcConnectionPool"},
3466
- "http":{"shape":"VirtualNodeHttpConnectionPool"},
3467
- "http2":{"shape":"VirtualNodeHttp2ConnectionPool"},
3468
- "tcp":{"shape":"VirtualNodeTcpConnectionPool"}
3469
- },
3470
- "union":true
3471
- },
3472
- "VirtualNodeData":{
3473
- "type":"structure",
3474
- "required":[
3475
- "meshName",
3476
- "metadata",
3477
- "spec",
3478
- "status",
3479
- "virtualNodeName"
3480
- ],
3481
- "members":{
3482
- "meshName":{"shape":"ResourceName"},
3483
- "metadata":{"shape":"ResourceMetadata"},
3484
- "spec":{"shape":"VirtualNodeSpec"},
3485
- "status":{"shape":"VirtualNodeStatus"},
3486
- "virtualNodeName":{"shape":"ResourceName"}
3487
- }
3488
- },
3489
- "VirtualNodeGrpcConnectionPool":{
3490
- "type":"structure",
3491
- "required":["maxRequests"],
3492
- "members":{
3493
- "maxRequests":{"shape":"MaxRequests"}
3494
- }
3495
- },
3496
- "VirtualNodeHttp2ConnectionPool":{
3497
- "type":"structure",
3498
- "required":["maxRequests"],
3499
- "members":{
3500
- "maxRequests":{"shape":"MaxRequests"}
3501
- }
3502
- },
3503
- "VirtualNodeHttpConnectionPool":{
3504
- "type":"structure",
3505
- "required":["maxConnections"],
3506
- "members":{
3507
- "maxConnections":{"shape":"MaxConnections"},
3508
- "maxPendingRequests":{
3509
- "shape":"MaxPendingRequests",
3510
- "box":true
3511
- }
3512
- }
3513
- },
3514
- "VirtualNodeList":{
3515
- "type":"list",
3516
- "member":{"shape":"VirtualNodeRef"}
3517
- },
3518
- "VirtualNodeRef":{
3519
- "type":"structure",
3520
- "required":[
3521
- "arn",
3522
- "createdAt",
3523
- "lastUpdatedAt",
3524
- "meshName",
3525
- "meshOwner",
3526
- "resourceOwner",
3527
- "version",
3528
- "virtualNodeName"
3529
- ],
3530
- "members":{
3531
- "arn":{"shape":"Arn"},
3532
- "createdAt":{"shape":"Timestamp"},
3533
- "lastUpdatedAt":{"shape":"Timestamp"},
3534
- "meshName":{"shape":"ResourceName"},
3535
- "meshOwner":{"shape":"AccountId"},
3536
- "resourceOwner":{"shape":"AccountId"},
3537
- "version":{"shape":"Long"},
3538
- "virtualNodeName":{"shape":"ResourceName"}
3539
- }
3540
- },
3541
- "VirtualNodeServiceProvider":{
3542
- "type":"structure",
3543
- "required":["virtualNodeName"],
3544
- "members":{
3545
- "virtualNodeName":{"shape":"ResourceName"}
3546
- }
3547
- },
3548
- "VirtualNodeSpec":{
3549
- "type":"structure",
3550
- "members":{
3551
- "backendDefaults":{"shape":"BackendDefaults"},
3552
- "backends":{"shape":"Backends"},
3553
- "listeners":{"shape":"Listeners"},
3554
- "logging":{"shape":"Logging"},
3555
- "serviceDiscovery":{"shape":"ServiceDiscovery"}
3556
- }
3557
- },
3558
- "VirtualNodeStatus":{
3559
- "type":"structure",
3560
- "required":["status"],
3561
- "members":{
3562
- "status":{"shape":"VirtualNodeStatusCode"}
3563
- }
3564
- },
3565
- "VirtualNodeStatusCode":{
3566
- "type":"string",
3567
- "enum":[
3568
- "ACTIVE",
3569
- "INACTIVE",
3570
- "DELETED"
3571
- ]
3572
- },
3573
- "VirtualNodeTcpConnectionPool":{
3574
- "type":"structure",
3575
- "required":["maxConnections"],
3576
- "members":{
3577
- "maxConnections":{"shape":"MaxConnections"}
3578
- }
3579
- },
3580
- "VirtualRouterData":{
3581
- "type":"structure",
3582
- "required":[
3583
- "meshName",
3584
- "metadata",
3585
- "spec",
3586
- "status",
3587
- "virtualRouterName"
3588
- ],
3589
- "members":{
3590
- "meshName":{"shape":"ResourceName"},
3591
- "metadata":{"shape":"ResourceMetadata"},
3592
- "spec":{"shape":"VirtualRouterSpec"},
3593
- "status":{"shape":"VirtualRouterStatus"},
3594
- "virtualRouterName":{"shape":"ResourceName"}
3595
- }
3596
- },
3597
- "VirtualRouterList":{
3598
- "type":"list",
3599
- "member":{"shape":"VirtualRouterRef"}
3600
- },
3601
- "VirtualRouterListener":{
3602
- "type":"structure",
3603
- "required":["portMapping"],
3604
- "members":{
3605
- "portMapping":{"shape":"PortMapping"}
3606
- }
3607
- },
3608
- "VirtualRouterListeners":{
3609
- "type":"list",
3610
- "member":{"shape":"VirtualRouterListener"},
3611
- "max":1,
3612
- "min":1
3613
- },
3614
- "VirtualRouterRef":{
3615
- "type":"structure",
3616
- "required":[
3617
- "arn",
3618
- "createdAt",
3619
- "lastUpdatedAt",
3620
- "meshName",
3621
- "meshOwner",
3622
- "resourceOwner",
3623
- "version",
3624
- "virtualRouterName"
3625
- ],
3626
- "members":{
3627
- "arn":{"shape":"Arn"},
3628
- "createdAt":{"shape":"Timestamp"},
3629
- "lastUpdatedAt":{"shape":"Timestamp"},
3630
- "meshName":{"shape":"ResourceName"},
3631
- "meshOwner":{"shape":"AccountId"},
3632
- "resourceOwner":{"shape":"AccountId"},
3633
- "version":{"shape":"Long"},
3634
- "virtualRouterName":{"shape":"ResourceName"}
3635
- }
3636
- },
3637
- "VirtualRouterServiceProvider":{
3638
- "type":"structure",
3639
- "required":["virtualRouterName"],
3640
- "members":{
3641
- "virtualRouterName":{"shape":"ResourceName"}
3642
- }
3643
- },
3644
- "VirtualRouterSpec":{
3645
- "type":"structure",
3646
- "members":{
3647
- "listeners":{"shape":"VirtualRouterListeners"}
3648
- }
3649
- },
3650
- "VirtualRouterStatus":{
3651
- "type":"structure",
3652
- "required":["status"],
3653
- "members":{
3654
- "status":{"shape":"VirtualRouterStatusCode"}
3655
- }
3656
- },
3657
- "VirtualRouterStatusCode":{
3658
- "type":"string",
3659
- "enum":[
3660
- "ACTIVE",
3661
- "INACTIVE",
3662
- "DELETED"
3663
- ]
3664
- },
3665
- "VirtualServiceBackend":{
3666
- "type":"structure",
3667
- "required":["virtualServiceName"],
3668
- "members":{
3669
- "clientPolicy":{"shape":"ClientPolicy"},
3670
- "virtualServiceName":{"shape":"ServiceName"}
3671
- }
3672
- },
3673
- "VirtualServiceData":{
3674
- "type":"structure",
3675
- "required":[
3676
- "meshName",
3677
- "metadata",
3678
- "spec",
3679
- "status",
3680
- "virtualServiceName"
3681
- ],
3682
- "members":{
3683
- "meshName":{"shape":"ResourceName"},
3684
- "metadata":{"shape":"ResourceMetadata"},
3685
- "spec":{"shape":"VirtualServiceSpec"},
3686
- "status":{"shape":"VirtualServiceStatus"},
3687
- "virtualServiceName":{"shape":"ServiceName"}
3688
- }
3689
- },
3690
- "VirtualServiceList":{
3691
- "type":"list",
3692
- "member":{"shape":"VirtualServiceRef"}
3693
- },
3694
- "VirtualServiceProvider":{
3695
- "type":"structure",
3696
- "members":{
3697
- "virtualNode":{"shape":"VirtualNodeServiceProvider"},
3698
- "virtualRouter":{"shape":"VirtualRouterServiceProvider"}
3699
- },
3700
- "union":true
3701
- },
3702
- "VirtualServiceRef":{
3703
- "type":"structure",
3704
- "required":[
3705
- "arn",
3706
- "createdAt",
3707
- "lastUpdatedAt",
3708
- "meshName",
3709
- "meshOwner",
3710
- "resourceOwner",
3711
- "version",
3712
- "virtualServiceName"
3713
- ],
3714
- "members":{
3715
- "arn":{"shape":"Arn"},
3716
- "createdAt":{"shape":"Timestamp"},
3717
- "lastUpdatedAt":{"shape":"Timestamp"},
3718
- "meshName":{"shape":"ResourceName"},
3719
- "meshOwner":{"shape":"AccountId"},
3720
- "resourceOwner":{"shape":"AccountId"},
3721
- "version":{"shape":"Long"},
3722
- "virtualServiceName":{"shape":"ServiceName"}
3723
- }
3724
- },
3725
- "VirtualServiceSpec":{
3726
- "type":"structure",
3727
- "members":{
3728
- "provider":{"shape":"VirtualServiceProvider"}
3729
- }
3730
- },
3731
- "VirtualServiceStatus":{
3732
- "type":"structure",
3733
- "required":["status"],
3734
- "members":{
3735
- "status":{"shape":"VirtualServiceStatusCode"}
3736
- }
3737
- },
3738
- "VirtualServiceStatusCode":{
3739
- "type":"string",
3740
- "enum":[
3741
- "ACTIVE",
3742
- "INACTIVE",
3743
- "DELETED"
3744
- ]
3745
- },
3746
- "WeightedTarget":{
3747
- "type":"structure",
3748
- "required":[
3749
- "virtualNode",
3750
- "weight"
3751
- ],
3752
- "members":{
3753
- "virtualNode":{"shape":"ResourceName"},
3754
- "weight":{"shape":"PercentInt"}
3755
- }
3756
- },
3757
- "WeightedTargets":{
3758
- "type":"list",
3759
- "member":{"shape":"WeightedTarget"},
3760
- "max":10,
3761
- "min":1
3762
- }
3763
- }
3764
- }