aws-sdk-core 2.11.444 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1296) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -582
  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 +101 -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 +11 -8
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  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 +146 -24
  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 +9 -10
  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 +4 -3
  33. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  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 +60 -26
  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 +280 -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 +43 -50
  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/retry_errors.rb +81 -25
  60. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  61. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  62. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  63. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  64. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  65. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  66. data/lib/aws-sdk-core/query.rb +5 -0
  67. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  68. data/lib/aws-sdk-core/query/handler.rb +20 -16
  69. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  70. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  71. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  72. data/lib/aws-sdk-core/rest.rb +10 -0
  73. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  74. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  75. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  76. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  77. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  78. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  79. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  80. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  81. data/lib/aws-sdk-core/shared_config.rb +187 -15
  82. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  83. data/lib/aws-sdk-core/structure.rb +22 -13
  84. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  86. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  87. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  90. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  91. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  92. data/lib/aws-sdk-core/util.rb +66 -0
  93. data/lib/aws-sdk-core/waiters.rb +3 -0
  94. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  95. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  96. data/lib/aws-sdk-core/xml.rb +9 -0
  97. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  98. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  99. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +2156 -0
  103. data/lib/aws-sdk-sts/client_api.rb +336 -0
  104. data/lib/aws-sdk-sts/customizations.rb +2 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  107. data/lib/aws-sdk-sts/presigner.rb +67 -0
  108. data/lib/aws-sdk-sts/resource.rb +23 -0
  109. data/lib/aws-sdk-sts/types.rb +1504 -0
  110. data/lib/seahorse.rb +60 -60
  111. data/lib/seahorse/client/async_base.rb +50 -0
  112. data/lib/seahorse/client/async_response.rb +62 -0
  113. data/lib/seahorse/client/base.rb +5 -9
  114. data/lib/seahorse/client/configuration.rb +4 -2
  115. data/lib/seahorse/client/h2/connection.rb +246 -0
  116. data/lib/seahorse/client/h2/handler.rb +151 -0
  117. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  118. data/lib/seahorse/client/http/async_response.rb +42 -0
  119. data/lib/seahorse/client/http/response.rb +10 -5
  120. data/lib/seahorse/client/logging/formatter.rb +6 -2
  121. data/lib/seahorse/client/logging/handler.rb +2 -0
  122. data/lib/seahorse/client/net_http/connection_pool.rb +35 -21
  123. data/lib/seahorse/client/net_http/handler.rb +12 -1
  124. data/lib/seahorse/client/net_http/patches.rb +9 -1
  125. data/lib/seahorse/client/networking_error.rb +28 -0
  126. data/lib/seahorse/client/plugin.rb +67 -6
  127. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  128. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  129. data/lib/seahorse/client/plugins/h2.rb +64 -0
  130. data/lib/seahorse/client/plugins/logging.rb +17 -19
  131. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  132. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  133. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  134. data/lib/seahorse/client/request_context.rb +5 -0
  135. data/lib/seahorse/model/api.rb +33 -0
  136. data/lib/seahorse/model/authorizer.rb +21 -0
  137. data/lib/seahorse/model/operation.rb +11 -0
  138. data/lib/seahorse/model/shapes.rb +44 -2
  139. data/lib/seahorse/util.rb +1 -22
  140. metadata +103 -1167
  141. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
  142. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  143. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  144. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1128
  145. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  146. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  147. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  148. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  149. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  150. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  151. data/apis/acm/2015-12-08/api-2.json +0 -872
  152. data/apis/acm/2015-12-08/examples-1.json +0 -5
  153. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  154. data/apis/acm/2015-12-08/smoke.json +0 -18
  155. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  156. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  157. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  158. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  159. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  160. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  161. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  162. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  163. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  164. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  165. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  166. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  167. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  168. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6379
  169. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  170. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  171. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  172. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  173. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
  174. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  175. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  176. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  177. data/apis/application-insights/2018-11-25/api-2.json +0 -1208
  178. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  179. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  180. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  181. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  182. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  183. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  184. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  185. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  186. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  187. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  188. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  189. data/apis/appstream/2016-12-01/smoke.json +0 -11
  190. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  191. data/apis/appsync/2017-07-25/api-2.json +0 -2288
  192. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  193. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  194. data/apis/athena/2017-05-18/api-2.json +0 -989
  195. data/apis/athena/2017-05-18/examples-1.json +0 -5
  196. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  197. data/apis/athena/2017-05-18/smoke.json +0 -11
  198. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  199. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  200. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  201. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  202. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  203. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  204. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  205. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  206. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  207. data/apis/backup/2018-11-15/api-2.json +0 -2345
  208. data/apis/backup/2018-11-15/examples-1.json +0 -5
  209. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  210. data/apis/batch/2016-08-10/api-2.json +0 -1137
  211. data/apis/batch/2016-08-10/examples-1.json +0 -589
  212. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  213. data/apis/batch/2016-08-10/smoke.json +0 -11
  214. data/apis/budgets/2016-10-20/api-2.json +0 -830
  215. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  216. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  217. data/apis/ce/2017-10-25/api-2.json +0 -1633
  218. data/apis/ce/2017-10-25/examples-1.json +0 -5
  219. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  220. data/apis/chime/2018-05-01/api-2.json +0 -4653
  221. data/apis/chime/2018-05-01/examples-1.json +0 -5
  222. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  223. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  224. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  225. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  226. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  227. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  228. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  229. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  230. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  231. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  232. data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
  233. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  234. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  235. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  236. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  237. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  238. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  239. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  243. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  246. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  247. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  250. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  254. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  257. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  258. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  259. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  262. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  263. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  265. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  266. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  267. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  268. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  269. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  270. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  271. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  272. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  273. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  274. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  276. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  279. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  280. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  281. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  282. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  283. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  284. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  285. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  286. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  287. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  288. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  289. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  290. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  291. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  292. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  293. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  295. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  296. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  297. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  298. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  299. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  300. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  301. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  302. data/apis/codebuild/2016-10-06/api-2.json +0 -1910
  303. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  304. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  305. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  306. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  307. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  308. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  309. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  311. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  312. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  313. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  314. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  315. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  316. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  317. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  318. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  319. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  320. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  321. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  322. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  323. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  324. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  325. data/apis/codestar-connections/2019-12-01/api-2.json +0 -194
  326. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  327. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  328. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  329. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  330. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  331. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  332. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  333. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  334. data/apis/codestar/2017-04-19/smoke.json +0 -11
  335. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  336. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  337. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  338. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5449
  339. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  340. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  341. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  342. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  343. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  344. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  345. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  346. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -924
  347. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  348. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  349. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  350. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  351. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  352. data/apis/config/2014-11-12/api-2.json +0 -4340
  353. data/apis/config/2014-11-12/examples-1.json +0 -5
  354. data/apis/config/2014-11-12/paginators-1.json +0 -21
  355. data/apis/config/2014-11-12/smoke.json +0 -19
  356. data/apis/connect/2017-08-08/api-2.json +0 -2139
  357. data/apis/connect/2017-08-08/examples-1.json +0 -5
  358. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  359. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  360. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  361. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  362. data/apis/cur/2017-01-06/api-2.json +0 -277
  363. data/apis/cur/2017-01-06/examples-1.json +0 -102
  364. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  365. data/apis/cur/2017-01-06/smoke.json +0 -11
  366. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  367. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  368. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  369. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  370. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  371. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  372. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  373. data/apis/dax/2017-04-19/api-2.json +0 -1140
  374. data/apis/dax/2017-04-19/examples-1.json +0 -5
  375. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  376. data/apis/detective/2018-10-26/api-2.json +0 -447
  377. data/apis/detective/2018-10-26/examples-1.json +0 -5
  378. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  379. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  380. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  381. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  382. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  383. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  384. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  385. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  386. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  387. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  388. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  389. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  390. data/apis/discovery/2015-11-01/smoke.json +0 -11
  391. data/apis/dlm/2018-01-12/api-2.json +0 -687
  392. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  393. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  394. data/apis/dms/2016-01-01/api-2.json +0 -2296
  395. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  396. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  397. data/apis/dms/2016-01-01/smoke.json +0 -18
  398. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  399. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  400. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  401. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  402. data/apis/docdb/2014-10-31/smoke.json +0 -18
  403. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  404. data/apis/ds/2015-04-16/api-2.json +0 -3019
  405. data/apis/ds/2015-04-16/examples-1.json +0 -5
  406. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  407. data/apis/ds/2015-04-16/smoke.json +0 -20
  408. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  409. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  410. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  411. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  412. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  413. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  414. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  415. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  416. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  417. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  418. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  419. data/apis/ebs/2019-11-02/api-2.json +0 -277
  420. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  421. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  422. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  423. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  424. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  425. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  426. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  427. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  428. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  429. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  430. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  431. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  432. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  433. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  434. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  436. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  437. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  438. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  439. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  440. data/apis/ec2/2016-11-15/api-2.json +0 -29149
  441. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  442. data/apis/ec2/2016-11-15/paginators-1.json +0 -474
  443. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  444. data/apis/ec2/2016-11-15/smoke.json +0 -20
  445. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  446. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  447. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  448. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  449. data/apis/ecr/2015-09-21/smoke.json +0 -18
  450. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  451. data/apis/ecs/2014-11-13/api-2.json +0 -3150
  452. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  453. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  454. data/apis/ecs/2014-11-13/smoke.json +0 -18
  455. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  456. data/apis/eks/2017-11-01/api-2.json +0 -1434
  457. data/apis/eks/2017-11-01/examples-1.json +0 -135
  458. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  459. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  460. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  461. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  462. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  463. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  464. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  465. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  466. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  467. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  468. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  469. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  470. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  471. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  472. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
  473. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  474. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  475. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  476. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  477. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  478. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  479. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  480. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  481. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  482. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  483. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  484. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  486. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  487. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  488. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  489. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  490. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  491. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  492. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  493. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  494. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  495. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  496. data/apis/email/2010-12-01/api-2.json +0 -3182
  497. data/apis/email/2010-12-01/examples-1.json +0 -1021
  498. data/apis/email/2010-12-01/paginators-1.json +0 -18
  499. data/apis/email/2010-12-01/smoke.json +0 -18
  500. data/apis/email/2010-12-01/waiters-2.json +0 -18
  501. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  502. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  503. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  504. data/apis/es/2015-01-01/api-2.json +0 -1632
  505. data/apis/es/2015-01-01/examples-1.json +0 -5
  506. data/apis/es/2015-01-01/paginators-1.json +0 -29
  507. data/apis/es/2015-01-01/smoke.json +0 -18
  508. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  509. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  510. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  511. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  512. data/apis/events/2015-10-07/api-2.json +0 -1462
  513. data/apis/events/2015-10-07/examples-1.json +0 -5
  514. data/apis/events/2015-10-07/paginators-1.json +0 -4
  515. data/apis/events/2015-10-07/smoke.json +0 -18
  516. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  517. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  518. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  519. data/apis/firehose/2015-08-04/smoke.json +0 -18
  520. data/apis/fms/2018-01-01/api-2.json +0 -829
  521. data/apis/fms/2018-01-01/examples-1.json +0 -5
  522. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  523. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  524. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  525. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  526. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  527. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  528. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  529. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  530. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  531. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  532. data/apis/fsx/2018-03-01/api-2.json +0 -1340
  533. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  534. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  535. data/apis/gamelift/2015-10-01/api-2.json +0 -3695
  536. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  537. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  538. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  539. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  540. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  541. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  542. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  543. data/apis/glacier/2012-06-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  545. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  546. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  547. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  548. data/apis/glue/2017-03-31/api-2.json +0 -6305
  549. data/apis/glue/2017-03-31/examples-1.json +0 -5
  550. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  551. data/apis/glue/2017-03-31/smoke.json +0 -11
  552. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  553. data/apis/groundstation/2019-05-23/api-2.json +0 -1409
  554. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  555. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  556. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  557. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  558. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  559. data/apis/health/2016-08-04/api-2.json +0 -836
  560. data/apis/health/2016-08-04/examples-1.json +0 -5
  561. data/apis/health/2016-08-04/paginators-1.json +0 -52
  562. data/apis/health/2016-08-04/smoke.json +0 -11
  563. data/apis/iam/2010-05-08/api-2.json +0 -5797
  564. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  565. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  566. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  567. data/apis/iam/2010-05-08/smoke.json +0 -18
  568. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  569. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2414
  570. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  571. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  572. data/apis/importexport/2010-06-01/api-2.json +0 -667
  573. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  574. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  575. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  576. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  577. data/apis/inspector/2016-02-16/smoke.json +0 -18
  578. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  579. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  580. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  581. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  582. data/apis/iot/2015-05-28/api-2.json +0 -11061
  583. data/apis/iot/2015-05-28/examples-1.json +0 -5
  584. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  585. data/apis/iot/2015-05-28/smoke.json +0 -18
  586. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  587. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  588. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  589. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  590. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  591. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  592. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  593. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  594. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  595. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  596. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  597. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  598. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  599. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  600. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  601. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  602. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  603. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  604. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  605. data/apis/kafka/2018-11-14/api-2.json +0 -2208
  606. data/apis/kafka/2018-11-14/paginators-1.json +0 -40
  607. data/apis/kendra/2019-02-03/api-2.json +0 -1738
  608. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  609. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  610. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  611. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  612. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  613. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  614. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  615. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  616. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  617. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  618. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  619. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  620. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  621. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  622. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  623. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  624. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  625. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  626. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  627. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  628. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  629. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  630. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -954
  631. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  632. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  633. data/apis/kms/2014-11-01/api-2.json +0 -2155
  634. data/apis/kms/2014-11-01/examples-1.json +0 -906
  635. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  636. data/apis/kms/2014-11-01/smoke.json +0 -19
  637. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  638. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  639. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  640. data/apis/lambda/2014-11-11/api-2.json +0 -668
  641. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  642. data/apis/lambda/2015-03-31/api-2.json +0 -2944
  643. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  644. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  645. data/apis/lambda/2015-03-31/smoke.json +0 -18
  646. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  647. data/apis/lex-models/2017-04-19/api-2.json +0 -2395
  648. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  649. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  650. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  651. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  652. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  653. data/apis/lightsail/2016-11-28/api-2.json +0 -5017
  654. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  655. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  656. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  657. data/apis/logs/2014-03-28/api-2.json +0 -1701
  658. data/apis/logs/2014-03-28/examples-1.json +0 -5
  659. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  660. data/apis/logs/2014-03-28/smoke.json +0 -19
  661. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  662. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  663. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  664. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  665. data/apis/macie/2017-12-19/api-2.json +0 -365
  666. data/apis/macie/2017-12-19/examples-1.json +0 -5
  667. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  668. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  669. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  670. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  671. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  672. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  673. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  674. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  675. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  676. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  677. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  678. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  679. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  680. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8695
  681. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  682. data/apis/medialive/2017-10-14/api-2.json +0 -10694
  683. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  684. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  685. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1565
  686. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  689. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  690. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  692. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  693. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  701. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  702. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  703. data/apis/mobile/2017-07-01/api-2.json +0 -551
  704. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  705. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  706. data/apis/monitoring/2010-08-01/api-2.json +0 -1876
  707. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  708. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  709. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  710. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  711. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  712. data/apis/mq/2017-11-27/api-2.json +0 -2577
  713. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  714. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  715. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  716. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  717. data/apis/neptune/2014-10-31/api-2.json +0 -3583
  718. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  719. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  720. data/apis/neptune/2014-10-31/smoke.json +0 -18
  721. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  722. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  723. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  724. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  725. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  726. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  727. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  728. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  729. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  730. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  731. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  732. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  733. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  734. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  735. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  736. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  737. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  738. data/apis/outposts/2019-12-03/api-2.json +0 -367
  739. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  740. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  741. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  742. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  743. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  744. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -147
  745. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  746. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  747. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  748. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  749. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  750. data/apis/pi/2018-02-27/api-2.json +0 -253
  751. data/apis/pi/2018-02-27/examples-1.json +0 -5
  752. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  753. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  754. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  755. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  756. data/apis/pinpoint/2016-12-01/api-2.json +0 -11495
  757. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  758. data/apis/polly/2016-06-10/api-2.json +0 -832
  759. data/apis/polly/2016-06-10/examples-1.json +0 -171
  760. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  761. data/apis/polly/2016-06-10/smoke.json +0 -11
  762. data/apis/pricing/2017-10-15/api-2.json +0 -227
  763. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  764. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  765. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  766. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  767. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  768. data/apis/qldb/2019-01-02/api-2.json +0 -776
  769. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  770. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  771. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  772. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  773. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  774. data/apis/ram/2018-01-04/api-2.json +0 -1272
  775. data/apis/ram/2018-01-04/examples-1.json +0 -5
  776. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  777. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  778. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  779. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  780. data/apis/rds/2013-01-10/api-2.json +0 -2903
  781. data/apis/rds/2013-01-10/examples-1.json +0 -5
  782. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  783. data/apis/rds/2013-01-10/smoke.json +0 -18
  784. data/apis/rds/2013-02-12/api-2.json +0 -3059
  785. data/apis/rds/2013-02-12/examples-1.json +0 -5
  786. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  787. data/apis/rds/2013-02-12/smoke.json +0 -18
  788. data/apis/rds/2013-09-09/api-2.json +0 -3160
  789. data/apis/rds/2013-09-09/examples-1.json +0 -5
  790. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  791. data/apis/rds/2013-09-09/smoke.json +0 -18
  792. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  793. data/apis/rds/2014-09-01/api-2.json +0 -3273
  794. data/apis/rds/2014-09-01/examples-1.json +0 -5
  795. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  796. data/apis/rds/2014-09-01/smoke.json +0 -18
  797. data/apis/rds/2014-10-31/api-2.json +0 -7646
  798. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  799. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  800. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  801. data/apis/rds/2014-10-31/smoke.json +0 -18
  802. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  803. data/apis/rds/2015-11-12/api-2.json +0 -5509
  804. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  805. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  806. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  807. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  808. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  809. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  810. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  811. data/apis/redshift/2012-12-01/smoke.json +0 -18
  812. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  813. data/apis/rekognition/2016-06-27/api-2.json +0 -2659
  814. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  815. data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
  816. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  817. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  818. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  819. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  820. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  821. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  822. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  823. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  824. data/apis/robomaker/2018-06-29/api-2.json +0 -2380
  825. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  826. data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
  827. data/apis/route53/2013-04-01/api-2.json +0 -3780
  828. data/apis/route53/2013-04-01/examples-1.json +0 -762
  829. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  830. data/apis/route53/2013-04-01/smoke.json +0 -18
  831. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  832. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  833. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  834. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  835. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  836. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  837. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  838. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  839. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  840. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  841. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  842. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  843. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  844. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  845. data/apis/s3/2006-03-01/api-2.json +0 -6653
  846. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  847. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  848. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  849. data/apis/s3/2006-03-01/smoke.json +0 -11
  850. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  851. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  852. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  853. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  854. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  855. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  856. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  857. data/apis/sagemaker/2017-07-24/api-2.json +0 -9199
  858. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  859. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  860. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  861. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  862. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  863. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  864. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  865. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  866. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  867. data/apis/sdb/2009-04-15/api-2.json +0 -955
  868. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  869. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  870. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  871. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  872. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  873. data/apis/securityhub/2018-10-26/api-2.json +0 -2757
  874. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  875. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  876. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  877. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  878. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  879. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  880. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  881. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  882. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  883. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  884. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  885. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  886. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  887. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  888. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  889. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  890. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  891. data/apis/shield/2016-06-02/api-2.json +0 -893
  892. data/apis/shield/2016-06-02/examples-1.json +0 -5
  893. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  894. data/apis/shield/2016-06-02/smoke.json +0 -11
  895. data/apis/signer/2017-08-25/api-2.json +0 -817
  896. data/apis/signer/2017-08-25/examples-1.json +0 -5
  897. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  898. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  899. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  900. data/apis/sms/2016-10-24/api-2.json +0 -1366
  901. data/apis/sms/2016-10-24/examples-1.json +0 -5
  902. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  903. data/apis/sms/2016-10-24/smoke.json +0 -18
  904. data/apis/snowball/2016-06-30/api-2.json +0 -955
  905. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  906. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  907. data/apis/snowball/2016-06-30/smoke.json +0 -11
  908. data/apis/sns/2010-03-31/api-2.json +0 -1468
  909. data/apis/sns/2010-03-31/examples-1.json +0 -5
  910. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  911. data/apis/sns/2010-03-31/resources-1.json +0 -327
  912. data/apis/sns/2010-03-31/smoke.json +0 -19
  913. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  914. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  915. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  916. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  917. data/apis/sqs/2012-11-05/smoke.json +0 -18
  918. data/apis/ssm/2014-11-06/api-2.json +0 -9217
  919. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  920. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  921. data/apis/ssm/2014-11-06/smoke.json +0 -18
  922. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  923. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  924. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  925. data/apis/sso/2019-06-10/api-2.json +0 -281
  926. data/apis/sso/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  928. data/apis/states/2016-11-23/api-2.json +0 -1476
  929. data/apis/states/2016-11-23/examples-1.json +0 -5
  930. data/apis/states/2016-11-23/paginators-1.json +0 -28
  931. data/apis/states/2016-11-23/smoke.json +0 -11
  932. data/apis/storagegateway/2013-06-30/api-2.json +0 -3260
  933. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  934. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  935. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  936. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  937. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  938. data/apis/sts/2011-06-15/api-2.json +0 -598
  939. data/apis/sts/2011-06-15/examples-1.json +0 -271
  940. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/smoke.json +0 -19
  942. data/apis/support/2013-04-15/api-2.json +0 -773
  943. data/apis/support/2013-04-15/examples-1.json +0 -5
  944. data/apis/support/2013-04-15/paginators-1.json +0 -25
  945. data/apis/support/2013-04-15/smoke.json +0 -22
  946. data/apis/swf/2012-01-25/api-2.json +0 -2792
  947. data/apis/swf/2012-01-25/examples-1.json +0 -5
  948. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  949. data/apis/textract/2018-06-27/api-2.json +0 -653
  950. data/apis/textract/2018-06-27/examples-1.json +0 -5
  951. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  952. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  953. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  954. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  955. data/apis/transcribe/2017-10-26/api-2.json +0 -740
  956. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  957. data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
  958. data/apis/transfer/2018-11-05/api-2.json +0 -964
  959. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  960. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  961. data/apis/translate/2017-07-01/api-2.json +0 -658
  962. data/apis/translate/2017-07-01/examples-1.json +0 -5
  963. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  964. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  965. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  966. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  967. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  968. data/apis/waf/2015-08-24/api-2.json +0 -3857
  969. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  970. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  971. data/apis/waf/2015-08-24/smoke.json +0 -21
  972. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  973. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  974. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  975. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  976. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  977. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  978. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  979. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  980. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  981. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  982. data/apis/workmail/2017-10-01/api-2.json +0 -1918
  983. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  984. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  985. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  986. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  987. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  988. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  989. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  990. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  991. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  992. data/apis/xray/2016-04-12/api-2.json +0 -1352
  993. data/apis/xray/2016-04-12/examples-1.json +0 -5
  994. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  995. data/bin/aws.rb +0 -180
  996. data/endpoints.json +0 -5960
  997. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  998. data/lib/aws-sdk-core/acm.rb +0 -7
  999. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1000. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1001. data/lib/aws-sdk-core/amplify.rb +0 -6
  1002. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1003. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1004. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1005. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1006. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1007. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1008. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1009. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1010. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1011. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1012. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1013. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1014. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1015. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1016. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1017. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1018. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1019. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1020. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1021. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1022. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1023. data/lib/aws-sdk-core/appstream.rb +0 -7
  1024. data/lib/aws-sdk-core/appsync.rb +0 -6
  1025. data/lib/aws-sdk-core/athena.rb +0 -6
  1026. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1027. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1028. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1029. data/lib/aws-sdk-core/backup.rb +0 -6
  1030. data/lib/aws-sdk-core/batch.rb +0 -6
  1031. data/lib/aws-sdk-core/budgets.rb +0 -6
  1032. data/lib/aws-sdk-core/checksums.rb +0 -51
  1033. data/lib/aws-sdk-core/chime.rb +0 -6
  1034. data/lib/aws-sdk-core/client.rb +0 -62
  1035. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1036. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1037. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1038. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1039. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1040. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1041. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1042. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1043. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1044. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1045. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1047. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1048. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1049. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1050. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1051. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1052. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1053. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1054. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1055. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1056. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1057. data/lib/aws-sdk-core/codestar.rb +0 -6
  1058. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1059. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1060. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1061. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1062. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1063. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1064. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1065. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1066. data/lib/aws-sdk-core/configservice.rb +0 -6
  1067. data/lib/aws-sdk-core/connect.rb +0 -6
  1068. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1069. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1070. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1071. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1072. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1073. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1074. data/lib/aws-sdk-core/datasync.rb +0 -6
  1075. data/lib/aws-sdk-core/dax.rb +0 -6
  1076. data/lib/aws-sdk-core/detective.rb +0 -6
  1077. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1078. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1079. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1080. data/lib/aws-sdk-core/dlm.rb +0 -6
  1081. data/lib/aws-sdk-core/docdb.rb +0 -7
  1082. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1083. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1084. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1085. data/lib/aws-sdk-core/ebs.rb +0 -6
  1086. data/lib/aws-sdk-core/ec2.rb +0 -8
  1087. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1088. data/lib/aws-sdk-core/ecr.rb +0 -7
  1089. data/lib/aws-sdk-core/ecs.rb +0 -7
  1090. data/lib/aws-sdk-core/efs.rb +0 -6
  1091. data/lib/aws-sdk-core/eks.rb +0 -7
  1092. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1093. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1094. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1095. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1096. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1097. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1098. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1099. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1100. data/lib/aws-sdk-core/emr.rb +0 -7
  1101. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1102. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1103. data/lib/aws-sdk-core/firehose.rb +0 -6
  1104. data/lib/aws-sdk-core/fms.rb +0 -6
  1105. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1106. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1107. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1108. data/lib/aws-sdk-core/fsx.rb +0 -6
  1109. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1110. data/lib/aws-sdk-core/glacier.rb +0 -8
  1111. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1112. data/lib/aws-sdk-core/glue.rb +0 -6
  1113. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1114. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1115. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1116. data/lib/aws-sdk-core/health.rb +0 -6
  1117. data/lib/aws-sdk-core/iam.rb +0 -8
  1118. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1119. data/lib/aws-sdk-core/importexport.rb +0 -5
  1120. data/lib/aws-sdk-core/inspector.rb +0 -6
  1121. data/lib/aws-sdk-core/iot.rb +0 -6
  1122. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1123. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1124. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1125. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1126. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1127. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1128. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1129. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1130. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1131. data/lib/aws-sdk-core/kafka.rb +0 -5
  1132. data/lib/aws-sdk-core/kendra.rb +0 -6
  1133. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1134. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1135. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1136. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1137. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1138. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1139. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1140. data/lib/aws-sdk-core/kms.rb +0 -6
  1141. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1142. data/lib/aws-sdk-core/lambda.rb +0 -7
  1143. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1144. data/lib/aws-sdk-core/lex.rb +0 -6
  1145. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1146. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1147. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1148. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1149. data/lib/aws-sdk-core/macie.rb +0 -6
  1150. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1151. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1152. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1153. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1154. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1155. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1156. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1157. data/lib/aws-sdk-core/medialive.rb +0 -6
  1158. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1159. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1160. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1161. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1162. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1163. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1164. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1165. data/lib/aws-sdk-core/mobile.rb +0 -6
  1166. data/lib/aws-sdk-core/mq.rb +0 -5
  1167. data/lib/aws-sdk-core/mturk.rb +0 -6
  1168. data/lib/aws-sdk-core/neptune.rb +0 -7
  1169. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1170. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1171. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1172. data/lib/aws-sdk-core/organizations.rb +0 -6
  1173. data/lib/aws-sdk-core/outposts.rb +0 -6
  1174. data/lib/aws-sdk-core/partitions.rb +0 -174
  1175. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1176. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1177. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1178. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1179. data/lib/aws-sdk-core/personalize.rb +0 -6
  1180. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1181. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1182. data/lib/aws-sdk-core/pi.rb +0 -6
  1183. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1184. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1185. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1186. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1187. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1188. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1189. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1190. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1191. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1192. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1193. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1194. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1195. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1197. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1198. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1199. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1200. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1201. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1202. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1203. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1204. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1205. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1206. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1207. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1208. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1209. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1210. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1211. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1212. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1213. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1214. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1215. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1216. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1217. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1218. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1219. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1220. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1221. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1222. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1223. data/lib/aws-sdk-core/polly.rb +0 -14
  1224. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1225. data/lib/aws-sdk-core/pricing.rb +0 -6
  1226. data/lib/aws-sdk-core/qldb.rb +0 -6
  1227. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1228. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1229. data/lib/aws-sdk-core/ram.rb +0 -6
  1230. data/lib/aws-sdk-core/rds.rb +0 -16
  1231. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1232. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1233. data/lib/aws-sdk-core/redshift.rb +0 -7
  1234. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1235. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1236. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1237. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1238. data/lib/aws-sdk-core/route53.rb +0 -7
  1239. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1240. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1241. data/lib/aws-sdk-core/s3.rb +0 -26
  1242. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1243. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1244. data/lib/aws-sdk-core/s3control.rb +0 -6
  1245. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1246. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1247. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1248. data/lib/aws-sdk-core/schemas.rb +0 -6
  1249. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1250. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1251. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1252. data/lib/aws-sdk-core/service.rb +0 -4
  1253. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1254. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1255. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1256. data/lib/aws-sdk-core/ses.rb +0 -7
  1257. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1258. data/lib/aws-sdk-core/shield.rb +0 -6
  1259. data/lib/aws-sdk-core/signer.rb +0 -7
  1260. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1261. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1262. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1263. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1264. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1265. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1266. data/lib/aws-sdk-core/sms.rb +0 -6
  1267. data/lib/aws-sdk-core/snowball.rb +0 -6
  1268. data/lib/aws-sdk-core/sns.rb +0 -7
  1269. data/lib/aws-sdk-core/sqs.rb +0 -7
  1270. data/lib/aws-sdk-core/ssm.rb +0 -6
  1271. data/lib/aws-sdk-core/sso.rb +0 -6
  1272. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1273. data/lib/aws-sdk-core/states.rb +0 -6
  1274. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1275. data/lib/aws-sdk-core/sts.rb +0 -6
  1276. data/lib/aws-sdk-core/support.rb +0 -6
  1277. data/lib/aws-sdk-core/swf.rb +0 -6
  1278. data/lib/aws-sdk-core/textract.rb +0 -6
  1279. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1280. data/lib/aws-sdk-core/transfer.rb +0 -6
  1281. data/lib/aws-sdk-core/translate.rb +0 -6
  1282. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1283. data/lib/aws-sdk-core/version.rb +0 -3
  1284. data/lib/aws-sdk-core/waf.rb +0 -6
  1285. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1286. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1287. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1288. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1289. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1290. data/lib/aws-sdk-core/worklink.rb +0 -6
  1291. data/lib/aws-sdk-core/workmail.rb +0 -6
  1292. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1293. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1294. data/lib/aws-sdk-core/xray.rb +0 -6
  1295. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1296. data/service-models.json +0 -881
