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
- "pagination": {
3
- }
4
- }
@@ -1,21 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-east-1",
4
- "testCases": [
5
- {
6
- "operationName": "ListRules",
7
- "input": {
8
- "Limit": 20
9
- },
10
- "errorExpectedFromService": false
11
- },
12
- {
13
- "operationName": "CreateSqlInjectionMatchSet",
14
- "input": {
15
- "Name": "fake_name",
16
- "ChangeToken": "fake_token"
17
- },
18
- "errorExpectedFromService": true
19
- }
20
- ]
21
- }
@@ -1,2637 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-07-29",
5
- "endpointPrefix":"wafv2",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"WAFV2",
9
- "serviceFullName":"AWS WAFV2",
10
- "serviceId":"WAFV2",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"AWSWAF_20190729",
13
- "uid":"wafv2-2019-07-29"
14
- },
15
- "operations":{
16
- "AssociateWebACL":{
17
- "name":"AssociateWebACL",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"AssociateWebACLRequest"},
23
- "output":{"shape":"AssociateWebACLResponse"},
24
- "errors":[
25
- {"shape":"WAFInternalErrorException"},
26
- {"shape":"WAFInvalidParameterException"},
27
- {"shape":"WAFNonexistentItemException"},
28
- {"shape":"WAFUnavailableEntityException"},
29
- {"shape":"WAFInvalidOperationException"}
30
- ]
31
- },
32
- "CheckCapacity":{
33
- "name":"CheckCapacity",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"CheckCapacityRequest"},
39
- "output":{"shape":"CheckCapacityResponse"},
40
- "errors":[
41
- {"shape":"WAFInternalErrorException"},
42
- {"shape":"WAFInvalidParameterException"},
43
- {"shape":"WAFNonexistentItemException"},
44
- {"shape":"WAFLimitsExceededException"},
45
- {"shape":"WAFInvalidResourceException"},
46
- {"shape":"WAFUnavailableEntityException"},
47
- {"shape":"WAFSubscriptionNotFoundException"}
48
- ]
49
- },
50
- "CreateIPSet":{
51
- "name":"CreateIPSet",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"CreateIPSetRequest"},
57
- "output":{"shape":"CreateIPSetResponse"},
58
- "errors":[
59
- {"shape":"WAFInternalErrorException"},
60
- {"shape":"WAFInvalidParameterException"},
61
- {"shape":"WAFDuplicateItemException"},
62
- {"shape":"WAFOptimisticLockException"},
63
- {"shape":"WAFLimitsExceededException"},
64
- {"shape":"WAFTagOperationException"},
65
- {"shape":"WAFTagOperationInternalErrorException"},
66
- {"shape":"WAFInvalidOperationException"}
67
- ]
68
- },
69
- "CreateRegexPatternSet":{
70
- "name":"CreateRegexPatternSet",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"CreateRegexPatternSetRequest"},
76
- "output":{"shape":"CreateRegexPatternSetResponse"},
77
- "errors":[
78
- {"shape":"WAFInternalErrorException"},
79
- {"shape":"WAFInvalidParameterException"},
80
- {"shape":"WAFDuplicateItemException"},
81
- {"shape":"WAFOptimisticLockException"},
82
- {"shape":"WAFLimitsExceededException"},
83
- {"shape":"WAFTagOperationException"},
84
- {"shape":"WAFTagOperationInternalErrorException"},
85
- {"shape":"WAFInvalidOperationException"}
86
- ]
87
- },
88
- "CreateRuleGroup":{
89
- "name":"CreateRuleGroup",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/"
93
- },
94
- "input":{"shape":"CreateRuleGroupRequest"},
95
- "output":{"shape":"CreateRuleGroupResponse"},
96
- "errors":[
97
- {"shape":"WAFInternalErrorException"},
98
- {"shape":"WAFInvalidParameterException"},
99
- {"shape":"WAFDuplicateItemException"},
100
- {"shape":"WAFOptimisticLockException"},
101
- {"shape":"WAFLimitsExceededException"},
102
- {"shape":"WAFUnavailableEntityException"},
103
- {"shape":"WAFTagOperationException"},
104
- {"shape":"WAFTagOperationInternalErrorException"},
105
- {"shape":"WAFSubscriptionNotFoundException"},
106
- {"shape":"WAFNonexistentItemException"},
107
- {"shape":"WAFInvalidOperationException"}
108
- ]
109
- },
110
- "CreateWebACL":{
111
- "name":"CreateWebACL",
112
- "http":{
113
- "method":"POST",
114
- "requestUri":"/"
115
- },
116
- "input":{"shape":"CreateWebACLRequest"},
117
- "output":{"shape":"CreateWebACLResponse"},
118
- "errors":[
119
- {"shape":"WAFInternalErrorException"},
120
- {"shape":"WAFInvalidParameterException"},
121
- {"shape":"WAFDuplicateItemException"},
122
- {"shape":"WAFOptimisticLockException"},
123
- {"shape":"WAFLimitsExceededException"},
124
- {"shape":"WAFInvalidResourceException"},
125
- {"shape":"WAFUnavailableEntityException"},
126
- {"shape":"WAFNonexistentItemException"},
127
- {"shape":"WAFTagOperationException"},
128
- {"shape":"WAFTagOperationInternalErrorException"},
129
- {"shape":"WAFSubscriptionNotFoundException"},
130
- {"shape":"WAFInvalidOperationException"}
131
- ]
132
- },
133
- "DeleteFirewallManagerRuleGroups":{
134
- "name":"DeleteFirewallManagerRuleGroups",
135
- "http":{
136
- "method":"POST",
137
- "requestUri":"/"
138
- },
139
- "input":{"shape":"DeleteFirewallManagerRuleGroupsRequest"},
140
- "output":{"shape":"DeleteFirewallManagerRuleGroupsResponse"},
141
- "errors":[
142
- {"shape":"WAFInternalErrorException"},
143
- {"shape":"WAFInvalidParameterException"},
144
- {"shape":"WAFNonexistentItemException"},
145
- {"shape":"WAFOptimisticLockException"},
146
- {"shape":"WAFInvalidOperationException"}
147
- ]
148
- },
149
- "DeleteIPSet":{
150
- "name":"DeleteIPSet",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/"
154
- },
155
- "input":{"shape":"DeleteIPSetRequest"},
156
- "output":{"shape":"DeleteIPSetResponse"},
157
- "errors":[
158
- {"shape":"WAFInternalErrorException"},
159
- {"shape":"WAFInvalidParameterException"},
160
- {"shape":"WAFNonexistentItemException"},
161
- {"shape":"WAFOptimisticLockException"},
162
- {"shape":"WAFAssociatedItemException"},
163
- {"shape":"WAFTagOperationException"},
164
- {"shape":"WAFTagOperationInternalErrorException"},
165
- {"shape":"WAFInvalidOperationException"}
166
- ]
167
- },
168
- "DeleteLoggingConfiguration":{
169
- "name":"DeleteLoggingConfiguration",
170
- "http":{
171
- "method":"POST",
172
- "requestUri":"/"
173
- },
174
- "input":{"shape":"DeleteLoggingConfigurationRequest"},
175
- "output":{"shape":"DeleteLoggingConfigurationResponse"},
176
- "errors":[
177
- {"shape":"WAFInternalErrorException"},
178
- {"shape":"WAFNonexistentItemException"},
179
- {"shape":"WAFOptimisticLockException"},
180
- {"shape":"WAFInvalidParameterException"},
181
- {"shape":"WAFInvalidOperationException"}
182
- ]
183
- },
184
- "DeletePermissionPolicy":{
185
- "name":"DeletePermissionPolicy",
186
- "http":{
187
- "method":"POST",
188
- "requestUri":"/"
189
- },
190
- "input":{"shape":"DeletePermissionPolicyRequest"},
191
- "output":{"shape":"DeletePermissionPolicyResponse"},
192
- "errors":[
193
- {"shape":"WAFNonexistentItemException"},
194
- {"shape":"WAFInternalErrorException"},
195
- {"shape":"WAFInvalidParameterException"}
196
- ]
197
- },
198
- "DeleteRegexPatternSet":{
199
- "name":"DeleteRegexPatternSet",
200
- "http":{
201
- "method":"POST",
202
- "requestUri":"/"
203
- },
204
- "input":{"shape":"DeleteRegexPatternSetRequest"},
205
- "output":{"shape":"DeleteRegexPatternSetResponse"},
206
- "errors":[
207
- {"shape":"WAFInternalErrorException"},
208
- {"shape":"WAFInvalidParameterException"},
209
- {"shape":"WAFNonexistentItemException"},
210
- {"shape":"WAFOptimisticLockException"},
211
- {"shape":"WAFAssociatedItemException"},
212
- {"shape":"WAFTagOperationException"},
213
- {"shape":"WAFTagOperationInternalErrorException"},
214
- {"shape":"WAFInvalidOperationException"}
215
- ]
216
- },
217
- "DeleteRuleGroup":{
218
- "name":"DeleteRuleGroup",
219
- "http":{
220
- "method":"POST",
221
- "requestUri":"/"
222
- },
223
- "input":{"shape":"DeleteRuleGroupRequest"},
224
- "output":{"shape":"DeleteRuleGroupResponse"},
225
- "errors":[
226
- {"shape":"WAFInternalErrorException"},
227
- {"shape":"WAFInvalidParameterException"},
228
- {"shape":"WAFNonexistentItemException"},
229
- {"shape":"WAFOptimisticLockException"},
230
- {"shape":"WAFAssociatedItemException"},
231
- {"shape":"WAFTagOperationException"},
232
- {"shape":"WAFTagOperationInternalErrorException"},
233
- {"shape":"WAFInvalidOperationException"}
234
- ]
235
- },
236
- "DeleteWebACL":{
237
- "name":"DeleteWebACL",
238
- "http":{
239
- "method":"POST",
240
- "requestUri":"/"
241
- },
242
- "input":{"shape":"DeleteWebACLRequest"},
243
- "output":{"shape":"DeleteWebACLResponse"},
244
- "errors":[
245
- {"shape":"WAFInternalErrorException"},
246
- {"shape":"WAFInvalidParameterException"},
247
- {"shape":"WAFNonexistentItemException"},
248
- {"shape":"WAFOptimisticLockException"},
249
- {"shape":"WAFAssociatedItemException"},
250
- {"shape":"WAFTagOperationException"},
251
- {"shape":"WAFTagOperationInternalErrorException"},
252
- {"shape":"WAFInvalidOperationException"}
253
- ]
254
- },
255
- "DescribeManagedRuleGroup":{
256
- "name":"DescribeManagedRuleGroup",
257
- "http":{
258
- "method":"POST",
259
- "requestUri":"/"
260
- },
261
- "input":{"shape":"DescribeManagedRuleGroupRequest"},
262
- "output":{"shape":"DescribeManagedRuleGroupResponse"},
263
- "errors":[
264
- {"shape":"WAFInternalErrorException"},
265
- {"shape":"WAFInvalidParameterException"},
266
- {"shape":"WAFInvalidResourceException"},
267
- {"shape":"WAFNonexistentItemException"},
268
- {"shape":"WAFInvalidOperationException"}
269
- ]
270
- },
271
- "DisassociateWebACL":{
272
- "name":"DisassociateWebACL",
273
- "http":{
274
- "method":"POST",
275
- "requestUri":"/"
276
- },
277
- "input":{"shape":"DisassociateWebACLRequest"},
278
- "output":{"shape":"DisassociateWebACLResponse"},
279
- "errors":[
280
- {"shape":"WAFInternalErrorException"},
281
- {"shape":"WAFInvalidParameterException"},
282
- {"shape":"WAFNonexistentItemException"},
283
- {"shape":"WAFInvalidOperationException"}
284
- ]
285
- },
286
- "GetIPSet":{
287
- "name":"GetIPSet",
288
- "http":{
289
- "method":"POST",
290
- "requestUri":"/"
291
- },
292
- "input":{"shape":"GetIPSetRequest"},
293
- "output":{"shape":"GetIPSetResponse"},
294
- "errors":[
295
- {"shape":"WAFInternalErrorException"},
296
- {"shape":"WAFInvalidParameterException"},
297
- {"shape":"WAFNonexistentItemException"},
298
- {"shape":"WAFInvalidOperationException"}
299
- ]
300
- },
301
- "GetLoggingConfiguration":{
302
- "name":"GetLoggingConfiguration",
303
- "http":{
304
- "method":"POST",
305
- "requestUri":"/"
306
- },
307
- "input":{"shape":"GetLoggingConfigurationRequest"},
308
- "output":{"shape":"GetLoggingConfigurationResponse"},
309
- "errors":[
310
- {"shape":"WAFInternalErrorException"},
311
- {"shape":"WAFNonexistentItemException"},
312
- {"shape":"WAFInvalidParameterException"},
313
- {"shape":"WAFInvalidOperationException"}
314
- ]
315
- },
316
- "GetPermissionPolicy":{
317
- "name":"GetPermissionPolicy",
318
- "http":{
319
- "method":"POST",
320
- "requestUri":"/"
321
- },
322
- "input":{"shape":"GetPermissionPolicyRequest"},
323
- "output":{"shape":"GetPermissionPolicyResponse"},
324
- "errors":[
325
- {"shape":"WAFNonexistentItemException"},
326
- {"shape":"WAFInternalErrorException"},
327
- {"shape":"WAFInvalidParameterException"}
328
- ]
329
- },
330
- "GetRateBasedStatementManagedKeys":{
331
- "name":"GetRateBasedStatementManagedKeys",
332
- "http":{
333
- "method":"POST",
334
- "requestUri":"/"
335
- },
336
- "input":{"shape":"GetRateBasedStatementManagedKeysRequest"},
337
- "output":{"shape":"GetRateBasedStatementManagedKeysResponse"},
338
- "errors":[
339
- {"shape":"WAFInternalErrorException"},
340
- {"shape":"WAFInvalidParameterException"},
341
- {"shape":"WAFNonexistentItemException"},
342
- {"shape":"WAFInvalidOperationException"}
343
- ]
344
- },
345
- "GetRegexPatternSet":{
346
- "name":"GetRegexPatternSet",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"GetRegexPatternSetRequest"},
352
- "output":{"shape":"GetRegexPatternSetResponse"},
353
- "errors":[
354
- {"shape":"WAFInternalErrorException"},
355
- {"shape":"WAFInvalidParameterException"},
356
- {"shape":"WAFNonexistentItemException"},
357
- {"shape":"WAFInvalidOperationException"}
358
- ]
359
- },
360
- "GetRuleGroup":{
361
- "name":"GetRuleGroup",
362
- "http":{
363
- "method":"POST",
364
- "requestUri":"/"
365
- },
366
- "input":{"shape":"GetRuleGroupRequest"},
367
- "output":{"shape":"GetRuleGroupResponse"},
368
- "errors":[
369
- {"shape":"WAFInternalErrorException"},
370
- {"shape":"WAFInvalidParameterException"},
371
- {"shape":"WAFNonexistentItemException"},
372
- {"shape":"WAFInvalidOperationException"}
373
- ]
374
- },
375
- "GetSampledRequests":{
376
- "name":"GetSampledRequests",
377
- "http":{
378
- "method":"POST",
379
- "requestUri":"/"
380
- },
381
- "input":{"shape":"GetSampledRequestsRequest"},
382
- "output":{"shape":"GetSampledRequestsResponse"},
383
- "errors":[
384
- {"shape":"WAFNonexistentItemException"},
385
- {"shape":"WAFInternalErrorException"},
386
- {"shape":"WAFInvalidParameterException"}
387
- ]
388
- },
389
- "GetWebACL":{
390
- "name":"GetWebACL",
391
- "http":{
392
- "method":"POST",
393
- "requestUri":"/"
394
- },
395
- "input":{"shape":"GetWebACLRequest"},
396
- "output":{"shape":"GetWebACLResponse"},
397
- "errors":[
398
- {"shape":"WAFInternalErrorException"},
399
- {"shape":"WAFInvalidParameterException"},
400
- {"shape":"WAFNonexistentItemException"},
401
- {"shape":"WAFInvalidOperationException"}
402
- ]
403
- },
404
- "GetWebACLForResource":{
405
- "name":"GetWebACLForResource",
406
- "http":{
407
- "method":"POST",
408
- "requestUri":"/"
409
- },
410
- "input":{"shape":"GetWebACLForResourceRequest"},
411
- "output":{"shape":"GetWebACLForResourceResponse"},
412
- "errors":[
413
- {"shape":"WAFInternalErrorException"},
414
- {"shape":"WAFNonexistentItemException"},
415
- {"shape":"WAFInvalidParameterException"},
416
- {"shape":"WAFUnavailableEntityException"},
417
- {"shape":"WAFInvalidOperationException"}
418
- ]
419
- },
420
- "ListAvailableManagedRuleGroups":{
421
- "name":"ListAvailableManagedRuleGroups",
422
- "http":{
423
- "method":"POST",
424
- "requestUri":"/"
425
- },
426
- "input":{"shape":"ListAvailableManagedRuleGroupsRequest"},
427
- "output":{"shape":"ListAvailableManagedRuleGroupsResponse"},
428
- "errors":[
429
- {"shape":"WAFInternalErrorException"},
430
- {"shape":"WAFInvalidParameterException"},
431
- {"shape":"WAFInvalidOperationException"}
432
- ]
433
- },
434
- "ListIPSets":{
435
- "name":"ListIPSets",
436
- "http":{
437
- "method":"POST",
438
- "requestUri":"/"
439
- },
440
- "input":{"shape":"ListIPSetsRequest"},
441
- "output":{"shape":"ListIPSetsResponse"},
442
- "errors":[
443
- {"shape":"WAFInternalErrorException"},
444
- {"shape":"WAFInvalidParameterException"},
445
- {"shape":"WAFInvalidOperationException"}
446
- ]
447
- },
448
- "ListLoggingConfigurations":{
449
- "name":"ListLoggingConfigurations",
450
- "http":{
451
- "method":"POST",
452
- "requestUri":"/"
453
- },
454
- "input":{"shape":"ListLoggingConfigurationsRequest"},
455
- "output":{"shape":"ListLoggingConfigurationsResponse"},
456
- "errors":[
457
- {"shape":"WAFInternalErrorException"},
458
- {"shape":"WAFInvalidParameterException"},
459
- {"shape":"WAFInvalidOperationException"}
460
- ]
461
- },
462
- "ListRegexPatternSets":{
463
- "name":"ListRegexPatternSets",
464
- "http":{
465
- "method":"POST",
466
- "requestUri":"/"
467
- },
468
- "input":{"shape":"ListRegexPatternSetsRequest"},
469
- "output":{"shape":"ListRegexPatternSetsResponse"},
470
- "errors":[
471
- {"shape":"WAFInternalErrorException"},
472
- {"shape":"WAFInvalidParameterException"},
473
- {"shape":"WAFInvalidOperationException"}
474
- ]
475
- },
476
- "ListResourcesForWebACL":{
477
- "name":"ListResourcesForWebACL",
478
- "http":{
479
- "method":"POST",
480
- "requestUri":"/"
481
- },
482
- "input":{"shape":"ListResourcesForWebACLRequest"},
483
- "output":{"shape":"ListResourcesForWebACLResponse"},
484
- "errors":[
485
- {"shape":"WAFInternalErrorException"},
486
- {"shape":"WAFNonexistentItemException"},
487
- {"shape":"WAFInvalidParameterException"},
488
- {"shape":"WAFInvalidOperationException"}
489
- ]
490
- },
491
- "ListRuleGroups":{
492
- "name":"ListRuleGroups",
493
- "http":{
494
- "method":"POST",
495
- "requestUri":"/"
496
- },
497
- "input":{"shape":"ListRuleGroupsRequest"},
498
- "output":{"shape":"ListRuleGroupsResponse"},
499
- "errors":[
500
- {"shape":"WAFInternalErrorException"},
501
- {"shape":"WAFInvalidParameterException"},
502
- {"shape":"WAFInvalidOperationException"}
503
- ]
504
- },
505
- "ListTagsForResource":{
506
- "name":"ListTagsForResource",
507
- "http":{
508
- "method":"POST",
509
- "requestUri":"/"
510
- },
511
- "input":{"shape":"ListTagsForResourceRequest"},
512
- "output":{"shape":"ListTagsForResourceResponse"},
513
- "errors":[
514
- {"shape":"WAFInternalErrorException"},
515
- {"shape":"WAFInvalidParameterException"},
516
- {"shape":"WAFNonexistentItemException"},
517
- {"shape":"WAFTagOperationException"},
518
- {"shape":"WAFTagOperationInternalErrorException"},
519
- {"shape":"WAFInvalidOperationException"}
520
- ]
521
- },
522
- "ListWebACLs":{
523
- "name":"ListWebACLs",
524
- "http":{
525
- "method":"POST",
526
- "requestUri":"/"
527
- },
528
- "input":{"shape":"ListWebACLsRequest"},
529
- "output":{"shape":"ListWebACLsResponse"},
530
- "errors":[
531
- {"shape":"WAFInternalErrorException"},
532
- {"shape":"WAFInvalidParameterException"},
533
- {"shape":"WAFInvalidOperationException"}
534
- ]
535
- },
536
- "PutLoggingConfiguration":{
537
- "name":"PutLoggingConfiguration",
538
- "http":{
539
- "method":"POST",
540
- "requestUri":"/"
541
- },
542
- "input":{"shape":"PutLoggingConfigurationRequest"},
543
- "output":{"shape":"PutLoggingConfigurationResponse"},
544
- "errors":[
545
- {"shape":"WAFInternalErrorException"},
546
- {"shape":"WAFNonexistentItemException"},
547
- {"shape":"WAFOptimisticLockException"},
548
- {"shape":"WAFServiceLinkedRoleErrorException"},
549
- {"shape":"WAFInvalidParameterException"},
550
- {"shape":"WAFInvalidOperationException"}
551
- ]
552
- },
553
- "PutPermissionPolicy":{
554
- "name":"PutPermissionPolicy",
555
- "http":{
556
- "method":"POST",
557
- "requestUri":"/"
558
- },
559
- "input":{"shape":"PutPermissionPolicyRequest"},
560
- "output":{"shape":"PutPermissionPolicyResponse"},
561
- "errors":[
562
- {"shape":"WAFNonexistentItemException"},
563
- {"shape":"WAFInternalErrorException"},
564
- {"shape":"WAFInvalidParameterException"},
565
- {"shape":"WAFInvalidPermissionPolicyException"}
566
- ]
567
- },
568
- "TagResource":{
569
- "name":"TagResource",
570
- "http":{
571
- "method":"POST",
572
- "requestUri":"/"
573
- },
574
- "input":{"shape":"TagResourceRequest"},
575
- "output":{"shape":"TagResourceResponse"},
576
- "errors":[
577
- {"shape":"WAFInternalErrorException"},
578
- {"shape":"WAFInvalidParameterException"},
579
- {"shape":"WAFLimitsExceededException"},
580
- {"shape":"WAFNonexistentItemException"},
581
- {"shape":"WAFTagOperationException"},
582
- {"shape":"WAFTagOperationInternalErrorException"},
583
- {"shape":"WAFInvalidOperationException"}
584
- ]
585
- },
586
- "UntagResource":{
587
- "name":"UntagResource",
588
- "http":{
589
- "method":"POST",
590
- "requestUri":"/"
591
- },
592
- "input":{"shape":"UntagResourceRequest"},
593
- "output":{"shape":"UntagResourceResponse"},
594
- "errors":[
595
- {"shape":"WAFInternalErrorException"},
596
- {"shape":"WAFInvalidParameterException"},
597
- {"shape":"WAFNonexistentItemException"},
598
- {"shape":"WAFTagOperationException"},
599
- {"shape":"WAFTagOperationInternalErrorException"},
600
- {"shape":"WAFInvalidOperationException"}
601
- ]
602
- },
603
- "UpdateIPSet":{
604
- "name":"UpdateIPSet",
605
- "http":{
606
- "method":"POST",
607
- "requestUri":"/"
608
- },
609
- "input":{"shape":"UpdateIPSetRequest"},
610
- "output":{"shape":"UpdateIPSetResponse"},
611
- "errors":[
612
- {"shape":"WAFInternalErrorException"},
613
- {"shape":"WAFInvalidParameterException"},
614
- {"shape":"WAFNonexistentItemException"},
615
- {"shape":"WAFDuplicateItemException"},
616
- {"shape":"WAFOptimisticLockException"},
617
- {"shape":"WAFLimitsExceededException"},
618
- {"shape":"WAFInvalidOperationException"}
619
- ]
620
- },
621
- "UpdateRegexPatternSet":{
622
- "name":"UpdateRegexPatternSet",
623
- "http":{
624
- "method":"POST",
625
- "requestUri":"/"
626
- },
627
- "input":{"shape":"UpdateRegexPatternSetRequest"},
628
- "output":{"shape":"UpdateRegexPatternSetResponse"},
629
- "errors":[
630
- {"shape":"WAFInternalErrorException"},
631
- {"shape":"WAFInvalidParameterException"},
632
- {"shape":"WAFNonexistentItemException"},
633
- {"shape":"WAFDuplicateItemException"},
634
- {"shape":"WAFOptimisticLockException"},
635
- {"shape":"WAFLimitsExceededException"},
636
- {"shape":"WAFInvalidOperationException"}
637
- ]
638
- },
639
- "UpdateRuleGroup":{
640
- "name":"UpdateRuleGroup",
641
- "http":{
642
- "method":"POST",
643
- "requestUri":"/"
644
- },
645
- "input":{"shape":"UpdateRuleGroupRequest"},
646
- "output":{"shape":"UpdateRuleGroupResponse"},
647
- "errors":[
648
- {"shape":"WAFInternalErrorException"},
649
- {"shape":"WAFInvalidParameterException"},
650
- {"shape":"WAFNonexistentItemException"},
651
- {"shape":"WAFDuplicateItemException"},
652
- {"shape":"WAFOptimisticLockException"},
653
- {"shape":"WAFLimitsExceededException"},
654
- {"shape":"WAFUnavailableEntityException"},
655
- {"shape":"WAFSubscriptionNotFoundException"},
656
- {"shape":"WAFInvalidOperationException"}
657
- ]
658
- },
659
- "UpdateWebACL":{
660
- "name":"UpdateWebACL",
661
- "http":{
662
- "method":"POST",
663
- "requestUri":"/"
664
- },
665
- "input":{"shape":"UpdateWebACLRequest"},
666
- "output":{"shape":"UpdateWebACLResponse"},
667
- "errors":[
668
- {"shape":"WAFInternalErrorException"},
669
- {"shape":"WAFInvalidParameterException"},
670
- {"shape":"WAFNonexistentItemException"},
671
- {"shape":"WAFDuplicateItemException"},
672
- {"shape":"WAFOptimisticLockException"},
673
- {"shape":"WAFLimitsExceededException"},
674
- {"shape":"WAFInvalidResourceException"},
675
- {"shape":"WAFUnavailableEntityException"},
676
- {"shape":"WAFSubscriptionNotFoundException"},
677
- {"shape":"WAFInvalidOperationException"}
678
- ]
679
- }
680
- },
681
- "shapes":{
682
- "Action":{"type":"string"},
683
- "AllQueryArguments":{
684
- "type":"structure",
685
- "members":{
686
- }
687
- },
688
- "AllowAction":{
689
- "type":"structure",
690
- "members":{
691
- }
692
- },
693
- "AndStatement":{
694
- "type":"structure",
695
- "required":["Statements"],
696
- "members":{
697
- "Statements":{"shape":"Statements"}
698
- }
699
- },
700
- "AssociateWebACLRequest":{
701
- "type":"structure",
702
- "required":[
703
- "WebACLArn",
704
- "ResourceArn"
705
- ],
706
- "members":{
707
- "WebACLArn":{"shape":"ResourceArn"},
708
- "ResourceArn":{"shape":"ResourceArn"}
709
- }
710
- },
711
- "AssociateWebACLResponse":{
712
- "type":"structure",
713
- "members":{
714
- }
715
- },
716
- "BlockAction":{
717
- "type":"structure",
718
- "members":{
719
- }
720
- },
721
- "Body":{
722
- "type":"structure",
723
- "members":{
724
- }
725
- },
726
- "Boolean":{"type":"boolean"},
727
- "ByteMatchStatement":{
728
- "type":"structure",
729
- "required":[
730
- "SearchString",
731
- "FieldToMatch",
732
- "TextTransformations",
733
- "PositionalConstraint"
734
- ],
735
- "members":{
736
- "SearchString":{"shape":"SearchString"},
737
- "FieldToMatch":{"shape":"FieldToMatch"},
738
- "TextTransformations":{"shape":"TextTransformations"},
739
- "PositionalConstraint":{"shape":"PositionalConstraint"}
740
- }
741
- },
742
- "CapacityUnit":{
743
- "type":"long",
744
- "min":1
745
- },
746
- "CheckCapacityRequest":{
747
- "type":"structure",
748
- "required":[
749
- "Scope",
750
- "Rules"
751
- ],
752
- "members":{
753
- "Scope":{"shape":"Scope"},
754
- "Rules":{"shape":"Rules"}
755
- }
756
- },
757
- "CheckCapacityResponse":{
758
- "type":"structure",
759
- "members":{
760
- "Capacity":{"shape":"ConsumedCapacity"}
761
- }
762
- },
763
- "ComparisonOperator":{
764
- "type":"string",
765
- "enum":[
766
- "EQ",
767
- "NE",
768
- "LE",
769
- "LT",
770
- "GE",
771
- "GT"
772
- ]
773
- },
774
- "ConsumedCapacity":{
775
- "type":"long",
776
- "min":0
777
- },
778
- "CountAction":{
779
- "type":"structure",
780
- "members":{
781
- }
782
- },
783
- "Country":{"type":"string"},
784
- "CountryCode":{
785
- "type":"string",
786
- "enum":[
787
- "AF",
788
- "AX",
789
- "AL",
790
- "DZ",
791
- "AS",
792
- "AD",
793
- "AO",
794
- "AI",
795
- "AQ",
796
- "AG",
797
- "AR",
798
- "AM",
799
- "AW",
800
- "AU",
801
- "AT",
802
- "AZ",
803
- "BS",
804
- "BH",
805
- "BD",
806
- "BB",
807
- "BY",
808
- "BE",
809
- "BZ",
810
- "BJ",
811
- "BM",
812
- "BT",
813
- "BO",
814
- "BQ",
815
- "BA",
816
- "BW",
817
- "BV",
818
- "BR",
819
- "IO",
820
- "BN",
821
- "BG",
822
- "BF",
823
- "BI",
824
- "KH",
825
- "CM",
826
- "CA",
827
- "CV",
828
- "KY",
829
- "CF",
830
- "TD",
831
- "CL",
832
- "CN",
833
- "CX",
834
- "CC",
835
- "CO",
836
- "KM",
837
- "CG",
838
- "CD",
839
- "CK",
840
- "CR",
841
- "CI",
842
- "HR",
843
- "CU",
844
- "CW",
845
- "CY",
846
- "CZ",
847
- "DK",
848
- "DJ",
849
- "DM",
850
- "DO",
851
- "EC",
852
- "EG",
853
- "SV",
854
- "GQ",
855
- "ER",
856
- "EE",
857
- "ET",
858
- "FK",
859
- "FO",
860
- "FJ",
861
- "FI",
862
- "FR",
863
- "GF",
864
- "PF",
865
- "TF",
866
- "GA",
867
- "GM",
868
- "GE",
869
- "DE",
870
- "GH",
871
- "GI",
872
- "GR",
873
- "GL",
874
- "GD",
875
- "GP",
876
- "GU",
877
- "GT",
878
- "GG",
879
- "GN",
880
- "GW",
881
- "GY",
882
- "HT",
883
- "HM",
884
- "VA",
885
- "HN",
886
- "HK",
887
- "HU",
888
- "IS",
889
- "IN",
890
- "ID",
891
- "IR",
892
- "IQ",
893
- "IE",
894
- "IM",
895
- "IL",
896
- "IT",
897
- "JM",
898
- "JP",
899
- "JE",
900
- "JO",
901
- "KZ",
902
- "KE",
903
- "KI",
904
- "KP",
905
- "KR",
906
- "KW",
907
- "KG",
908
- "LA",
909
- "LV",
910
- "LB",
911
- "LS",
912
- "LR",
913
- "LY",
914
- "LI",
915
- "LT",
916
- "LU",
917
- "MO",
918
- "MK",
919
- "MG",
920
- "MW",
921
- "MY",
922
- "MV",
923
- "ML",
924
- "MT",
925
- "MH",
926
- "MQ",
927
- "MR",
928
- "MU",
929
- "YT",
930
- "MX",
931
- "FM",
932
- "MD",
933
- "MC",
934
- "MN",
935
- "ME",
936
- "MS",
937
- "MA",
938
- "MZ",
939
- "MM",
940
- "NA",
941
- "NR",
942
- "NP",
943
- "NL",
944
- "NC",
945
- "NZ",
946
- "NI",
947
- "NE",
948
- "NG",
949
- "NU",
950
- "NF",
951
- "MP",
952
- "NO",
953
- "OM",
954
- "PK",
955
- "PW",
956
- "PS",
957
- "PA",
958
- "PG",
959
- "PY",
960
- "PE",
961
- "PH",
962
- "PN",
963
- "PL",
964
- "PT",
965
- "PR",
966
- "QA",
967
- "RE",
968
- "RO",
969
- "RU",
970
- "RW",
971
- "BL",
972
- "SH",
973
- "KN",
974
- "LC",
975
- "MF",
976
- "PM",
977
- "VC",
978
- "WS",
979
- "SM",
980
- "ST",
981
- "SA",
982
- "SN",
983
- "RS",
984
- "SC",
985
- "SL",
986
- "SG",
987
- "SX",
988
- "SK",
989
- "SI",
990
- "SB",
991
- "SO",
992
- "ZA",
993
- "GS",
994
- "SS",
995
- "ES",
996
- "LK",
997
- "SD",
998
- "SR",
999
- "SJ",
1000
- "SZ",
1001
- "SE",
1002
- "CH",
1003
- "SY",
1004
- "TW",
1005
- "TJ",
1006
- "TZ",
1007
- "TH",
1008
- "TL",
1009
- "TG",
1010
- "TK",
1011
- "TO",
1012
- "TT",
1013
- "TN",
1014
- "TR",
1015
- "TM",
1016
- "TC",
1017
- "TV",
1018
- "UG",
1019
- "UA",
1020
- "AE",
1021
- "GB",
1022
- "US",
1023
- "UM",
1024
- "UY",
1025
- "UZ",
1026
- "VU",
1027
- "VE",
1028
- "VN",
1029
- "VG",
1030
- "VI",
1031
- "WF",
1032
- "EH",
1033
- "YE",
1034
- "ZM",
1035
- "ZW"
1036
- ]
1037
- },
1038
- "CountryCodes":{
1039
- "type":"list",
1040
- "member":{"shape":"CountryCode"},
1041
- "min":1
1042
- },
1043
- "CreateIPSetRequest":{
1044
- "type":"structure",
1045
- "required":[
1046
- "Name",
1047
- "Scope",
1048
- "IPAddressVersion",
1049
- "Addresses"
1050
- ],
1051
- "members":{
1052
- "Name":{"shape":"EntityName"},
1053
- "Scope":{"shape":"Scope"},
1054
- "Description":{"shape":"EntityDescription"},
1055
- "IPAddressVersion":{"shape":"IPAddressVersion"},
1056
- "Addresses":{"shape":"IPAddresses"},
1057
- "Tags":{"shape":"TagList"}
1058
- }
1059
- },
1060
- "CreateIPSetResponse":{
1061
- "type":"structure",
1062
- "members":{
1063
- "Summary":{"shape":"IPSetSummary"}
1064
- }
1065
- },
1066
- "CreateRegexPatternSetRequest":{
1067
- "type":"structure",
1068
- "required":[
1069
- "Name",
1070
- "Scope",
1071
- "RegularExpressionList"
1072
- ],
1073
- "members":{
1074
- "Name":{"shape":"EntityName"},
1075
- "Scope":{"shape":"Scope"},
1076
- "Description":{"shape":"EntityDescription"},
1077
- "RegularExpressionList":{"shape":"RegularExpressionList"},
1078
- "Tags":{"shape":"TagList"}
1079
- }
1080
- },
1081
- "CreateRegexPatternSetResponse":{
1082
- "type":"structure",
1083
- "members":{
1084
- "Summary":{"shape":"RegexPatternSetSummary"}
1085
- }
1086
- },
1087
- "CreateRuleGroupRequest":{
1088
- "type":"structure",
1089
- "required":[
1090
- "Name",
1091
- "Scope",
1092
- "Capacity",
1093
- "VisibilityConfig"
1094
- ],
1095
- "members":{
1096
- "Name":{"shape":"EntityName"},
1097
- "Scope":{"shape":"Scope"},
1098
- "Capacity":{"shape":"CapacityUnit"},
1099
- "Description":{"shape":"EntityDescription"},
1100
- "Rules":{"shape":"Rules"},
1101
- "VisibilityConfig":{"shape":"VisibilityConfig"},
1102
- "Tags":{"shape":"TagList"}
1103
- }
1104
- },
1105
- "CreateRuleGroupResponse":{
1106
- "type":"structure",
1107
- "members":{
1108
- "Summary":{"shape":"RuleGroupSummary"}
1109
- }
1110
- },
1111
- "CreateWebACLRequest":{
1112
- "type":"structure",
1113
- "required":[
1114
- "Name",
1115
- "Scope",
1116
- "DefaultAction",
1117
- "VisibilityConfig"
1118
- ],
1119
- "members":{
1120
- "Name":{"shape":"EntityName"},
1121
- "Scope":{"shape":"Scope"},
1122
- "DefaultAction":{"shape":"DefaultAction"},
1123
- "Description":{"shape":"EntityDescription"},
1124
- "Rules":{"shape":"Rules"},
1125
- "VisibilityConfig":{"shape":"VisibilityConfig"},
1126
- "Tags":{"shape":"TagList"}
1127
- }
1128
- },
1129
- "CreateWebACLResponse":{
1130
- "type":"structure",
1131
- "members":{
1132
- "Summary":{"shape":"WebACLSummary"}
1133
- }
1134
- },
1135
- "DefaultAction":{
1136
- "type":"structure",
1137
- "members":{
1138
- "Block":{"shape":"BlockAction"},
1139
- "Allow":{"shape":"AllowAction"}
1140
- }
1141
- },
1142
- "DeleteFirewallManagerRuleGroupsRequest":{
1143
- "type":"structure",
1144
- "required":[
1145
- "WebACLArn",
1146
- "WebACLLockToken"
1147
- ],
1148
- "members":{
1149
- "WebACLArn":{"shape":"ResourceArn"},
1150
- "WebACLLockToken":{"shape":"LockToken"}
1151
- }
1152
- },
1153
- "DeleteFirewallManagerRuleGroupsResponse":{
1154
- "type":"structure",
1155
- "members":{
1156
- "NextWebACLLockToken":{"shape":"LockToken"}
1157
- }
1158
- },
1159
- "DeleteIPSetRequest":{
1160
- "type":"structure",
1161
- "required":[
1162
- "Name",
1163
- "Scope",
1164
- "Id",
1165
- "LockToken"
1166
- ],
1167
- "members":{
1168
- "Name":{"shape":"EntityName"},
1169
- "Scope":{"shape":"Scope"},
1170
- "Id":{"shape":"EntityId"},
1171
- "LockToken":{"shape":"LockToken"}
1172
- }
1173
- },
1174
- "DeleteIPSetResponse":{
1175
- "type":"structure",
1176
- "members":{
1177
- }
1178
- },
1179
- "DeleteLoggingConfigurationRequest":{
1180
- "type":"structure",
1181
- "required":["ResourceArn"],
1182
- "members":{
1183
- "ResourceArn":{"shape":"ResourceArn"}
1184
- }
1185
- },
1186
- "DeleteLoggingConfigurationResponse":{
1187
- "type":"structure",
1188
- "members":{
1189
- }
1190
- },
1191
- "DeletePermissionPolicyRequest":{
1192
- "type":"structure",
1193
- "required":["ResourceArn"],
1194
- "members":{
1195
- "ResourceArn":{"shape":"ResourceArn"}
1196
- }
1197
- },
1198
- "DeletePermissionPolicyResponse":{
1199
- "type":"structure",
1200
- "members":{
1201
- }
1202
- },
1203
- "DeleteRegexPatternSetRequest":{
1204
- "type":"structure",
1205
- "required":[
1206
- "Name",
1207
- "Scope",
1208
- "Id",
1209
- "LockToken"
1210
- ],
1211
- "members":{
1212
- "Name":{"shape":"EntityName"},
1213
- "Scope":{"shape":"Scope"},
1214
- "Id":{"shape":"EntityId"},
1215
- "LockToken":{"shape":"LockToken"}
1216
- }
1217
- },
1218
- "DeleteRegexPatternSetResponse":{
1219
- "type":"structure",
1220
- "members":{
1221
- }
1222
- },
1223
- "DeleteRuleGroupRequest":{
1224
- "type":"structure",
1225
- "required":[
1226
- "Name",
1227
- "Scope",
1228
- "Id",
1229
- "LockToken"
1230
- ],
1231
- "members":{
1232
- "Name":{"shape":"EntityName"},
1233
- "Scope":{"shape":"Scope"},
1234
- "Id":{"shape":"EntityId"},
1235
- "LockToken":{"shape":"LockToken"}
1236
- }
1237
- },
1238
- "DeleteRuleGroupResponse":{
1239
- "type":"structure",
1240
- "members":{
1241
- }
1242
- },
1243
- "DeleteWebACLRequest":{
1244
- "type":"structure",
1245
- "required":[
1246
- "Name",
1247
- "Scope",
1248
- "Id",
1249
- "LockToken"
1250
- ],
1251
- "members":{
1252
- "Name":{"shape":"EntityName"},
1253
- "Scope":{"shape":"Scope"},
1254
- "Id":{"shape":"EntityId"},
1255
- "LockToken":{"shape":"LockToken"}
1256
- }
1257
- },
1258
- "DeleteWebACLResponse":{
1259
- "type":"structure",
1260
- "members":{
1261
- }
1262
- },
1263
- "DescribeManagedRuleGroupRequest":{
1264
- "type":"structure",
1265
- "required":[
1266
- "VendorName",
1267
- "Name",
1268
- "Scope"
1269
- ],
1270
- "members":{
1271
- "VendorName":{"shape":"VendorName"},
1272
- "Name":{"shape":"EntityName"},
1273
- "Scope":{"shape":"Scope"}
1274
- }
1275
- },
1276
- "DescribeManagedRuleGroupResponse":{
1277
- "type":"structure",
1278
- "members":{
1279
- "Capacity":{"shape":"CapacityUnit"},
1280
- "Rules":{"shape":"RuleSummaries"}
1281
- }
1282
- },
1283
- "DisassociateWebACLRequest":{
1284
- "type":"structure",
1285
- "required":["ResourceArn"],
1286
- "members":{
1287
- "ResourceArn":{"shape":"ResourceArn"}
1288
- }
1289
- },
1290
- "DisassociateWebACLResponse":{
1291
- "type":"structure",
1292
- "members":{
1293
- }
1294
- },
1295
- "EntityDescription":{
1296
- "type":"string",
1297
- "max":256,
1298
- "min":1,
1299
- "pattern":"^[\\w+=:#@/\\-,\\.][\\w+=:#@/\\-,\\.\\s]+[\\w+=:#@/\\-,\\.]$"
1300
- },
1301
- "EntityId":{
1302
- "type":"string",
1303
- "max":36,
1304
- "min":1,
1305
- "pattern":"^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$"
1306
- },
1307
- "EntityName":{
1308
- "type":"string",
1309
- "max":128,
1310
- "min":1,
1311
- "pattern":"^[\\w\\-]+$"
1312
- },
1313
- "ErrorMessage":{"type":"string"},
1314
- "ErrorReason":{"type":"string"},
1315
- "ExcludedRule":{
1316
- "type":"structure",
1317
- "required":["Name"],
1318
- "members":{
1319
- "Name":{"shape":"EntityName"}
1320
- }
1321
- },
1322
- "ExcludedRules":{
1323
- "type":"list",
1324
- "member":{"shape":"ExcludedRule"}
1325
- },
1326
- "FieldToMatch":{
1327
- "type":"structure",
1328
- "members":{
1329
- "SingleHeader":{"shape":"SingleHeader"},
1330
- "SingleQueryArgument":{"shape":"SingleQueryArgument"},
1331
- "AllQueryArguments":{"shape":"AllQueryArguments"},
1332
- "UriPath":{"shape":"UriPath"},
1333
- "QueryString":{"shape":"QueryString"},
1334
- "Body":{"shape":"Body"},
1335
- "Method":{"shape":"Method"}
1336
- }
1337
- },
1338
- "FieldToMatchData":{
1339
- "type":"string",
1340
- "max":64,
1341
- "min":1,
1342
- "pattern":".*\\S.*"
1343
- },
1344
- "FirewallManagerRuleGroup":{
1345
- "type":"structure",
1346
- "required":[
1347
- "Name",
1348
- "Priority",
1349
- "FirewallManagerStatement",
1350
- "OverrideAction",
1351
- "VisibilityConfig"
1352
- ],
1353
- "members":{
1354
- "Name":{"shape":"EntityName"},
1355
- "Priority":{"shape":"RulePriority"},
1356
- "FirewallManagerStatement":{"shape":"FirewallManagerStatement"},
1357
- "OverrideAction":{"shape":"OverrideAction"},
1358
- "VisibilityConfig":{"shape":"VisibilityConfig"}
1359
- }
1360
- },
1361
- "FirewallManagerRuleGroups":{
1362
- "type":"list",
1363
- "member":{"shape":"FirewallManagerRuleGroup"}
1364
- },
1365
- "FirewallManagerStatement":{
1366
- "type":"structure",
1367
- "members":{
1368
- "ManagedRuleGroupStatement":{"shape":"ManagedRuleGroupStatement"},
1369
- "RuleGroupReferenceStatement":{"shape":"RuleGroupReferenceStatement"}
1370
- }
1371
- },
1372
- "GeoMatchStatement":{
1373
- "type":"structure",
1374
- "members":{
1375
- "CountryCodes":{"shape":"CountryCodes"}
1376
- }
1377
- },
1378
- "GetIPSetRequest":{
1379
- "type":"structure",
1380
- "required":[
1381
- "Name",
1382
- "Scope",
1383
- "Id"
1384
- ],
1385
- "members":{
1386
- "Name":{"shape":"EntityName"},
1387
- "Scope":{"shape":"Scope"},
1388
- "Id":{"shape":"EntityId"}
1389
- }
1390
- },
1391
- "GetIPSetResponse":{
1392
- "type":"structure",
1393
- "members":{
1394
- "IPSet":{"shape":"IPSet"},
1395
- "LockToken":{"shape":"LockToken"}
1396
- }
1397
- },
1398
- "GetLoggingConfigurationRequest":{
1399
- "type":"structure",
1400
- "required":["ResourceArn"],
1401
- "members":{
1402
- "ResourceArn":{"shape":"ResourceArn"}
1403
- }
1404
- },
1405
- "GetLoggingConfigurationResponse":{
1406
- "type":"structure",
1407
- "members":{
1408
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
1409
- }
1410
- },
1411
- "GetPermissionPolicyRequest":{
1412
- "type":"structure",
1413
- "required":["ResourceArn"],
1414
- "members":{
1415
- "ResourceArn":{"shape":"ResourceArn"}
1416
- }
1417
- },
1418
- "GetPermissionPolicyResponse":{
1419
- "type":"structure",
1420
- "members":{
1421
- "Policy":{"shape":"PolicyString"}
1422
- }
1423
- },
1424
- "GetRateBasedStatementManagedKeysRequest":{
1425
- "type":"structure",
1426
- "required":[
1427
- "Scope",
1428
- "WebACLName",
1429
- "WebACLId",
1430
- "RuleName"
1431
- ],
1432
- "members":{
1433
- "Scope":{"shape":"Scope"},
1434
- "WebACLName":{"shape":"EntityName"},
1435
- "WebACLId":{"shape":"EntityId"},
1436
- "RuleName":{"shape":"EntityName"}
1437
- }
1438
- },
1439
- "GetRateBasedStatementManagedKeysResponse":{
1440
- "type":"structure",
1441
- "members":{
1442
- "ManagedKeysIPV4":{"shape":"RateBasedStatementManagedKeysIPSet"},
1443
- "ManagedKeysIPV6":{"shape":"RateBasedStatementManagedKeysIPSet"}
1444
- }
1445
- },
1446
- "GetRegexPatternSetRequest":{
1447
- "type":"structure",
1448
- "required":[
1449
- "Name",
1450
- "Scope",
1451
- "Id"
1452
- ],
1453
- "members":{
1454
- "Name":{"shape":"EntityName"},
1455
- "Scope":{"shape":"Scope"},
1456
- "Id":{"shape":"EntityId"}
1457
- }
1458
- },
1459
- "GetRegexPatternSetResponse":{
1460
- "type":"structure",
1461
- "members":{
1462
- "RegexPatternSet":{"shape":"RegexPatternSet"},
1463
- "LockToken":{"shape":"LockToken"}
1464
- }
1465
- },
1466
- "GetRuleGroupRequest":{
1467
- "type":"structure",
1468
- "required":[
1469
- "Name",
1470
- "Scope",
1471
- "Id"
1472
- ],
1473
- "members":{
1474
- "Name":{"shape":"EntityName"},
1475
- "Scope":{"shape":"Scope"},
1476
- "Id":{"shape":"EntityId"}
1477
- }
1478
- },
1479
- "GetRuleGroupResponse":{
1480
- "type":"structure",
1481
- "members":{
1482
- "RuleGroup":{"shape":"RuleGroup"},
1483
- "LockToken":{"shape":"LockToken"}
1484
- }
1485
- },
1486
- "GetSampledRequestsRequest":{
1487
- "type":"structure",
1488
- "required":[
1489
- "WebAclArn",
1490
- "RuleMetricName",
1491
- "Scope",
1492
- "TimeWindow",
1493
- "MaxItems"
1494
- ],
1495
- "members":{
1496
- "WebAclArn":{"shape":"ResourceArn"},
1497
- "RuleMetricName":{"shape":"MetricName"},
1498
- "Scope":{"shape":"Scope"},
1499
- "TimeWindow":{"shape":"TimeWindow"},
1500
- "MaxItems":{"shape":"ListMaxItems"}
1501
- }
1502
- },
1503
- "GetSampledRequestsResponse":{
1504
- "type":"structure",
1505
- "members":{
1506
- "SampledRequests":{"shape":"SampledHTTPRequests"},
1507
- "PopulationSize":{"shape":"PopulationSize"},
1508
- "TimeWindow":{"shape":"TimeWindow"}
1509
- }
1510
- },
1511
- "GetWebACLForResourceRequest":{
1512
- "type":"structure",
1513
- "required":["ResourceArn"],
1514
- "members":{
1515
- "ResourceArn":{"shape":"ResourceArn"}
1516
- }
1517
- },
1518
- "GetWebACLForResourceResponse":{
1519
- "type":"structure",
1520
- "members":{
1521
- "WebACL":{"shape":"WebACL"}
1522
- }
1523
- },
1524
- "GetWebACLRequest":{
1525
- "type":"structure",
1526
- "required":[
1527
- "Name",
1528
- "Scope",
1529
- "Id"
1530
- ],
1531
- "members":{
1532
- "Name":{"shape":"EntityName"},
1533
- "Scope":{"shape":"Scope"},
1534
- "Id":{"shape":"EntityId"}
1535
- }
1536
- },
1537
- "GetWebACLResponse":{
1538
- "type":"structure",
1539
- "members":{
1540
- "WebACL":{"shape":"WebACL"},
1541
- "LockToken":{"shape":"LockToken"}
1542
- }
1543
- },
1544
- "HTTPHeader":{
1545
- "type":"structure",
1546
- "members":{
1547
- "Name":{"shape":"HeaderName"},
1548
- "Value":{"shape":"HeaderValue"}
1549
- }
1550
- },
1551
- "HTTPHeaders":{
1552
- "type":"list",
1553
- "member":{"shape":"HTTPHeader"}
1554
- },
1555
- "HTTPMethod":{"type":"string"},
1556
- "HTTPRequest":{
1557
- "type":"structure",
1558
- "members":{
1559
- "ClientIP":{"shape":"IPString"},
1560
- "Country":{"shape":"Country"},
1561
- "URI":{"shape":"URIString"},
1562
- "Method":{"shape":"HTTPMethod"},
1563
- "HTTPVersion":{"shape":"HTTPVersion"},
1564
- "Headers":{"shape":"HTTPHeaders"}
1565
- }
1566
- },
1567
- "HTTPVersion":{"type":"string"},
1568
- "HeaderName":{"type":"string"},
1569
- "HeaderValue":{"type":"string"},
1570
- "IPAddress":{
1571
- "type":"string",
1572
- "max":50,
1573
- "min":1,
1574
- "pattern":".*\\S.*"
1575
- },
1576
- "IPAddressVersion":{
1577
- "type":"string",
1578
- "enum":[
1579
- "IPV4",
1580
- "IPV6"
1581
- ]
1582
- },
1583
- "IPAddresses":{
1584
- "type":"list",
1585
- "member":{"shape":"IPAddress"}
1586
- },
1587
- "IPSet":{
1588
- "type":"structure",
1589
- "required":[
1590
- "Name",
1591
- "Id",
1592
- "ARN",
1593
- "IPAddressVersion",
1594
- "Addresses"
1595
- ],
1596
- "members":{
1597
- "Name":{"shape":"EntityName"},
1598
- "Id":{"shape":"EntityId"},
1599
- "ARN":{"shape":"ResourceArn"},
1600
- "Description":{"shape":"EntityDescription"},
1601
- "IPAddressVersion":{"shape":"IPAddressVersion"},
1602
- "Addresses":{"shape":"IPAddresses"}
1603
- }
1604
- },
1605
- "IPSetReferenceStatement":{
1606
- "type":"structure",
1607
- "required":["ARN"],
1608
- "members":{
1609
- "ARN":{"shape":"ResourceArn"}
1610
- }
1611
- },
1612
- "IPSetSummaries":{
1613
- "type":"list",
1614
- "member":{"shape":"IPSetSummary"}
1615
- },
1616
- "IPSetSummary":{
1617
- "type":"structure",
1618
- "members":{
1619
- "Name":{"shape":"EntityName"},
1620
- "Id":{"shape":"EntityId"},
1621
- "Description":{"shape":"EntityDescription"},
1622
- "LockToken":{"shape":"LockToken"},
1623
- "ARN":{"shape":"ResourceArn"}
1624
- }
1625
- },
1626
- "IPString":{"type":"string"},
1627
- "ListAvailableManagedRuleGroupsRequest":{
1628
- "type":"structure",
1629
- "required":["Scope"],
1630
- "members":{
1631
- "Scope":{"shape":"Scope"},
1632
- "NextMarker":{"shape":"NextMarker"},
1633
- "Limit":{"shape":"PaginationLimit"}
1634
- }
1635
- },
1636
- "ListAvailableManagedRuleGroupsResponse":{
1637
- "type":"structure",
1638
- "members":{
1639
- "NextMarker":{"shape":"NextMarker"},
1640
- "ManagedRuleGroups":{"shape":"ManagedRuleGroupSummaries"}
1641
- }
1642
- },
1643
- "ListIPSetsRequest":{
1644
- "type":"structure",
1645
- "required":["Scope"],
1646
- "members":{
1647
- "Scope":{"shape":"Scope"},
1648
- "NextMarker":{"shape":"NextMarker"},
1649
- "Limit":{"shape":"PaginationLimit"}
1650
- }
1651
- },
1652
- "ListIPSetsResponse":{
1653
- "type":"structure",
1654
- "members":{
1655
- "NextMarker":{"shape":"NextMarker"},
1656
- "IPSets":{"shape":"IPSetSummaries"}
1657
- }
1658
- },
1659
- "ListLoggingConfigurationsRequest":{
1660
- "type":"structure",
1661
- "members":{
1662
- "Scope":{"shape":"Scope"},
1663
- "NextMarker":{"shape":"NextMarker"},
1664
- "Limit":{"shape":"PaginationLimit"}
1665
- }
1666
- },
1667
- "ListLoggingConfigurationsResponse":{
1668
- "type":"structure",
1669
- "members":{
1670
- "LoggingConfigurations":{"shape":"LoggingConfigurations"},
1671
- "NextMarker":{"shape":"NextMarker"}
1672
- }
1673
- },
1674
- "ListMaxItems":{
1675
- "type":"long",
1676
- "max":500,
1677
- "min":1
1678
- },
1679
- "ListRegexPatternSetsRequest":{
1680
- "type":"structure",
1681
- "required":["Scope"],
1682
- "members":{
1683
- "Scope":{"shape":"Scope"},
1684
- "NextMarker":{"shape":"NextMarker"},
1685
- "Limit":{"shape":"PaginationLimit"}
1686
- }
1687
- },
1688
- "ListRegexPatternSetsResponse":{
1689
- "type":"structure",
1690
- "members":{
1691
- "NextMarker":{"shape":"NextMarker"},
1692
- "RegexPatternSets":{"shape":"RegexPatternSetSummaries"}
1693
- }
1694
- },
1695
- "ListResourcesForWebACLRequest":{
1696
- "type":"structure",
1697
- "required":["WebACLArn"],
1698
- "members":{
1699
- "WebACLArn":{"shape":"ResourceArn"},
1700
- "ResourceType":{"shape":"ResourceType"}
1701
- }
1702
- },
1703
- "ListResourcesForWebACLResponse":{
1704
- "type":"structure",
1705
- "members":{
1706
- "ResourceArns":{"shape":"ResourceArns"}
1707
- }
1708
- },
1709
- "ListRuleGroupsRequest":{
1710
- "type":"structure",
1711
- "required":["Scope"],
1712
- "members":{
1713
- "Scope":{"shape":"Scope"},
1714
- "NextMarker":{"shape":"NextMarker"},
1715
- "Limit":{"shape":"PaginationLimit"}
1716
- }
1717
- },
1718
- "ListRuleGroupsResponse":{
1719
- "type":"structure",
1720
- "members":{
1721
- "NextMarker":{"shape":"NextMarker"},
1722
- "RuleGroups":{"shape":"RuleGroupSummaries"}
1723
- }
1724
- },
1725
- "ListTagsForResourceRequest":{
1726
- "type":"structure",
1727
- "required":["ResourceARN"],
1728
- "members":{
1729
- "NextMarker":{"shape":"NextMarker"},
1730
- "Limit":{"shape":"PaginationLimit"},
1731
- "ResourceARN":{"shape":"ResourceArn"}
1732
- }
1733
- },
1734
- "ListTagsForResourceResponse":{
1735
- "type":"structure",
1736
- "members":{
1737
- "NextMarker":{"shape":"NextMarker"},
1738
- "TagInfoForResource":{"shape":"TagInfoForResource"}
1739
- }
1740
- },
1741
- "ListWebACLsRequest":{
1742
- "type":"structure",
1743
- "required":["Scope"],
1744
- "members":{
1745
- "Scope":{"shape":"Scope"},
1746
- "NextMarker":{"shape":"NextMarker"},
1747
- "Limit":{"shape":"PaginationLimit"}
1748
- }
1749
- },
1750
- "ListWebACLsResponse":{
1751
- "type":"structure",
1752
- "members":{
1753
- "NextMarker":{"shape":"NextMarker"},
1754
- "WebACLs":{"shape":"WebACLSummaries"}
1755
- }
1756
- },
1757
- "LockToken":{
1758
- "type":"string",
1759
- "max":36,
1760
- "min":1,
1761
- "pattern":"^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$"
1762
- },
1763
- "LogDestinationConfigs":{
1764
- "type":"list",
1765
- "member":{"shape":"ResourceArn"},
1766
- "max":100,
1767
- "min":1
1768
- },
1769
- "LoggingConfiguration":{
1770
- "type":"structure",
1771
- "required":[
1772
- "ResourceArn",
1773
- "LogDestinationConfigs"
1774
- ],
1775
- "members":{
1776
- "ResourceArn":{"shape":"ResourceArn"},
1777
- "LogDestinationConfigs":{"shape":"LogDestinationConfigs"},
1778
- "RedactedFields":{"shape":"RedactedFields"}
1779
- }
1780
- },
1781
- "LoggingConfigurations":{
1782
- "type":"list",
1783
- "member":{"shape":"LoggingConfiguration"}
1784
- },
1785
- "ManagedRuleGroupStatement":{
1786
- "type":"structure",
1787
- "required":[
1788
- "VendorName",
1789
- "Name"
1790
- ],
1791
- "members":{
1792
- "VendorName":{"shape":"VendorName"},
1793
- "Name":{"shape":"EntityName"},
1794
- "ExcludedRules":{"shape":"ExcludedRules"}
1795
- }
1796
- },
1797
- "ManagedRuleGroupSummaries":{
1798
- "type":"list",
1799
- "member":{"shape":"ManagedRuleGroupSummary"}
1800
- },
1801
- "ManagedRuleGroupSummary":{
1802
- "type":"structure",
1803
- "members":{
1804
- "VendorName":{"shape":"VendorName"},
1805
- "Name":{"shape":"EntityName"},
1806
- "Description":{"shape":"EntityDescription"}
1807
- }
1808
- },
1809
- "Method":{
1810
- "type":"structure",
1811
- "members":{
1812
- }
1813
- },
1814
- "MetricName":{
1815
- "type":"string",
1816
- "max":255,
1817
- "min":1,
1818
- "pattern":"^[\\w#:\\.\\-/]+$"
1819
- },
1820
- "NextMarker":{
1821
- "type":"string",
1822
- "max":256,
1823
- "min":1,
1824
- "pattern":".*\\S.*"
1825
- },
1826
- "NoneAction":{
1827
- "type":"structure",
1828
- "members":{
1829
- }
1830
- },
1831
- "NotStatement":{
1832
- "type":"structure",
1833
- "required":["Statement"],
1834
- "members":{
1835
- "Statement":{"shape":"Statement"}
1836
- }
1837
- },
1838
- "OrStatement":{
1839
- "type":"structure",
1840
- "required":["Statements"],
1841
- "members":{
1842
- "Statements":{"shape":"Statements"}
1843
- }
1844
- },
1845
- "OverrideAction":{
1846
- "type":"structure",
1847
- "members":{
1848
- "Count":{"shape":"CountAction"},
1849
- "None":{"shape":"NoneAction"}
1850
- }
1851
- },
1852
- "PaginationLimit":{
1853
- "type":"integer",
1854
- "max":100,
1855
- "min":1
1856
- },
1857
- "ParameterExceptionField":{
1858
- "type":"string",
1859
- "enum":[
1860
- "WEB_ACL",
1861
- "RULE_GROUP",
1862
- "REGEX_PATTERN_SET",
1863
- "IP_SET",
1864
- "MANAGED_RULE_SET",
1865
- "RULE",
1866
- "EXCLUDED_RULE",
1867
- "STATEMENT",
1868
- "BYTE_MATCH_STATEMENT",
1869
- "SQLI_MATCH_STATEMENT",
1870
- "XSS_MATCH_STATEMENT",
1871
- "SIZE_CONSTRAINT_STATEMENT",
1872
- "GEO_MATCH_STATEMENT",
1873
- "RATE_BASED_STATEMENT",
1874
- "RULE_GROUP_REFERENCE_STATEMENT",
1875
- "REGEX_PATTERN_REFERENCE_STATEMENT",
1876
- "IP_SET_REFERENCE_STATEMENT",
1877
- "MANAGED_RULE_SET_STATEMENT",
1878
- "AND_STATEMENT",
1879
- "OR_STATEMENT",
1880
- "NOT_STATEMENT",
1881
- "IP_ADDRESS",
1882
- "IP_ADDRESS_VERSION",
1883
- "FIELD_TO_MATCH",
1884
- "TEXT_TRANSFORMATION",
1885
- "SINGLE_QUERY_ARGUMENT",
1886
- "SINGLE_HEADER",
1887
- "DEFAULT_ACTION",
1888
- "RULE_ACTION",
1889
- "ENTITY_LIMIT",
1890
- "OVERRIDE_ACTION",
1891
- "SCOPE_VALUE",
1892
- "RESOURCE_ARN",
1893
- "RESOURCE_TYPE",
1894
- "TAGS",
1895
- "TAG_KEYS",
1896
- "METRIC_NAME",
1897
- "FIREWALL_MANAGER_STATEMENT"
1898
- ]
1899
- },
1900
- "ParameterExceptionParameter":{
1901
- "type":"string",
1902
- "min":1
1903
- },
1904
- "PolicyString":{
1905
- "type":"string",
1906
- "min":1
1907
- },
1908
- "PopulationSize":{"type":"long"},
1909
- "PositionalConstraint":{
1910
- "type":"string",
1911
- "enum":[
1912
- "EXACTLY",
1913
- "STARTS_WITH",
1914
- "ENDS_WITH",
1915
- "CONTAINS",
1916
- "CONTAINS_WORD"
1917
- ]
1918
- },
1919
- "PutLoggingConfigurationRequest":{
1920
- "type":"structure",
1921
- "required":["LoggingConfiguration"],
1922
- "members":{
1923
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
1924
- }
1925
- },
1926
- "PutLoggingConfigurationResponse":{
1927
- "type":"structure",
1928
- "members":{
1929
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
1930
- }
1931
- },
1932
- "PutPermissionPolicyRequest":{
1933
- "type":"structure",
1934
- "required":[
1935
- "ResourceArn",
1936
- "Policy"
1937
- ],
1938
- "members":{
1939
- "ResourceArn":{"shape":"ResourceArn"},
1940
- "Policy":{"shape":"PolicyString"}
1941
- }
1942
- },
1943
- "PutPermissionPolicyResponse":{
1944
- "type":"structure",
1945
- "members":{
1946
- }
1947
- },
1948
- "QueryString":{
1949
- "type":"structure",
1950
- "members":{
1951
- }
1952
- },
1953
- "RateBasedStatement":{
1954
- "type":"structure",
1955
- "required":[
1956
- "Limit",
1957
- "AggregateKeyType"
1958
- ],
1959
- "members":{
1960
- "Limit":{"shape":"RateLimit"},
1961
- "AggregateKeyType":{"shape":"RateBasedStatementAggregateKeyType"},
1962
- "ScopeDownStatement":{"shape":"Statement"}
1963
- }
1964
- },
1965
- "RateBasedStatementAggregateKeyType":{
1966
- "type":"string",
1967
- "enum":["IP"]
1968
- },
1969
- "RateBasedStatementManagedKeysIPSet":{
1970
- "type":"structure",
1971
- "members":{
1972
- "IPAddressVersion":{"shape":"IPAddressVersion"},
1973
- "Addresses":{"shape":"IPAddresses"}
1974
- }
1975
- },
1976
- "RateLimit":{
1977
- "type":"long",
1978
- "max":2000000000,
1979
- "min":100
1980
- },
1981
- "RedactedFields":{
1982
- "type":"list",
1983
- "member":{"shape":"FieldToMatch"},
1984
- "max":100
1985
- },
1986
- "Regex":{
1987
- "type":"structure",
1988
- "members":{
1989
- "RegexString":{"shape":"RegexPatternString"}
1990
- }
1991
- },
1992
- "RegexPatternSet":{
1993
- "type":"structure",
1994
- "members":{
1995
- "Name":{"shape":"EntityName"},
1996
- "Id":{"shape":"EntityId"},
1997
- "ARN":{"shape":"ResourceArn"},
1998
- "Description":{"shape":"EntityDescription"},
1999
- "RegularExpressionList":{"shape":"RegularExpressionList"}
2000
- }
2001
- },
2002
- "RegexPatternSetReferenceStatement":{
2003
- "type":"structure",
2004
- "required":[
2005
- "ARN",
2006
- "FieldToMatch",
2007
- "TextTransformations"
2008
- ],
2009
- "members":{
2010
- "ARN":{"shape":"ResourceArn"},
2011
- "FieldToMatch":{"shape":"FieldToMatch"},
2012
- "TextTransformations":{"shape":"TextTransformations"}
2013
- }
2014
- },
2015
- "RegexPatternSetSummaries":{
2016
- "type":"list",
2017
- "member":{"shape":"RegexPatternSetSummary"}
2018
- },
2019
- "RegexPatternSetSummary":{
2020
- "type":"structure",
2021
- "members":{
2022
- "Name":{"shape":"EntityName"},
2023
- "Id":{"shape":"EntityId"},
2024
- "Description":{"shape":"EntityDescription"},
2025
- "LockToken":{"shape":"LockToken"},
2026
- "ARN":{"shape":"ResourceArn"}
2027
- }
2028
- },
2029
- "RegexPatternString":{
2030
- "type":"string",
2031
- "max":512,
2032
- "min":1,
2033
- "pattern":".*"
2034
- },
2035
- "RegularExpressionList":{
2036
- "type":"list",
2037
- "member":{"shape":"Regex"}
2038
- },
2039
- "ResourceArn":{
2040
- "type":"string",
2041
- "max":2048,
2042
- "min":20,
2043
- "pattern":".*\\S.*"
2044
- },
2045
- "ResourceArns":{
2046
- "type":"list",
2047
- "member":{"shape":"ResourceArn"}
2048
- },
2049
- "ResourceType":{
2050
- "type":"string",
2051
- "enum":[
2052
- "APPLICATION_LOAD_BALANCER",
2053
- "API_GATEWAY"
2054
- ]
2055
- },
2056
- "Rule":{
2057
- "type":"structure",
2058
- "required":[
2059
- "Name",
2060
- "Priority",
2061
- "Statement",
2062
- "VisibilityConfig"
2063
- ],
2064
- "members":{
2065
- "Name":{"shape":"EntityName"},
2066
- "Priority":{"shape":"RulePriority"},
2067
- "Statement":{"shape":"Statement"},
2068
- "Action":{"shape":"RuleAction"},
2069
- "OverrideAction":{"shape":"OverrideAction"},
2070
- "VisibilityConfig":{"shape":"VisibilityConfig"}
2071
- }
2072
- },
2073
- "RuleAction":{
2074
- "type":"structure",
2075
- "members":{
2076
- "Block":{"shape":"BlockAction"},
2077
- "Allow":{"shape":"AllowAction"},
2078
- "Count":{"shape":"CountAction"}
2079
- }
2080
- },
2081
- "RuleGroup":{
2082
- "type":"structure",
2083
- "required":[
2084
- "Name",
2085
- "Id",
2086
- "Capacity",
2087
- "ARN",
2088
- "VisibilityConfig"
2089
- ],
2090
- "members":{
2091
- "Name":{"shape":"EntityName"},
2092
- "Id":{"shape":"EntityId"},
2093
- "Capacity":{"shape":"CapacityUnit"},
2094
- "ARN":{"shape":"ResourceArn"},
2095
- "Description":{"shape":"EntityDescription"},
2096
- "Rules":{"shape":"Rules"},
2097
- "VisibilityConfig":{"shape":"VisibilityConfig"}
2098
- }
2099
- },
2100
- "RuleGroupReferenceStatement":{
2101
- "type":"structure",
2102
- "required":["ARN"],
2103
- "members":{
2104
- "ARN":{"shape":"ResourceArn"},
2105
- "ExcludedRules":{"shape":"ExcludedRules"}
2106
- }
2107
- },
2108
- "RuleGroupSummaries":{
2109
- "type":"list",
2110
- "member":{"shape":"RuleGroupSummary"}
2111
- },
2112
- "RuleGroupSummary":{
2113
- "type":"structure",
2114
- "members":{
2115
- "Name":{"shape":"EntityName"},
2116
- "Id":{"shape":"EntityId"},
2117
- "Description":{"shape":"EntityDescription"},
2118
- "LockToken":{"shape":"LockToken"},
2119
- "ARN":{"shape":"ResourceArn"}
2120
- }
2121
- },
2122
- "RulePriority":{
2123
- "type":"integer",
2124
- "min":0
2125
- },
2126
- "RuleSummaries":{
2127
- "type":"list",
2128
- "member":{"shape":"RuleSummary"}
2129
- },
2130
- "RuleSummary":{
2131
- "type":"structure",
2132
- "members":{
2133
- "Name":{"shape":"EntityName"},
2134
- "Action":{"shape":"RuleAction"}
2135
- }
2136
- },
2137
- "Rules":{
2138
- "type":"list",
2139
- "member":{"shape":"Rule"}
2140
- },
2141
- "SampleWeight":{
2142
- "type":"long",
2143
- "min":0
2144
- },
2145
- "SampledHTTPRequest":{
2146
- "type":"structure",
2147
- "required":[
2148
- "Request",
2149
- "Weight"
2150
- ],
2151
- "members":{
2152
- "Request":{"shape":"HTTPRequest"},
2153
- "Weight":{"shape":"SampleWeight"},
2154
- "Timestamp":{"shape":"Timestamp"},
2155
- "Action":{"shape":"Action"},
2156
- "RuleNameWithinRuleGroup":{"shape":"EntityName"}
2157
- }
2158
- },
2159
- "SampledHTTPRequests":{
2160
- "type":"list",
2161
- "member":{"shape":"SampledHTTPRequest"}
2162
- },
2163
- "Scope":{
2164
- "type":"string",
2165
- "enum":[
2166
- "CLOUDFRONT",
2167
- "REGIONAL"
2168
- ]
2169
- },
2170
- "SearchString":{"type":"blob"},
2171
- "SingleHeader":{
2172
- "type":"structure",
2173
- "required":["Name"],
2174
- "members":{
2175
- "Name":{"shape":"FieldToMatchData"}
2176
- }
2177
- },
2178
- "SingleQueryArgument":{
2179
- "type":"structure",
2180
- "required":["Name"],
2181
- "members":{
2182
- "Name":{"shape":"FieldToMatchData"}
2183
- }
2184
- },
2185
- "Size":{
2186
- "type":"long",
2187
- "max":21474836480,
2188
- "min":0
2189
- },
2190
- "SizeConstraintStatement":{
2191
- "type":"structure",
2192
- "required":[
2193
- "FieldToMatch",
2194
- "ComparisonOperator",
2195
- "Size",
2196
- "TextTransformations"
2197
- ],
2198
- "members":{
2199
- "FieldToMatch":{"shape":"FieldToMatch"},
2200
- "ComparisonOperator":{"shape":"ComparisonOperator"},
2201
- "Size":{"shape":"Size"},
2202
- "TextTransformations":{"shape":"TextTransformations"}
2203
- }
2204
- },
2205
- "SqliMatchStatement":{
2206
- "type":"structure",
2207
- "required":[
2208
- "FieldToMatch",
2209
- "TextTransformations"
2210
- ],
2211
- "members":{
2212
- "FieldToMatch":{"shape":"FieldToMatch"},
2213
- "TextTransformations":{"shape":"TextTransformations"}
2214
- }
2215
- },
2216
- "Statement":{
2217
- "type":"structure",
2218
- "members":{
2219
- "ByteMatchStatement":{"shape":"ByteMatchStatement"},
2220
- "SqliMatchStatement":{"shape":"SqliMatchStatement"},
2221
- "XssMatchStatement":{"shape":"XssMatchStatement"},
2222
- "SizeConstraintStatement":{"shape":"SizeConstraintStatement"},
2223
- "GeoMatchStatement":{"shape":"GeoMatchStatement"},
2224
- "RuleGroupReferenceStatement":{"shape":"RuleGroupReferenceStatement"},
2225
- "IPSetReferenceStatement":{"shape":"IPSetReferenceStatement"},
2226
- "RegexPatternSetReferenceStatement":{"shape":"RegexPatternSetReferenceStatement"},
2227
- "RateBasedStatement":{"shape":"RateBasedStatement"},
2228
- "AndStatement":{"shape":"AndStatement"},
2229
- "OrStatement":{"shape":"OrStatement"},
2230
- "NotStatement":{"shape":"NotStatement"},
2231
- "ManagedRuleGroupStatement":{"shape":"ManagedRuleGroupStatement"}
2232
- }
2233
- },
2234
- "Statements":{
2235
- "type":"list",
2236
- "member":{"shape":"Statement"}
2237
- },
2238
- "Tag":{
2239
- "type":"structure",
2240
- "required":[
2241
- "Key",
2242
- "Value"
2243
- ],
2244
- "members":{
2245
- "Key":{"shape":"TagKey"},
2246
- "Value":{"shape":"TagValue"}
2247
- }
2248
- },
2249
- "TagInfoForResource":{
2250
- "type":"structure",
2251
- "members":{
2252
- "ResourceARN":{"shape":"ResourceArn"},
2253
- "TagList":{"shape":"TagList"}
2254
- }
2255
- },
2256
- "TagKey":{
2257
- "type":"string",
2258
- "max":128,
2259
- "min":1,
2260
- "pattern":".*\\S.*"
2261
- },
2262
- "TagKeyList":{
2263
- "type":"list",
2264
- "member":{"shape":"TagKey"},
2265
- "min":1
2266
- },
2267
- "TagList":{
2268
- "type":"list",
2269
- "member":{"shape":"Tag"},
2270
- "min":1
2271
- },
2272
- "TagResourceRequest":{
2273
- "type":"structure",
2274
- "required":[
2275
- "ResourceARN",
2276
- "Tags"
2277
- ],
2278
- "members":{
2279
- "ResourceARN":{"shape":"ResourceArn"},
2280
- "Tags":{"shape":"TagList"}
2281
- }
2282
- },
2283
- "TagResourceResponse":{
2284
- "type":"structure",
2285
- "members":{
2286
- }
2287
- },
2288
- "TagValue":{
2289
- "type":"string",
2290
- "max":256,
2291
- "min":0,
2292
- "pattern":".*"
2293
- },
2294
- "TextTransformation":{
2295
- "type":"structure",
2296
- "required":[
2297
- "Priority",
2298
- "Type"
2299
- ],
2300
- "members":{
2301
- "Priority":{"shape":"TextTransformationPriority"},
2302
- "Type":{"shape":"TextTransformationType"}
2303
- }
2304
- },
2305
- "TextTransformationPriority":{
2306
- "type":"integer",
2307
- "min":0
2308
- },
2309
- "TextTransformationType":{
2310
- "type":"string",
2311
- "enum":[
2312
- "NONE",
2313
- "COMPRESS_WHITE_SPACE",
2314
- "HTML_ENTITY_DECODE",
2315
- "LOWERCASE",
2316
- "CMD_LINE",
2317
- "URL_DECODE"
2318
- ]
2319
- },
2320
- "TextTransformations":{
2321
- "type":"list",
2322
- "member":{"shape":"TextTransformation"},
2323
- "min":1
2324
- },
2325
- "TimeWindow":{
2326
- "type":"structure",
2327
- "required":[
2328
- "StartTime",
2329
- "EndTime"
2330
- ],
2331
- "members":{
2332
- "StartTime":{"shape":"Timestamp"},
2333
- "EndTime":{"shape":"Timestamp"}
2334
- }
2335
- },
2336
- "Timestamp":{"type":"timestamp"},
2337
- "URIString":{"type":"string"},
2338
- "UntagResourceRequest":{
2339
- "type":"structure",
2340
- "required":[
2341
- "ResourceARN",
2342
- "TagKeys"
2343
- ],
2344
- "members":{
2345
- "ResourceARN":{"shape":"ResourceArn"},
2346
- "TagKeys":{"shape":"TagKeyList"}
2347
- }
2348
- },
2349
- "UntagResourceResponse":{
2350
- "type":"structure",
2351
- "members":{
2352
- }
2353
- },
2354
- "UpdateIPSetRequest":{
2355
- "type":"structure",
2356
- "required":[
2357
- "Name",
2358
- "Scope",
2359
- "Id",
2360
- "Addresses",
2361
- "LockToken"
2362
- ],
2363
- "members":{
2364
- "Name":{"shape":"EntityName"},
2365
- "Scope":{"shape":"Scope"},
2366
- "Id":{"shape":"EntityId"},
2367
- "Description":{"shape":"EntityDescription"},
2368
- "Addresses":{"shape":"IPAddresses"},
2369
- "LockToken":{"shape":"LockToken"}
2370
- }
2371
- },
2372
- "UpdateIPSetResponse":{
2373
- "type":"structure",
2374
- "members":{
2375
- "NextLockToken":{"shape":"LockToken"}
2376
- }
2377
- },
2378
- "UpdateRegexPatternSetRequest":{
2379
- "type":"structure",
2380
- "required":[
2381
- "Name",
2382
- "Scope",
2383
- "Id",
2384
- "RegularExpressionList",
2385
- "LockToken"
2386
- ],
2387
- "members":{
2388
- "Name":{"shape":"EntityName"},
2389
- "Scope":{"shape":"Scope"},
2390
- "Id":{"shape":"EntityId"},
2391
- "Description":{"shape":"EntityDescription"},
2392
- "RegularExpressionList":{"shape":"RegularExpressionList"},
2393
- "LockToken":{"shape":"LockToken"}
2394
- }
2395
- },
2396
- "UpdateRegexPatternSetResponse":{
2397
- "type":"structure",
2398
- "members":{
2399
- "NextLockToken":{"shape":"LockToken"}
2400
- }
2401
- },
2402
- "UpdateRuleGroupRequest":{
2403
- "type":"structure",
2404
- "required":[
2405
- "Name",
2406
- "Scope",
2407
- "Id",
2408
- "VisibilityConfig",
2409
- "LockToken"
2410
- ],
2411
- "members":{
2412
- "Name":{"shape":"EntityName"},
2413
- "Scope":{"shape":"Scope"},
2414
- "Id":{"shape":"EntityId"},
2415
- "Description":{"shape":"EntityDescription"},
2416
- "Rules":{"shape":"Rules"},
2417
- "VisibilityConfig":{"shape":"VisibilityConfig"},
2418
- "LockToken":{"shape":"LockToken"}
2419
- }
2420
- },
2421
- "UpdateRuleGroupResponse":{
2422
- "type":"structure",
2423
- "members":{
2424
- "NextLockToken":{"shape":"LockToken"}
2425
- }
2426
- },
2427
- "UpdateWebACLRequest":{
2428
- "type":"structure",
2429
- "required":[
2430
- "Name",
2431
- "Scope",
2432
- "Id",
2433
- "DefaultAction",
2434
- "VisibilityConfig",
2435
- "LockToken"
2436
- ],
2437
- "members":{
2438
- "Name":{"shape":"EntityName"},
2439
- "Scope":{"shape":"Scope"},
2440
- "Id":{"shape":"EntityId"},
2441
- "DefaultAction":{"shape":"DefaultAction"},
2442
- "Description":{"shape":"EntityDescription"},
2443
- "Rules":{"shape":"Rules"},
2444
- "VisibilityConfig":{"shape":"VisibilityConfig"},
2445
- "LockToken":{"shape":"LockToken"}
2446
- }
2447
- },
2448
- "UpdateWebACLResponse":{
2449
- "type":"structure",
2450
- "members":{
2451
- "NextLockToken":{"shape":"LockToken"}
2452
- }
2453
- },
2454
- "UriPath":{
2455
- "type":"structure",
2456
- "members":{
2457
- }
2458
- },
2459
- "VendorName":{
2460
- "type":"string",
2461
- "max":128,
2462
- "min":1,
2463
- "pattern":".*\\S.*"
2464
- },
2465
- "VisibilityConfig":{
2466
- "type":"structure",
2467
- "required":[
2468
- "SampledRequestsEnabled",
2469
- "CloudWatchMetricsEnabled",
2470
- "MetricName"
2471
- ],
2472
- "members":{
2473
- "SampledRequestsEnabled":{"shape":"Boolean"},
2474
- "CloudWatchMetricsEnabled":{"shape":"Boolean"},
2475
- "MetricName":{"shape":"MetricName"}
2476
- }
2477
- },
2478
- "WAFAssociatedItemException":{
2479
- "type":"structure",
2480
- "members":{
2481
- "Message":{"shape":"ErrorMessage"}
2482
- },
2483
- "exception":true
2484
- },
2485
- "WAFDuplicateItemException":{
2486
- "type":"structure",
2487
- "members":{
2488
- "Message":{"shape":"ErrorMessage"}
2489
- },
2490
- "exception":true
2491
- },
2492
- "WAFInternalErrorException":{
2493
- "type":"structure",
2494
- "members":{
2495
- "Message":{"shape":"ErrorMessage"}
2496
- },
2497
- "exception":true,
2498
- "fault":true
2499
- },
2500
- "WAFInvalidOperationException":{
2501
- "type":"structure",
2502
- "members":{
2503
- "Message":{"shape":"ErrorMessage"}
2504
- },
2505
- "exception":true
2506
- },
2507
- "WAFInvalidParameterException":{
2508
- "type":"structure",
2509
- "members":{
2510
- "message":{"shape":"ErrorMessage"},
2511
- "Field":{"shape":"ParameterExceptionField"},
2512
- "Parameter":{"shape":"ParameterExceptionParameter"},
2513
- "Reason":{"shape":"ErrorReason"}
2514
- },
2515
- "exception":true
2516
- },
2517
- "WAFInvalidPermissionPolicyException":{
2518
- "type":"structure",
2519
- "members":{
2520
- "Message":{"shape":"ErrorMessage"}
2521
- },
2522
- "exception":true
2523
- },
2524
- "WAFInvalidResourceException":{
2525
- "type":"structure",
2526
- "members":{
2527
- "Message":{"shape":"ErrorMessage"}
2528
- },
2529
- "exception":true
2530
- },
2531
- "WAFLimitsExceededException":{
2532
- "type":"structure",
2533
- "members":{
2534
- "Message":{"shape":"ErrorMessage"}
2535
- },
2536
- "exception":true
2537
- },
2538
- "WAFNonexistentItemException":{
2539
- "type":"structure",
2540
- "members":{
2541
- "Message":{"shape":"ErrorMessage"}
2542
- },
2543
- "exception":true
2544
- },
2545
- "WAFOptimisticLockException":{
2546
- "type":"structure",
2547
- "members":{
2548
- "Message":{"shape":"ErrorMessage"}
2549
- },
2550
- "exception":true
2551
- },
2552
- "WAFServiceLinkedRoleErrorException":{
2553
- "type":"structure",
2554
- "members":{
2555
- "message":{"shape":"ErrorMessage"}
2556
- },
2557
- "exception":true
2558
- },
2559
- "WAFSubscriptionNotFoundException":{
2560
- "type":"structure",
2561
- "members":{
2562
- "Message":{"shape":"ErrorMessage"}
2563
- },
2564
- "exception":true
2565
- },
2566
- "WAFTagOperationException":{
2567
- "type":"structure",
2568
- "members":{
2569
- "Message":{"shape":"ErrorMessage"}
2570
- },
2571
- "exception":true
2572
- },
2573
- "WAFTagOperationInternalErrorException":{
2574
- "type":"structure",
2575
- "members":{
2576
- "Message":{"shape":"ErrorMessage"}
2577
- },
2578
- "exception":true,
2579
- "fault":true
2580
- },
2581
- "WAFUnavailableEntityException":{
2582
- "type":"structure",
2583
- "members":{
2584
- "Message":{"shape":"ErrorMessage"}
2585
- },
2586
- "exception":true
2587
- },
2588
- "WebACL":{
2589
- "type":"structure",
2590
- "required":[
2591
- "Name",
2592
- "Id",
2593
- "ARN",
2594
- "DefaultAction",
2595
- "VisibilityConfig"
2596
- ],
2597
- "members":{
2598
- "Name":{"shape":"EntityName"},
2599
- "Id":{"shape":"EntityId"},
2600
- "ARN":{"shape":"ResourceArn"},
2601
- "DefaultAction":{"shape":"DefaultAction"},
2602
- "Description":{"shape":"EntityDescription"},
2603
- "Rules":{"shape":"Rules"},
2604
- "VisibilityConfig":{"shape":"VisibilityConfig"},
2605
- "Capacity":{"shape":"ConsumedCapacity"},
2606
- "PreProcessFirewallManagerRuleGroups":{"shape":"FirewallManagerRuleGroups"},
2607
- "PostProcessFirewallManagerRuleGroups":{"shape":"FirewallManagerRuleGroups"},
2608
- "ManagedByFirewallManager":{"shape":"Boolean"}
2609
- }
2610
- },
2611
- "WebACLSummaries":{
2612
- "type":"list",
2613
- "member":{"shape":"WebACLSummary"}
2614
- },
2615
- "WebACLSummary":{
2616
- "type":"structure",
2617
- "members":{
2618
- "Name":{"shape":"EntityName"},
2619
- "Id":{"shape":"EntityId"},
2620
- "Description":{"shape":"EntityDescription"},
2621
- "LockToken":{"shape":"LockToken"},
2622
- "ARN":{"shape":"ResourceArn"}
2623
- }
2624
- },
2625
- "XssMatchStatement":{
2626
- "type":"structure",
2627
- "required":[
2628
- "FieldToMatch",
2629
- "TextTransformations"
2630
- ],
2631
- "members":{
2632
- "FieldToMatch":{"shape":"FieldToMatch"},
2633
- "TextTransformations":{"shape":"TextTransformations"}
2634
- }
2635
- }
2636
- }
2637
- }