aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  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/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,2106 +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
- "CreateDocumentClassifier":{
96
- "name":"CreateDocumentClassifier",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"CreateDocumentClassifierRequest"},
102
- "output":{"shape":"CreateDocumentClassifierResponse"},
103
- "errors":[
104
- {"shape":"InvalidRequestException"},
105
- {"shape":"ResourceInUseException"},
106
- {"shape":"TooManyRequestsException"},
107
- {"shape":"ResourceLimitExceededException"},
108
- {"shape":"UnsupportedLanguageException"},
109
- {"shape":"InternalServerException"}
110
- ]
111
- },
112
- "CreateEntityRecognizer":{
113
- "name":"CreateEntityRecognizer",
114
- "http":{
115
- "method":"POST",
116
- "requestUri":"/"
117
- },
118
- "input":{"shape":"CreateEntityRecognizerRequest"},
119
- "output":{"shape":"CreateEntityRecognizerResponse"},
120
- "errors":[
121
- {"shape":"InvalidRequestException"},
122
- {"shape":"ResourceInUseException"},
123
- {"shape":"TooManyRequestsException"},
124
- {"shape":"ResourceLimitExceededException"},
125
- {"shape":"UnsupportedLanguageException"},
126
- {"shape":"InternalServerException"}
127
- ]
128
- },
129
- "DeleteDocumentClassifier":{
130
- "name":"DeleteDocumentClassifier",
131
- "http":{
132
- "method":"POST",
133
- "requestUri":"/"
134
- },
135
- "input":{"shape":"DeleteDocumentClassifierRequest"},
136
- "output":{"shape":"DeleteDocumentClassifierResponse"},
137
- "errors":[
138
- {"shape":"InvalidRequestException"},
139
- {"shape":"TooManyRequestsException"},
140
- {"shape":"ResourceNotFoundException"},
141
- {"shape":"ResourceUnavailableException"},
142
- {"shape":"ResourceInUseException"},
143
- {"shape":"InternalServerException"}
144
- ]
145
- },
146
- "DeleteEntityRecognizer":{
147
- "name":"DeleteEntityRecognizer",
148
- "http":{
149
- "method":"POST",
150
- "requestUri":"/"
151
- },
152
- "input":{"shape":"DeleteEntityRecognizerRequest"},
153
- "output":{"shape":"DeleteEntityRecognizerResponse"},
154
- "errors":[
155
- {"shape":"InvalidRequestException"},
156
- {"shape":"TooManyRequestsException"},
157
- {"shape":"ResourceNotFoundException"},
158
- {"shape":"ResourceUnavailableException"},
159
- {"shape":"ResourceInUseException"},
160
- {"shape":"InternalServerException"}
161
- ]
162
- },
163
- "DescribeDocumentClassificationJob":{
164
- "name":"DescribeDocumentClassificationJob",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/"
168
- },
169
- "input":{"shape":"DescribeDocumentClassificationJobRequest"},
170
- "output":{"shape":"DescribeDocumentClassificationJobResponse"},
171
- "errors":[
172
- {"shape":"InvalidRequestException"},
173
- {"shape":"TooManyRequestsException"},
174
- {"shape":"JobNotFoundException"},
175
- {"shape":"InternalServerException"}
176
- ]
177
- },
178
- "DescribeDocumentClassifier":{
179
- "name":"DescribeDocumentClassifier",
180
- "http":{
181
- "method":"POST",
182
- "requestUri":"/"
183
- },
184
- "input":{"shape":"DescribeDocumentClassifierRequest"},
185
- "output":{"shape":"DescribeDocumentClassifierResponse"},
186
- "errors":[
187
- {"shape":"InvalidRequestException"},
188
- {"shape":"TooManyRequestsException"},
189
- {"shape":"ResourceNotFoundException"},
190
- {"shape":"InternalServerException"}
191
- ]
192
- },
193
- "DescribeDominantLanguageDetectionJob":{
194
- "name":"DescribeDominantLanguageDetectionJob",
195
- "http":{
196
- "method":"POST",
197
- "requestUri":"/"
198
- },
199
- "input":{"shape":"DescribeDominantLanguageDetectionJobRequest"},
200
- "output":{"shape":"DescribeDominantLanguageDetectionJobResponse"},
201
- "errors":[
202
- {"shape":"InvalidRequestException"},
203
- {"shape":"JobNotFoundException"},
204
- {"shape":"TooManyRequestsException"},
205
- {"shape":"InternalServerException"}
206
- ]
207
- },
208
- "DescribeEntitiesDetectionJob":{
209
- "name":"DescribeEntitiesDetectionJob",
210
- "http":{
211
- "method":"POST",
212
- "requestUri":"/"
213
- },
214
- "input":{"shape":"DescribeEntitiesDetectionJobRequest"},
215
- "output":{"shape":"DescribeEntitiesDetectionJobResponse"},
216
- "errors":[
217
- {"shape":"InvalidRequestException"},
218
- {"shape":"JobNotFoundException"},
219
- {"shape":"TooManyRequestsException"},
220
- {"shape":"InternalServerException"}
221
- ]
222
- },
223
- "DescribeEntityRecognizer":{
224
- "name":"DescribeEntityRecognizer",
225
- "http":{
226
- "method":"POST",
227
- "requestUri":"/"
228
- },
229
- "input":{"shape":"DescribeEntityRecognizerRequest"},
230
- "output":{"shape":"DescribeEntityRecognizerResponse"},
231
- "errors":[
232
- {"shape":"InvalidRequestException"},
233
- {"shape":"TooManyRequestsException"},
234
- {"shape":"ResourceNotFoundException"},
235
- {"shape":"InternalServerException"}
236
- ]
237
- },
238
- "DescribeKeyPhrasesDetectionJob":{
239
- "name":"DescribeKeyPhrasesDetectionJob",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"DescribeKeyPhrasesDetectionJobRequest"},
245
- "output":{"shape":"DescribeKeyPhrasesDetectionJobResponse"},
246
- "errors":[
247
- {"shape":"InvalidRequestException"},
248
- {"shape":"JobNotFoundException"},
249
- {"shape":"TooManyRequestsException"},
250
- {"shape":"InternalServerException"}
251
- ]
252
- },
253
- "DescribeSentimentDetectionJob":{
254
- "name":"DescribeSentimentDetectionJob",
255
- "http":{
256
- "method":"POST",
257
- "requestUri":"/"
258
- },
259
- "input":{"shape":"DescribeSentimentDetectionJobRequest"},
260
- "output":{"shape":"DescribeSentimentDetectionJobResponse"},
261
- "errors":[
262
- {"shape":"InvalidRequestException"},
263
- {"shape":"JobNotFoundException"},
264
- {"shape":"TooManyRequestsException"},
265
- {"shape":"InternalServerException"}
266
- ]
267
- },
268
- "DescribeTopicsDetectionJob":{
269
- "name":"DescribeTopicsDetectionJob",
270
- "http":{
271
- "method":"POST",
272
- "requestUri":"/"
273
- },
274
- "input":{"shape":"DescribeTopicsDetectionJobRequest"},
275
- "output":{"shape":"DescribeTopicsDetectionJobResponse"},
276
- "errors":[
277
- {"shape":"InvalidRequestException"},
278
- {"shape":"JobNotFoundException"},
279
- {"shape":"TooManyRequestsException"},
280
- {"shape":"InternalServerException"}
281
- ]
282
- },
283
- "DetectDominantLanguage":{
284
- "name":"DetectDominantLanguage",
285
- "http":{
286
- "method":"POST",
287
- "requestUri":"/"
288
- },
289
- "input":{"shape":"DetectDominantLanguageRequest"},
290
- "output":{"shape":"DetectDominantLanguageResponse"},
291
- "errors":[
292
- {"shape":"InvalidRequestException"},
293
- {"shape":"TextSizeLimitExceededException"},
294
- {"shape":"InternalServerException"}
295
- ]
296
- },
297
- "DetectEntities":{
298
- "name":"DetectEntities",
299
- "http":{
300
- "method":"POST",
301
- "requestUri":"/"
302
- },
303
- "input":{"shape":"DetectEntitiesRequest"},
304
- "output":{"shape":"DetectEntitiesResponse"},
305
- "errors":[
306
- {"shape":"InvalidRequestException"},
307
- {"shape":"TextSizeLimitExceededException"},
308
- {"shape":"UnsupportedLanguageException"},
309
- {"shape":"InternalServerException"}
310
- ]
311
- },
312
- "DetectKeyPhrases":{
313
- "name":"DetectKeyPhrases",
314
- "http":{
315
- "method":"POST",
316
- "requestUri":"/"
317
- },
318
- "input":{"shape":"DetectKeyPhrasesRequest"},
319
- "output":{"shape":"DetectKeyPhrasesResponse"},
320
- "errors":[
321
- {"shape":"InvalidRequestException"},
322
- {"shape":"TextSizeLimitExceededException"},
323
- {"shape":"UnsupportedLanguageException"},
324
- {"shape":"InternalServerException"}
325
- ]
326
- },
327
- "DetectSentiment":{
328
- "name":"DetectSentiment",
329
- "http":{
330
- "method":"POST",
331
- "requestUri":"/"
332
- },
333
- "input":{"shape":"DetectSentimentRequest"},
334
- "output":{"shape":"DetectSentimentResponse"},
335
- "errors":[
336
- {"shape":"InvalidRequestException"},
337
- {"shape":"TextSizeLimitExceededException"},
338
- {"shape":"UnsupportedLanguageException"},
339
- {"shape":"InternalServerException"}
340
- ]
341
- },
342
- "DetectSyntax":{
343
- "name":"DetectSyntax",
344
- "http":{
345
- "method":"POST",
346
- "requestUri":"/"
347
- },
348
- "input":{"shape":"DetectSyntaxRequest"},
349
- "output":{"shape":"DetectSyntaxResponse"},
350
- "errors":[
351
- {"shape":"InvalidRequestException"},
352
- {"shape":"TextSizeLimitExceededException"},
353
- {"shape":"UnsupportedLanguageException"},
354
- {"shape":"InternalServerException"}
355
- ]
356
- },
357
- "ListDocumentClassificationJobs":{
358
- "name":"ListDocumentClassificationJobs",
359
- "http":{
360
- "method":"POST",
361
- "requestUri":"/"
362
- },
363
- "input":{"shape":"ListDocumentClassificationJobsRequest"},
364
- "output":{"shape":"ListDocumentClassificationJobsResponse"},
365
- "errors":[
366
- {"shape":"InvalidRequestException"},
367
- {"shape":"TooManyRequestsException"},
368
- {"shape":"InvalidFilterException"},
369
- {"shape":"InternalServerException"}
370
- ]
371
- },
372
- "ListDocumentClassifiers":{
373
- "name":"ListDocumentClassifiers",
374
- "http":{
375
- "method":"POST",
376
- "requestUri":"/"
377
- },
378
- "input":{"shape":"ListDocumentClassifiersRequest"},
379
- "output":{"shape":"ListDocumentClassifiersResponse"},
380
- "errors":[
381
- {"shape":"InvalidRequestException"},
382
- {"shape":"TooManyRequestsException"},
383
- {"shape":"InvalidFilterException"},
384
- {"shape":"InternalServerException"}
385
- ]
386
- },
387
- "ListDominantLanguageDetectionJobs":{
388
- "name":"ListDominantLanguageDetectionJobs",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"ListDominantLanguageDetectionJobsRequest"},
394
- "output":{"shape":"ListDominantLanguageDetectionJobsResponse"},
395
- "errors":[
396
- {"shape":"InvalidRequestException"},
397
- {"shape":"TooManyRequestsException"},
398
- {"shape":"InvalidFilterException"},
399
- {"shape":"InternalServerException"}
400
- ]
401
- },
402
- "ListEntitiesDetectionJobs":{
403
- "name":"ListEntitiesDetectionJobs",
404
- "http":{
405
- "method":"POST",
406
- "requestUri":"/"
407
- },
408
- "input":{"shape":"ListEntitiesDetectionJobsRequest"},
409
- "output":{"shape":"ListEntitiesDetectionJobsResponse"},
410
- "errors":[
411
- {"shape":"InvalidRequestException"},
412
- {"shape":"TooManyRequestsException"},
413
- {"shape":"InvalidFilterException"},
414
- {"shape":"InternalServerException"}
415
- ]
416
- },
417
- "ListEntityRecognizers":{
418
- "name":"ListEntityRecognizers",
419
- "http":{
420
- "method":"POST",
421
- "requestUri":"/"
422
- },
423
- "input":{"shape":"ListEntityRecognizersRequest"},
424
- "output":{"shape":"ListEntityRecognizersResponse"},
425
- "errors":[
426
- {"shape":"InvalidRequestException"},
427
- {"shape":"TooManyRequestsException"},
428
- {"shape":"InvalidFilterException"},
429
- {"shape":"InternalServerException"}
430
- ]
431
- },
432
- "ListKeyPhrasesDetectionJobs":{
433
- "name":"ListKeyPhrasesDetectionJobs",
434
- "http":{
435
- "method":"POST",
436
- "requestUri":"/"
437
- },
438
- "input":{"shape":"ListKeyPhrasesDetectionJobsRequest"},
439
- "output":{"shape":"ListKeyPhrasesDetectionJobsResponse"},
440
- "errors":[
441
- {"shape":"InvalidRequestException"},
442
- {"shape":"TooManyRequestsException"},
443
- {"shape":"InvalidFilterException"},
444
- {"shape":"InternalServerException"}
445
- ]
446
- },
447
- "ListSentimentDetectionJobs":{
448
- "name":"ListSentimentDetectionJobs",
449
- "http":{
450
- "method":"POST",
451
- "requestUri":"/"
452
- },
453
- "input":{"shape":"ListSentimentDetectionJobsRequest"},
454
- "output":{"shape":"ListSentimentDetectionJobsResponse"},
455
- "errors":[
456
- {"shape":"InvalidRequestException"},
457
- {"shape":"TooManyRequestsException"},
458
- {"shape":"InvalidFilterException"},
459
- {"shape":"InternalServerException"}
460
- ]
461
- },
462
- "ListTopicsDetectionJobs":{
463
- "name":"ListTopicsDetectionJobs",
464
- "http":{
465
- "method":"POST",
466
- "requestUri":"/"
467
- },
468
- "input":{"shape":"ListTopicsDetectionJobsRequest"},
469
- "output":{"shape":"ListTopicsDetectionJobsResponse"},
470
- "errors":[
471
- {"shape":"InvalidRequestException"},
472
- {"shape":"TooManyRequestsException"},
473
- {"shape":"InvalidFilterException"},
474
- {"shape":"InternalServerException"}
475
- ]
476
- },
477
- "StartDocumentClassificationJob":{
478
- "name":"StartDocumentClassificationJob",
479
- "http":{
480
- "method":"POST",
481
- "requestUri":"/"
482
- },
483
- "input":{"shape":"StartDocumentClassificationJobRequest"},
484
- "output":{"shape":"StartDocumentClassificationJobResponse"},
485
- "errors":[
486
- {"shape":"InvalidRequestException"},
487
- {"shape":"TooManyRequestsException"},
488
- {"shape":"ResourceNotFoundException"},
489
- {"shape":"ResourceUnavailableException"},
490
- {"shape":"InternalServerException"}
491
- ]
492
- },
493
- "StartDominantLanguageDetectionJob":{
494
- "name":"StartDominantLanguageDetectionJob",
495
- "http":{
496
- "method":"POST",
497
- "requestUri":"/"
498
- },
499
- "input":{"shape":"StartDominantLanguageDetectionJobRequest"},
500
- "output":{"shape":"StartDominantLanguageDetectionJobResponse"},
501
- "errors":[
502
- {"shape":"InvalidRequestException"},
503
- {"shape":"TooManyRequestsException"},
504
- {"shape":"InternalServerException"}
505
- ]
506
- },
507
- "StartEntitiesDetectionJob":{
508
- "name":"StartEntitiesDetectionJob",
509
- "http":{
510
- "method":"POST",
511
- "requestUri":"/"
512
- },
513
- "input":{"shape":"StartEntitiesDetectionJobRequest"},
514
- "output":{"shape":"StartEntitiesDetectionJobResponse"},
515
- "errors":[
516
- {"shape":"InvalidRequestException"},
517
- {"shape":"TooManyRequestsException"},
518
- {"shape":"ResourceNotFoundException"},
519
- {"shape":"ResourceUnavailableException"},
520
- {"shape":"InternalServerException"}
521
- ]
522
- },
523
- "StartKeyPhrasesDetectionJob":{
524
- "name":"StartKeyPhrasesDetectionJob",
525
- "http":{
526
- "method":"POST",
527
- "requestUri":"/"
528
- },
529
- "input":{"shape":"StartKeyPhrasesDetectionJobRequest"},
530
- "output":{"shape":"StartKeyPhrasesDetectionJobResponse"},
531
- "errors":[
532
- {"shape":"InvalidRequestException"},
533
- {"shape":"TooManyRequestsException"},
534
- {"shape":"InternalServerException"}
535
- ]
536
- },
537
- "StartSentimentDetectionJob":{
538
- "name":"StartSentimentDetectionJob",
539
- "http":{
540
- "method":"POST",
541
- "requestUri":"/"
542
- },
543
- "input":{"shape":"StartSentimentDetectionJobRequest"},
544
- "output":{"shape":"StartSentimentDetectionJobResponse"},
545
- "errors":[
546
- {"shape":"InvalidRequestException"},
547
- {"shape":"TooManyRequestsException"},
548
- {"shape":"InternalServerException"}
549
- ]
550
- },
551
- "StartTopicsDetectionJob":{
552
- "name":"StartTopicsDetectionJob",
553
- "http":{
554
- "method":"POST",
555
- "requestUri":"/"
556
- },
557
- "input":{"shape":"StartTopicsDetectionJobRequest"},
558
- "output":{"shape":"StartTopicsDetectionJobResponse"},
559
- "errors":[
560
- {"shape":"InvalidRequestException"},
561
- {"shape":"TooManyRequestsException"},
562
- {"shape":"InternalServerException"}
563
- ]
564
- },
565
- "StopDominantLanguageDetectionJob":{
566
- "name":"StopDominantLanguageDetectionJob",
567
- "http":{
568
- "method":"POST",
569
- "requestUri":"/"
570
- },
571
- "input":{"shape":"StopDominantLanguageDetectionJobRequest"},
572
- "output":{"shape":"StopDominantLanguageDetectionJobResponse"},
573
- "errors":[
574
- {"shape":"InvalidRequestException"},
575
- {"shape":"JobNotFoundException"},
576
- {"shape":"InternalServerException"}
577
- ]
578
- },
579
- "StopEntitiesDetectionJob":{
580
- "name":"StopEntitiesDetectionJob",
581
- "http":{
582
- "method":"POST",
583
- "requestUri":"/"
584
- },
585
- "input":{"shape":"StopEntitiesDetectionJobRequest"},
586
- "output":{"shape":"StopEntitiesDetectionJobResponse"},
587
- "errors":[
588
- {"shape":"InvalidRequestException"},
589
- {"shape":"JobNotFoundException"},
590
- {"shape":"InternalServerException"}
591
- ]
592
- },
593
- "StopKeyPhrasesDetectionJob":{
594
- "name":"StopKeyPhrasesDetectionJob",
595
- "http":{
596
- "method":"POST",
597
- "requestUri":"/"
598
- },
599
- "input":{"shape":"StopKeyPhrasesDetectionJobRequest"},
600
- "output":{"shape":"StopKeyPhrasesDetectionJobResponse"},
601
- "errors":[
602
- {"shape":"InvalidRequestException"},
603
- {"shape":"JobNotFoundException"},
604
- {"shape":"InternalServerException"}
605
- ]
606
- },
607
- "StopSentimentDetectionJob":{
608
- "name":"StopSentimentDetectionJob",
609
- "http":{
610
- "method":"POST",
611
- "requestUri":"/"
612
- },
613
- "input":{"shape":"StopSentimentDetectionJobRequest"},
614
- "output":{"shape":"StopSentimentDetectionJobResponse"},
615
- "errors":[
616
- {"shape":"InvalidRequestException"},
617
- {"shape":"JobNotFoundException"},
618
- {"shape":"InternalServerException"}
619
- ]
620
- },
621
- "StopTrainingDocumentClassifier":{
622
- "name":"StopTrainingDocumentClassifier",
623
- "http":{
624
- "method":"POST",
625
- "requestUri":"/"
626
- },
627
- "input":{"shape":"StopTrainingDocumentClassifierRequest"},
628
- "output":{"shape":"StopTrainingDocumentClassifierResponse"},
629
- "errors":[
630
- {"shape":"InvalidRequestException"},
631
- {"shape":"TooManyRequestsException"},
632
- {"shape":"ResourceNotFoundException"},
633
- {"shape":"InternalServerException"}
634
- ]
635
- },
636
- "StopTrainingEntityRecognizer":{
637
- "name":"StopTrainingEntityRecognizer",
638
- "http":{
639
- "method":"POST",
640
- "requestUri":"/"
641
- },
642
- "input":{"shape":"StopTrainingEntityRecognizerRequest"},
643
- "output":{"shape":"StopTrainingEntityRecognizerResponse"},
644
- "errors":[
645
- {"shape":"InvalidRequestException"},
646
- {"shape":"TooManyRequestsException"},
647
- {"shape":"ResourceNotFoundException"},
648
- {"shape":"InternalServerException"}
649
- ]
650
- }
651
- },
652
- "shapes":{
653
- "AnyLengthString":{"type":"string"},
654
- "BatchDetectDominantLanguageItemResult":{
655
- "type":"structure",
656
- "members":{
657
- "Index":{"shape":"Integer"},
658
- "Languages":{"shape":"ListOfDominantLanguages"}
659
- }
660
- },
661
- "BatchDetectDominantLanguageRequest":{
662
- "type":"structure",
663
- "required":["TextList"],
664
- "members":{
665
- "TextList":{"shape":"StringList"}
666
- }
667
- },
668
- "BatchDetectDominantLanguageResponse":{
669
- "type":"structure",
670
- "required":[
671
- "ResultList",
672
- "ErrorList"
673
- ],
674
- "members":{
675
- "ResultList":{"shape":"ListOfDetectDominantLanguageResult"},
676
- "ErrorList":{"shape":"BatchItemErrorList"}
677
- }
678
- },
679
- "BatchDetectEntitiesItemResult":{
680
- "type":"structure",
681
- "members":{
682
- "Index":{"shape":"Integer"},
683
- "Entities":{"shape":"ListOfEntities"}
684
- }
685
- },
686
- "BatchDetectEntitiesRequest":{
687
- "type":"structure",
688
- "required":[
689
- "TextList",
690
- "LanguageCode"
691
- ],
692
- "members":{
693
- "TextList":{"shape":"StringList"},
694
- "LanguageCode":{"shape":"LanguageCode"}
695
- }
696
- },
697
- "BatchDetectEntitiesResponse":{
698
- "type":"structure",
699
- "required":[
700
- "ResultList",
701
- "ErrorList"
702
- ],
703
- "members":{
704
- "ResultList":{"shape":"ListOfDetectEntitiesResult"},
705
- "ErrorList":{"shape":"BatchItemErrorList"}
706
- }
707
- },
708
- "BatchDetectKeyPhrasesItemResult":{
709
- "type":"structure",
710
- "members":{
711
- "Index":{"shape":"Integer"},
712
- "KeyPhrases":{"shape":"ListOfKeyPhrases"}
713
- }
714
- },
715
- "BatchDetectKeyPhrasesRequest":{
716
- "type":"structure",
717
- "required":[
718
- "TextList",
719
- "LanguageCode"
720
- ],
721
- "members":{
722
- "TextList":{"shape":"StringList"},
723
- "LanguageCode":{"shape":"LanguageCode"}
724
- }
725
- },
726
- "BatchDetectKeyPhrasesResponse":{
727
- "type":"structure",
728
- "required":[
729
- "ResultList",
730
- "ErrorList"
731
- ],
732
- "members":{
733
- "ResultList":{"shape":"ListOfDetectKeyPhrasesResult"},
734
- "ErrorList":{"shape":"BatchItemErrorList"}
735
- }
736
- },
737
- "BatchDetectSentimentItemResult":{
738
- "type":"structure",
739
- "members":{
740
- "Index":{"shape":"Integer"},
741
- "Sentiment":{"shape":"SentimentType"},
742
- "SentimentScore":{"shape":"SentimentScore"}
743
- }
744
- },
745
- "BatchDetectSentimentRequest":{
746
- "type":"structure",
747
- "required":[
748
- "TextList",
749
- "LanguageCode"
750
- ],
751
- "members":{
752
- "TextList":{"shape":"StringList"},
753
- "LanguageCode":{"shape":"LanguageCode"}
754
- }
755
- },
756
- "BatchDetectSentimentResponse":{
757
- "type":"structure",
758
- "required":[
759
- "ResultList",
760
- "ErrorList"
761
- ],
762
- "members":{
763
- "ResultList":{"shape":"ListOfDetectSentimentResult"},
764
- "ErrorList":{"shape":"BatchItemErrorList"}
765
- }
766
- },
767
- "BatchDetectSyntaxItemResult":{
768
- "type":"structure",
769
- "members":{
770
- "Index":{"shape":"Integer"},
771
- "SyntaxTokens":{"shape":"ListOfSyntaxTokens"}
772
- }
773
- },
774
- "BatchDetectSyntaxRequest":{
775
- "type":"structure",
776
- "required":[
777
- "TextList",
778
- "LanguageCode"
779
- ],
780
- "members":{
781
- "TextList":{"shape":"StringList"},
782
- "LanguageCode":{"shape":"SyntaxLanguageCode"}
783
- }
784
- },
785
- "BatchDetectSyntaxResponse":{
786
- "type":"structure",
787
- "required":[
788
- "ResultList",
789
- "ErrorList"
790
- ],
791
- "members":{
792
- "ResultList":{"shape":"ListOfDetectSyntaxResult"},
793
- "ErrorList":{"shape":"BatchItemErrorList"}
794
- }
795
- },
796
- "BatchItemError":{
797
- "type":"structure",
798
- "members":{
799
- "Index":{"shape":"Integer"},
800
- "ErrorCode":{"shape":"String"},
801
- "ErrorMessage":{"shape":"String"}
802
- }
803
- },
804
- "BatchItemErrorList":{
805
- "type":"list",
806
- "member":{"shape":"BatchItemError"}
807
- },
808
- "BatchSizeLimitExceededException":{
809
- "type":"structure",
810
- "members":{
811
- "Message":{"shape":"String"}
812
- },
813
- "exception":true
814
- },
815
- "ClassifierEvaluationMetrics":{
816
- "type":"structure",
817
- "members":{
818
- "Accuracy":{"shape":"Double"},
819
- "Precision":{"shape":"Double"},
820
- "Recall":{"shape":"Double"},
821
- "F1Score":{"shape":"Double"}
822
- }
823
- },
824
- "ClassifierMetadata":{
825
- "type":"structure",
826
- "members":{
827
- "NumberOfLabels":{"shape":"Integer"},
828
- "NumberOfTrainedDocuments":{"shape":"Integer"},
829
- "NumberOfTestDocuments":{"shape":"Integer"},
830
- "EvaluationMetrics":{"shape":"ClassifierEvaluationMetrics"}
831
- }
832
- },
833
- "ClientRequestTokenString":{
834
- "type":"string",
835
- "max":64,
836
- "min":1,
837
- "pattern":"^[a-zA-Z0-9-]+$"
838
- },
839
- "ComprehendArnName":{
840
- "type":"string",
841
- "max":63,
842
- "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
843
- },
844
- "CreateDocumentClassifierRequest":{
845
- "type":"structure",
846
- "required":[
847
- "DocumentClassifierName",
848
- "DataAccessRoleArn",
849
- "InputDataConfig",
850
- "LanguageCode"
851
- ],
852
- "members":{
853
- "DocumentClassifierName":{"shape":"ComprehendArnName"},
854
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
855
- "InputDataConfig":{"shape":"DocumentClassifierInputDataConfig"},
856
- "ClientRequestToken":{
857
- "shape":"ClientRequestTokenString",
858
- "idempotencyToken":true
859
- },
860
- "LanguageCode":{"shape":"LanguageCode"}
861
- }
862
- },
863
- "CreateDocumentClassifierResponse":{
864
- "type":"structure",
865
- "members":{
866
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
867
- }
868
- },
869
- "CreateEntityRecognizerRequest":{
870
- "type":"structure",
871
- "required":[
872
- "RecognizerName",
873
- "DataAccessRoleArn",
874
- "InputDataConfig",
875
- "LanguageCode"
876
- ],
877
- "members":{
878
- "RecognizerName":{"shape":"ComprehendArnName"},
879
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
880
- "InputDataConfig":{"shape":"EntityRecognizerInputDataConfig"},
881
- "ClientRequestToken":{
882
- "shape":"ClientRequestTokenString",
883
- "idempotencyToken":true
884
- },
885
- "LanguageCode":{"shape":"LanguageCode"}
886
- }
887
- },
888
- "CreateEntityRecognizerResponse":{
889
- "type":"structure",
890
- "members":{
891
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
892
- }
893
- },
894
- "DeleteDocumentClassifierRequest":{
895
- "type":"structure",
896
- "required":["DocumentClassifierArn"],
897
- "members":{
898
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
899
- }
900
- },
901
- "DeleteDocumentClassifierResponse":{
902
- "type":"structure",
903
- "members":{
904
- }
905
- },
906
- "DeleteEntityRecognizerRequest":{
907
- "type":"structure",
908
- "required":["EntityRecognizerArn"],
909
- "members":{
910
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
911
- }
912
- },
913
- "DeleteEntityRecognizerResponse":{
914
- "type":"structure",
915
- "members":{
916
- }
917
- },
918
- "DescribeDocumentClassificationJobRequest":{
919
- "type":"structure",
920
- "required":["JobId"],
921
- "members":{
922
- "JobId":{"shape":"JobId"}
923
- }
924
- },
925
- "DescribeDocumentClassificationJobResponse":{
926
- "type":"structure",
927
- "members":{
928
- "DocumentClassificationJobProperties":{"shape":"DocumentClassificationJobProperties"}
929
- }
930
- },
931
- "DescribeDocumentClassifierRequest":{
932
- "type":"structure",
933
- "required":["DocumentClassifierArn"],
934
- "members":{
935
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
936
- }
937
- },
938
- "DescribeDocumentClassifierResponse":{
939
- "type":"structure",
940
- "members":{
941
- "DocumentClassifierProperties":{"shape":"DocumentClassifierProperties"}
942
- }
943
- },
944
- "DescribeDominantLanguageDetectionJobRequest":{
945
- "type":"structure",
946
- "required":["JobId"],
947
- "members":{
948
- "JobId":{"shape":"JobId"}
949
- }
950
- },
951
- "DescribeDominantLanguageDetectionJobResponse":{
952
- "type":"structure",
953
- "members":{
954
- "DominantLanguageDetectionJobProperties":{"shape":"DominantLanguageDetectionJobProperties"}
955
- }
956
- },
957
- "DescribeEntitiesDetectionJobRequest":{
958
- "type":"structure",
959
- "required":["JobId"],
960
- "members":{
961
- "JobId":{"shape":"JobId"}
962
- }
963
- },
964
- "DescribeEntitiesDetectionJobResponse":{
965
- "type":"structure",
966
- "members":{
967
- "EntitiesDetectionJobProperties":{"shape":"EntitiesDetectionJobProperties"}
968
- }
969
- },
970
- "DescribeEntityRecognizerRequest":{
971
- "type":"structure",
972
- "required":["EntityRecognizerArn"],
973
- "members":{
974
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
975
- }
976
- },
977
- "DescribeEntityRecognizerResponse":{
978
- "type":"structure",
979
- "members":{
980
- "EntityRecognizerProperties":{"shape":"EntityRecognizerProperties"}
981
- }
982
- },
983
- "DescribeKeyPhrasesDetectionJobRequest":{
984
- "type":"structure",
985
- "required":["JobId"],
986
- "members":{
987
- "JobId":{"shape":"JobId"}
988
- }
989
- },
990
- "DescribeKeyPhrasesDetectionJobResponse":{
991
- "type":"structure",
992
- "members":{
993
- "KeyPhrasesDetectionJobProperties":{"shape":"KeyPhrasesDetectionJobProperties"}
994
- }
995
- },
996
- "DescribeSentimentDetectionJobRequest":{
997
- "type":"structure",
998
- "required":["JobId"],
999
- "members":{
1000
- "JobId":{"shape":"JobId"}
1001
- }
1002
- },
1003
- "DescribeSentimentDetectionJobResponse":{
1004
- "type":"structure",
1005
- "members":{
1006
- "SentimentDetectionJobProperties":{"shape":"SentimentDetectionJobProperties"}
1007
- }
1008
- },
1009
- "DescribeTopicsDetectionJobRequest":{
1010
- "type":"structure",
1011
- "required":["JobId"],
1012
- "members":{
1013
- "JobId":{"shape":"JobId"}
1014
- }
1015
- },
1016
- "DescribeTopicsDetectionJobResponse":{
1017
- "type":"structure",
1018
- "members":{
1019
- "TopicsDetectionJobProperties":{"shape":"TopicsDetectionJobProperties"}
1020
- }
1021
- },
1022
- "DetectDominantLanguageRequest":{
1023
- "type":"structure",
1024
- "required":["Text"],
1025
- "members":{
1026
- "Text":{"shape":"String"}
1027
- }
1028
- },
1029
- "DetectDominantLanguageResponse":{
1030
- "type":"structure",
1031
- "members":{
1032
- "Languages":{"shape":"ListOfDominantLanguages"}
1033
- }
1034
- },
1035
- "DetectEntitiesRequest":{
1036
- "type":"structure",
1037
- "required":[
1038
- "Text",
1039
- "LanguageCode"
1040
- ],
1041
- "members":{
1042
- "Text":{"shape":"String"},
1043
- "LanguageCode":{"shape":"LanguageCode"}
1044
- }
1045
- },
1046
- "DetectEntitiesResponse":{
1047
- "type":"structure",
1048
- "members":{
1049
- "Entities":{"shape":"ListOfEntities"}
1050
- }
1051
- },
1052
- "DetectKeyPhrasesRequest":{
1053
- "type":"structure",
1054
- "required":[
1055
- "Text",
1056
- "LanguageCode"
1057
- ],
1058
- "members":{
1059
- "Text":{"shape":"String"},
1060
- "LanguageCode":{"shape":"LanguageCode"}
1061
- }
1062
- },
1063
- "DetectKeyPhrasesResponse":{
1064
- "type":"structure",
1065
- "members":{
1066
- "KeyPhrases":{"shape":"ListOfKeyPhrases"}
1067
- }
1068
- },
1069
- "DetectSentimentRequest":{
1070
- "type":"structure",
1071
- "required":[
1072
- "Text",
1073
- "LanguageCode"
1074
- ],
1075
- "members":{
1076
- "Text":{"shape":"String"},
1077
- "LanguageCode":{"shape":"LanguageCode"}
1078
- }
1079
- },
1080
- "DetectSentimentResponse":{
1081
- "type":"structure",
1082
- "members":{
1083
- "Sentiment":{"shape":"SentimentType"},
1084
- "SentimentScore":{"shape":"SentimentScore"}
1085
- }
1086
- },
1087
- "DetectSyntaxRequest":{
1088
- "type":"structure",
1089
- "required":[
1090
- "Text",
1091
- "LanguageCode"
1092
- ],
1093
- "members":{
1094
- "Text":{"shape":"String"},
1095
- "LanguageCode":{"shape":"SyntaxLanguageCode"}
1096
- }
1097
- },
1098
- "DetectSyntaxResponse":{
1099
- "type":"structure",
1100
- "members":{
1101
- "SyntaxTokens":{"shape":"ListOfSyntaxTokens"}
1102
- }
1103
- },
1104
- "DocumentClassificationJobFilter":{
1105
- "type":"structure",
1106
- "members":{
1107
- "JobName":{"shape":"JobName"},
1108
- "JobStatus":{"shape":"JobStatus"},
1109
- "SubmitTimeBefore":{"shape":"Timestamp"},
1110
- "SubmitTimeAfter":{"shape":"Timestamp"}
1111
- }
1112
- },
1113
- "DocumentClassificationJobProperties":{
1114
- "type":"structure",
1115
- "members":{
1116
- "JobId":{"shape":"JobId"},
1117
- "JobName":{"shape":"JobName"},
1118
- "JobStatus":{"shape":"JobStatus"},
1119
- "Message":{"shape":"AnyLengthString"},
1120
- "SubmitTime":{"shape":"Timestamp"},
1121
- "EndTime":{"shape":"Timestamp"},
1122
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"},
1123
- "InputDataConfig":{"shape":"InputDataConfig"},
1124
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1125
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1126
- }
1127
- },
1128
- "DocumentClassificationJobPropertiesList":{
1129
- "type":"list",
1130
- "member":{"shape":"DocumentClassificationJobProperties"}
1131
- },
1132
- "DocumentClassifierArn":{
1133
- "type":"string",
1134
- "max":256,
1135
- "pattern":"arn:aws:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:document-classifier/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1136
- },
1137
- "DocumentClassifierFilter":{
1138
- "type":"structure",
1139
- "members":{
1140
- "Status":{"shape":"ModelStatus"},
1141
- "SubmitTimeBefore":{"shape":"Timestamp"},
1142
- "SubmitTimeAfter":{"shape":"Timestamp"}
1143
- }
1144
- },
1145
- "DocumentClassifierInputDataConfig":{
1146
- "type":"structure",
1147
- "required":["S3Uri"],
1148
- "members":{
1149
- "S3Uri":{"shape":"S3Uri"}
1150
- }
1151
- },
1152
- "DocumentClassifierProperties":{
1153
- "type":"structure",
1154
- "members":{
1155
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"},
1156
- "LanguageCode":{"shape":"LanguageCode"},
1157
- "Status":{"shape":"ModelStatus"},
1158
- "Message":{"shape":"AnyLengthString"},
1159
- "SubmitTime":{"shape":"Timestamp"},
1160
- "EndTime":{"shape":"Timestamp"},
1161
- "TrainingStartTime":{"shape":"Timestamp"},
1162
- "TrainingEndTime":{"shape":"Timestamp"},
1163
- "InputDataConfig":{"shape":"DocumentClassifierInputDataConfig"},
1164
- "ClassifierMetadata":{"shape":"ClassifierMetadata"},
1165
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1166
- }
1167
- },
1168
- "DocumentClassifierPropertiesList":{
1169
- "type":"list",
1170
- "member":{"shape":"DocumentClassifierProperties"}
1171
- },
1172
- "DominantLanguage":{
1173
- "type":"structure",
1174
- "members":{
1175
- "LanguageCode":{"shape":"String"},
1176
- "Score":{"shape":"Float"}
1177
- }
1178
- },
1179
- "DominantLanguageDetectionJobFilter":{
1180
- "type":"structure",
1181
- "members":{
1182
- "JobName":{"shape":"JobName"},
1183
- "JobStatus":{"shape":"JobStatus"},
1184
- "SubmitTimeBefore":{"shape":"Timestamp"},
1185
- "SubmitTimeAfter":{"shape":"Timestamp"}
1186
- }
1187
- },
1188
- "DominantLanguageDetectionJobProperties":{
1189
- "type":"structure",
1190
- "members":{
1191
- "JobId":{"shape":"JobId"},
1192
- "JobName":{"shape":"JobName"},
1193
- "JobStatus":{"shape":"JobStatus"},
1194
- "Message":{"shape":"AnyLengthString"},
1195
- "SubmitTime":{"shape":"Timestamp"},
1196
- "EndTime":{"shape":"Timestamp"},
1197
- "InputDataConfig":{"shape":"InputDataConfig"},
1198
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1199
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1200
- }
1201
- },
1202
- "DominantLanguageDetectionJobPropertiesList":{
1203
- "type":"list",
1204
- "member":{"shape":"DominantLanguageDetectionJobProperties"}
1205
- },
1206
- "Double":{"type":"double"},
1207
- "EntitiesDetectionJobFilter":{
1208
- "type":"structure",
1209
- "members":{
1210
- "JobName":{"shape":"JobName"},
1211
- "JobStatus":{"shape":"JobStatus"},
1212
- "SubmitTimeBefore":{"shape":"Timestamp"},
1213
- "SubmitTimeAfter":{"shape":"Timestamp"}
1214
- }
1215
- },
1216
- "EntitiesDetectionJobProperties":{
1217
- "type":"structure",
1218
- "members":{
1219
- "JobId":{"shape":"JobId"},
1220
- "JobName":{"shape":"JobName"},
1221
- "JobStatus":{"shape":"JobStatus"},
1222
- "Message":{"shape":"AnyLengthString"},
1223
- "SubmitTime":{"shape":"Timestamp"},
1224
- "EndTime":{"shape":"Timestamp"},
1225
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"},
1226
- "InputDataConfig":{"shape":"InputDataConfig"},
1227
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1228
- "LanguageCode":{"shape":"LanguageCode"},
1229
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1230
- }
1231
- },
1232
- "EntitiesDetectionJobPropertiesList":{
1233
- "type":"list",
1234
- "member":{"shape":"EntitiesDetectionJobProperties"}
1235
- },
1236
- "Entity":{
1237
- "type":"structure",
1238
- "members":{
1239
- "Score":{"shape":"Float"},
1240
- "Type":{"shape":"EntityType"},
1241
- "Text":{"shape":"String"},
1242
- "BeginOffset":{"shape":"Integer"},
1243
- "EndOffset":{"shape":"Integer"}
1244
- }
1245
- },
1246
- "EntityRecognizerAnnotations":{
1247
- "type":"structure",
1248
- "required":["S3Uri"],
1249
- "members":{
1250
- "S3Uri":{"shape":"S3Uri"}
1251
- }
1252
- },
1253
- "EntityRecognizerArn":{
1254
- "type":"string",
1255
- "max":256,
1256
- "pattern":"arn:aws:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:entity-recognizer/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1257
- },
1258
- "EntityRecognizerDocuments":{
1259
- "type":"structure",
1260
- "required":["S3Uri"],
1261
- "members":{
1262
- "S3Uri":{"shape":"S3Uri"}
1263
- }
1264
- },
1265
- "EntityRecognizerEntityList":{
1266
- "type":"structure",
1267
- "required":["S3Uri"],
1268
- "members":{
1269
- "S3Uri":{"shape":"S3Uri"}
1270
- }
1271
- },
1272
- "EntityRecognizerEvaluationMetrics":{
1273
- "type":"structure",
1274
- "members":{
1275
- "Precision":{"shape":"Double"},
1276
- "Recall":{"shape":"Double"},
1277
- "F1Score":{"shape":"Double"}
1278
- }
1279
- },
1280
- "EntityRecognizerFilter":{
1281
- "type":"structure",
1282
- "members":{
1283
- "Status":{"shape":"ModelStatus"},
1284
- "SubmitTimeBefore":{"shape":"Timestamp"},
1285
- "SubmitTimeAfter":{"shape":"Timestamp"}
1286
- }
1287
- },
1288
- "EntityRecognizerInputDataConfig":{
1289
- "type":"structure",
1290
- "required":[
1291
- "EntityTypes",
1292
- "Documents"
1293
- ],
1294
- "members":{
1295
- "EntityTypes":{"shape":"EntityTypesList"},
1296
- "Documents":{"shape":"EntityRecognizerDocuments"},
1297
- "Annotations":{"shape":"EntityRecognizerAnnotations"},
1298
- "EntityList":{"shape":"EntityRecognizerEntityList"}
1299
- }
1300
- },
1301
- "EntityRecognizerMetadata":{
1302
- "type":"structure",
1303
- "members":{
1304
- "NumberOfTrainedDocuments":{"shape":"Integer"},
1305
- "NumberOfTestDocuments":{"shape":"Integer"},
1306
- "EvaluationMetrics":{"shape":"EntityRecognizerEvaluationMetrics"},
1307
- "EntityTypes":{"shape":"EntityRecognizerMetadataEntityTypesList"}
1308
- }
1309
- },
1310
- "EntityRecognizerMetadataEntityTypesList":{
1311
- "type":"list",
1312
- "member":{"shape":"EntityRecognizerMetadataEntityTypesListItem"}
1313
- },
1314
- "EntityRecognizerMetadataEntityTypesListItem":{
1315
- "type":"structure",
1316
- "members":{
1317
- "Type":{"shape":"AnyLengthString"}
1318
- }
1319
- },
1320
- "EntityRecognizerProperties":{
1321
- "type":"structure",
1322
- "members":{
1323
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"},
1324
- "LanguageCode":{"shape":"LanguageCode"},
1325
- "Status":{"shape":"ModelStatus"},
1326
- "Message":{"shape":"AnyLengthString"},
1327
- "SubmitTime":{"shape":"Timestamp"},
1328
- "EndTime":{"shape":"Timestamp"},
1329
- "TrainingStartTime":{"shape":"Timestamp"},
1330
- "TrainingEndTime":{"shape":"Timestamp"},
1331
- "InputDataConfig":{"shape":"EntityRecognizerInputDataConfig"},
1332
- "RecognizerMetadata":{"shape":"EntityRecognizerMetadata"},
1333
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1334
- }
1335
- },
1336
- "EntityRecognizerPropertiesList":{
1337
- "type":"list",
1338
- "member":{"shape":"EntityRecognizerProperties"}
1339
- },
1340
- "EntityType":{
1341
- "type":"string",
1342
- "enum":[
1343
- "PERSON",
1344
- "LOCATION",
1345
- "ORGANIZATION",
1346
- "COMMERCIAL_ITEM",
1347
- "EVENT",
1348
- "DATE",
1349
- "QUANTITY",
1350
- "TITLE",
1351
- "OTHER"
1352
- ]
1353
- },
1354
- "EntityTypeName":{
1355
- "type":"string",
1356
- "max":64,
1357
- "pattern":"[_A-Z0-9]+"
1358
- },
1359
- "EntityTypesList":{
1360
- "type":"list",
1361
- "member":{"shape":"EntityTypesListItem"}
1362
- },
1363
- "EntityTypesListItem":{
1364
- "type":"structure",
1365
- "required":["Type"],
1366
- "members":{
1367
- "Type":{"shape":"EntityTypeName"}
1368
- }
1369
- },
1370
- "Float":{"type":"float"},
1371
- "IamRoleArn":{
1372
- "type":"string",
1373
- "max":2048,
1374
- "min":20,
1375
- "pattern":"arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+"
1376
- },
1377
- "InputDataConfig":{
1378
- "type":"structure",
1379
- "required":["S3Uri"],
1380
- "members":{
1381
- "S3Uri":{"shape":"S3Uri"},
1382
- "InputFormat":{"shape":"InputFormat"}
1383
- }
1384
- },
1385
- "InputFormat":{
1386
- "type":"string",
1387
- "enum":[
1388
- "ONE_DOC_PER_FILE",
1389
- "ONE_DOC_PER_LINE"
1390
- ]
1391
- },
1392
- "Integer":{"type":"integer"},
1393
- "InternalServerException":{
1394
- "type":"structure",
1395
- "members":{
1396
- "Message":{"shape":"String"}
1397
- },
1398
- "exception":true,
1399
- "fault":true
1400
- },
1401
- "InvalidFilterException":{
1402
- "type":"structure",
1403
- "members":{
1404
- "Message":{"shape":"String"}
1405
- },
1406
- "exception":true
1407
- },
1408
- "InvalidRequestException":{
1409
- "type":"structure",
1410
- "members":{
1411
- "Message":{"shape":"String"}
1412
- },
1413
- "exception":true
1414
- },
1415
- "JobId":{
1416
- "type":"string",
1417
- "max":32,
1418
- "min":1,
1419
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
1420
- },
1421
- "JobName":{
1422
- "type":"string",
1423
- "max":256,
1424
- "min":1,
1425
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
1426
- },
1427
- "JobNotFoundException":{
1428
- "type":"structure",
1429
- "members":{
1430
- "Message":{"shape":"String"}
1431
- },
1432
- "exception":true
1433
- },
1434
- "JobStatus":{
1435
- "type":"string",
1436
- "enum":[
1437
- "SUBMITTED",
1438
- "IN_PROGRESS",
1439
- "COMPLETED",
1440
- "FAILED",
1441
- "STOP_REQUESTED",
1442
- "STOPPED"
1443
- ]
1444
- },
1445
- "KeyPhrase":{
1446
- "type":"structure",
1447
- "members":{
1448
- "Score":{"shape":"Float"},
1449
- "Text":{"shape":"String"},
1450
- "BeginOffset":{"shape":"Integer"},
1451
- "EndOffset":{"shape":"Integer"}
1452
- }
1453
- },
1454
- "KeyPhrasesDetectionJobFilter":{
1455
- "type":"structure",
1456
- "members":{
1457
- "JobName":{"shape":"JobName"},
1458
- "JobStatus":{"shape":"JobStatus"},
1459
- "SubmitTimeBefore":{"shape":"Timestamp"},
1460
- "SubmitTimeAfter":{"shape":"Timestamp"}
1461
- }
1462
- },
1463
- "KeyPhrasesDetectionJobProperties":{
1464
- "type":"structure",
1465
- "members":{
1466
- "JobId":{"shape":"JobId"},
1467
- "JobName":{"shape":"JobName"},
1468
- "JobStatus":{"shape":"JobStatus"},
1469
- "Message":{"shape":"AnyLengthString"},
1470
- "SubmitTime":{"shape":"Timestamp"},
1471
- "EndTime":{"shape":"Timestamp"},
1472
- "InputDataConfig":{"shape":"InputDataConfig"},
1473
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1474
- "LanguageCode":{"shape":"LanguageCode"},
1475
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1476
- }
1477
- },
1478
- "KeyPhrasesDetectionJobPropertiesList":{
1479
- "type":"list",
1480
- "member":{"shape":"KeyPhrasesDetectionJobProperties"}
1481
- },
1482
- "LanguageCode":{
1483
- "type":"string",
1484
- "enum":[
1485
- "en",
1486
- "es",
1487
- "fr",
1488
- "de",
1489
- "it",
1490
- "pt"
1491
- ]
1492
- },
1493
- "ListDocumentClassificationJobsRequest":{
1494
- "type":"structure",
1495
- "members":{
1496
- "Filter":{"shape":"DocumentClassificationJobFilter"},
1497
- "NextToken":{"shape":"String"},
1498
- "MaxResults":{"shape":"MaxResultsInteger"}
1499
- }
1500
- },
1501
- "ListDocumentClassificationJobsResponse":{
1502
- "type":"structure",
1503
- "members":{
1504
- "DocumentClassificationJobPropertiesList":{"shape":"DocumentClassificationJobPropertiesList"},
1505
- "NextToken":{"shape":"String"}
1506
- }
1507
- },
1508
- "ListDocumentClassifiersRequest":{
1509
- "type":"structure",
1510
- "members":{
1511
- "Filter":{"shape":"DocumentClassifierFilter"},
1512
- "NextToken":{"shape":"String"},
1513
- "MaxResults":{"shape":"MaxResultsInteger"}
1514
- }
1515
- },
1516
- "ListDocumentClassifiersResponse":{
1517
- "type":"structure",
1518
- "members":{
1519
- "DocumentClassifierPropertiesList":{"shape":"DocumentClassifierPropertiesList"},
1520
- "NextToken":{"shape":"String"}
1521
- }
1522
- },
1523
- "ListDominantLanguageDetectionJobsRequest":{
1524
- "type":"structure",
1525
- "members":{
1526
- "Filter":{"shape":"DominantLanguageDetectionJobFilter"},
1527
- "NextToken":{"shape":"String"},
1528
- "MaxResults":{"shape":"MaxResultsInteger"}
1529
- }
1530
- },
1531
- "ListDominantLanguageDetectionJobsResponse":{
1532
- "type":"structure",
1533
- "members":{
1534
- "DominantLanguageDetectionJobPropertiesList":{"shape":"DominantLanguageDetectionJobPropertiesList"},
1535
- "NextToken":{"shape":"String"}
1536
- }
1537
- },
1538
- "ListEntitiesDetectionJobsRequest":{
1539
- "type":"structure",
1540
- "members":{
1541
- "Filter":{"shape":"EntitiesDetectionJobFilter"},
1542
- "NextToken":{"shape":"String"},
1543
- "MaxResults":{"shape":"MaxResultsInteger"}
1544
- }
1545
- },
1546
- "ListEntitiesDetectionJobsResponse":{
1547
- "type":"structure",
1548
- "members":{
1549
- "EntitiesDetectionJobPropertiesList":{"shape":"EntitiesDetectionJobPropertiesList"},
1550
- "NextToken":{"shape":"String"}
1551
- }
1552
- },
1553
- "ListEntityRecognizersRequest":{
1554
- "type":"structure",
1555
- "members":{
1556
- "Filter":{"shape":"EntityRecognizerFilter"},
1557
- "NextToken":{"shape":"String"},
1558
- "MaxResults":{"shape":"MaxResultsInteger"}
1559
- }
1560
- },
1561
- "ListEntityRecognizersResponse":{
1562
- "type":"structure",
1563
- "members":{
1564
- "EntityRecognizerPropertiesList":{"shape":"EntityRecognizerPropertiesList"},
1565
- "NextToken":{"shape":"String"}
1566
- }
1567
- },
1568
- "ListKeyPhrasesDetectionJobsRequest":{
1569
- "type":"structure",
1570
- "members":{
1571
- "Filter":{"shape":"KeyPhrasesDetectionJobFilter"},
1572
- "NextToken":{"shape":"String"},
1573
- "MaxResults":{"shape":"MaxResultsInteger"}
1574
- }
1575
- },
1576
- "ListKeyPhrasesDetectionJobsResponse":{
1577
- "type":"structure",
1578
- "members":{
1579
- "KeyPhrasesDetectionJobPropertiesList":{"shape":"KeyPhrasesDetectionJobPropertiesList"},
1580
- "NextToken":{"shape":"String"}
1581
- }
1582
- },
1583
- "ListOfDetectDominantLanguageResult":{
1584
- "type":"list",
1585
- "member":{"shape":"BatchDetectDominantLanguageItemResult"}
1586
- },
1587
- "ListOfDetectEntitiesResult":{
1588
- "type":"list",
1589
- "member":{"shape":"BatchDetectEntitiesItemResult"}
1590
- },
1591
- "ListOfDetectKeyPhrasesResult":{
1592
- "type":"list",
1593
- "member":{"shape":"BatchDetectKeyPhrasesItemResult"}
1594
- },
1595
- "ListOfDetectSentimentResult":{
1596
- "type":"list",
1597
- "member":{"shape":"BatchDetectSentimentItemResult"}
1598
- },
1599
- "ListOfDetectSyntaxResult":{
1600
- "type":"list",
1601
- "member":{"shape":"BatchDetectSyntaxItemResult"}
1602
- },
1603
- "ListOfDominantLanguages":{
1604
- "type":"list",
1605
- "member":{"shape":"DominantLanguage"}
1606
- },
1607
- "ListOfEntities":{
1608
- "type":"list",
1609
- "member":{"shape":"Entity"}
1610
- },
1611
- "ListOfKeyPhrases":{
1612
- "type":"list",
1613
- "member":{"shape":"KeyPhrase"}
1614
- },
1615
- "ListOfSyntaxTokens":{
1616
- "type":"list",
1617
- "member":{"shape":"SyntaxToken"}
1618
- },
1619
- "ListSentimentDetectionJobsRequest":{
1620
- "type":"structure",
1621
- "members":{
1622
- "Filter":{"shape":"SentimentDetectionJobFilter"},
1623
- "NextToken":{"shape":"String"},
1624
- "MaxResults":{"shape":"MaxResultsInteger"}
1625
- }
1626
- },
1627
- "ListSentimentDetectionJobsResponse":{
1628
- "type":"structure",
1629
- "members":{
1630
- "SentimentDetectionJobPropertiesList":{"shape":"SentimentDetectionJobPropertiesList"},
1631
- "NextToken":{"shape":"String"}
1632
- }
1633
- },
1634
- "ListTopicsDetectionJobsRequest":{
1635
- "type":"structure",
1636
- "members":{
1637
- "Filter":{"shape":"TopicsDetectionJobFilter"},
1638
- "NextToken":{"shape":"String"},
1639
- "MaxResults":{"shape":"MaxResultsInteger"}
1640
- }
1641
- },
1642
- "ListTopicsDetectionJobsResponse":{
1643
- "type":"structure",
1644
- "members":{
1645
- "TopicsDetectionJobPropertiesList":{"shape":"TopicsDetectionJobPropertiesList"},
1646
- "NextToken":{"shape":"String"}
1647
- }
1648
- },
1649
- "MaxResultsInteger":{
1650
- "type":"integer",
1651
- "max":500,
1652
- "min":1
1653
- },
1654
- "ModelStatus":{
1655
- "type":"string",
1656
- "enum":[
1657
- "SUBMITTED",
1658
- "TRAINING",
1659
- "DELETING",
1660
- "STOP_REQUESTED",
1661
- "STOPPED",
1662
- "IN_ERROR",
1663
- "TRAINED"
1664
- ]
1665
- },
1666
- "NumberOfTopicsInteger":{
1667
- "type":"integer",
1668
- "max":100,
1669
- "min":1
1670
- },
1671
- "OutputDataConfig":{
1672
- "type":"structure",
1673
- "required":["S3Uri"],
1674
- "members":{
1675
- "S3Uri":{"shape":"S3Uri"}
1676
- }
1677
- },
1678
- "PartOfSpeechTag":{
1679
- "type":"structure",
1680
- "members":{
1681
- "Tag":{"shape":"PartOfSpeechTagType"},
1682
- "Score":{"shape":"Float"}
1683
- }
1684
- },
1685
- "PartOfSpeechTagType":{
1686
- "type":"string",
1687
- "enum":[
1688
- "ADJ",
1689
- "ADP",
1690
- "ADV",
1691
- "AUX",
1692
- "CONJ",
1693
- "CCONJ",
1694
- "DET",
1695
- "INTJ",
1696
- "NOUN",
1697
- "NUM",
1698
- "O",
1699
- "PART",
1700
- "PRON",
1701
- "PROPN",
1702
- "PUNCT",
1703
- "SCONJ",
1704
- "SYM",
1705
- "VERB"
1706
- ]
1707
- },
1708
- "ResourceInUseException":{
1709
- "type":"structure",
1710
- "members":{
1711
- "Message":{"shape":"String"}
1712
- },
1713
- "exception":true
1714
- },
1715
- "ResourceLimitExceededException":{
1716
- "type":"structure",
1717
- "members":{
1718
- "Message":{"shape":"String"}
1719
- },
1720
- "exception":true
1721
- },
1722
- "ResourceNotFoundException":{
1723
- "type":"structure",
1724
- "members":{
1725
- "Message":{"shape":"String"}
1726
- },
1727
- "exception":true
1728
- },
1729
- "ResourceUnavailableException":{
1730
- "type":"structure",
1731
- "members":{
1732
- "Message":{"shape":"String"}
1733
- },
1734
- "exception":true
1735
- },
1736
- "S3Uri":{
1737
- "type":"string",
1738
- "max":1024,
1739
- "pattern":"s3://[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9](/.*)?"
1740
- },
1741
- "SentimentDetectionJobFilter":{
1742
- "type":"structure",
1743
- "members":{
1744
- "JobName":{"shape":"JobName"},
1745
- "JobStatus":{"shape":"JobStatus"},
1746
- "SubmitTimeBefore":{"shape":"Timestamp"},
1747
- "SubmitTimeAfter":{"shape":"Timestamp"}
1748
- }
1749
- },
1750
- "SentimentDetectionJobProperties":{
1751
- "type":"structure",
1752
- "members":{
1753
- "JobId":{"shape":"JobId"},
1754
- "JobName":{"shape":"JobName"},
1755
- "JobStatus":{"shape":"JobStatus"},
1756
- "Message":{"shape":"AnyLengthString"},
1757
- "SubmitTime":{"shape":"Timestamp"},
1758
- "EndTime":{"shape":"Timestamp"},
1759
- "InputDataConfig":{"shape":"InputDataConfig"},
1760
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1761
- "LanguageCode":{"shape":"LanguageCode"},
1762
- "DataAccessRoleArn":{"shape":"IamRoleArn"}
1763
- }
1764
- },
1765
- "SentimentDetectionJobPropertiesList":{
1766
- "type":"list",
1767
- "member":{"shape":"SentimentDetectionJobProperties"}
1768
- },
1769
- "SentimentScore":{
1770
- "type":"structure",
1771
- "members":{
1772
- "Positive":{"shape":"Float"},
1773
- "Negative":{"shape":"Float"},
1774
- "Neutral":{"shape":"Float"},
1775
- "Mixed":{"shape":"Float"}
1776
- }
1777
- },
1778
- "SentimentType":{
1779
- "type":"string",
1780
- "enum":[
1781
- "POSITIVE",
1782
- "NEGATIVE",
1783
- "NEUTRAL",
1784
- "MIXED"
1785
- ]
1786
- },
1787
- "StartDocumentClassificationJobRequest":{
1788
- "type":"structure",
1789
- "required":[
1790
- "DocumentClassifierArn",
1791
- "InputDataConfig",
1792
- "OutputDataConfig",
1793
- "DataAccessRoleArn"
1794
- ],
1795
- "members":{
1796
- "JobName":{"shape":"JobName"},
1797
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"},
1798
- "InputDataConfig":{"shape":"InputDataConfig"},
1799
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1800
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1801
- "ClientRequestToken":{
1802
- "shape":"ClientRequestTokenString",
1803
- "idempotencyToken":true
1804
- }
1805
- }
1806
- },
1807
- "StartDocumentClassificationJobResponse":{
1808
- "type":"structure",
1809
- "members":{
1810
- "JobId":{"shape":"JobId"},
1811
- "JobStatus":{"shape":"JobStatus"}
1812
- }
1813
- },
1814
- "StartDominantLanguageDetectionJobRequest":{
1815
- "type":"structure",
1816
- "required":[
1817
- "InputDataConfig",
1818
- "OutputDataConfig",
1819
- "DataAccessRoleArn"
1820
- ],
1821
- "members":{
1822
- "InputDataConfig":{"shape":"InputDataConfig"},
1823
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1824
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1825
- "JobName":{"shape":"JobName"},
1826
- "ClientRequestToken":{
1827
- "shape":"ClientRequestTokenString",
1828
- "idempotencyToken":true
1829
- }
1830
- }
1831
- },
1832
- "StartDominantLanguageDetectionJobResponse":{
1833
- "type":"structure",
1834
- "members":{
1835
- "JobId":{"shape":"JobId"},
1836
- "JobStatus":{"shape":"JobStatus"}
1837
- }
1838
- },
1839
- "StartEntitiesDetectionJobRequest":{
1840
- "type":"structure",
1841
- "required":[
1842
- "InputDataConfig",
1843
- "OutputDataConfig",
1844
- "DataAccessRoleArn",
1845
- "LanguageCode"
1846
- ],
1847
- "members":{
1848
- "InputDataConfig":{"shape":"InputDataConfig"},
1849
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1850
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1851
- "JobName":{"shape":"JobName"},
1852
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"},
1853
- "LanguageCode":{"shape":"LanguageCode"},
1854
- "ClientRequestToken":{
1855
- "shape":"ClientRequestTokenString",
1856
- "idempotencyToken":true
1857
- }
1858
- }
1859
- },
1860
- "StartEntitiesDetectionJobResponse":{
1861
- "type":"structure",
1862
- "members":{
1863
- "JobId":{"shape":"JobId"},
1864
- "JobStatus":{"shape":"JobStatus"}
1865
- }
1866
- },
1867
- "StartKeyPhrasesDetectionJobRequest":{
1868
- "type":"structure",
1869
- "required":[
1870
- "InputDataConfig",
1871
- "OutputDataConfig",
1872
- "DataAccessRoleArn",
1873
- "LanguageCode"
1874
- ],
1875
- "members":{
1876
- "InputDataConfig":{"shape":"InputDataConfig"},
1877
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1878
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1879
- "JobName":{"shape":"JobName"},
1880
- "LanguageCode":{"shape":"LanguageCode"},
1881
- "ClientRequestToken":{
1882
- "shape":"ClientRequestTokenString",
1883
- "idempotencyToken":true
1884
- }
1885
- }
1886
- },
1887
- "StartKeyPhrasesDetectionJobResponse":{
1888
- "type":"structure",
1889
- "members":{
1890
- "JobId":{"shape":"JobId"},
1891
- "JobStatus":{"shape":"JobStatus"}
1892
- }
1893
- },
1894
- "StartSentimentDetectionJobRequest":{
1895
- "type":"structure",
1896
- "required":[
1897
- "InputDataConfig",
1898
- "OutputDataConfig",
1899
- "DataAccessRoleArn",
1900
- "LanguageCode"
1901
- ],
1902
- "members":{
1903
- "InputDataConfig":{"shape":"InputDataConfig"},
1904
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1905
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1906
- "JobName":{"shape":"JobName"},
1907
- "LanguageCode":{"shape":"LanguageCode"},
1908
- "ClientRequestToken":{
1909
- "shape":"ClientRequestTokenString",
1910
- "idempotencyToken":true
1911
- }
1912
- }
1913
- },
1914
- "StartSentimentDetectionJobResponse":{
1915
- "type":"structure",
1916
- "members":{
1917
- "JobId":{"shape":"JobId"},
1918
- "JobStatus":{"shape":"JobStatus"}
1919
- }
1920
- },
1921
- "StartTopicsDetectionJobRequest":{
1922
- "type":"structure",
1923
- "required":[
1924
- "InputDataConfig",
1925
- "OutputDataConfig",
1926
- "DataAccessRoleArn"
1927
- ],
1928
- "members":{
1929
- "InputDataConfig":{"shape":"InputDataConfig"},
1930
- "OutputDataConfig":{"shape":"OutputDataConfig"},
1931
- "DataAccessRoleArn":{"shape":"IamRoleArn"},
1932
- "JobName":{"shape":"JobName"},
1933
- "NumberOfTopics":{"shape":"NumberOfTopicsInteger"},
1934
- "ClientRequestToken":{
1935
- "shape":"ClientRequestTokenString",
1936
- "idempotencyToken":true
1937
- }
1938
- }
1939
- },
1940
- "StartTopicsDetectionJobResponse":{
1941
- "type":"structure",
1942
- "members":{
1943
- "JobId":{"shape":"JobId"},
1944
- "JobStatus":{"shape":"JobStatus"}
1945
- }
1946
- },
1947
- "StopDominantLanguageDetectionJobRequest":{
1948
- "type":"structure",
1949
- "required":["JobId"],
1950
- "members":{
1951
- "JobId":{"shape":"JobId"}
1952
- }
1953
- },
1954
- "StopDominantLanguageDetectionJobResponse":{
1955
- "type":"structure",
1956
- "members":{
1957
- "JobId":{"shape":"JobId"},
1958
- "JobStatus":{"shape":"JobStatus"}
1959
- }
1960
- },
1961
- "StopEntitiesDetectionJobRequest":{
1962
- "type":"structure",
1963
- "required":["JobId"],
1964
- "members":{
1965
- "JobId":{"shape":"JobId"}
1966
- }
1967
- },
1968
- "StopEntitiesDetectionJobResponse":{
1969
- "type":"structure",
1970
- "members":{
1971
- "JobId":{"shape":"JobId"},
1972
- "JobStatus":{"shape":"JobStatus"}
1973
- }
1974
- },
1975
- "StopKeyPhrasesDetectionJobRequest":{
1976
- "type":"structure",
1977
- "required":["JobId"],
1978
- "members":{
1979
- "JobId":{"shape":"JobId"}
1980
- }
1981
- },
1982
- "StopKeyPhrasesDetectionJobResponse":{
1983
- "type":"structure",
1984
- "members":{
1985
- "JobId":{"shape":"JobId"},
1986
- "JobStatus":{"shape":"JobStatus"}
1987
- }
1988
- },
1989
- "StopSentimentDetectionJobRequest":{
1990
- "type":"structure",
1991
- "required":["JobId"],
1992
- "members":{
1993
- "JobId":{"shape":"JobId"}
1994
- }
1995
- },
1996
- "StopSentimentDetectionJobResponse":{
1997
- "type":"structure",
1998
- "members":{
1999
- "JobId":{"shape":"JobId"},
2000
- "JobStatus":{"shape":"JobStatus"}
2001
- }
2002
- },
2003
- "StopTrainingDocumentClassifierRequest":{
2004
- "type":"structure",
2005
- "required":["DocumentClassifierArn"],
2006
- "members":{
2007
- "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
2008
- }
2009
- },
2010
- "StopTrainingDocumentClassifierResponse":{
2011
- "type":"structure",
2012
- "members":{
2013
- }
2014
- },
2015
- "StopTrainingEntityRecognizerRequest":{
2016
- "type":"structure",
2017
- "required":["EntityRecognizerArn"],
2018
- "members":{
2019
- "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
2020
- }
2021
- },
2022
- "StopTrainingEntityRecognizerResponse":{
2023
- "type":"structure",
2024
- "members":{
2025
- }
2026
- },
2027
- "String":{
2028
- "type":"string",
2029
- "min":1
2030
- },
2031
- "StringList":{
2032
- "type":"list",
2033
- "member":{"shape":"String"}
2034
- },
2035
- "SyntaxLanguageCode":{
2036
- "type":"string",
2037
- "enum":[
2038
- "en",
2039
- "es",
2040
- "fr",
2041
- "de",
2042
- "it",
2043
- "pt"
2044
- ]
2045
- },
2046
- "SyntaxToken":{
2047
- "type":"structure",
2048
- "members":{
2049
- "TokenId":{"shape":"Integer"},
2050
- "Text":{"shape":"String"},
2051
- "BeginOffset":{"shape":"Integer"},
2052
- "EndOffset":{"shape":"Integer"},
2053
- "PartOfSpeech":{"shape":"PartOfSpeechTag"}
2054
- }
2055
- },
2056
- "TextSizeLimitExceededException":{
2057
- "type":"structure",
2058
- "members":{
2059
- "Message":{"shape":"String"}
2060
- },
2061
- "exception":true
2062
- },
2063
- "Timestamp":{"type":"timestamp"},
2064
- "TooManyRequestsException":{
2065
- "type":"structure",
2066
- "members":{
2067
- "Message":{"shape":"String"}
2068
- },
2069
- "exception":true
2070
- },
2071
- "TopicsDetectionJobFilter":{
2072
- "type":"structure",
2073
- "members":{
2074
- "JobName":{"shape":"JobName"},
2075
- "JobStatus":{"shape":"JobStatus"},
2076
- "SubmitTimeBefore":{"shape":"Timestamp"},
2077
- "SubmitTimeAfter":{"shape":"Timestamp"}
2078
- }
2079
- },
2080
- "TopicsDetectionJobProperties":{
2081
- "type":"structure",
2082
- "members":{
2083
- "JobId":{"shape":"JobId"},
2084
- "JobName":{"shape":"JobName"},
2085
- "JobStatus":{"shape":"JobStatus"},
2086
- "Message":{"shape":"AnyLengthString"},
2087
- "SubmitTime":{"shape":"Timestamp"},
2088
- "EndTime":{"shape":"Timestamp"},
2089
- "InputDataConfig":{"shape":"InputDataConfig"},
2090
- "OutputDataConfig":{"shape":"OutputDataConfig"},
2091
- "NumberOfTopics":{"shape":"Integer"}
2092
- }
2093
- },
2094
- "TopicsDetectionJobPropertiesList":{
2095
- "type":"list",
2096
- "member":{"shape":"TopicsDetectionJobProperties"}
2097
- },
2098
- "UnsupportedLanguageException":{
2099
- "type":"structure",
2100
- "members":{
2101
- "Message":{"shape":"String"}
2102
- },
2103
- "exception":true
2104
- }
2105
- }
2106
- }