aws-sdk-core 2.11.501 → 3.94.0

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