@@ -1,2664 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2017-11-27",
5
- "endpointPrefix":"comprehend",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"Amazon Comprehend",
9
- "serviceId":"Comprehend",
10
- "signatureVersion":"v4",
11
- "signingName":"comprehend",
12
- "targetPrefix":"Comprehend_20171127",
13
- "uid":"comprehend-2017-11-27"
14
- },
15
- "operations":{
16
- "BatchDetectDominantLanguage":{
17
- "name":"BatchDetectDominantLanguage",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"BatchDetectDominantLanguageRequest"},
23
- "output":{"shape":"BatchDetectDominantLanguageResponse"},
24
- "errors":[
25
- {"shape":"InvalidRequestException"},
26
- {"shape":"TextSizeLimitExceededException"},
27
- {"shape":"BatchSizeLimitExceededException"},
28
- {"shape":"InternalServerException"}
29
- ]
30
- },
31
- "BatchDetectEntities":{
32
- "name":"BatchDetectEntities",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"BatchDetectEntitiesRequest"},
38
- "output":{"shape":"BatchDetectEntitiesResponse"},
39
- "errors":[
40
- {"shape":"InvalidRequestException"},
41
- {"shape":"TextSizeLimitExceededException"},
42
- {"shape":"UnsupportedLanguageException"},
43
- {"shape":"BatchSizeLimitExceededException"},
44
- {"shape":"InternalServerException"}
45
- ]
46
- },
47
- "BatchDetectKeyPhrases":{
48
- "name":"BatchDetectKeyPhrases",
49
- "http":{
50
- "method":"POST",
51
- "requestUri":"/"
52
- },
53
- "input":{"shape":"BatchDetectKeyPhrasesRequest"},
54
- "output":{"shape":"BatchDetectKeyPhrasesResponse"},
55
- "errors":[
56
- {"shape":"InvalidRequestException"},
57
- {"shape":"TextSizeLimitExceededException"},
58
- {"shape":"UnsupportedLanguageException"},
59
- {"shape":"BatchSizeLimitExceededException"},
60
- {"shape":"InternalServerException"}
61
- ]
62
- },
63
- "BatchDetectSentiment":{
64
- "name":"BatchDetectSentiment",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"BatchDetectSentimentRequest"},
70
- "output":{"shape":"BatchDetectSentimentResponse"},
71
- "errors":[
72
- {"shape":"InvalidRequestException"},
73
- {"shape":"TextSizeLimitExceededException"},
74
- {"shape":"UnsupportedLanguageException"},
75
- {"shape":"BatchSizeLimitExceededException"},
76
- {"shape":"InternalServerException"}
77
- ]
78
- },
79
- "BatchDetectSyntax":{
80
- "name":"BatchDetectSyntax",
81
- "http":{
82
- "method":"POST",
83
- "requestUri":"/"
84
- },
85
- "input":{"shape":"BatchDetectSyntaxRequest"},
86
- "output":{"shape":"BatchDetectSyntaxResponse"},
87
- "errors":[
88
- {"shape":"InvalidRequestException"},
89
- {"shape":"TextSizeLimitExceededException"},
90
- {"shape":"UnsupportedLanguageException"},
91
- {"shape":"BatchSizeLimitExceededException"},
92
- {"shape":"InternalServerException"}
93
- ]
94
- },
95
- "ClassifyDocument":{
96
- "name":"ClassifyDocument",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"ClassifyDocumentRequest"},
102
- "output":{"shape":"ClassifyDocumentResponse"},
103
- "errors":[
104
- {"shape":"InvalidRequestException"},
105
- {"shape":"ResourceUnavailableException"},
106
- {"shape":"TextSizeLimitExceededException"},
107
- {"shape":"InternalServerException"}
108
- ]
109
- },
110
- "CreateDocumentClassifier":{
111
- "name":"CreateDocumentClassifier",
112
- "http":{
113
- "method":"POST",
114
- "requestUri":"/"
115
- },
116
- "input":{"shape":"CreateDocumentClassifierRequest"},
117
- "output":{"shape":"CreateDocumentClassifierResponse"},
118
- "errors":[
119
- {"shape":"InvalidRequestException"},
120
- {"shape":"ResourceInUseException"},
121
- {"shape":"TooManyTagsException"},
122
- {"shape":"TooManyRequestsException"},
123
- {"shape":"ResourceLimitExceededException"},
124
- {"shape":"UnsupportedLanguageException"},
125
- {"shape":"KmsKeyValidationException"},
126
- {"shape":"InternalServerException"}
127
- ]
128
- },
129
- "CreateEndpoint":{
130
- "name":"CreateEndpoint",
131
- "http":{
132
- "method":"POST",
133
- "requestUri":"/"
134
- },
135
- "input":{"shape":"CreateEndpointRequest"},
136
- "output":{"shape":"CreateEndpointResponse"},
137
- "errors":[
138
- {"shape":"InvalidRequestException"},
139
- {"shape":"ResourceInUseException"},
140
- {"shape":"ResourceLimitExceededException"},
141
- {"shape":"ResourceNotFoundException"},
142
- {"shape":"ResourceUnavailableException"},
143
- {"shape":"TooManyRequestsException"},
144
- {"shape":"TooManyTagsException"},
145
- {"shape":"InternalServerException"}
146
- ]
147
- },
148
- "CreateEntityRecognizer":{
149
- "name":"CreateEntityRecognizer",
150
- "http":{
151
- "method":"POST",
152
- "requestUri":"/"
153
- },
154
- "input":{"shape":"CreateEntityRecognizerRequest"},
155
- "output":{"shape":"CreateEntityRecognizerResponse"},
156
- "errors":[
157
- {"shape":"InvalidRequestException"},
158
- {"shape":"ResourceInUseException"},
159
- {"shape":"TooManyTagsException"},
160
- {"shape":"TooManyRequestsException"},
161
- {"shape":"ResourceLimitExceededException"},
162
- {"shape":"UnsupportedLanguageException"},
163
- {"shape":"KmsKeyValidationException"},
164
- {"shape":"InternalServerException"}
165
- ]
166
- },
167
- "DeleteDocumentClassifier":{
168
- "name":"DeleteDocumentClassifier",
169
- "http":{
170
- "method":"POST",
171
- "requestUri":"/"
172
- },
173
- "input":{"shape":"DeleteDocumentClassifierRequest"},
174
- "output":{"shape":"DeleteDocumentClassifierResponse"},
175
- "errors":[
176
- {"shape":"InvalidRequestException"},
177
- {"shape":"TooManyRequestsException"},
178
- {"shape":"ResourceNotFoundException"},
179
- {"shape":"ResourceUnavailableException"},
180
- {"shape":"ResourceInUseException"},
181
- {"shape":"InternalServerException"}
182
- ]
183
- },
184
- "DeleteEndpoint":{
185
- "name":"DeleteEndpoint",
186
- "http":{
187
- "method":"POST",
188
- "requestUri":"/"
189
- },
190
- "input":{"shape":"DeleteEndpointRequest"},
191
- "output":{"shape":"DeleteEndpointResponse"},
192
- "errors":[
193
- {"shape":"InvalidRequestException"},
194
- {"shape":"ResourceInUseException"},
195
- {"shape":"ResourceNotFoundException"},
196
- {"shape":"TooManyRequestsException"},
197
- {"shape":"InternalServerException"}
198
- ]
199
- },
200
- "DeleteEntityRecognizer":{
201
- "name":"DeleteEntityRecognizer",
202
- "http":{
203
- "method":"POST",
204
- "requestUri":"/"
205
- },
206
- "input":{"shape":"DeleteEntityRecognizerRequest"},
207
- "output":{"shape":"DeleteEntityRecognizerResponse"},
208
- "errors":[
209
- {"shape":"InvalidRequestException"},
210
- {"shape":"TooManyRequestsException"},
211
- {"shape":"ResourceNotFoundException"},
212
- {"shape":"ResourceUnavailableException"},
213
- {"shape":"ResourceInUseException"},
214
- {"shape":"InternalServerException"}
215
- ]
216
- },
217
- "DescribeDocumentClassificationJob":{
218
- "name":"DescribeDocumentClassificationJob",
219
- "http":{
220
- "method":"POST",
221
- "requestUri":"/"
222
- },
223
- "input":{"shape":"DescribeDocumentClassificationJobRequest"},
224
- "output":{"shape":"DescribeDocumentClassificationJobResponse"},
225
- "errors":[
226
- {"shape":"InvalidRequestException"},
227
- {"shape":"TooManyRequestsException"},
228
- {"shape":"JobNotFoundException"},
229
- {"shape":"InternalServerException"}
230
- ]
231
- },
232
- "DescribeDocumentClassifier":{
233
- "name":"DescribeDocumentClassifier",
234
- "http":{
235
- "method":"POST",
236
- "requestUri":"/"
237
- },
238
- "input":{"shape":"DescribeDocumentClassifierRequest"},
239
- "output":{"shape":"DescribeDocumentClassifierResponse"},
240
- "errors":[
241
- {"shape":"InvalidRequestException"},
242
- {"shape":"TooManyRequestsException"},
243
- {"shape":"ResourceNotFoundException"},
244
- {"shape":"InternalServerException"}
245
- ]
246
- },
247
- "DescribeDominantLanguageDetectionJob":{
248
- "name":"DescribeDominantLanguageDetectionJob",
249
- "http":{
250
- "method":"POST",
251
- "requestUri":"/"
252
- },
253
- "input":{"shape":"DescribeDominantLanguageDetectionJobRequest"},
254
- "output":{"shape":"DescribeDominantLanguageDetectionJobResponse"},
255
- "errors":[
256
- {"shape":"InvalidRequestException"},
257
- {"shape":"JobNotFoundException"},
258
- {"shape":"TooManyRequestsException"},
259
- {"shape":"InternalServerException"}
260
- ]
261
- },
262
- "DescribeEndpoint":{
263
- "name":"DescribeEndpoint",
264
- "http":{
265
- "method":"POST",
266
- "requestUri":"/"
267
- },
268
- "input":{"shape":"DescribeEndpointRequest"},
269
- "output":{"shape":"DescribeEndpointResponse"},
270
- "errors":[
271
- {"shape":"InvalidRequestException"},
272
- {"shape":"TooManyRequestsException"},
273
- {"shape":"ResourceNotFoundException"},
274
- {"shape":"InternalServerException"}
275
- ]
276
- },
277
- "DescribeEntitiesDetectionJob":{
278
- "name":"DescribeEntitiesDetectionJob",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"DescribeEntitiesDetectionJobRequest"},
284
- "output":{"shape":"DescribeEntitiesDetectionJobResponse"},
285
- "errors":[
286
- {"shape":"InvalidRequestException"},
287
- {"shape":"JobNotFoundException"},
288
- {"shape":"TooManyRequestsException"},
289
- {"shape":"InternalServerException"}
290
- ]
291
- },
292
- "DescribeEntityRecognizer":{
293
- "name":"DescribeEntityRecognizer",
294
- "http":{
295
- "method":"POST",
296
- "requestUri":"/"
297
- },
298
- "input":{"shape":"DescribeEntityRecognizerRequest"},
299
- "output":{"shape":"DescribeEntityRecognizerResponse"},
300
- "errors":[
301
- {"shape":"InvalidRequestException"},
302
- {"shape":"TooManyRequestsException"},
303
- {"shape":"ResourceNotFoundException"},
304
- {"shape":"InternalServerException"}
305
- ]
306
- },
307
- "DescribeKeyPhrasesDetectionJob":{
308
- "name":"DescribeKeyPhrasesDetectionJob",
309
- "http":{
310
- "method":"POST",
311
- "requestUri":"/"
312
- },
313
- "input":{"shape":"DescribeKeyPhrasesDetectionJobRequest"},
314
- "output":{"shape":"DescribeKeyPhrasesDetectionJobResponse"},
315
- "errors":[
316
- {"shape":"InvalidRequestException"},
317
- {"shape":"JobNotFoundException"},
318
- {"shape":"TooManyRequestsException"},
319
- {"shape":"InternalServerException"}
320
- ]
321
- },
322
- "DescribeSentimentDetectionJob":{
323
- "name":"DescribeSentimentDetectionJob",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DescribeSentimentDetectionJobRequest"},
329
- "output":{"shape":"DescribeSentimentDetectionJobResponse"},
330
- "errors":[
331
- {"shape":"InvalidRequestException"},
332
- {"shape":"JobNotFoundException"},
333
- {"shape":"TooManyRequestsException"},
334
- {"shape":"InternalServerException"}
335
- ]
336
- },
337
- "DescribeTopicsDetectionJob":{
338
- "name":"DescribeTopicsDetectionJob",
339
- "http":{
340
- "method":"POST",
341
- "requestUri":"/"
342
- },
343
- "input":{"shape":"DescribeTopicsDetectionJobRequest"},
344
- "output":{"shape":"DescribeTopicsDetectionJobResponse"},
345
- "errors":[
346
- {"shape":"InvalidRequestException"},
347
- {"shape":"JobNotFoundException"},
348
- {"shape":"TooManyRequestsException"},
349
- {"shape":"InternalServerException"}
350
- ]
351
- },
352
- "DetectDominantLanguage":{
353
- "name":"DetectDominantLanguage",
354
- "http":{
355
- "method":"POST",
356
- "requestUri":"/"
357
- },
358
- "input":{"shape":"DetectDominantLanguageRequest"},
359
- "output":{"shape":"DetectDominantLanguageResponse"},
360
- "errors":[
361
- {"shape":"InvalidRequestException"},
362
- {"shape":"TextSizeLimitExceededException"},
363
- {"shape":"InternalServerException"}
364
- ]
365
- },
366
- "DetectEntities":{
367
- "name":"DetectEntities",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"DetectEntitiesRequest"},
373
- "output":{"shape":"DetectEntitiesResponse"},
374
- "errors":[
375
- {"shape":"InvalidRequestException"},
376
- {"shape":"TextSizeLimitExceededException"},
377
- {"shape":"UnsupportedLanguageException"},
378
- {"shape":"InternalServerException"}
379
- ]
380
- },
381
- "DetectKeyPhrases":{
382
- "name":"DetectKeyPhrases",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"DetectKeyPhrasesRequest"},
388
- "output":{"shape":"DetectKeyPhrasesResponse"},
389
- "errors":[
390
- {"shape":"InvalidRequestException"},
391
- {"shape":"TextSizeLimitExceededException"},
392
- {"shape":"UnsupportedLanguageException"},
393
- {"shape":"InternalServerException"}
394
- ]
395
- },
396
- "DetectSentiment":{
397
- "name":"DetectSentiment",
398
- "http":{
399
- "method":"POST",
400
- "requestUri":"/"
401
- },
402
- "input":{"shape":"DetectSentimentRequest"},
403
- "output":{"shape":"DetectSentimentResponse"},
404
- "errors":[
405
- {"shape":"InvalidRequestException"},
406
- {"shape":"TextSizeLimitExceededException"},
407
- {"shape":"UnsupportedLanguageException"},
408
- {"shape":"InternalServerException"}
409
- ]
410
- },
411
- "DetectSyntax":{
412
- "name":"DetectSyntax",
413
- "http":{
414
- "method":"POST",
415
- "requestUri":"/"
416
- },
417
- "input":{"shape":"DetectSyntaxRequest"},
418
- "output":{"shape":"DetectSyntaxResponse"},
419
- "errors":[
420
- {"shape":"InvalidRequestException"},
421
- {"shape":"TextSizeLimitExceededException"},
422
- {"shape":"UnsupportedLanguageException"},
423
- {"shape":"InternalServerException"}
424
- ]
425
- },
426
- "ListDocumentClassificationJobs":{
427
- "name":"ListDocumentClassificationJobs",
428
- "http":{
429
- "method":"POST",
430
- "requestUri":"/"
431
- },
432
- "input":{"shape":"ListDocumentClassificationJobsRequest"},
433
- "output":{"shape":"ListDocumentClassificationJobsResponse"},
434
- "errors":[
435
- {"shape":"InvalidRequestException"},
436
- {"shape":"TooManyRequestsException"},
437
- {"shape":"InvalidFilterException"},
438
- {"shape":"InternalServerException"}
439
- ]
440
- },
441
- "ListDocumentClassifiers":{
442
- "name":"ListDocumentClassifiers",
443
- "http":{
444
- "method":"POST",
445
- "requestUri":"/"
446
- },
447
- "input":{"shape":"ListDocumentClassifiersRequest"},
448
- "output":{"shape":"ListDocumentClassifiersResponse"},
449
- "errors":[
450
- {"shape":"InvalidRequestException"},
451
- {"shape":"TooManyRequestsException"},
452
- {"shape":"InvalidFilterException"},
453
- {"shape":"InternalServerException"}
454
- ]
455
- },
456
- "ListDominantLanguageDetectionJobs":{
457
- "name":"ListDominantLanguageDetectionJobs",
458
- "http":{
459
- "method":"POST",
460
- "requestUri":"/"
461
- },
462
- "input":{"shape":"ListDominantLanguageDetectionJobsRequest"},
463
- "output":{"shape":"ListDominantLanguageDetectionJobsResponse"},
464
- "errors":[
465
- {"shape":"InvalidRequestException"},
466
- {"shape":"TooManyRequestsException"},
467
- {"shape":"InvalidFilterException"},
468
- {"shape":"InternalServerException"}
469
- ]
470
- },
471
- "ListEndpoints":{
472
- "name":"ListEndpoints",
473
- "http":{
474
- "method":"POST",
475
- "requestUri":"/"
476
- },
477
- "input":{"shape":"ListEndpointsRequest"},
478
- "output":{"shape":"ListEndpointsResponse"},
479
- "errors":[
480
- {"shape":"InvalidRequestException"},
481
- {"shape":"TooManyRequestsException"},
482
- {"shape":"InternalServerException"}
483
- ]
484
- },
485
- "ListEntitiesDetectionJobs":{
486
- "name":"ListEntitiesDetectionJobs",
487
- "http":{
488
- "method":"POST",
489
- "requestUri":"/"
490
- },
491
- "input":{"shape":"ListEntitiesDetectionJobsRequest"},
492
- "output":{"shape":"ListEntitiesDetectionJobsResponse"},
493
- "errors":[
494
- {"shape":"InvalidRequestException"},
495
- {"shape":"TooManyRequestsException"},
496
- {"shape":"InvalidFilterException"},
497
- {"shape":"InternalServerException"}
498
- ]
499
- },
500
- "ListEntityRecognizers":{
501
- "name":"ListEntityRecognizers",
502
- "http":{
503
- "method":"POST",
504
- "requestUri":"/"
505
- },
506
- "input":{"shape":"ListEntityRecognizersRequest"},
507
- "output":{"shape":"ListEntityRecognizersResponse"},
508
- "errors":[
509
- {"shape":"InvalidRequestException"},
510
- {"shape":"TooManyRequestsException"},
511
- {"shape":"InvalidFilterException"},
512
- {"shape":"InternalServerException"}
513
- ]
514
- },
515
- "ListKeyPhrasesDetectionJobs":{
516
- "name":"ListKeyPhrasesDetectionJobs",
517
- "http":{
518
- "method":"POST",
519
- "requestUri":"/"
520
- },
521
- "input":{"shape":"ListKeyPhrasesDetectionJobsRequest"},
522
- "output":{"shape":"ListKeyPhrasesDetectionJobsResponse"},
523
- "errors":[
524
- {"shape":"InvalidRequestException"},
525
- {"shape":"TooManyRequestsException"},
526
- {"shape":"InvalidFilterException"},
527
- {"shape":"InternalServerException"}
528
- ]
529
- },
530
- "ListSentimentDetectionJobs":{
531
- "name":"ListSentimentDetectionJobs",
532
- "http":{
533
- "method":"POST",
534
- "requestUri":"/"
535
- },
536
- "input":{"shape":"ListSentimentDetectionJobsRequest"},
537
- "output":{"shape":"ListSentimentDetectionJobsResponse"},
538
- "errors":[
539
- {"shape":"InvalidRequestException"},
540
- {"shape":"TooManyRequestsException"},
541
- {"shape":"InvalidFilterException"},
542
- {"shape":"InternalServerException"}
543
- ]
544
- },
545
- "ListTagsForResource":{
546
- "name":"ListTagsForResource",
547
- "http":{
548
- "method":"POST",
549
- "requestUri":"/"
550
- },
551
- "input":{"shape":"ListTagsForResourceRequest"},
552
- "output":{"shape":"ListTagsForResourceResponse"},
553
- "errors":[
554
- {"shape":"InvalidRequestException"},
555
- {"shape":"ResourceNotFoundException"},
556
- {"shape":"InternalServerException"}
557
- ]
558
- },
559
- "ListTopicsDetectionJobs":{
560
- "name":"ListTopicsDetectionJobs",
561
- "http":{
562
- "method":"POST",
563
- "requestUri":"/"
564
- },
565
- "input":{"shape":"ListTopicsDetectionJobsRequest"},
566
- "output":{"shape":"ListTopicsDetectionJobsResponse"},
567
- "errors":[
568
- {"shape":"InvalidRequestException"},
569
- {"shape":"TooManyRequestsException"},
570
- {"shape":"InvalidFilterException"},
571
- {"shape":"InternalServerException"}
572
- ]
573
- },
574
- "StartDocumentClassificationJob":{
575
- "name":"StartDocumentClassificationJob",
576
- "http":{
577
- "method":"POST",
578
- "requestUri":"/"
579
- },
580
- "input":{"shape":"StartDocumentClassificationJobRequest"},
581
- "output":{"shape":"StartDocumentClassificationJobResponse"},
582
- "errors":[
583
- {"shape":"InvalidRequestException"},
584
- {"shape":"TooManyRequestsException"},
585
- {"shape":"ResourceNotFoundException"},
586
- {"shape":"ResourceUnavailableException"},
587
- {"shape":"KmsKeyValidationException"},
588
- {"shape":"InternalServerException"}
589
- ]
590
- },
591
- "StartDominantLanguageDetectionJob":{
592
- "name":"StartDominantLanguageDetectionJob",
593
- "http":{
594
- "method":"POST",
595
- "requestUri":"/"
596
- },
597
- "input":{"shape":"StartDominantLanguageDetectionJobRequest"},
598
- "output":{"shape":"StartDominantLanguageDetectionJobResponse"},
599
- "errors":[
600
- {"shape":"InvalidRequestException"},
601
- {"shape":"TooManyRequestsException"},
602
- {"shape":"KmsKeyValidationException"},
603
- {"shape":"InternalServerException"}
604
- ]
605
- },
606
- "StartEntitiesDetectionJob":{
607
- "name":"StartEntitiesDetectionJob",
608
- "http":{
609
- "method":"POST",
610
- "requestUri":"/"
611
- },
612
- "input":{"shape":"StartEntitiesDetectionJobRequest"},
613
- "output":{"shape":"StartEntitiesDetectionJobResponse"},
614
- "errors":[
615
- {"shape":"InvalidRequestException"},
616
- {"shape":"TooManyRequestsException"},
617
- {"shape":"ResourceNotFoundException"},
618
- {"shape":"ResourceUnavailableException"},
619
- {"shape":"KmsKeyValidationException"},
620
- {"shape":"InternalServerException"}
621
- ]
622
- },
623
- "StartKeyPhrasesDetectionJob":{
624
- "name":"StartKeyPhrasesDetectionJob",
625
- "http":{
626
- "method":"POST",
627
- "requestUri":"/"
628
- },
629
- "input":{"shape":"StartKeyPhrasesDetectionJobRequest"},
630
- "output":{"shape":"StartKeyPhrasesDetectionJobResponse"},
631
- "errors":[
632
- {"shape":"InvalidRequestException"},
633
- {"shape":"TooManyRequestsException"},
634
- {"shape":"KmsKeyValidationException"},
635
- {"shape":"InternalServerException"}
636
- ]
637
- },
638
- "StartSentimentDetectionJob":{
639
- "name":"StartSentimentDetectionJob",
640
- "http":{
641
- "method":"POST",
642
- "requestUri":"/"
643
- },
644
- "input":{"shape":"StartSentimentDetectionJobRequest"},
645
- "output":{"shape":"StartSentimentDetectionJobResponse"},
646
- "errors":[
647
- {"shape":"InvalidRequestException"},
648
- {"shape":"TooManyRequestsException"},
649
- {"shape":"KmsKeyValidationException"},
650
- {"shape":"InternalServerException"}
651
- ]
652
- },
653
- "StartTopicsDetectionJob":{
654
- "name":"StartTopicsDetectionJob",
655
- "http":{
656
- "method":"POST",
657
- "requestUri":"/"
658
- },
659
- "input":{"shape":"StartTopicsDetectionJobRequest"},
660
- "output":{"shape":"StartTopicsDetectionJobResponse"},
661
- "errors":[
662
- {"shape":"InvalidRequestException"},
663
- {"shape":"TooManyRequestsException"},
664
- {"shape":"KmsKeyValidationException"},
665
- {"shape":"InternalServerException"}
666
- ]
667
- },
668
- "StopDominantLanguageDetectionJob":{
669
- "name":"StopDominantLanguageDetectionJob",
670
- "http":{
671
- "method":"POST",
672
- "requestUri":"/"
673
- },
674
- "input":{"shape":"StopDominantLanguageDetectionJobRequest"},
675
- "output":{"shape":"StopDominantLanguageDetectionJobResponse"},
676
- "errors":[
677
- {"shape":"InvalidRequestException"},
678
- {"shape":"JobNotFoundException"},
679
- {"shape":"InternalServerException"}
680
- ]
681
- },
682
- "StopEntitiesDetectionJob":{
683
- "name":"StopEntitiesDetectionJob",
684
- "http":{
685
- "method":"POST",
686
- "requestUri":"/"
687
- },
688
- "input":{"shape":"StopEntitiesDetectionJobRequest"},
689
- "output":{"shape":"StopEntitiesDetectionJobResponse"},
690
- "errors":[
691
- {"shape":"InvalidRequestException"},
692
- {"shape":"JobNotFoundException"},
693
- {"shape":"InternalServerException"}
694
- ]
695
- },
696
- "StopKeyPhrasesDetectionJob":{
697
- "name":"StopKeyPhrasesDetectionJob",
698
- "http":{
699
- "method":"POST",
700
- "requestUri":"/"
701
- },
702
- "input":{"shape":"StopKeyPhrasesDetectionJobRequest"},
703
- "output":{"shape":"StopKeyPhrasesDetectionJobResponse"},
704
- "errors":[
705
- {"shape":"InvalidRequestException"},
706
- {"shape":"JobNotFoundException"},
707
- {"shape":"InternalServerException"}
708
- ]
709
- },
710
- "StopSentimentDetectionJob":{
711
- "name":"StopSentimentDetectionJob",
712
- "http":{
713
- "method":"POST",
714
- "requestUri":"/"
715
- },
716
- "input":{"shape":"StopSentimentDetectionJobRequest"},
717
- "output":{"shape":"StopSentimentDetectionJobResponse"},
718
- "errors":[
719
- {"shape":"InvalidRequestException"},
720
- {"shape":"JobNotFoundException"},
721
- {"shape":"InternalServerException"}
722
- ]
723
- },
724
- "StopTrainingDocumentClassifier":{
725
- "name":"StopTrainingDocumentClassifier",
726
- "http":{
727
- "method":"POST",
728
- "requestUri":"/"
729
- },
730
- "input":{"shape":"StopTrainingDocumentClassifierRequest"},
731
- "output":{"shape":"StopTrainingDocumentClassifierResponse"},
732
- "errors":[
733
- {"shape":"InvalidRequestException"},
734
- {"shape":"TooManyRequestsException"},
735
- {"shape":"ResourceNotFoundException"},
736
- {"shape":"InternalServerException"}
737
- ]
738
- },
739
- "StopTrainingEntityRecognizer":{
740
- "name":"StopTrainingEntityRecognizer",
741
- "http":{
742
- "method":"POST",
743
- "requestUri":"/"
744
- },
745
- "input":{"shape":"StopTrainingEntityRecognizerRequest"},
746
- "output":{"shape":"StopTrainingEntityRecognizerResponse"},
747
- "errors":[
748
- {"shape":"InvalidRequestException"},
749
- {"shape":"TooManyRequestsException"},
750
- {"shape":"ResourceNotFoundException"},
751
- {"shape":"InternalServerException"}
752
- ]
753
- },
754
- "TagResource":{
755
- "name":"TagResource",
756
- "http":{
757
- "method":"POST",
758
- "requestUri":"/"
759
- },
760
- "input":{"shape":"TagResourceRequest"},
761
- "output":{"shape":"TagResourceResponse"},
762
- "errors":[
763
- {"shape":"InvalidRequestException"},
764
- {"shape":"ConcurrentModificationException"},
765
- {"shape":"ResourceNotFoundException"},
766
- {"shape":"TooManyTagsException"},
767
- {"shape":"InternalServerException"}
768
- ]
769
- },
770
- "UntagResource":{
771
- "name":"UntagResource",
772
- "http":{
773
- "method":"POST",
774
- "requestUri":"/"
775
- },
776
- "input":{"shape":"UntagResourceRequest"},
777
- "output":{"shape":"UntagResourceResponse"},
778
- "errors":[
779
- {"shape":"TooManyTagKeysException"},
780
- {"shape":"InvalidRequestException"},
781
- {"shape":"ConcurrentModificationException"},
782
- {"shape":"ResourceNotFoundException"},
783
- {"shape":"InternalServerException"}
784
- ]
785
- },
786
- "UpdateEndpoint":{
787
- "name":"UpdateEndpoint",
788
- "http":{
789
- "method":"POST",
790
- "requestUri":"/"
791
- },
792
- "input":{"shape":"UpdateEndpointRequest"},
793
- "output":{"shape":"UpdateEndpointResponse"},
794
- "errors":[
795
- {"shape":"InvalidRequestException"},
796
- {"shape":"TooManyRequestsException"},
797
- {"shape":"ResourceInUseException"},
798
- {"shape":"ResourceLimitExceededException"},
799
- {"shape":"ResourceNotFoundException"},
800
- {"shape":"ResourceUnavailableException"},
801
- {"shape":"InternalServerException"}
802
- ]
803
- }
804
- },
805
- "shapes":{
806
- "AnyLengthString":{"type":"string"},
807
- "BatchDetectDominantLanguageItemResult":{
808
- "type":"structure",
809
- "members":{
810
- "Index":{"shape":"Integer"},
811
- "Languages":{"shape":"ListOfDominantLanguages"}
812
- }
813
- },
814
- "BatchDetectDominantLanguageRequest":{
815
- "type":"structure",
816
- "required":["TextList"],
817
- "members":{
818
- "TextList":{"shape":"StringList"}
819
- }
820
- },
821
- "BatchDetectDominantLanguageResponse":{
822
- "type":"structure",
823
- "required":[
824
- "ResultList",
825
- "ErrorList"
826
- ],
827
- "members":{
828
- "ResultList":{"shape":"ListOfDetectDominantLanguageResult"},
829
- "ErrorList":{"shape":"BatchItemErrorList"}
830
- }
831
- },
832
- "BatchDetectEntitiesItemResult":{
833
- "type":"structure",
834
- "members":{
835
- "Index":{"shape":"Integer"},
836
- "Entities":{"shape":"ListOfEntities"}
837
- }
838
- },
839
- "BatchDetectEntitiesRequest":{
840
- "type":"structure",
841
- "required":[
842
- "TextList",
843
- "LanguageCode"
844
- ],
845
- "members":{
846
- "TextList":{"shape":"StringList"},
847
- "LanguageCode":{"shape":"LanguageCode"}
848
- }
849
- },
850
- "BatchDetectEntitiesResponse":{
851
- "type":"structure",
852
- "required":[
853
- "ResultList",
854
- "ErrorList"
855
- ],
856
- "members":{
857
- "ResultList":{"shape":"ListOfDetectEntitiesResult"},
858
- "ErrorList":{"shape":"BatchItemErrorList"}
859
- }
860
- },
861
- "BatchDetectKeyPhrasesItemResult":{
862
- "type":"structure",
863
- "members":{
864
- "Index":{"shape":"Integer"},
865
- "KeyPhrases":{"shape":"ListOfKeyPhrases"}
866
- }
867
- },
868
- "BatchDetectKeyPhrasesRequest":{
869
- "type":"structure",
870
- "required":[
871
- "TextList",
872
- "LanguageCode"
873
- ],
874
- "members":{
875
- "TextList":{"shape":"StringList"},
876
- "LanguageCode":{"shape":"LanguageCode"}
877
- }
878
- },
879
- "BatchDetectKeyPhrasesResponse":{
880
- "type":"structure",
881
- "required":[
882
- "ResultList",
883
- "ErrorList"
884
- ],
885
- "members":{
886
- "ResultList":{"shape":"ListOfDetectKeyPhrasesResult"},
887
- "ErrorList":{"shape":"BatchItemErrorList"}
888
- }
889
- },
890
- "BatchDetectSentimentItemResult":{
891
- "type":"structure",
892
- "members":{
893
- "Index":{"shape":"Integer"},
894
- "Sentiment":{"shape":"SentimentType"},
895
- "SentimentScore":{"shape":"SentimentScore"}
896
- }
897
- },
898
- "BatchDetectSentimentRequest":{
899
- "type":"structure",
900
- "required":[
901
- "TextList",
902
- "LanguageCode"
903
- ],
904
- "members":{
905
- "TextList":{"shape":"StringList"},
906
- "LanguageCode":{"shape":"LanguageCode"}
907
- }
908
- },
909
- "BatchDetectSentimentResponse":{
910
- "type":"structure",
911
- "required":[
912
- "ResultList",
913
- "ErrorList"
914
- ],
915
- "members":{
916
- "ResultList":{"shape":"ListOfDetectSentimentResult"},
917
- "ErrorList":{"shape":"BatchItemErrorList"}
918
- }
919
- },
920
- "BatchDetectSyntaxItemResult":{
921
- "type":"structure",
922
- "members":{
923
- "Index":{"shape":"Integer"},
924
- "SyntaxTokens":{"shape":"ListOfSyntaxTokens"}
925
- }
926
- },
927
- "BatchDetectSyntaxRequest":{
928
- "type":"structure",
929
- "required":[
930
- "TextList",
931
- "LanguageCode"
932
- ],
933
- "members":{
934
- "TextList":{"shape":"StringList"},
935
- "LanguageCode":{"shape":"SyntaxLanguageCode"}
936
- }
937
- },
938
- "BatchDetectSyntaxResponse":{
939
- "type":"structure",
940
- "required":[
941
- "ResultList",
942
- "ErrorList"
943
- ],
944
- "members":{
945
- "ResultList":{"shape":"ListOfDetectSyntaxResult"},
946
- "ErrorList":{"shape":"BatchItemErrorList"}
947
- }
948
- },
949
- "BatchItemError":{
950
- "type":"structure",
951
- "members":{
952
- "Index":{"shape":"Integer"},
953
- "ErrorCode":{"shape":"String"},
954
- "ErrorMessage":{"shape":"String"}
955
- }
956
- },
957
- "BatchItemErrorList":{
958
- "type":"list",
959
- "member":{"shape":"BatchItemError"}
960
- },
961
- "BatchSizeLimitExceededException":{
962
- "type":"structure",
963
- "members":{
964
- "Message":{"shape":"String"}
965
- },
966
- "exception":true
967
- },
968
- "ClassifierEvaluationMetrics":{
969
- "type":"structure",
970
- "members":{
971
- "Accuracy":{"shape":"Double"},
972
- "Precision":{"shape":"Double"},
973
- "Recall":{"shape":"Double"},
974
- "F1Score":{"shape":"Double"},
975
- "MicroPrecision":{"shape":"Double"},
976
- "MicroRecall":{"shape":"Double"},
977
- "MicroF1Score":{"shape":"Double"},
978
- "HammingLoss":{"shape":"Double"}
979
- }
980
- },
981
- "ClassifierMetadata":{
982
- "type":"structure",
983
- "members":{
984
- "NumberOfLabels":{"shape":"Integer"},
985
- "NumberOfTrainedDocuments":{"shape":"Integer"},
986
- "NumberOfTestDocuments":{"shape":"Integer"},
987
- "EvaluationMetrics":{"shape":"ClassifierEvaluationMetrics"}
988
- }
989
- },
990
- "ClassifyDocumentRequest":{
991
- "type":"structure",
992
- "required":[
993
- "Text",
994
- "EndpointArn"
995
- ],
996
- "members":{
997
- "Text":{"shape":"String"},
998
- "EndpointArn":{"shape":"DocumentClassifierEndpointArn"}
999
- }
1000
- },
1001
- "ClassifyDocumentResponse":{
1002
- "type":"structure",
1003
- "members":{
1004
- "Classes":{"shape":"ListOfClasses"},
1005
- "Labels":{"shape":"ListOfLabels"}
1006
- }
1007
- },
1008
- "ClientRequestTokenString":{
1009
- "type":"string",
1010
- "max":64,
1011
- "min":1,
1012
- "pattern":"^[a-zA-Z0-9-]+$"
1013
- },
1014
- "ComprehendArn":{
1015
- "type":"string",
1016
- "max":256,
1017
- "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-]{1,64}/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1018
- },
1019
- "ComprehendArnName":{
1020
- "type":"string",
1021
- "max":63,
1022
- "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$"
1023
- },
1024
- "ComprehendEndpointArn":{
1025
- "type":"string",
1026
- "max":256,
1027
- "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:document-classifier-endpoint/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1028
- },
1029
- "ComprehendEndpointName":{
1030
- "type":"string",
1031
- "max":40,
1032
- "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$"
1033
- },
1034
- "ComprehendModelArn":{
1035
- "type":"string",
1036
- "max":256,
1037
- "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:document-classifier/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1038
- },
1039
- "ConcurrentModificationException":{
1040
- "type":"structure",
1041
- "members":{
1042
- "Message":{"shape":"String"}
1043
- },
1044
- "exception":true
1045
- },
1046
- "CreateDocumentClassifierRequest":{
1047
- "type":"structure",
1048
- "required":[
1049
- "DocumentClassifierName",
1050
- "DataAccessRoleArn",
1051
- "InputDataConfig",
1052
- "LanguageCode"
1053
- ],
1054
- "members":{
1055
- "DocumentClassifierName":{"shape":"ComprehendArnName"},
1056
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1057
- "Tags":{"shape":"TagList"},
1058
- "InputDataConfig":{"shape":"DocumentClassifierInputDataConfig"},
1059
- "OutputDataConfig":{"shape":"DocumentClassifierOutputDataConfig"},
1060
- "ClientRequestToken":{
1061
- "shape":"ClientRequestTokenString",
1062
- "idempotencyToken":true
1063
- },
1064
- "LanguageCode":{"shape":"LanguageCode"},
1065
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1066
- "VpcConfig":{"shape":"VpcConfig"},
1067
- "Mode":{"shape":"DocumentClassifierMode"}
1068
- }
1069
- },
1070
- "CreateDocumentClassifierResponse":{
1071
- "type":"structure",
1072
- "members":{
1073
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
1074
- }
1075
- },
1076
- "CreateEndpointRequest":{
1077
- "type":"structure",
1078
- "required":[
1079
- "EndpointName",
1080
- "ModelArn",
1081
- "DesiredInferenceUnits"
1082
- ],
1083
- "members":{
1084
- "EndpointName":{"shape":"ComprehendEndpointName"},
1085
- "ModelArn":{"shape":"ComprehendModelArn"},
1086
- "DesiredInferenceUnits":{"shape":"InferenceUnitsInteger"},
1087
- "ClientRequestToken":{
1088
- "shape":"ClientRequestTokenString",
1089
- "idempotencyToken":true
1090
- },
1091
- "Tags":{"shape":"TagList"}
1092
- }
1093
- },
1094
- "CreateEndpointResponse":{
1095
- "type":"structure",
1096
- "members":{
1097
- "EndpointArn":{"shape":"ComprehendEndpointArn"}
1098
- }
1099
- },
1100
- "CreateEntityRecognizerRequest":{
1101
- "type":"structure",
1102
- "required":[
1103
- "RecognizerName",
1104
- "DataAccessRoleArn",
1105
- "InputDataConfig",
1106
- "LanguageCode"
1107
- ],
1108
- "members":{
1109
- "RecognizerName":{"shape":"ComprehendArnName"},
1110
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1111
- "Tags":{"shape":"TagList"},
1112
- "InputDataConfig":{"shape":"EntityRecognizerInputDataConfig"},
1113
- "ClientRequestToken":{
1114
- "shape":"ClientRequestTokenString",
1115
- "idempotencyToken":true
1116
- },
1117
- "LanguageCode":{"shape":"LanguageCode"},
1118
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1119
- "VpcConfig":{"shape":"VpcConfig"}
1120
- }
1121
- },
1122
- "CreateEntityRecognizerResponse":{
1123
- "type":"structure",
1124
- "members":{
1125
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
1126
- }
1127
- },
1128
- "DeleteDocumentClassifierRequest":{
1129
- "type":"structure",
1130
- "required":["DocumentClassifierArn"],
1131
- "members":{
1132
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
1133
- }
1134
- },
1135
- "DeleteDocumentClassifierResponse":{
1136
- "type":"structure",
1137
- "members":{
1138
- }
1139
- },
1140
- "DeleteEndpointRequest":{
1141
- "type":"structure",
1142
- "required":["EndpointArn"],
1143
- "members":{
1144
- "EndpointArn":{"shape":"ComprehendEndpointArn"}
1145
- }
1146
- },
1147
- "DeleteEndpointResponse":{
1148
- "type":"structure",
1149
- "members":{
1150
- }
1151
- },
1152
- "DeleteEntityRecognizerRequest":{
1153
- "type":"structure",
1154
- "required":["EntityRecognizerArn"],
1155
- "members":{
1156
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
1157
- }
1158
- },
1159
- "DeleteEntityRecognizerResponse":{
1160
- "type":"structure",
1161
- "members":{
1162
- }
1163
- },
1164
- "DescribeDocumentClassificationJobRequest":{
1165
- "type":"structure",
1166
- "required":["JobId"],
1167
- "members":{
1168
- "JobId":{"shape":"JobId"}
1169
- }
1170
- },
1171
- "DescribeDocumentClassificationJobResponse":{
1172
- "type":"structure",
1173
- "members":{
1174
- "DocumentClassificationJobProperties":{"shape":"DocumentClassificationJobProperties"}
1175
- }
1176
- },
1177
- "DescribeDocumentClassifierRequest":{
1178
- "type":"structure",
1179
- "required":["DocumentClassifierArn"],
1180
- "members":{
1181
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
1182
- }
1183
- },
1184
- "DescribeDocumentClassifierResponse":{
1185
- "type":"structure",
1186
- "members":{
1187
- "DocumentClassifierProperties":{"shape":"DocumentClassifierProperties"}
1188
- }
1189
- },
1190
- "DescribeDominantLanguageDetectionJobRequest":{
1191
- "type":"structure",
1192
- "required":["JobId"],
1193
- "members":{
1194
- "JobId":{"shape":"JobId"}
1195
- }
1196
- },
1197
- "DescribeDominantLanguageDetectionJobResponse":{
1198
- "type":"structure",
1199
- "members":{
1200
- "DominantLanguageDetectionJobProperties":{"shape":"DominantLanguageDetectionJobProperties"}
1201
- }
1202
- },
1203
- "DescribeEndpointRequest":{
1204
- "type":"structure",
1205
- "required":["EndpointArn"],
1206
- "members":{
1207
- "EndpointArn":{"shape":"ComprehendEndpointArn"}
1208
- }
1209
- },
1210
- "DescribeEndpointResponse":{
1211
- "type":"structure",
1212
- "members":{
1213
- "EndpointProperties":{"shape":"EndpointProperties"}
1214
- }
1215
- },
1216
- "DescribeEntitiesDetectionJobRequest":{
1217
- "type":"structure",
1218
- "required":["JobId"],
1219
- "members":{
1220
- "JobId":{"shape":"JobId"}
1221
- }
1222
- },
1223
- "DescribeEntitiesDetectionJobResponse":{
1224
- "type":"structure",
1225
- "members":{
1226
- "EntitiesDetectionJobProperties":{"shape":"EntitiesDetectionJobProperties"}
1227
- }
1228
- },
1229
- "DescribeEntityRecognizerRequest":{
1230
- "type":"structure",
1231
- "required":["EntityRecognizerArn"],
1232
- "members":{
1233
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
1234
- }
1235
- },
1236
- "DescribeEntityRecognizerResponse":{
1237
- "type":"structure",
1238
- "members":{
1239
- "EntityRecognizerProperties":{"shape":"EntityRecognizerProperties"}
1240
- }
1241
- },
1242
- "DescribeKeyPhrasesDetectionJobRequest":{
1243
- "type":"structure",
1244
- "required":["JobId"],
1245
- "members":{
1246
- "JobId":{"shape":"JobId"}
1247
- }
1248
- },
1249
- "DescribeKeyPhrasesDetectionJobResponse":{
1250
- "type":"structure",
1251
- "members":{
1252
- "KeyPhrasesDetectionJobProperties":{"shape":"KeyPhrasesDetectionJobProperties"}
1253
- }
1254
- },
1255
- "DescribeSentimentDetectionJobRequest":{
1256
- "type":"structure",
1257
- "required":["JobId"],
1258
- "members":{
1259
- "JobId":{"shape":"JobId"}
1260
- }
1261
- },
1262
- "DescribeSentimentDetectionJobResponse":{
1263
- "type":"structure",
1264
- "members":{
1265
- "SentimentDetectionJobProperties":{"shape":"SentimentDetectionJobProperties"}
1266
- }
1267
- },
1268
- "DescribeTopicsDetectionJobRequest":{
1269
- "type":"structure",
1270
- "required":["JobId"],
1271
- "members":{
1272
- "JobId":{"shape":"JobId"}
1273
- }
1274
- },
1275
- "DescribeTopicsDetectionJobResponse":{
1276
- "type":"structure",
1277
- "members":{
1278
- "TopicsDetectionJobProperties":{"shape":"TopicsDetectionJobProperties"}
1279
- }
1280
- },
1281
- "DetectDominantLanguageRequest":{
1282
- "type":"structure",
1283
- "required":["Text"],
1284
- "members":{
1285
- "Text":{"shape":"String"}
1286
- }
1287
- },
1288
- "DetectDominantLanguageResponse":{
1289
- "type":"structure",
1290
- "members":{
1291
- "Languages":{"shape":"ListOfDominantLanguages"}
1292
- }
1293
- },
1294
- "DetectEntitiesRequest":{
1295
- "type":"structure",
1296
- "required":[
1297
- "Text",
1298
- "LanguageCode"
1299
- ],
1300
- "members":{
1301
- "Text":{"shape":"String"},
1302
- "LanguageCode":{"shape":"LanguageCode"}
1303
- }
1304
- },
1305
- "DetectEntitiesResponse":{
1306
- "type":"structure",
1307
- "members":{
1308
- "Entities":{"shape":"ListOfEntities"}
1309
- }
1310
- },
1311
- "DetectKeyPhrasesRequest":{
1312
- "type":"structure",
1313
- "required":[
1314
- "Text",
1315
- "LanguageCode"
1316
- ],
1317
- "members":{
1318
- "Text":{"shape":"String"},
1319
- "LanguageCode":{"shape":"LanguageCode"}
1320
- }
1321
- },
1322
- "DetectKeyPhrasesResponse":{
1323
- "type":"structure",
1324
- "members":{
1325
- "KeyPhrases":{"shape":"ListOfKeyPhrases"}
1326
- }
1327
- },
1328
- "DetectSentimentRequest":{
1329
- "type":"structure",
1330
- "required":[
1331
- "Text",
1332
- "LanguageCode"
1333
- ],
1334
- "members":{
1335
- "Text":{"shape":"String"},
1336
- "LanguageCode":{"shape":"LanguageCode"}
1337
- }
1338
- },
1339
- "DetectSentimentResponse":{
1340
- "type":"structure",
1341
- "members":{
1342
- "Sentiment":{"shape":"SentimentType"},
1343
- "SentimentScore":{"shape":"SentimentScore"}
1344
- }
1345
- },
1346
- "DetectSyntaxRequest":{
1347
- "type":"structure",
1348
- "required":[
1349
- "Text",
1350
- "LanguageCode"
1351
- ],
1352
- "members":{
1353
- "Text":{"shape":"String"},
1354
- "LanguageCode":{"shape":"SyntaxLanguageCode"}
1355
- }
1356
- },
1357
- "DetectSyntaxResponse":{
1358
- "type":"structure",
1359
- "members":{
1360
- "SyntaxTokens":{"shape":"ListOfSyntaxTokens"}
1361
- }
1362
- },
1363
- "DocumentClass":{
1364
- "type":"structure",
1365
- "members":{
1366
- "Name":{"shape":"String"},
1367
- "Score":{"shape":"Float"}
1368
- }
1369
- },
1370
- "DocumentClassificationJobFilter":{
1371
- "type":"structure",
1372
- "members":{
1373
- "JobName":{"shape":"JobName"},
1374
- "JobStatus":{"shape":"JobStatus"},
1375
- "SubmitTimeBefore":{"shape":"Timestamp"},
1376
- "SubmitTimeAfter":{"shape":"Timestamp"}
1377
- }
1378
- },
1379
- "DocumentClassificationJobProperties":{
1380
- "type":"structure",
1381
- "members":{
1382
- "JobId":{"shape":"JobId"},
1383
- "JobName":{"shape":"JobName"},
1384
- "JobStatus":{"shape":"JobStatus"},
1385
- "Message":{"shape":"AnyLengthString"},
1386
- "SubmitTime":{"shape":"Timestamp"},
1387
- "EndTime":{"shape":"Timestamp"},
1388
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"},
1389
- "InputDataConfig":{"shape":"InputDataConfig"},
1390
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1391
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1392
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1393
- "VpcConfig":{"shape":"VpcConfig"}
1394
- }
1395
- },
1396
- "DocumentClassificationJobPropertiesList":{
1397
- "type":"list",
1398
- "member":{"shape":"DocumentClassificationJobProperties"}
1399
- },
1400
- "DocumentClassifierArn":{
1401
- "type":"string",
1402
- "max":256,
1403
- "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:document-classifier/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1404
- },
1405
- "DocumentClassifierEndpointArn":{
1406
- "type":"string",
1407
- "max":256,
1408
- "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:document-classifier-endpoint/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1409
- },
1410
- "DocumentClassifierFilter":{
1411
- "type":"structure",
1412
- "members":{
1413
- "Status":{"shape":"ModelStatus"},
1414
- "SubmitTimeBefore":{"shape":"Timestamp"},
1415
- "SubmitTimeAfter":{"shape":"Timestamp"}
1416
- }
1417
- },
1418
- "DocumentClassifierInputDataConfig":{
1419
- "type":"structure",
1420
- "required":["S3Uri"],
1421
- "members":{
1422
- "S3Uri":{"shape":"S3Uri"},
1423
- "LabelDelimiter":{"shape":"LabelDelimiter"}
1424
- }
1425
- },
1426
- "DocumentClassifierMode":{
1427
- "type":"string",
1428
- "enum":[
1429
- "MULTI_CLASS",
1430
- "MULTI_LABEL"
1431
- ]
1432
- },
1433
- "DocumentClassifierOutputDataConfig":{
1434
- "type":"structure",
1435
- "members":{
1436
- "S3Uri":{"shape":"S3Uri"},
1437
- "KmsKeyId":{"shape":"KmsKeyId"}
1438
- }
1439
- },
1440
- "DocumentClassifierProperties":{
1441
- "type":"structure",
1442
- "members":{
1443
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"},
1444
- "LanguageCode":{"shape":"LanguageCode"},
1445
- "Status":{"shape":"ModelStatus"},
1446
- "Message":{"shape":"AnyLengthString"},
1447
- "SubmitTime":{"shape":"Timestamp"},
1448
- "EndTime":{"shape":"Timestamp"},
1449
- "TrainingStartTime":{"shape":"Timestamp"},
1450
- "TrainingEndTime":{"shape":"Timestamp"},
1451
- "InputDataConfig":{"shape":"DocumentClassifierInputDataConfig"},
1452
- "OutputDataConfig":{"shape":"DocumentClassifierOutputDataConfig"},
1453
- "ClassifierMetadata":{"shape":"ClassifierMetadata"},
1454
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1455
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1456
- "VpcConfig":{"shape":"VpcConfig"},
1457
- "Mode":{"shape":"DocumentClassifierMode"}
1458
- }
1459
- },
1460
- "DocumentClassifierPropertiesList":{
1461
- "type":"list",
1462
- "member":{"shape":"DocumentClassifierProperties"}
1463
- },
1464
- "DocumentLabel":{
1465
- "type":"structure",
1466
- "members":{
1467
- "Name":{"shape":"String"},
1468
- "Score":{"shape":"Float"}
1469
- }
1470
- },
1471
- "DominantLanguage":{
1472
- "type":"structure",
1473
- "members":{
1474
- "LanguageCode":{"shape":"String"},
1475
- "Score":{"shape":"Float"}
1476
- }
1477
- },
1478
- "DominantLanguageDetectionJobFilter":{
1479
- "type":"structure",
1480
- "members":{
1481
- "JobName":{"shape":"JobName"},
1482
- "JobStatus":{"shape":"JobStatus"},
1483
- "SubmitTimeBefore":{"shape":"Timestamp"},
1484
- "SubmitTimeAfter":{"shape":"Timestamp"}
1485
- }
1486
- },
1487
- "DominantLanguageDetectionJobProperties":{
1488
- "type":"structure",
1489
- "members":{
1490
- "JobId":{"shape":"JobId"},
1491
- "JobName":{"shape":"JobName"},
1492
- "JobStatus":{"shape":"JobStatus"},
1493
- "Message":{"shape":"AnyLengthString"},
1494
- "SubmitTime":{"shape":"Timestamp"},
1495
- "EndTime":{"shape":"Timestamp"},
1496
- "InputDataConfig":{"shape":"InputDataConfig"},
1497
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1498
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1499
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1500
- "VpcConfig":{"shape":"VpcConfig"}
1501
- }
1502
- },
1503
- "DominantLanguageDetectionJobPropertiesList":{
1504
- "type":"list",
1505
- "member":{"shape":"DominantLanguageDetectionJobProperties"}
1506
- },
1507
- "Double":{"type":"double"},
1508
- "EndpointFilter":{
1509
- "type":"structure",
1510
- "members":{
1511
- "ModelArn":{"shape":"ComprehendModelArn"},
1512
- "Status":{"shape":"EndpointStatus"},
1513
- "CreationTimeBefore":{"shape":"Timestamp"},
1514
- "CreationTimeAfter":{"shape":"Timestamp"}
1515
- }
1516
- },
1517
- "EndpointProperties":{
1518
- "type":"structure",
1519
- "members":{
1520
- "EndpointArn":{"shape":"ComprehendEndpointArn"},
1521
- "Status":{"shape":"EndpointStatus"},
1522
- "Message":{"shape":"AnyLengthString"},
1523
- "ModelArn":{"shape":"ComprehendModelArn"},
1524
- "DesiredInferenceUnits":{"shape":"InferenceUnitsInteger"},
1525
- "CurrentInferenceUnits":{"shape":"InferenceUnitsInteger"},
1526
- "CreationTime":{"shape":"Timestamp"},
1527
- "LastModifiedTime":{"shape":"Timestamp"}
1528
- }
1529
- },
1530
- "EndpointPropertiesList":{
1531
- "type":"list",
1532
- "member":{"shape":"EndpointProperties"}
1533
- },
1534
- "EndpointStatus":{
1535
- "type":"string",
1536
- "enum":[
1537
- "CREATING",
1538
- "DELETING",
1539
- "FAILED",
1540
- "IN_SERVICE",
1541
- "UPDATING"
1542
- ]
1543
- },
1544
- "EntitiesDetectionJobFilter":{
1545
- "type":"structure",
1546
- "members":{
1547
- "JobName":{"shape":"JobName"},
1548
- "JobStatus":{"shape":"JobStatus"},
1549
- "SubmitTimeBefore":{"shape":"Timestamp"},
1550
- "SubmitTimeAfter":{"shape":"Timestamp"}
1551
- }
1552
- },
1553
- "EntitiesDetectionJobProperties":{
1554
- "type":"structure",
1555
- "members":{
1556
- "JobId":{"shape":"JobId"},
1557
- "JobName":{"shape":"JobName"},
1558
- "JobStatus":{"shape":"JobStatus"},
1559
- "Message":{"shape":"AnyLengthString"},
1560
- "SubmitTime":{"shape":"Timestamp"},
1561
- "EndTime":{"shape":"Timestamp"},
1562
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"},
1563
- "InputDataConfig":{"shape":"InputDataConfig"},
1564
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1565
- "LanguageCode":{"shape":"LanguageCode"},
1566
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1567
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1568
- "VpcConfig":{"shape":"VpcConfig"}
1569
- }
1570
- },
1571
- "EntitiesDetectionJobPropertiesList":{
1572
- "type":"list",
1573
- "member":{"shape":"EntitiesDetectionJobProperties"}
1574
- },
1575
- "Entity":{
1576
- "type":"structure",
1577
- "members":{
1578
- "Score":{"shape":"Float"},
1579
- "Type":{"shape":"EntityType"},
1580
- "Text":{"shape":"String"},
1581
- "BeginOffset":{"shape":"Integer"},
1582
- "EndOffset":{"shape":"Integer"}
1583
- }
1584
- },
1585
- "EntityRecognizerAnnotations":{
1586
- "type":"structure",
1587
- "required":["S3Uri"],
1588
- "members":{
1589
- "S3Uri":{"shape":"S3Uri"}
1590
- }
1591
- },
1592
- "EntityRecognizerArn":{
1593
- "type":"string",
1594
- "max":256,
1595
- "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:entity-recognizer/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1596
- },
1597
- "EntityRecognizerDocuments":{
1598
- "type":"structure",
1599
- "required":["S3Uri"],
1600
- "members":{
1601
- "S3Uri":{"shape":"S3Uri"}
1602
- }
1603
- },
1604
- "EntityRecognizerEntityList":{
1605
- "type":"structure",
1606
- "required":["S3Uri"],
1607
- "members":{
1608
- "S3Uri":{"shape":"S3Uri"}
1609
- }
1610
- },
1611
- "EntityRecognizerEvaluationMetrics":{
1612
- "type":"structure",
1613
- "members":{
1614
- "Precision":{"shape":"Double"},
1615
- "Recall":{"shape":"Double"},
1616
- "F1Score":{"shape":"Double"}
1617
- }
1618
- },
1619
- "EntityRecognizerFilter":{
1620
- "type":"structure",
1621
- "members":{
1622
- "Status":{"shape":"ModelStatus"},
1623
- "SubmitTimeBefore":{"shape":"Timestamp"},
1624
- "SubmitTimeAfter":{"shape":"Timestamp"}
1625
- }
1626
- },
1627
- "EntityRecognizerInputDataConfig":{
1628
- "type":"structure",
1629
- "required":[
1630
- "EntityTypes",
1631
- "Documents"
1632
- ],
1633
- "members":{
1634
- "EntityTypes":{"shape":"EntityTypesList"},
1635
- "Documents":{"shape":"EntityRecognizerDocuments"},
1636
- "Annotations":{"shape":"EntityRecognizerAnnotations"},
1637
- "EntityList":{"shape":"EntityRecognizerEntityList"}
1638
- }
1639
- },
1640
- "EntityRecognizerMetadata":{
1641
- "type":"structure",
1642
- "members":{
1643
- "NumberOfTrainedDocuments":{"shape":"Integer"},
1644
- "NumberOfTestDocuments":{"shape":"Integer"},
1645
- "EvaluationMetrics":{"shape":"EntityRecognizerEvaluationMetrics"},
1646
- "EntityTypes":{"shape":"EntityRecognizerMetadataEntityTypesList"}
1647
- }
1648
- },
1649
- "EntityRecognizerMetadataEntityTypesList":{
1650
- "type":"list",
1651
- "member":{"shape":"EntityRecognizerMetadataEntityTypesListItem"}
1652
- },
1653
- "EntityRecognizerMetadataEntityTypesListItem":{
1654
- "type":"structure",
1655
- "members":{
1656
- "Type":{"shape":"AnyLengthString"},
1657
- "EvaluationMetrics":{"shape":"EntityTypesEvaluationMetrics"},
1658
- "NumberOfTrainMentions":{"shape":"Integer"}
1659
- }
1660
- },
1661
- "EntityRecognizerProperties":{
1662
- "type":"structure",
1663
- "members":{
1664
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"},
1665
- "LanguageCode":{"shape":"LanguageCode"},
1666
- "Status":{"shape":"ModelStatus"},
1667
- "Message":{"shape":"AnyLengthString"},
1668
- "SubmitTime":{"shape":"Timestamp"},
1669
- "EndTime":{"shape":"Timestamp"},
1670
- "TrainingStartTime":{"shape":"Timestamp"},
1671
- "TrainingEndTime":{"shape":"Timestamp"},
1672
- "InputDataConfig":{"shape":"EntityRecognizerInputDataConfig"},
1673
- "RecognizerMetadata":{"shape":"EntityRecognizerMetadata"},
1674
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1675
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1676
- "VpcConfig":{"shape":"VpcConfig"}
1677
- }
1678
- },
1679
- "EntityRecognizerPropertiesList":{
1680
- "type":"list",
1681
- "member":{"shape":"EntityRecognizerProperties"}
1682
- },
1683
- "EntityType":{
1684
- "type":"string",
1685
- "enum":[
1686
- "PERSON",
1687
- "LOCATION",
1688
- "ORGANIZATION",
1689
- "COMMERCIAL_ITEM",
1690
- "EVENT",
1691
- "DATE",
1692
- "QUANTITY",
1693
- "TITLE",
1694
- "OTHER"
1695
- ]
1696
- },
1697
- "EntityTypeName":{
1698
- "type":"string",
1699
- "max":64,
1700
- "pattern":"[_A-Z0-9]+"
1701
- },
1702
- "EntityTypesEvaluationMetrics":{
1703
- "type":"structure",
1704
- "members":{
1705
- "Precision":{"shape":"Double"},
1706
- "Recall":{"shape":"Double"},
1707
- "F1Score":{"shape":"Double"}
1708
- }
1709
- },
1710
- "EntityTypesList":{
1711
- "type":"list",
1712
- "member":{"shape":"EntityTypesListItem"}
1713
- },
1714
- "EntityTypesListItem":{
1715
- "type":"structure",
1716
- "required":["Type"],
1717
- "members":{
1718
- "Type":{"shape":"EntityTypeName"}
1719
- }
1720
- },
1721
- "Float":{"type":"float"},
1722
- "IamRoleArn":{
1723
- "type":"string",
1724
- "max":2048,
1725
- "min":20,
1726
- "pattern":"arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+"
1727
- },
1728
- "InferenceUnitsInteger":{
1729
- "type":"integer",
1730
- "min":1
1731
- },
1732
- "InputDataConfig":{
1733
- "type":"structure",
1734
- "required":["S3Uri"],
1735
- "members":{
1736
- "S3Uri":{"shape":"S3Uri"},
1737
- "InputFormat":{"shape":"InputFormat"}
1738
- }
1739
- },
1740
- "InputFormat":{
1741
- "type":"string",
1742
- "enum":[
1743
- "ONE_DOC_PER_FILE",
1744
- "ONE_DOC_PER_LINE"
1745
- ]
1746
- },
1747
- "Integer":{"type":"integer"},
1748
- "InternalServerException":{
1749
- "type":"structure",
1750
- "members":{
1751
- "Message":{"shape":"String"}
1752
- },
1753
- "exception":true,
1754
- "fault":true
1755
- },
1756
- "InvalidFilterException":{
1757
- "type":"structure",
1758
- "members":{
1759
- "Message":{"shape":"String"}
1760
- },
1761
- "exception":true
1762
- },
1763
- "InvalidRequestException":{
1764
- "type":"structure",
1765
- "members":{
1766
- "Message":{"shape":"String"}
1767
- },
1768
- "exception":true
1769
- },
1770
- "JobId":{
1771
- "type":"string",
1772
- "max":32,
1773
- "min":1,
1774
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
1775
- },
1776
- "JobName":{
1777
- "type":"string",
1778
- "max":256,
1779
- "min":1,
1780
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
1781
- },
1782
- "JobNotFoundException":{
1783
- "type":"structure",
1784
- "members":{
1785
- "Message":{"shape":"String"}
1786
- },
1787
- "exception":true
1788
- },
1789
- "JobStatus":{
1790
- "type":"string",
1791
- "enum":[
1792
- "SUBMITTED",
1793
- "IN_PROGRESS",
1794
- "COMPLETED",
1795
- "FAILED",
1796
- "STOP_REQUESTED",
1797
- "STOPPED"
1798
- ]
1799
- },
1800
- "KeyPhrase":{
1801
- "type":"structure",
1802
- "members":{
1803
- "Score":{"shape":"Float"},
1804
- "Text":{"shape":"String"},
1805
- "BeginOffset":{"shape":"Integer"},
1806
- "EndOffset":{"shape":"Integer"}
1807
- }
1808
- },
1809
- "KeyPhrasesDetectionJobFilter":{
1810
- "type":"structure",
1811
- "members":{
1812
- "JobName":{"shape":"JobName"},
1813
- "JobStatus":{"shape":"JobStatus"},
1814
- "SubmitTimeBefore":{"shape":"Timestamp"},
1815
- "SubmitTimeAfter":{"shape":"Timestamp"}
1816
- }
1817
- },
1818
- "KeyPhrasesDetectionJobProperties":{
1819
- "type":"structure",
1820
- "members":{
1821
- "JobId":{"shape":"JobId"},
1822
- "JobName":{"shape":"JobName"},
1823
- "JobStatus":{"shape":"JobStatus"},
1824
- "Message":{"shape":"AnyLengthString"},
1825
- "SubmitTime":{"shape":"Timestamp"},
1826
- "EndTime":{"shape":"Timestamp"},
1827
- "InputDataConfig":{"shape":"InputDataConfig"},
1828
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1829
- "LanguageCode":{"shape":"LanguageCode"},
1830
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1831
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
1832
- "VpcConfig":{"shape":"VpcConfig"}
1833
- }
1834
- },
1835
- "KeyPhrasesDetectionJobPropertiesList":{
1836
- "type":"list",
1837
- "member":{"shape":"KeyPhrasesDetectionJobProperties"}
1838
- },
1839
- "KmsKeyId":{
1840
- "type":"string",
1841
- "max":2048
1842
- },
1843
- "KmsKeyValidationException":{
1844
- "type":"structure",
1845
- "members":{
1846
- "Message":{"shape":"String"}
1847
- },
1848
- "exception":true
1849
- },
1850
- "LabelDelimiter":{
1851
- "type":"string",
1852
- "max":1,
1853
- "min":1,
1854
- "pattern":"^[ ~!@#$%^*\\-_+=|\\\\:;\\t>?/]$"
1855
- },
1856
- "LanguageCode":{
1857
- "type":"string",
1858
- "enum":[
1859
- "en",
1860
- "es",
1861
- "fr",
1862
- "de",
1863
- "it",
1864
- "pt",
1865
- "ar",
1866
- "hi",
1867
- "ja",
1868
- "ko",
1869
- "zh",
1870
- "zh-TW"
1871
- ]
1872
- },
1873
- "ListDocumentClassificationJobsRequest":{
1874
- "type":"structure",
1875
- "members":{
1876
- "Filter":{"shape":"DocumentClassificationJobFilter"},
1877
- "NextToken":{"shape":"String"},
1878
- "MaxResults":{"shape":"MaxResultsInteger"}
1879
- }
1880
- },
1881
- "ListDocumentClassificationJobsResponse":{
1882
- "type":"structure",
1883
- "members":{
1884
- "DocumentClassificationJobPropertiesList":{"shape":"DocumentClassificationJobPropertiesList"},
1885
- "NextToken":{"shape":"String"}
1886
- }
1887
- },
1888
- "ListDocumentClassifiersRequest":{
1889
- "type":"structure",
1890
- "members":{
1891
- "Filter":{"shape":"DocumentClassifierFilter"},
1892
- "NextToken":{"shape":"String"},
1893
- "MaxResults":{"shape":"MaxResultsInteger"}
1894
- }
1895
- },
1896
- "ListDocumentClassifiersResponse":{
1897
- "type":"structure",
1898
- "members":{
1899
- "DocumentClassifierPropertiesList":{"shape":"DocumentClassifierPropertiesList"},
1900
- "NextToken":{"shape":"String"}
1901
- }
1902
- },
1903
- "ListDominantLanguageDetectionJobsRequest":{
1904
- "type":"structure",
1905
- "members":{
1906
- "Filter":{"shape":"DominantLanguageDetectionJobFilter"},
1907
- "NextToken":{"shape":"String"},
1908
- "MaxResults":{"shape":"MaxResultsInteger"}
1909
- }
1910
- },
1911
- "ListDominantLanguageDetectionJobsResponse":{
1912
- "type":"structure",
1913
- "members":{
1914
- "DominantLanguageDetectionJobPropertiesList":{"shape":"DominantLanguageDetectionJobPropertiesList"},
1915
- "NextToken":{"shape":"String"}
1916
- }
1917
- },
1918
- "ListEndpointsRequest":{
1919
- "type":"structure",
1920
- "members":{
1921
- "Filter":{"shape":"EndpointFilter"},
1922
- "NextToken":{"shape":"String"},
1923
- "MaxResults":{"shape":"MaxResultsInteger"}
1924
- }
1925
- },
1926
- "ListEndpointsResponse":{
1927
- "type":"structure",
1928
- "members":{
1929
- "EndpointPropertiesList":{"shape":"EndpointPropertiesList"},
1930
- "NextToken":{"shape":"String"}
1931
- }
1932
- },
1933
- "ListEntitiesDetectionJobsRequest":{
1934
- "type":"structure",
1935
- "members":{
1936
- "Filter":{"shape":"EntitiesDetectionJobFilter"},
1937
- "NextToken":{"shape":"String"},
1938
- "MaxResults":{"shape":"MaxResultsInteger"}
1939
- }
1940
- },
1941
- "ListEntitiesDetectionJobsResponse":{
1942
- "type":"structure",
1943
- "members":{
1944
- "EntitiesDetectionJobPropertiesList":{"shape":"EntitiesDetectionJobPropertiesList"},
1945
- "NextToken":{"shape":"String"}
1946
- }
1947
- },
1948
- "ListEntityRecognizersRequest":{
1949
- "type":"structure",
1950
- "members":{
1951
- "Filter":{"shape":"EntityRecognizerFilter"},
1952
- "NextToken":{"shape":"String"},
1953
- "MaxResults":{"shape":"MaxResultsInteger"}
1954
- }
1955
- },
1956
- "ListEntityRecognizersResponse":{
1957
- "type":"structure",
1958
- "members":{
1959
- "EntityRecognizerPropertiesList":{"shape":"EntityRecognizerPropertiesList"},
1960
- "NextToken":{"shape":"String"}
1961
- }
1962
- },
1963
- "ListKeyPhrasesDetectionJobsRequest":{
1964
- "type":"structure",
1965
- "members":{
1966
- "Filter":{"shape":"KeyPhrasesDetectionJobFilter"},
1967
- "NextToken":{"shape":"String"},
1968
- "MaxResults":{"shape":"MaxResultsInteger"}
1969
- }
1970
- },
1971
- "ListKeyPhrasesDetectionJobsResponse":{
1972
- "type":"structure",
1973
- "members":{
1974
- "KeyPhrasesDetectionJobPropertiesList":{"shape":"KeyPhrasesDetectionJobPropertiesList"},
1975
- "NextToken":{"shape":"String"}
1976
- }
1977
- },
1978
- "ListOfClasses":{
1979
- "type":"list",
1980
- "member":{"shape":"DocumentClass"}
1981
- },
1982
- "ListOfDetectDominantLanguageResult":{
1983
- "type":"list",
1984
- "member":{"shape":"BatchDetectDominantLanguageItemResult"}
1985
- },
1986
- "ListOfDetectEntitiesResult":{
1987
- "type":"list",
1988
- "member":{"shape":"BatchDetectEntitiesItemResult"}
1989
- },
1990
- "ListOfDetectKeyPhrasesResult":{
1991
- "type":"list",
1992
- "member":{"shape":"BatchDetectKeyPhrasesItemResult"}
1993
- },
1994
- "ListOfDetectSentimentResult":{
1995
- "type":"list",
1996
- "member":{"shape":"BatchDetectSentimentItemResult"}
1997
- },
1998
- "ListOfDetectSyntaxResult":{
1999
- "type":"list",
2000
- "member":{"shape":"BatchDetectSyntaxItemResult"}
2001
- },
2002
- "ListOfDominantLanguages":{
2003
- "type":"list",
2004
- "member":{"shape":"DominantLanguage"}
2005
- },
2006
- "ListOfEntities":{
2007
- "type":"list",
2008
- "member":{"shape":"Entity"}
2009
- },
2010
- "ListOfKeyPhrases":{
2011
- "type":"list",
2012
- "member":{"shape":"KeyPhrase"}
2013
- },
2014
- "ListOfLabels":{
2015
- "type":"list",
2016
- "member":{"shape":"DocumentLabel"}
2017
- },
2018
- "ListOfSyntaxTokens":{
2019
- "type":"list",
2020
- "member":{"shape":"SyntaxToken"}
2021
- },
2022
- "ListSentimentDetectionJobsRequest":{
2023
- "type":"structure",
2024
- "members":{
2025
- "Filter":{"shape":"SentimentDetectionJobFilter"},
2026
- "NextToken":{"shape":"String"},
2027
- "MaxResults":{"shape":"MaxResultsInteger"}
2028
- }
2029
- },
2030
- "ListSentimentDetectionJobsResponse":{
2031
- "type":"structure",
2032
- "members":{
2033
- "SentimentDetectionJobPropertiesList":{"shape":"SentimentDetectionJobPropertiesList"},
2034
- "NextToken":{"shape":"String"}
2035
- }
2036
- },
2037
- "ListTagsForResourceRequest":{
2038
- "type":"structure",
2039
- "required":["ResourceArn"],
2040
- "members":{
2041
- "ResourceArn":{"shape":"ComprehendArn"}
2042
- }
2043
- },
2044
- "ListTagsForResourceResponse":{
2045
- "type":"structure",
2046
- "members":{
2047
- "ResourceArn":{"shape":"ComprehendArn"},
2048
- "Tags":{"shape":"TagList"}
2049
- }
2050
- },
2051
- "ListTopicsDetectionJobsRequest":{
2052
- "type":"structure",
2053
- "members":{
2054
- "Filter":{"shape":"TopicsDetectionJobFilter"},
2055
- "NextToken":{"shape":"String"},
2056
- "MaxResults":{"shape":"MaxResultsInteger"}
2057
- }
2058
- },
2059
- "ListTopicsDetectionJobsResponse":{
2060
- "type":"structure",
2061
- "members":{
2062
- "TopicsDetectionJobPropertiesList":{"shape":"TopicsDetectionJobPropertiesList"},
2063
- "NextToken":{"shape":"String"}
2064
- }
2065
- },
2066
- "MaxResultsInteger":{
2067
- "type":"integer",
2068
- "max":500,
2069
- "min":1
2070
- },
2071
- "ModelStatus":{
2072
- "type":"string",
2073
- "enum":[
2074
- "SUBMITTED",
2075
- "TRAINING",
2076
- "DELETING",
2077
- "STOP_REQUESTED",
2078
- "STOPPED",
2079
- "IN_ERROR",
2080
- "TRAINED"
2081
- ]
2082
- },
2083
- "NumberOfTopicsInteger":{
2084
- "type":"integer",
2085
- "max":100,
2086
- "min":1
2087
- },
2088
- "OutputDataConfig":{
2089
- "type":"structure",
2090
- "required":["S3Uri"],
2091
- "members":{
2092
- "S3Uri":{"shape":"S3Uri"},
2093
- "KmsKeyId":{"shape":"KmsKeyId"}
2094
- }
2095
- },
2096
- "PartOfSpeechTag":{
2097
- "type":"structure",
2098
- "members":{
2099
- "Tag":{"shape":"PartOfSpeechTagType"},
2100
- "Score":{"shape":"Float"}
2101
- }
2102
- },
2103
- "PartOfSpeechTagType":{
2104
- "type":"string",
2105
- "enum":[
2106
- "ADJ",
2107
- "ADP",
2108
- "ADV",
2109
- "AUX",
2110
- "CONJ",
2111
- "CCONJ",
2112
- "DET",
2113
- "INTJ",
2114
- "NOUN",
2115
- "NUM",
2116
- "O",
2117
- "PART",
2118
- "PRON",
2119
- "PROPN",
2120
- "PUNCT",
2121
- "SCONJ",
2122
- "SYM",
2123
- "VERB"
2124
- ]
2125
- },
2126
- "ResourceInUseException":{
2127
- "type":"structure",
2128
- "members":{
2129
- "Message":{"shape":"String"}
2130
- },
2131
- "exception":true
2132
- },
2133
- "ResourceLimitExceededException":{
2134
- "type":"structure",
2135
- "members":{
2136
- "Message":{"shape":"String"}
2137
- },
2138
- "exception":true
2139
- },
2140
- "ResourceNotFoundException":{
2141
- "type":"structure",
2142
- "members":{
2143
- "Message":{"shape":"String"}
2144
- },
2145
- "exception":true
2146
- },
2147
- "ResourceUnavailableException":{
2148
- "type":"structure",
2149
- "members":{
2150
- "Message":{"shape":"String"}
2151
- },
2152
- "exception":true
2153
- },
2154
- "S3Uri":{
2155
- "type":"string",
2156
- "max":1024,
2157
- "pattern":"s3://[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9](/.*)?"
2158
- },
2159
- "SecurityGroupId":{
2160
- "type":"string",
2161
- "max":32,
2162
- "min":1,
2163
- "pattern":"[-0-9a-zA-Z]+"
2164
- },
2165
- "SecurityGroupIds":{
2166
- "type":"list",
2167
- "member":{"shape":"SecurityGroupId"},
2168
- "max":5,
2169
- "min":1
2170
- },
2171
- "SentimentDetectionJobFilter":{
2172
- "type":"structure",
2173
- "members":{
2174
- "JobName":{"shape":"JobName"},
2175
- "JobStatus":{"shape":"JobStatus"},
2176
- "SubmitTimeBefore":{"shape":"Timestamp"},
2177
- "SubmitTimeAfter":{"shape":"Timestamp"}
2178
- }
2179
- },
2180
- "SentimentDetectionJobProperties":{
2181
- "type":"structure",
2182
- "members":{
2183
- "JobId":{"shape":"JobId"},
2184
- "JobName":{"shape":"JobName"},
2185
- "JobStatus":{"shape":"JobStatus"},
2186
- "Message":{"shape":"AnyLengthString"},
2187
- "SubmitTime":{"shape":"Timestamp"},
2188
- "EndTime":{"shape":"Timestamp"},
2189
- "InputDataConfig":{"shape":"InputDataConfig"},
2190
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2191
- "LanguageCode":{"shape":"LanguageCode"},
2192
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2193
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2194
- "VpcConfig":{"shape":"VpcConfig"}
2195
- }
2196
- },
2197
- "SentimentDetectionJobPropertiesList":{
2198
- "type":"list",
2199
- "member":{"shape":"SentimentDetectionJobProperties"}
2200
- },
2201
- "SentimentScore":{
2202
- "type":"structure",
2203
- "members":{
2204
- "Positive":{"shape":"Float"},
2205
- "Negative":{"shape":"Float"},
2206
- "Neutral":{"shape":"Float"},
2207
- "Mixed":{"shape":"Float"}
2208
- }
2209
- },
2210
- "SentimentType":{
2211
- "type":"string",
2212
- "enum":[
2213
- "POSITIVE",
2214
- "NEGATIVE",
2215
- "NEUTRAL",
2216
- "MIXED"
2217
- ]
2218
- },
2219
- "StartDocumentClassificationJobRequest":{
2220
- "type":"structure",
2221
- "required":[
2222
- "DocumentClassifierArn",
2223
- "InputDataConfig",
2224
- "OutputDataConfig",
2225
- "DataAccessRoleArn"
2226
- ],
2227
- "members":{
2228
- "JobName":{"shape":"JobName"},
2229
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"},
2230
- "InputDataConfig":{"shape":"InputDataConfig"},
2231
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2232
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2233
- "ClientRequestToken":{
2234
- "shape":"ClientRequestTokenString",
2235
- "idempotencyToken":true
2236
- },
2237
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2238
- "VpcConfig":{"shape":"VpcConfig"}
2239
- }
2240
- },
2241
- "StartDocumentClassificationJobResponse":{
2242
- "type":"structure",
2243
- "members":{
2244
- "JobId":{"shape":"JobId"},
2245
- "JobStatus":{"shape":"JobStatus"}
2246
- }
2247
- },
2248
- "StartDominantLanguageDetectionJobRequest":{
2249
- "type":"structure",
2250
- "required":[
2251
- "InputDataConfig",
2252
- "OutputDataConfig",
2253
- "DataAccessRoleArn"
2254
- ],
2255
- "members":{
2256
- "InputDataConfig":{"shape":"InputDataConfig"},
2257
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2258
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2259
- "JobName":{"shape":"JobName"},
2260
- "ClientRequestToken":{
2261
- "shape":"ClientRequestTokenString",
2262
- "idempotencyToken":true
2263
- },
2264
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2265
- "VpcConfig":{"shape":"VpcConfig"}
2266
- }
2267
- },
2268
- "StartDominantLanguageDetectionJobResponse":{
2269
- "type":"structure",
2270
- "members":{
2271
- "JobId":{"shape":"JobId"},
2272
- "JobStatus":{"shape":"JobStatus"}
2273
- }
2274
- },
2275
- "StartEntitiesDetectionJobRequest":{
2276
- "type":"structure",
2277
- "required":[
2278
- "InputDataConfig",
2279
- "OutputDataConfig",
2280
- "DataAccessRoleArn",
2281
- "LanguageCode"
2282
- ],
2283
- "members":{
2284
- "InputDataConfig":{"shape":"InputDataConfig"},
2285
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2286
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2287
- "JobName":{"shape":"JobName"},
2288
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"},
2289
- "LanguageCode":{"shape":"LanguageCode"},
2290
- "ClientRequestToken":{
2291
- "shape":"ClientRequestTokenString",
2292
- "idempotencyToken":true
2293
- },
2294
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2295
- "VpcConfig":{"shape":"VpcConfig"}
2296
- }
2297
- },
2298
- "StartEntitiesDetectionJobResponse":{
2299
- "type":"structure",
2300
- "members":{
2301
- "JobId":{"shape":"JobId"},
2302
- "JobStatus":{"shape":"JobStatus"}
2303
- }
2304
- },
2305
- "StartKeyPhrasesDetectionJobRequest":{
2306
- "type":"structure",
2307
- "required":[
2308
- "InputDataConfig",
2309
- "OutputDataConfig",
2310
- "DataAccessRoleArn",
2311
- "LanguageCode"
2312
- ],
2313
- "members":{
2314
- "InputDataConfig":{"shape":"InputDataConfig"},
2315
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2316
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2317
- "JobName":{"shape":"JobName"},
2318
- "LanguageCode":{"shape":"LanguageCode"},
2319
- "ClientRequestToken":{
2320
- "shape":"ClientRequestTokenString",
2321
- "idempotencyToken":true
2322
- },
2323
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2324
- "VpcConfig":{"shape":"VpcConfig"}
2325
- }
2326
- },
2327
- "StartKeyPhrasesDetectionJobResponse":{
2328
- "type":"structure",
2329
- "members":{
2330
- "JobId":{"shape":"JobId"},
2331
- "JobStatus":{"shape":"JobStatus"}
2332
- }
2333
- },
2334
- "StartSentimentDetectionJobRequest":{
2335
- "type":"structure",
2336
- "required":[
2337
- "InputDataConfig",
2338
- "OutputDataConfig",
2339
- "DataAccessRoleArn",
2340
- "LanguageCode"
2341
- ],
2342
- "members":{
2343
- "InputDataConfig":{"shape":"InputDataConfig"},
2344
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2345
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2346
- "JobName":{"shape":"JobName"},
2347
- "LanguageCode":{"shape":"LanguageCode"},
2348
- "ClientRequestToken":{
2349
- "shape":"ClientRequestTokenString",
2350
- "idempotencyToken":true
2351
- },
2352
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2353
- "VpcConfig":{"shape":"VpcConfig"}
2354
- }
2355
- },
2356
- "StartSentimentDetectionJobResponse":{
2357
- "type":"structure",
2358
- "members":{
2359
- "JobId":{"shape":"JobId"},
2360
- "JobStatus":{"shape":"JobStatus"}
2361
- }
2362
- },
2363
- "StartTopicsDetectionJobRequest":{
2364
- "type":"structure",
2365
- "required":[
2366
- "InputDataConfig",
2367
- "OutputDataConfig",
2368
- "DataAccessRoleArn"
2369
- ],
2370
- "members":{
2371
- "InputDataConfig":{"shape":"InputDataConfig"},
2372
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2373
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2374
- "JobName":{"shape":"JobName"},
2375
- "NumberOfTopics":{"shape":"NumberOfTopicsInteger"},
2376
- "ClientRequestToken":{
2377
- "shape":"ClientRequestTokenString",
2378
- "idempotencyToken":true
2379
- },
2380
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2381
- "VpcConfig":{"shape":"VpcConfig"}
2382
- }
2383
- },
2384
- "StartTopicsDetectionJobResponse":{
2385
- "type":"structure",
2386
- "members":{
2387
- "JobId":{"shape":"JobId"},
2388
- "JobStatus":{"shape":"JobStatus"}
2389
- }
2390
- },
2391
- "StopDominantLanguageDetectionJobRequest":{
2392
- "type":"structure",
2393
- "required":["JobId"],
2394
- "members":{
2395
- "JobId":{"shape":"JobId"}
2396
- }
2397
- },
2398
- "StopDominantLanguageDetectionJobResponse":{
2399
- "type":"structure",
2400
- "members":{
2401
- "JobId":{"shape":"JobId"},
2402
- "JobStatus":{"shape":"JobStatus"}
2403
- }
2404
- },
2405
- "StopEntitiesDetectionJobRequest":{
2406
- "type":"structure",
2407
- "required":["JobId"],
2408
- "members":{
2409
- "JobId":{"shape":"JobId"}
2410
- }
2411
- },
2412
- "StopEntitiesDetectionJobResponse":{
2413
- "type":"structure",
2414
- "members":{
2415
- "JobId":{"shape":"JobId"},
2416
- "JobStatus":{"shape":"JobStatus"}
2417
- }
2418
- },
2419
- "StopKeyPhrasesDetectionJobRequest":{
2420
- "type":"structure",
2421
- "required":["JobId"],
2422
- "members":{
2423
- "JobId":{"shape":"JobId"}
2424
- }
2425
- },
2426
- "StopKeyPhrasesDetectionJobResponse":{
2427
- "type":"structure",
2428
- "members":{
2429
- "JobId":{"shape":"JobId"},
2430
- "JobStatus":{"shape":"JobStatus"}
2431
- }
2432
- },
2433
- "StopSentimentDetectionJobRequest":{
2434
- "type":"structure",
2435
- "required":["JobId"],
2436
- "members":{
2437
- "JobId":{"shape":"JobId"}
2438
- }
2439
- },
2440
- "StopSentimentDetectionJobResponse":{
2441
- "type":"structure",
2442
- "members":{
2443
- "JobId":{"shape":"JobId"},
2444
- "JobStatus":{"shape":"JobStatus"}
2445
- }
2446
- },
2447
- "StopTrainingDocumentClassifierRequest":{
2448
- "type":"structure",
2449
- "required":["DocumentClassifierArn"],
2450
- "members":{
2451
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
2452
- }
2453
- },
2454
- "StopTrainingDocumentClassifierResponse":{
2455
- "type":"structure",
2456
- "members":{
2457
- }
2458
- },
2459
- "StopTrainingEntityRecognizerRequest":{
2460
- "type":"structure",
2461
- "required":["EntityRecognizerArn"],
2462
- "members":{
2463
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
2464
- }
2465
- },
2466
- "StopTrainingEntityRecognizerResponse":{
2467
- "type":"structure",
2468
- "members":{
2469
- }
2470
- },
2471
- "String":{
2472
- "type":"string",
2473
- "min":1
2474
- },
2475
- "StringList":{
2476
- "type":"list",
2477
- "member":{"shape":"String"}
2478
- },
2479
- "SubnetId":{
2480
- "type":"string",
2481
- "max":32,
2482
- "min":1,
2483
- "pattern":"[-0-9a-zA-Z]+"
2484
- },
2485
- "Subnets":{
2486
- "type":"list",
2487
- "member":{"shape":"SubnetId"},
2488
- "max":16,
2489
- "min":1
2490
- },
2491
- "SyntaxLanguageCode":{
2492
- "type":"string",
2493
- "enum":[
2494
- "en",
2495
- "es",
2496
- "fr",
2497
- "de",
2498
- "it",
2499
- "pt"
2500
- ]
2501
- },
2502
- "SyntaxToken":{
2503
- "type":"structure",
2504
- "members":{
2505
- "TokenId":{"shape":"Integer"},
2506
- "Text":{"shape":"String"},
2507
- "BeginOffset":{"shape":"Integer"},
2508
- "EndOffset":{"shape":"Integer"},
2509
- "PartOfSpeech":{"shape":"PartOfSpeechTag"}
2510
- }
2511
- },
2512
- "Tag":{
2513
- "type":"structure",
2514
- "required":["Key"],
2515
- "members":{
2516
- "Key":{"shape":"TagKey"},
2517
- "Value":{"shape":"TagValue"}
2518
- }
2519
- },
2520
- "TagKey":{
2521
- "type":"string",
2522
- "max":128,
2523
- "min":1
2524
- },
2525
- "TagKeyList":{
2526
- "type":"list",
2527
- "member":{"shape":"TagKey"}
2528
- },
2529
- "TagList":{
2530
- "type":"list",
2531
- "member":{"shape":"Tag"}
2532
- },
2533
- "TagResourceRequest":{
2534
- "type":"structure",
2535
- "required":[
2536
- "ResourceArn",
2537
- "Tags"
2538
- ],
2539
- "members":{
2540
- "ResourceArn":{"shape":"ComprehendArn"},
2541
- "Tags":{"shape":"TagList"}
2542
- }
2543
- },
2544
- "TagResourceResponse":{
2545
- "type":"structure",
2546
- "members":{
2547
- }
2548
- },
2549
- "TagValue":{
2550
- "type":"string",
2551
- "max":256,
2552
- "min":0
2553
- },
2554
- "TextSizeLimitExceededException":{
2555
- "type":"structure",
2556
- "members":{
2557
- "Message":{"shape":"String"}
2558
- },
2559
- "exception":true
2560
- },
2561
- "Timestamp":{"type":"timestamp"},
2562
- "TooManyRequestsException":{
2563
- "type":"structure",
2564
- "members":{
2565
- "Message":{"shape":"String"}
2566
- },
2567
- "exception":true
2568
- },
2569
- "TooManyTagKeysException":{
2570
- "type":"structure",
2571
- "members":{
2572
- "Message":{"shape":"String"}
2573
- },
2574
- "exception":true
2575
- },
2576
- "TooManyTagsException":{
2577
- "type":"structure",
2578
- "members":{
2579
- "Message":{"shape":"String"}
2580
- },
2581
- "exception":true
2582
- },
2583
- "TopicsDetectionJobFilter":{
2584
- "type":"structure",
2585
- "members":{
2586
- "JobName":{"shape":"JobName"},
2587
- "JobStatus":{"shape":"JobStatus"},
2588
- "SubmitTimeBefore":{"shape":"Timestamp"},
2589
- "SubmitTimeAfter":{"shape":"Timestamp"}
2590
- }
2591
- },
2592
- "TopicsDetectionJobProperties":{
2593
- "type":"structure",
2594
- "members":{
2595
- "JobId":{"shape":"JobId"},
2596
- "JobName":{"shape":"JobName"},
2597
- "JobStatus":{"shape":"JobStatus"},
2598
- "Message":{"shape":"AnyLengthString"},
2599
- "SubmitTime":{"shape":"Timestamp"},
2600
- "EndTime":{"shape":"Timestamp"},
2601
- "InputDataConfig":{"shape":"InputDataConfig"},
2602
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2603
- "NumberOfTopics":{"shape":"Integer"},
2604
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
2605
- "VolumeKmsKeyId":{"shape":"KmsKeyId"},
2606
- "VpcConfig":{"shape":"VpcConfig"}
2607
- }
2608
- },
2609
- "TopicsDetectionJobPropertiesList":{
2610
- "type":"list",
2611
- "member":{"shape":"TopicsDetectionJobProperties"}
2612
- },
2613
- "UnsupportedLanguageException":{
2614
- "type":"structure",
2615
- "members":{
2616
- "Message":{"shape":"String"}
2617
- },
2618
- "exception":true
2619
- },
2620
- "UntagResourceRequest":{
2621
- "type":"structure",
2622
- "required":[
2623
- "ResourceArn",
2624
- "TagKeys"
2625
- ],
2626
- "members":{
2627
- "ResourceArn":{"shape":"ComprehendArn"},
2628
- "TagKeys":{"shape":"TagKeyList"}
2629
- }
2630
- },
2631
- "UntagResourceResponse":{
2632
- "type":"structure",
2633
- "members":{
2634
- }
2635
- },
2636
- "UpdateEndpointRequest":{
2637
- "type":"structure",
2638
- "required":[
2639
- "EndpointArn",
2640
- "DesiredInferenceUnits"
2641
- ],
2642
- "members":{
2643
- "EndpointArn":{"shape":"ComprehendEndpointArn"},
2644
- "DesiredInferenceUnits":{"shape":"InferenceUnitsInteger"}
2645
- }
2646
- },
2647
- "UpdateEndpointResponse":{
2648
- "type":"structure",
2649
- "members":{
2650
- }
2651
- },
2652
- "VpcConfig":{
2653
- "type":"structure",
2654
- "required":[
2655
- "SecurityGroupIds",
2656
- "Subnets"
2657
- ],
2658
- "members":{
2659
- "SecurityGroupIds":{"shape":"SecurityGroupIds"},
2660
- "Subnets":{"shape":"Subnets"}
2661
- }
2662
- }
2663
- }
2664
- }