aws-sdk-core 2.11.502 → 3.94.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1306) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -584
  4. data/lib/aws-sdk-core/arn.rb +77 -0
  5. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  6. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +102 -0
  7. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  8. data/lib/aws-sdk-core/binary.rb +6 -0
  9. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  11. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  12. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  13. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  14. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  15. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  17. data/lib/aws-sdk-core/client_stubs.rb +20 -16
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +88 -32
  20. data/lib/aws-sdk-core/deprecations.rb +16 -10
  21. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  22. data/lib/aws-sdk-core/errors.rb +167 -26
  23. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  24. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  25. data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
  26. data/lib/aws-sdk-core/json.rb +17 -19
  27. data/lib/aws-sdk-core/json/builder.rb +4 -2
  28. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  29. data/lib/aws-sdk-core/json/handler.rb +22 -3
  30. data/lib/aws-sdk-core/json/parser.rb +1 -1
  31. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  32. data/lib/aws-sdk-core/log/param_filter.rb +6 -5
  33. data/lib/aws-sdk-core/pageable_response.rb +35 -20
  34. data/lib/aws-sdk-core/pager.rb +30 -25
  35. data/lib/aws-sdk-core/param_converter.rb +3 -3
  36. data/lib/aws-sdk-core/param_validator.rb +58 -25
  37. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  38. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  39. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  40. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  41. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +281 -0
  42. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  43. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  44. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +44 -51
  45. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  46. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  47. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  48. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  49. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  50. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  51. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  52. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  53. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  54. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  55. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  56. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  57. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
  58. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  59. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +137 -0
  60. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +98 -0
  61. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +142 -0
  62. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +57 -0
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +332 -98
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +152 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +36 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +51 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  80. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +139 -96
  86. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +70 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  99. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  105. data/lib/aws-sdk-sts.rb +48 -0
  106. data/lib/aws-sdk-sts/client.rb +2210 -0
  107. data/lib/aws-sdk-sts/client_api.rb +336 -0
  108. data/lib/aws-sdk-sts/customizations.rb +2 -0
  109. data/lib/aws-sdk-sts/errors.rb +164 -0
  110. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  111. data/lib/aws-sdk-sts/presigner.rb +67 -0
  112. data/lib/aws-sdk-sts/resource.rb +24 -0
  113. data/lib/aws-sdk-sts/types.rb +1504 -0
  114. data/lib/seahorse.rb +60 -60
  115. data/lib/seahorse/client/async_base.rb +50 -0
  116. data/lib/seahorse/client/async_response.rb +62 -0
  117. data/lib/seahorse/client/base.rb +5 -9
  118. data/lib/seahorse/client/configuration.rb +4 -2
  119. data/lib/seahorse/client/h2/connection.rb +246 -0
  120. data/lib/seahorse/client/h2/handler.rb +151 -0
  121. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  122. data/lib/seahorse/client/http/async_response.rb +42 -0
  123. data/lib/seahorse/client/http/response.rb +10 -5
  124. data/lib/seahorse/client/logging/formatter.rb +6 -2
  125. data/lib/seahorse/client/logging/handler.rb +2 -0
  126. data/lib/seahorse/client/net_http/connection_pool.rb +35 -24
  127. data/lib/seahorse/client/net_http/handler.rb +12 -1
  128. data/lib/seahorse/client/net_http/patches.rb +9 -1
  129. data/lib/seahorse/client/networking_error.rb +28 -0
  130. data/lib/seahorse/client/plugin.rb +67 -6
  131. data/lib/seahorse/client/plugins/content_length.rb +5 -2
  132. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  133. data/lib/seahorse/client/plugins/h2.rb +64 -0
  134. data/lib/seahorse/client/plugins/logging.rb +17 -19
  135. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  136. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  137. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  138. data/lib/seahorse/client/request_context.rb +5 -0
  139. data/lib/seahorse/client/response.rb +3 -5
  140. data/lib/seahorse/model/api.rb +33 -0
  141. data/lib/seahorse/model/authorizer.rb +21 -0
  142. data/lib/seahorse/model/operation.rb +11 -0
  143. data/lib/seahorse/model/shapes.rb +44 -2
  144. data/lib/seahorse/util.rb +1 -22
  145. metadata +110 -1176
  146. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  147. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  148. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  149. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1195
  150. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  151. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  152. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  153. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  154. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  155. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  156. data/apis/acm/2015-12-08/api-2.json +0 -872
  157. data/apis/acm/2015-12-08/examples-1.json +0 -5
  158. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  159. data/apis/acm/2015-12-08/smoke.json +0 -18
  160. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  161. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  162. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  163. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  164. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  165. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  166. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  167. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  168. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  169. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  170. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  171. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  172. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  173. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6981
  174. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  175. data/apis/appconfig/2019-10-09/api-2.json +0 -1428
  176. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  177. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  178. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -791
  179. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  180. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  181. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  182. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  183. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  184. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  185. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  186. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  187. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  188. data/apis/appmesh/2019-01-25/api-2.json +0 -3756
  189. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  190. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  191. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  192. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  193. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  194. data/apis/appstream/2016-12-01/smoke.json +0 -11
  195. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  196. data/apis/appsync/2017-07-25/api-2.json +0 -2288
  197. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  198. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  199. data/apis/athena/2017-05-18/api-2.json +0 -989
  200. data/apis/athena/2017-05-18/examples-1.json +0 -5
  201. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  202. data/apis/athena/2017-05-18/smoke.json +0 -11
  203. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  204. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  205. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  206. data/apis/autoscaling/2011-01-01/api-2.json +0 -2467
  207. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  208. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  209. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  210. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  211. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  212. data/apis/backup/2018-11-15/api-2.json +0 -2345
  213. data/apis/backup/2018-11-15/examples-1.json +0 -5
  214. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  215. data/apis/batch/2016-08-10/api-2.json +0 -1137
  216. data/apis/batch/2016-08-10/examples-1.json +0 -589
  217. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  218. data/apis/batch/2016-08-10/smoke.json +0 -11
  219. data/apis/budgets/2016-10-20/api-2.json +0 -830
  220. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  221. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  222. data/apis/ce/2017-10-25/api-2.json +0 -1722
  223. data/apis/ce/2017-10-25/examples-1.json +0 -5
  224. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  225. data/apis/chime/2018-05-01/api-2.json +0 -5506
  226. data/apis/chime/2018-05-01/examples-1.json +0 -5
  227. data/apis/chime/2018-05-01/paginators-1.json +0 -64
  228. data/apis/cloud9/2017-09-23/api-2.json +0 -674
  229. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  230. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  234. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  235. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  236. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  237. data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
  238. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  239. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  240. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  241. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  242. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  243. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  244. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  248. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  251. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  252. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  255. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  259. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  262. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  263. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  264. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  265. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  266. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  267. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  268. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  269. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  270. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  271. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  272. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  273. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  274. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  276. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  279. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  280. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  281. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  282. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  283. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  284. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  285. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  286. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  287. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  288. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  289. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  290. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  291. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  292. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  293. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  294. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  295. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  296. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  297. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  298. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  299. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  300. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  301. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  302. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  303. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  304. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  305. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  306. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  307. data/apis/codebuild/2016-10-06/api-2.json +0 -1910
  308. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  309. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  310. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  311. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  312. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  313. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  314. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  315. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  316. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  317. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  318. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  319. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  320. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -820
  321. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  322. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  323. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -801
  324. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  325. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -15
  326. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  327. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  328. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  329. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  330. data/apis/codestar-connections/2019-12-01/api-2.json +0 -315
  331. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  332. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  333. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  334. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  335. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  336. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  337. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  338. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  339. data/apis/codestar/2017-04-19/smoke.json +0 -11
  340. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  341. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  342. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  343. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5450
  344. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  345. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  346. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  347. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  348. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  349. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  350. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  351. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1209
  352. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  353. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  354. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  355. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  356. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  357. data/apis/config/2014-11-12/api-2.json +0 -4379
  358. data/apis/config/2014-11-12/examples-1.json +0 -5
  359. data/apis/config/2014-11-12/paginators-1.json +0 -26
  360. data/apis/config/2014-11-12/smoke.json +0 -19
  361. data/apis/connect/2017-08-08/api-2.json +0 -2139
  362. data/apis/connect/2017-08-08/examples-1.json +0 -5
  363. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  364. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  365. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  366. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  367. data/apis/cur/2017-01-06/api-2.json +0 -277
  368. data/apis/cur/2017-01-06/examples-1.json +0 -102
  369. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  370. data/apis/cur/2017-01-06/smoke.json +0 -11
  371. data/apis/dataexchange/2017-07-25/api-2.json +0 -2273
  372. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  373. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  374. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  375. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  376. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  377. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  378. data/apis/dax/2017-04-19/api-2.json +0 -1140
  379. data/apis/dax/2017-04-19/examples-1.json +0 -5
  380. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  381. data/apis/detective/2018-10-26/api-2.json +0 -486
  382. data/apis/detective/2018-10-26/examples-1.json +0 -5
  383. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  384. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  385. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  386. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  387. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  388. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  389. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  390. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  391. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  392. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  393. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  394. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  395. data/apis/discovery/2015-11-01/smoke.json +0 -11
  396. data/apis/dlm/2018-01-12/api-2.json +0 -687
  397. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  398. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  399. data/apis/dms/2016-01-01/api-2.json +0 -2341
  400. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  401. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  402. data/apis/dms/2016-01-01/smoke.json +0 -18
  403. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  404. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  405. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  406. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  407. data/apis/docdb/2014-10-31/smoke.json +0 -18
  408. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  409. data/apis/ds/2015-04-16/api-2.json +0 -3019
  410. data/apis/ds/2015-04-16/examples-1.json +0 -5
  411. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  412. data/apis/ds/2015-04-16/smoke.json +0 -20
  413. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  414. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  415. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  416. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  417. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  418. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  419. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  420. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  421. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  422. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  423. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  424. data/apis/ebs/2019-11-02/api-2.json +0 -277
  425. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  426. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  427. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  428. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  429. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  430. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  431. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  432. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  433. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  434. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  436. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  437. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  438. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  439. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  440. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  441. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  442. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  443. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  444. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  445. data/apis/ec2/2016-11-15/api-2.json +0 -29632
  446. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  447. data/apis/ec2/2016-11-15/paginators-1.json +0 -558
  448. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  449. data/apis/ec2/2016-11-15/smoke.json +0 -20
  450. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  451. data/apis/ecr/2015-09-21/api-2.json +0 -1633
  452. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  453. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  454. data/apis/ecr/2015-09-21/smoke.json +0 -18
  455. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  456. data/apis/ecs/2014-11-13/api-2.json +0 -3176
  457. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  458. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  459. data/apis/ecs/2014-11-13/smoke.json +0 -18
  460. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  461. data/apis/eks/2017-11-01/api-2.json +0 -1457
  462. data/apis/eks/2017-11-01/examples-1.json +0 -135
  463. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  464. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  465. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  466. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  467. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  468. data/apis/elasticache/2015-02-02/api-2.json +0 -3758
  469. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  470. data/apis/elasticache/2015-02-02/paginators-1.json +0 -94
  471. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  472. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  473. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2567
  474. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  475. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -30
  476. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  477. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1377
  478. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  479. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  480. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  481. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  482. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  483. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  484. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  486. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  487. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  488. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  489. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  490. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  491. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2338
  492. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  493. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  494. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  495. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  496. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  497. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  498. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  499. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  500. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  501. data/apis/email/2010-12-01/api-2.json +0 -3182
  502. data/apis/email/2010-12-01/examples-1.json +0 -1021
  503. data/apis/email/2010-12-01/paginators-1.json +0 -18
  504. data/apis/email/2010-12-01/smoke.json +0 -18
  505. data/apis/email/2010-12-01/waiters-2.json +0 -18
  506. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  507. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  508. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  509. data/apis/es/2015-01-01/api-2.json +0 -2044
  510. data/apis/es/2015-01-01/examples-1.json +0 -5
  511. data/apis/es/2015-01-01/paginators-1.json +0 -44
  512. data/apis/es/2015-01-01/smoke.json +0 -18
  513. data/apis/eventbridge/2015-10-07/api-2.json +0 -1467
  514. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  515. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  516. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  517. data/apis/events/2015-10-07/api-2.json +0 -1467
  518. data/apis/events/2015-10-07/examples-1.json +0 -5
  519. data/apis/events/2015-10-07/paginators-1.json +0 -4
  520. data/apis/events/2015-10-07/smoke.json +0 -18
  521. data/apis/firehose/2015-08-04/api-2.json +0 -1552
  522. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  523. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  524. data/apis/firehose/2015-08-04/smoke.json +0 -18
  525. data/apis/fms/2018-01-01/api-2.json +0 -834
  526. data/apis/fms/2018-01-01/examples-1.json +0 -5
  527. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  528. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  529. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  530. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  531. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  532. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  533. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  534. data/apis/frauddetector/2019-11-15/api-2.json +0 -1633
  535. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  536. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  537. data/apis/fsx/2018-03-01/api-2.json +0 -1384
  538. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  539. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  540. data/apis/gamelift/2015-10-01/api-2.json +0 -4455
  541. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  542. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  543. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  545. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  546. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  547. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  548. data/apis/glacier/2012-06-01/smoke.json +0 -18
  549. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  550. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1165
  551. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  552. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  553. data/apis/glue/2017-03-31/api-2.json +0 -6344
  554. data/apis/glue/2017-03-31/examples-1.json +0 -5
  555. data/apis/glue/2017-03-31/paginators-1.json +0 -125
  556. data/apis/glue/2017-03-31/smoke.json +0 -11
  557. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  558. data/apis/groundstation/2019-05-23/api-2.json +0 -1409
  559. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  560. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  561. data/apis/guardduty/2017-11-28/api-2.json +0 -3736
  562. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  563. data/apis/guardduty/2017-11-28/paginators-1.json +0 -57
  564. data/apis/health/2016-08-04/api-2.json +0 -836
  565. data/apis/health/2016-08-04/examples-1.json +0 -5
  566. data/apis/health/2016-08-04/paginators-1.json +0 -52
  567. data/apis/health/2016-08-04/smoke.json +0 -11
  568. data/apis/iam/2010-05-08/api-2.json +0 -5797
  569. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  570. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  571. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  572. data/apis/iam/2010-05-08/smoke.json +0 -18
  573. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  574. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2431
  575. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  576. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  577. data/apis/importexport/2010-06-01/api-2.json +0 -667
  578. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  579. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  580. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  581. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  582. data/apis/inspector/2016-02-16/smoke.json +0 -18
  583. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  584. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  585. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  586. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  587. data/apis/iot/2015-05-28/api-2.json +0 -11427
  588. data/apis/iot/2015-05-28/examples-1.json +0 -5
  589. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  590. data/apis/iot/2015-05-28/smoke.json +0 -18
  591. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  592. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  593. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  594. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  595. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  596. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  597. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  598. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  599. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  600. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  601. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  602. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  603. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  604. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  605. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  606. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  607. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3580
  608. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  609. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  610. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  611. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  612. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  613. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  614. data/apis/kafka/2018-11-14/api-2.json +0 -2297
  615. data/apis/kafka/2018-11-14/paginators-1.json +0 -40
  616. data/apis/kendra/2019-02-03/api-2.json +0 -1748
  617. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  618. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  619. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  620. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  622. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  623. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  624. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  625. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  626. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  627. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  628. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  629. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  630. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  631. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  632. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  633. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  634. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  635. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  636. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  637. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  638. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  639. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  640. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  641. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  642. data/apis/kms/2014-11-01/api-2.json +0 -2155
  643. data/apis/kms/2014-11-01/examples-1.json +0 -906
  644. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  645. data/apis/kms/2014-11-01/smoke.json +0 -19
  646. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  647. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  648. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  649. data/apis/lambda/2014-11-11/api-2.json +0 -668
  650. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  651. data/apis/lambda/2015-03-31/api-2.json +0 -2946
  652. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  653. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  654. data/apis/lambda/2015-03-31/smoke.json +0 -18
  655. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  656. data/apis/lex-models/2017-04-19/api-2.json +0 -2550
  657. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  658. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  659. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  660. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  661. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  662. data/apis/lightsail/2016-11-28/api-2.json +0 -5429
  663. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  664. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  665. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  666. data/apis/logs/2014-03-28/api-2.json +0 -1701
  667. data/apis/logs/2014-03-28/examples-1.json +0 -5
  668. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  669. data/apis/logs/2014-03-28/smoke.json +0 -19
  670. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  671. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  672. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  673. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  674. data/apis/macie/2017-12-19/api-2.json +0 -365
  675. data/apis/macie/2017-12-19/examples-1.json +0 -5
  676. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  677. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1498
  678. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  679. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  680. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  681. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  682. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  683. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  684. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  685. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  686. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  687. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2405
  688. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  689. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8921
  690. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  691. data/apis/medialive/2017-10-14/api-2.json +0 -10868
  692. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  693. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  694. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1757
  695. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  696. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  697. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  698. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  699. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  700. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  701. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  702. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  703. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  704. data/apis/mediatailor/2018-04-23/api-2.json +0 -584
  705. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  706. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  707. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  708. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  709. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  710. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  711. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  712. data/apis/mobile/2017-07-01/api-2.json +0 -551
  713. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  714. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  715. data/apis/monitoring/2010-08-01/api-2.json +0 -1973
  716. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  717. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  718. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  719. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  720. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  721. data/apis/mq/2017-11-27/api-2.json +0 -2577
  722. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  723. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  724. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  725. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  726. data/apis/neptune/2014-10-31/api-2.json +0 -3583
  727. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  728. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  729. data/apis/neptune/2014-10-31/smoke.json +0 -18
  730. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  731. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  732. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  733. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  734. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  735. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  736. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  737. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  738. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  739. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  740. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  741. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  742. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  743. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  744. data/apis/organizations/2016-11-28/api-2.json +0 -2578
  745. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  746. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  747. data/apis/outposts/2019-12-03/api-2.json +0 -429
  748. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  749. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  750. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  751. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  752. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  753. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -149
  754. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  755. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  756. data/apis/personalize/2018-05-22/api-2.json +0 -1871
  757. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  758. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  759. data/apis/pi/2018-02-27/api-2.json +0 -253
  760. data/apis/pi/2018-02-27/examples-1.json +0 -5
  761. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  762. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  763. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  764. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  765. data/apis/pinpoint/2016-12-01/api-2.json +0 -12340
  766. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  767. data/apis/polly/2016-06-10/api-2.json +0 -832
  768. data/apis/polly/2016-06-10/examples-1.json +0 -171
  769. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  770. data/apis/polly/2016-06-10/smoke.json +0 -11
  771. data/apis/pricing/2017-10-15/api-2.json +0 -227
  772. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  773. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  774. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  775. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  776. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  777. data/apis/qldb/2019-01-02/api-2.json +0 -776
  778. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  779. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  780. data/apis/quicksight/2018-04-01/api-2.json +0 -5550
  781. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  782. data/apis/quicksight/2018-04-01/paginators-1.json +0 -49
  783. data/apis/ram/2018-01-04/api-2.json +0 -1315
  784. data/apis/ram/2018-01-04/examples-1.json +0 -5
  785. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  786. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  787. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  788. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  789. data/apis/rds/2013-01-10/api-2.json +0 -2903
  790. data/apis/rds/2013-01-10/examples-1.json +0 -5
  791. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  792. data/apis/rds/2013-01-10/smoke.json +0 -18
  793. data/apis/rds/2013-02-12/api-2.json +0 -3059
  794. data/apis/rds/2013-02-12/examples-1.json +0 -5
  795. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  796. data/apis/rds/2013-02-12/smoke.json +0 -18
  797. data/apis/rds/2013-09-09/api-2.json +0 -3160
  798. data/apis/rds/2013-09-09/examples-1.json +0 -5
  799. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  800. data/apis/rds/2013-09-09/smoke.json +0 -18
  801. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  802. data/apis/rds/2014-09-01/api-2.json +0 -3273
  803. data/apis/rds/2014-09-01/examples-1.json +0 -5
  804. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  805. data/apis/rds/2014-09-01/smoke.json +0 -18
  806. data/apis/rds/2014-10-31/api-2.json +0 -7703
  807. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  808. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  809. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  810. data/apis/rds/2014-10-31/smoke.json +0 -18
  811. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  812. data/apis/redshift/2012-12-01/api-2.json +0 -5526
  813. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  814. data/apis/redshift/2012-12-01/paginators-1.json +0 -112
  815. data/apis/redshift/2012-12-01/smoke.json +0 -18
  816. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  817. data/apis/rekognition/2016-06-27/api-2.json +0 -2854
  818. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  819. data/apis/rekognition/2016-06-27/paginators-1.json +0 -68
  820. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  821. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  822. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  823. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  824. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  825. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  826. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  827. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  828. data/apis/robomaker/2018-06-29/api-2.json +0 -2420
  829. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  830. data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
  831. data/apis/route53/2013-04-01/api-2.json +0 -3791
  832. data/apis/route53/2013-04-01/examples-1.json +0 -762
  833. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  834. data/apis/route53/2013-04-01/smoke.json +0 -18
  835. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  836. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  837. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  838. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  839. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  840. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  841. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  842. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  843. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  844. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  845. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  846. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  847. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  848. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  849. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  850. data/apis/s3/2006-03-01/api-2.json +0 -6653
  851. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  852. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  853. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  854. data/apis/s3/2006-03-01/smoke.json +0 -11
  855. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  856. data/apis/s3control/2018-08-20/api-2.json +0 -1585
  857. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  858. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  859. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  860. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  861. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  862. data/apis/sagemaker/2017-07-24/api-2.json +0 -9257
  863. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  864. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  865. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  866. data/apis/savingsplans/2019-06-28/api-2.json +0 -755
  867. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  868. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  869. data/apis/schemas/2019-12-02/api-2.json +0 -2867
  870. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  871. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  872. data/apis/sdb/2009-04-15/api-2.json +0 -955
  873. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  874. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  875. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  876. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  877. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  878. data/apis/securityhub/2018-10-26/api-2.json +0 -2979
  879. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  880. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  881. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  882. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  883. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  884. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  885. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  886. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3983
  887. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  888. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -89
  889. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  890. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  891. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -342
  892. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  893. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  894. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  895. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  896. data/apis/shield/2016-06-02/api-2.json +0 -968
  897. data/apis/shield/2016-06-02/examples-1.json +0 -5
  898. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  899. data/apis/shield/2016-06-02/smoke.json +0 -11
  900. data/apis/signer/2017-08-25/api-2.json +0 -822
  901. data/apis/signer/2017-08-25/examples-1.json +0 -5
  902. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  903. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  904. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  905. data/apis/sms/2016-10-24/api-2.json +0 -1366
  906. data/apis/sms/2016-10-24/examples-1.json +0 -5
  907. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  908. data/apis/sms/2016-10-24/smoke.json +0 -18
  909. data/apis/snowball/2016-06-30/api-2.json +0 -977
  910. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  911. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  912. data/apis/snowball/2016-06-30/smoke.json +0 -11
  913. data/apis/sns/2010-03-31/api-2.json +0 -1468
  914. data/apis/sns/2010-03-31/examples-1.json +0 -5
  915. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  916. data/apis/sns/2010-03-31/resources-1.json +0 -327
  917. data/apis/sns/2010-03-31/smoke.json +0 -19
  918. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  919. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  920. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  921. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  922. data/apis/sqs/2012-11-05/smoke.json +0 -18
  923. data/apis/ssm/2014-11-06/api-2.json +0 -9261
  924. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  925. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  926. data/apis/ssm/2014-11-06/smoke.json +0 -18
  927. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  928. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  929. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  930. data/apis/sso/2019-06-10/api-2.json +0 -281
  931. data/apis/sso/2019-06-10/examples-1.json +0 -5
  932. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  933. data/apis/states/2016-11-23/api-2.json +0 -1477
  934. data/apis/states/2016-11-23/examples-1.json +0 -5
  935. data/apis/states/2016-11-23/paginators-1.json +0 -28
  936. data/apis/states/2016-11-23/smoke.json +0 -11
  937. data/apis/storagegateway/2013-06-30/api-2.json +0 -3385
  938. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  939. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  940. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  941. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  942. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  943. data/apis/sts/2011-06-15/api-2.json +0 -598
  944. data/apis/sts/2011-06-15/examples-1.json +0 -271
  945. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  946. data/apis/sts/2011-06-15/smoke.json +0 -19
  947. data/apis/support/2013-04-15/api-2.json +0 -773
  948. data/apis/support/2013-04-15/examples-1.json +0 -5
  949. data/apis/support/2013-04-15/paginators-1.json +0 -25
  950. data/apis/support/2013-04-15/smoke.json +0 -22
  951. data/apis/swf/2012-01-25/api-2.json +0 -2792
  952. data/apis/swf/2012-01-25/examples-1.json +0 -5
  953. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  954. data/apis/synthetics/2017-10-11/api-2.json +0 -754
  955. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  956. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  957. data/apis/textract/2018-06-27/api-2.json +0 -653
  958. data/apis/textract/2018-06-27/examples-1.json +0 -5
  959. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  960. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -272
  961. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  962. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  963. data/apis/transcribe/2017-10-26/api-2.json +0 -1115
  964. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  965. data/apis/transcribe/2017-10-26/paginators-1.json +0 -29
  966. data/apis/transfer/2018-11-05/api-2.json +0 -1001
  967. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  968. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  969. data/apis/translate/2017-07-01/api-2.json +0 -658
  970. data/apis/translate/2017-07-01/examples-1.json +0 -5
  971. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  972. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  973. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  974. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  975. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  976. data/apis/waf/2015-08-24/api-2.json +0 -3958
  977. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  978. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  979. data/apis/waf/2015-08-24/smoke.json +0 -21
  980. data/apis/wafv2/2019-07-29/api-2.json +0 -2637
  981. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  982. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  983. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  984. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  985. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  986. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  987. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  988. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  989. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  990. data/apis/workmail/2017-10-01/api-2.json +0 -1918
  991. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  992. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  993. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  994. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  995. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  996. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  997. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  998. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  999. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1000. data/apis/xray/2016-04-12/api-2.json +0 -1355
  1001. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1002. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  1003. data/bin/aws.rb +0 -180
  1004. data/endpoints.json +0 -8026
  1005. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1006. data/lib/aws-sdk-core/acm.rb +0 -7
  1007. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1008. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1009. data/lib/aws-sdk-core/amplify.rb +0 -6
  1010. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1011. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1012. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1013. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1014. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1015. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1016. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1017. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1018. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1019. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1020. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1021. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1022. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1023. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1024. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1025. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1026. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1027. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1028. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1029. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1030. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1031. data/lib/aws-sdk-core/appstream.rb +0 -7
  1032. data/lib/aws-sdk-core/appsync.rb +0 -6
  1033. data/lib/aws-sdk-core/athena.rb +0 -6
  1034. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1035. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1036. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1037. data/lib/aws-sdk-core/backup.rb +0 -6
  1038. data/lib/aws-sdk-core/batch.rb +0 -6
  1039. data/lib/aws-sdk-core/budgets.rb +0 -6
  1040. data/lib/aws-sdk-core/checksums.rb +0 -51
  1041. data/lib/aws-sdk-core/chime.rb +0 -6
  1042. data/lib/aws-sdk-core/client.rb +0 -72
  1043. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1044. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1045. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1047. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1048. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1049. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1050. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1051. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1052. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1054. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1055. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1056. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1057. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1058. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1059. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1060. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1061. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1062. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1063. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1064. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1065. data/lib/aws-sdk-core/codestar.rb +0 -6
  1066. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1067. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1068. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1069. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1070. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1071. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1072. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1073. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1074. data/lib/aws-sdk-core/configservice.rb +0 -6
  1075. data/lib/aws-sdk-core/connect.rb +0 -6
  1076. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1077. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1078. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1079. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1080. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1081. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1082. data/lib/aws-sdk-core/datasync.rb +0 -6
  1083. data/lib/aws-sdk-core/dax.rb +0 -6
  1084. data/lib/aws-sdk-core/detective.rb +0 -6
  1085. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1086. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1087. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1088. data/lib/aws-sdk-core/dlm.rb +0 -6
  1089. data/lib/aws-sdk-core/docdb.rb +0 -7
  1090. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1091. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1092. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1093. data/lib/aws-sdk-core/ebs.rb +0 -6
  1094. data/lib/aws-sdk-core/ec2.rb +0 -8
  1095. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1096. data/lib/aws-sdk-core/ecr.rb +0 -7
  1097. data/lib/aws-sdk-core/ecs.rb +0 -7
  1098. data/lib/aws-sdk-core/efs.rb +0 -6
  1099. data/lib/aws-sdk-core/eks.rb +0 -7
  1100. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1101. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1102. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1103. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1104. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1105. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1106. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1107. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1108. data/lib/aws-sdk-core/emr.rb +0 -7
  1109. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1110. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1111. data/lib/aws-sdk-core/firehose.rb +0 -6
  1112. data/lib/aws-sdk-core/fms.rb +0 -6
  1113. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1114. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1115. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1116. data/lib/aws-sdk-core/fsx.rb +0 -6
  1117. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1118. data/lib/aws-sdk-core/glacier.rb +0 -8
  1119. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1120. data/lib/aws-sdk-core/glue.rb +0 -6
  1121. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1122. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1123. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1124. data/lib/aws-sdk-core/health.rb +0 -6
  1125. data/lib/aws-sdk-core/iam.rb +0 -8
  1126. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1127. data/lib/aws-sdk-core/importexport.rb +0 -5
  1128. data/lib/aws-sdk-core/inspector.rb +0 -6
  1129. data/lib/aws-sdk-core/iot.rb +0 -6
  1130. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1131. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1132. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1133. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1134. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1135. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1136. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1137. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1138. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1139. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1140. data/lib/aws-sdk-core/kafka.rb +0 -5
  1141. data/lib/aws-sdk-core/kendra.rb +0 -6
  1142. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1143. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1144. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1145. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1146. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1147. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1148. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1149. data/lib/aws-sdk-core/kms.rb +0 -6
  1150. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1151. data/lib/aws-sdk-core/lambda.rb +0 -7
  1152. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1153. data/lib/aws-sdk-core/lex.rb +0 -6
  1154. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1155. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1156. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1157. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1158. data/lib/aws-sdk-core/macie.rb +0 -6
  1159. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1160. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1161. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1162. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1163. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1164. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1165. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1166. data/lib/aws-sdk-core/medialive.rb +0 -6
  1167. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1168. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1169. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1170. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1171. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1172. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1173. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1174. data/lib/aws-sdk-core/mobile.rb +0 -6
  1175. data/lib/aws-sdk-core/mq.rb +0 -5
  1176. data/lib/aws-sdk-core/mturk.rb +0 -6
  1177. data/lib/aws-sdk-core/neptune.rb +0 -7
  1178. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1179. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1180. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1181. data/lib/aws-sdk-core/organizations.rb +0 -6
  1182. data/lib/aws-sdk-core/outposts.rb +0 -6
  1183. data/lib/aws-sdk-core/partitions.rb +0 -174
  1184. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1185. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1186. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1187. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1188. data/lib/aws-sdk-core/personalize.rb +0 -6
  1189. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1190. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1191. data/lib/aws-sdk-core/pi.rb +0 -6
  1192. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1193. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1194. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1195. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1197. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1198. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1199. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1200. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1201. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1202. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1203. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1204. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1205. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1206. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1207. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1208. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1209. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1210. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1211. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1212. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1213. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1214. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1215. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1216. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1217. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1218. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1219. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1220. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1221. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1222. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1223. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1224. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1225. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1226. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1227. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1228. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1229. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1230. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1231. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1232. data/lib/aws-sdk-core/polly.rb +0 -14
  1233. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1234. data/lib/aws-sdk-core/pricing.rb +0 -6
  1235. data/lib/aws-sdk-core/qldb.rb +0 -6
  1236. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1237. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1238. data/lib/aws-sdk-core/ram.rb +0 -6
  1239. data/lib/aws-sdk-core/rds.rb +0 -16
  1240. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1241. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1242. data/lib/aws-sdk-core/redshift.rb +0 -7
  1243. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1244. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1245. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1246. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1247. data/lib/aws-sdk-core/route53.rb +0 -7
  1248. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1249. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1250. data/lib/aws-sdk-core/s3.rb +0 -26
  1251. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1252. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1253. data/lib/aws-sdk-core/s3control.rb +0 -6
  1254. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1255. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1256. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1257. data/lib/aws-sdk-core/schemas.rb +0 -6
  1258. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1259. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1260. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1261. data/lib/aws-sdk-core/service.rb +0 -4
  1262. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1263. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1264. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1265. data/lib/aws-sdk-core/ses.rb +0 -7
  1266. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1267. data/lib/aws-sdk-core/shield.rb +0 -6
  1268. data/lib/aws-sdk-core/signer.rb +0 -7
  1269. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1270. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1271. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1272. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1273. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1274. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1275. data/lib/aws-sdk-core/sms.rb +0 -6
  1276. data/lib/aws-sdk-core/snowball.rb +0 -6
  1277. data/lib/aws-sdk-core/sns.rb +0 -7
  1278. data/lib/aws-sdk-core/sqs.rb +0 -7
  1279. data/lib/aws-sdk-core/ssm.rb +0 -6
  1280. data/lib/aws-sdk-core/sso.rb +0 -6
  1281. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1282. data/lib/aws-sdk-core/states.rb +0 -6
  1283. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1284. data/lib/aws-sdk-core/sts.rb +0 -6
  1285. data/lib/aws-sdk-core/support.rb +0 -6
  1286. data/lib/aws-sdk-core/swf.rb +0 -6
  1287. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1288. data/lib/aws-sdk-core/textract.rb +0 -6
  1289. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1290. data/lib/aws-sdk-core/transfer.rb +0 -6
  1291. data/lib/aws-sdk-core/translate.rb +0 -6
  1292. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1293. data/lib/aws-sdk-core/version.rb +0 -3
  1294. data/lib/aws-sdk-core/waf.rb +0 -6
  1295. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1296. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1297. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1298. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1299. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1300. data/lib/aws-sdk-core/worklink.rb +0 -6
  1301. data/lib/aws-sdk-core/workmail.rb +0 -6
  1302. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1303. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1304. data/lib/aws-sdk-core/xray.rb +0 -6
  1305. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1306. data/service-models.json +0 -889
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,112 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeClusterParameterGroups": {
4
- "input_token": "Marker",
5
- "limit_key": "MaxRecords",
6
- "output_token": "Marker",
7
- "result_key": "ParameterGroups"
8
- },
9
- "DescribeClusterParameters": {
10
- "input_token": "Marker",
11
- "limit_key": "MaxRecords",
12
- "output_token": "Marker",
13
- "result_key": "Parameters"
14
- },
15
- "DescribeClusterSecurityGroups": {
16
- "input_token": "Marker",
17
- "limit_key": "MaxRecords",
18
- "output_token": "Marker",
19
- "result_key": "ClusterSecurityGroups"
20
- },
21
- "DescribeClusterSnapshots": {
22
- "input_token": "Marker",
23
- "limit_key": "MaxRecords",
24
- "output_token": "Marker",
25
- "result_key": "Snapshots"
26
- },
27
- "DescribeClusterSubnetGroups": {
28
- "input_token": "Marker",
29
- "limit_key": "MaxRecords",
30
- "output_token": "Marker",
31
- "result_key": "ClusterSubnetGroups"
32
- },
33
- "DescribeClusterVersions": {
34
- "input_token": "Marker",
35
- "limit_key": "MaxRecords",
36
- "output_token": "Marker",
37
- "result_key": "ClusterVersions"
38
- },
39
- "DescribeClusters": {
40
- "input_token": "Marker",
41
- "limit_key": "MaxRecords",
42
- "output_token": "Marker",
43
- "result_key": "Clusters"
44
- },
45
- "DescribeDefaultClusterParameters": {
46
- "input_token": "Marker",
47
- "limit_key": "MaxRecords",
48
- "output_token": "DefaultClusterParameters.Marker",
49
- "result_key": "DefaultClusterParameters.Parameters"
50
- },
51
- "DescribeEventSubscriptions": {
52
- "input_token": "Marker",
53
- "limit_key": "MaxRecords",
54
- "output_token": "Marker",
55
- "result_key": "EventSubscriptionsList"
56
- },
57
- "DescribeEvents": {
58
- "input_token": "Marker",
59
- "limit_key": "MaxRecords",
60
- "output_token": "Marker",
61
- "result_key": "Events"
62
- },
63
- "DescribeHsmClientCertificates": {
64
- "input_token": "Marker",
65
- "limit_key": "MaxRecords",
66
- "output_token": "Marker",
67
- "result_key": "HsmClientCertificates"
68
- },
69
- "DescribeHsmConfigurations": {
70
- "input_token": "Marker",
71
- "limit_key": "MaxRecords",
72
- "output_token": "Marker",
73
- "result_key": "HsmConfigurations"
74
- },
75
- "DescribeNodeConfigurationOptions": {
76
- "input_token": "Marker",
77
- "limit_key": "MaxRecords",
78
- "output_token": "Marker",
79
- "result_key": "NodeConfigurationOptionList"
80
- },
81
- "DescribeOrderableClusterOptions": {
82
- "input_token": "Marker",
83
- "limit_key": "MaxRecords",
84
- "output_token": "Marker",
85
- "result_key": "OrderableClusterOptions"
86
- },
87
- "DescribeReservedNodeOfferings": {
88
- "input_token": "Marker",
89
- "limit_key": "MaxRecords",
90
- "output_token": "Marker",
91
- "result_key": "ReservedNodeOfferings"
92
- },
93
- "DescribeReservedNodes": {
94
- "input_token": "Marker",
95
- "limit_key": "MaxRecords",
96
- "output_token": "Marker",
97
- "result_key": "ReservedNodes"
98
- },
99
- "DescribeScheduledActions": {
100
- "input_token": "Marker",
101
- "limit_key": "MaxRecords",
102
- "output_token": "Marker",
103
- "result_key": "ScheduledActions"
104
- },
105
- "DescribeUsageLimits": {
106
- "input_token": "Marker",
107
- "limit_key": "MaxRecords",
108
- "output_token": "Marker",
109
- "result_key": "UsageLimits"
110
- }
111
- }
112
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "DescribeClusterVersions",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- },
10
- {
11
- "operationName": "DescribeClusters",
12
- "input": {
13
- "ClusterIdentifier": "fake-cluster"
14
- },
15
- "errorExpectedFromService": true
16
- }
17
- ]
18
- }
@@ -1,97 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "ClusterAvailable": {
5
- "delay": 60,
6
- "operation": "DescribeClusters",
7
- "maxAttempts": 30,
8
- "acceptors": [
9
- {
10
- "expected": "available",
11
- "matcher": "pathAll",
12
- "state": "success",
13
- "argument": "Clusters[].ClusterStatus"
14
- },
15
- {
16
- "expected": "deleting",
17
- "matcher": "pathAny",
18
- "state": "failure",
19
- "argument": "Clusters[].ClusterStatus"
20
- },
21
- {
22
- "expected": "ClusterNotFound",
23
- "matcher": "error",
24
- "state": "retry"
25
- }
26
- ]
27
- },
28
- "ClusterDeleted": {
29
- "delay": 60,
30
- "operation": "DescribeClusters",
31
- "maxAttempts": 30,
32
- "acceptors": [
33
- {
34
- "expected": "ClusterNotFound",
35
- "matcher": "error",
36
- "state": "success"
37
- },
38
- {
39
- "expected": "creating",
40
- "matcher": "pathAny",
41
- "state": "failure",
42
- "argument": "Clusters[].ClusterStatus"
43
- },
44
- {
45
- "expected": "modifying",
46
- "matcher": "pathAny",
47
- "state": "failure",
48
- "argument": "Clusters[].ClusterStatus"
49
- }
50
- ]
51
- },
52
- "ClusterRestored": {
53
- "operation": "DescribeClusters",
54
- "maxAttempts": 30,
55
- "delay": 60,
56
- "acceptors": [
57
- {
58
- "state": "success",
59
- "matcher": "pathAll",
60
- "argument": "Clusters[].RestoreStatus.Status",
61
- "expected": "completed"
62
- },
63
- {
64
- "state": "failure",
65
- "matcher": "pathAny",
66
- "argument": "Clusters[].ClusterStatus",
67
- "expected": "deleting"
68
- }
69
- ]
70
- },
71
- "SnapshotAvailable": {
72
- "delay": 15,
73
- "operation": "DescribeClusterSnapshots",
74
- "maxAttempts": 20,
75
- "acceptors": [
76
- {
77
- "expected": "available",
78
- "matcher": "pathAll",
79
- "state": "success",
80
- "argument": "Snapshots[].Status"
81
- },
82
- {
83
- "expected": "failed",
84
- "matcher": "pathAny",
85
- "state": "failure",
86
- "argument": "Snapshots[].Status"
87
- },
88
- {
89
- "expected": "deleted",
90
- "matcher": "pathAny",
91
- "state": "failure",
92
- "argument": "Snapshots[].Status"
93
- }
94
- ]
95
- }
96
- }
97
- }
@@ -1,2854 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2016-06-27",
5
- "endpointPrefix":"rekognition",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"Amazon Rekognition",
9
- "serviceId":"Rekognition",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"RekognitionService",
12
- "uid":"rekognition-2016-06-27"
13
- },
14
- "operations":{
15
- "CompareFaces":{
16
- "name":"CompareFaces",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"CompareFacesRequest"},
22
- "output":{"shape":"CompareFacesResponse"},
23
- "errors":[
24
- {"shape":"InvalidParameterException"},
25
- {"shape":"InvalidS3ObjectException"},
26
- {"shape":"ImageTooLargeException"},
27
- {"shape":"AccessDeniedException"},
28
- {"shape":"InternalServerError"},
29
- {"shape":"ThrottlingException"},
30
- {"shape":"ProvisionedThroughputExceededException"},
31
- {"shape":"InvalidImageFormatException"}
32
- ]
33
- },
34
- "CreateCollection":{
35
- "name":"CreateCollection",
36
- "http":{
37
- "method":"POST",
38
- "requestUri":"/"
39
- },
40
- "input":{"shape":"CreateCollectionRequest"},
41
- "output":{"shape":"CreateCollectionResponse"},
42
- "errors":[
43
- {"shape":"InvalidParameterException"},
44
- {"shape":"AccessDeniedException"},
45
- {"shape":"InternalServerError"},
46
- {"shape":"ThrottlingException"},
47
- {"shape":"ProvisionedThroughputExceededException"},
48
- {"shape":"ResourceAlreadyExistsException"}
49
- ]
50
- },
51
- "CreateProject":{
52
- "name":"CreateProject",
53
- "http":{
54
- "method":"POST",
55
- "requestUri":"/"
56
- },
57
- "input":{"shape":"CreateProjectRequest"},
58
- "output":{"shape":"CreateProjectResponse"},
59
- "errors":[
60
- {"shape":"ResourceInUseException"},
61
- {"shape":"LimitExceededException"},
62
- {"shape":"InvalidParameterException"},
63
- {"shape":"AccessDeniedException"},
64
- {"shape":"InternalServerError"},
65
- {"shape":"ThrottlingException"},
66
- {"shape":"ProvisionedThroughputExceededException"}
67
- ]
68
- },
69
- "CreateProjectVersion":{
70
- "name":"CreateProjectVersion",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"CreateProjectVersionRequest"},
76
- "output":{"shape":"CreateProjectVersionResponse"},
77
- "errors":[
78
- {"shape":"ResourceInUseException"},
79
- {"shape":"ResourceNotFoundException"},
80
- {"shape":"LimitExceededException"},
81
- {"shape":"InvalidParameterException"},
82
- {"shape":"AccessDeniedException"},
83
- {"shape":"InternalServerError"},
84
- {"shape":"ThrottlingException"},
85
- {"shape":"ProvisionedThroughputExceededException"}
86
- ]
87
- },
88
- "CreateStreamProcessor":{
89
- "name":"CreateStreamProcessor",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/"
93
- },
94
- "input":{"shape":"CreateStreamProcessorRequest"},
95
- "output":{"shape":"CreateStreamProcessorResponse"},
96
- "errors":[
97
- {"shape":"AccessDeniedException"},
98
- {"shape":"InternalServerError"},
99
- {"shape":"ThrottlingException"},
100
- {"shape":"InvalidParameterException"},
101
- {"shape":"LimitExceededException"},
102
- {"shape":"ResourceInUseException"},
103
- {"shape":"ProvisionedThroughputExceededException"}
104
- ]
105
- },
106
- "DeleteCollection":{
107
- "name":"DeleteCollection",
108
- "http":{
109
- "method":"POST",
110
- "requestUri":"/"
111
- },
112
- "input":{"shape":"DeleteCollectionRequest"},
113
- "output":{"shape":"DeleteCollectionResponse"},
114
- "errors":[
115
- {"shape":"InvalidParameterException"},
116
- {"shape":"AccessDeniedException"},
117
- {"shape":"InternalServerError"},
118
- {"shape":"ThrottlingException"},
119
- {"shape":"ProvisionedThroughputExceededException"},
120
- {"shape":"ResourceNotFoundException"}
121
- ]
122
- },
123
- "DeleteFaces":{
124
- "name":"DeleteFaces",
125
- "http":{
126
- "method":"POST",
127
- "requestUri":"/"
128
- },
129
- "input":{"shape":"DeleteFacesRequest"},
130
- "output":{"shape":"DeleteFacesResponse"},
131
- "errors":[
132
- {"shape":"InvalidParameterException"},
133
- {"shape":"AccessDeniedException"},
134
- {"shape":"InternalServerError"},
135
- {"shape":"ThrottlingException"},
136
- {"shape":"ProvisionedThroughputExceededException"},
137
- {"shape":"ResourceNotFoundException"}
138
- ]
139
- },
140
- "DeleteProject":{
141
- "name":"DeleteProject",
142
- "http":{
143
- "method":"POST",
144
- "requestUri":"/"
145
- },
146
- "input":{"shape":"DeleteProjectRequest"},
147
- "output":{"shape":"DeleteProjectResponse"},
148
- "errors":[
149
- {"shape":"ResourceInUseException"},
150
- {"shape":"ResourceNotFoundException"},
151
- {"shape":"InvalidParameterException"},
152
- {"shape":"AccessDeniedException"},
153
- {"shape":"InternalServerError"},
154
- {"shape":"ThrottlingException"},
155
- {"shape":"ProvisionedThroughputExceededException"}
156
- ]
157
- },
158
- "DeleteProjectVersion":{
159
- "name":"DeleteProjectVersion",
160
- "http":{
161
- "method":"POST",
162
- "requestUri":"/"
163
- },
164
- "input":{"shape":"DeleteProjectVersionRequest"},
165
- "output":{"shape":"DeleteProjectVersionResponse"},
166
- "errors":[
167
- {"shape":"ResourceNotFoundException"},
168
- {"shape":"ResourceInUseException"},
169
- {"shape":"InvalidParameterException"},
170
- {"shape":"AccessDeniedException"},
171
- {"shape":"InternalServerError"},
172
- {"shape":"ThrottlingException"},
173
- {"shape":"ProvisionedThroughputExceededException"}
174
- ]
175
- },
176
- "DeleteStreamProcessor":{
177
- "name":"DeleteStreamProcessor",
178
- "http":{
179
- "method":"POST",
180
- "requestUri":"/"
181
- },
182
- "input":{"shape":"DeleteStreamProcessorRequest"},
183
- "output":{"shape":"DeleteStreamProcessorResponse"},
184
- "errors":[
185
- {"shape":"AccessDeniedException"},
186
- {"shape":"InternalServerError"},
187
- {"shape":"ThrottlingException"},
188
- {"shape":"InvalidParameterException"},
189
- {"shape":"ResourceNotFoundException"},
190
- {"shape":"ResourceInUseException"},
191
- {"shape":"ProvisionedThroughputExceededException"}
192
- ]
193
- },
194
- "DescribeCollection":{
195
- "name":"DescribeCollection",
196
- "http":{
197
- "method":"POST",
198
- "requestUri":"/"
199
- },
200
- "input":{"shape":"DescribeCollectionRequest"},
201
- "output":{"shape":"DescribeCollectionResponse"},
202
- "errors":[
203
- {"shape":"InvalidParameterException"},
204
- {"shape":"AccessDeniedException"},
205
- {"shape":"InternalServerError"},
206
- {"shape":"ThrottlingException"},
207
- {"shape":"ProvisionedThroughputExceededException"},
208
- {"shape":"ResourceNotFoundException"}
209
- ]
210
- },
211
- "DescribeProjectVersions":{
212
- "name":"DescribeProjectVersions",
213
- "http":{
214
- "method":"POST",
215
- "requestUri":"/"
216
- },
217
- "input":{"shape":"DescribeProjectVersionsRequest"},
218
- "output":{"shape":"DescribeProjectVersionsResponse"},
219
- "errors":[
220
- {"shape":"ResourceNotFoundException"},
221
- {"shape":"InvalidPaginationTokenException"},
222
- {"shape":"InvalidParameterException"},
223
- {"shape":"AccessDeniedException"},
224
- {"shape":"InternalServerError"},
225
- {"shape":"ThrottlingException"},
226
- {"shape":"ProvisionedThroughputExceededException"}
227
- ]
228
- },
229
- "DescribeProjects":{
230
- "name":"DescribeProjects",
231
- "http":{
232
- "method":"POST",
233
- "requestUri":"/"
234
- },
235
- "input":{"shape":"DescribeProjectsRequest"},
236
- "output":{"shape":"DescribeProjectsResponse"},
237
- "errors":[
238
- {"shape":"InvalidPaginationTokenException"},
239
- {"shape":"InvalidParameterException"},
240
- {"shape":"AccessDeniedException"},
241
- {"shape":"InternalServerError"},
242
- {"shape":"ThrottlingException"},
243
- {"shape":"ProvisionedThroughputExceededException"}
244
- ]
245
- },
246
- "DescribeStreamProcessor":{
247
- "name":"DescribeStreamProcessor",
248
- "http":{
249
- "method":"POST",
250
- "requestUri":"/"
251
- },
252
- "input":{"shape":"DescribeStreamProcessorRequest"},
253
- "output":{"shape":"DescribeStreamProcessorResponse"},
254
- "errors":[
255
- {"shape":"AccessDeniedException"},
256
- {"shape":"InternalServerError"},
257
- {"shape":"ThrottlingException"},
258
- {"shape":"InvalidParameterException"},
259
- {"shape":"ResourceNotFoundException"},
260
- {"shape":"ProvisionedThroughputExceededException"}
261
- ]
262
- },
263
- "DetectCustomLabels":{
264
- "name":"DetectCustomLabels",
265
- "http":{
266
- "method":"POST",
267
- "requestUri":"/"
268
- },
269
- "input":{"shape":"DetectCustomLabelsRequest"},
270
- "output":{"shape":"DetectCustomLabelsResponse"},
271
- "errors":[
272
- {"shape":"ResourceNotFoundException"},
273
- {"shape":"ResourceNotReadyException"},
274
- {"shape":"InvalidS3ObjectException"},
275
- {"shape":"InvalidParameterException"},
276
- {"shape":"ImageTooLargeException"},
277
- {"shape":"LimitExceededException"},
278
- {"shape":"AccessDeniedException"},
279
- {"shape":"InternalServerError"},
280
- {"shape":"ThrottlingException"},
281
- {"shape":"ProvisionedThroughputExceededException"},
282
- {"shape":"InvalidImageFormatException"}
283
- ]
284
- },
285
- "DetectFaces":{
286
- "name":"DetectFaces",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/"
290
- },
291
- "input":{"shape":"DetectFacesRequest"},
292
- "output":{"shape":"DetectFacesResponse"},
293
- "errors":[
294
- {"shape":"InvalidS3ObjectException"},
295
- {"shape":"InvalidParameterException"},
296
- {"shape":"ImageTooLargeException"},
297
- {"shape":"AccessDeniedException"},
298
- {"shape":"InternalServerError"},
299
- {"shape":"ThrottlingException"},
300
- {"shape":"ProvisionedThroughputExceededException"},
301
- {"shape":"InvalidImageFormatException"}
302
- ]
303
- },
304
- "DetectLabels":{
305
- "name":"DetectLabels",
306
- "http":{
307
- "method":"POST",
308
- "requestUri":"/"
309
- },
310
- "input":{"shape":"DetectLabelsRequest"},
311
- "output":{"shape":"DetectLabelsResponse"},
312
- "errors":[
313
- {"shape":"InvalidS3ObjectException"},
314
- {"shape":"InvalidParameterException"},
315
- {"shape":"ImageTooLargeException"},
316
- {"shape":"AccessDeniedException"},
317
- {"shape":"InternalServerError"},
318
- {"shape":"ThrottlingException"},
319
- {"shape":"ProvisionedThroughputExceededException"},
320
- {"shape":"InvalidImageFormatException"}
321
- ]
322
- },
323
- "DetectModerationLabels":{
324
- "name":"DetectModerationLabels",
325
- "http":{
326
- "method":"POST",
327
- "requestUri":"/"
328
- },
329
- "input":{"shape":"DetectModerationLabelsRequest"},
330
- "output":{"shape":"DetectModerationLabelsResponse"},
331
- "errors":[
332
- {"shape":"InvalidS3ObjectException"},
333
- {"shape":"InvalidParameterException"},
334
- {"shape":"ImageTooLargeException"},
335
- {"shape":"AccessDeniedException"},
336
- {"shape":"InternalServerError"},
337
- {"shape":"ThrottlingException"},
338
- {"shape":"ProvisionedThroughputExceededException"},
339
- {"shape":"InvalidImageFormatException"},
340
- {"shape":"HumanLoopQuotaExceededException"}
341
- ]
342
- },
343
- "DetectText":{
344
- "name":"DetectText",
345
- "http":{
346
- "method":"POST",
347
- "requestUri":"/"
348
- },
349
- "input":{"shape":"DetectTextRequest"},
350
- "output":{"shape":"DetectTextResponse"},
351
- "errors":[
352
- {"shape":"InvalidS3ObjectException"},
353
- {"shape":"InvalidParameterException"},
354
- {"shape":"ImageTooLargeException"},
355
- {"shape":"AccessDeniedException"},
356
- {"shape":"InternalServerError"},
357
- {"shape":"ThrottlingException"},
358
- {"shape":"ProvisionedThroughputExceededException"},
359
- {"shape":"InvalidImageFormatException"}
360
- ]
361
- },
362
- "GetCelebrityInfo":{
363
- "name":"GetCelebrityInfo",
364
- "http":{
365
- "method":"POST",
366
- "requestUri":"/"
367
- },
368
- "input":{"shape":"GetCelebrityInfoRequest"},
369
- "output":{"shape":"GetCelebrityInfoResponse"},
370
- "errors":[
371
- {"shape":"InvalidParameterException"},
372
- {"shape":"AccessDeniedException"},
373
- {"shape":"InternalServerError"},
374
- {"shape":"ThrottlingException"},
375
- {"shape":"ProvisionedThroughputExceededException"},
376
- {"shape":"ResourceNotFoundException"}
377
- ]
378
- },
379
- "GetCelebrityRecognition":{
380
- "name":"GetCelebrityRecognition",
381
- "http":{
382
- "method":"POST",
383
- "requestUri":"/"
384
- },
385
- "input":{"shape":"GetCelebrityRecognitionRequest"},
386
- "output":{"shape":"GetCelebrityRecognitionResponse"},
387
- "errors":[
388
- {"shape":"AccessDeniedException"},
389
- {"shape":"InternalServerError"},
390
- {"shape":"InvalidParameterException"},
391
- {"shape":"InvalidPaginationTokenException"},
392
- {"shape":"ProvisionedThroughputExceededException"},
393
- {"shape":"ResourceNotFoundException"},
394
- {"shape":"ThrottlingException"}
395
- ]
396
- },
397
- "GetContentModeration":{
398
- "name":"GetContentModeration",
399
- "http":{
400
- "method":"POST",
401
- "requestUri":"/"
402
- },
403
- "input":{"shape":"GetContentModerationRequest"},
404
- "output":{"shape":"GetContentModerationResponse"},
405
- "errors":[
406
- {"shape":"AccessDeniedException"},
407
- {"shape":"InternalServerError"},
408
- {"shape":"InvalidParameterException"},
409
- {"shape":"InvalidPaginationTokenException"},
410
- {"shape":"ProvisionedThroughputExceededException"},
411
- {"shape":"ResourceNotFoundException"},
412
- {"shape":"ThrottlingException"}
413
- ]
414
- },
415
- "GetFaceDetection":{
416
- "name":"GetFaceDetection",
417
- "http":{
418
- "method":"POST",
419
- "requestUri":"/"
420
- },
421
- "input":{"shape":"GetFaceDetectionRequest"},
422
- "output":{"shape":"GetFaceDetectionResponse"},
423
- "errors":[
424
- {"shape":"AccessDeniedException"},
425
- {"shape":"InternalServerError"},
426
- {"shape":"InvalidParameterException"},
427
- {"shape":"InvalidPaginationTokenException"},
428
- {"shape":"ProvisionedThroughputExceededException"},
429
- {"shape":"ResourceNotFoundException"},
430
- {"shape":"ThrottlingException"}
431
- ]
432
- },
433
- "GetFaceSearch":{
434
- "name":"GetFaceSearch",
435
- "http":{
436
- "method":"POST",
437
- "requestUri":"/"
438
- },
439
- "input":{"shape":"GetFaceSearchRequest"},
440
- "output":{"shape":"GetFaceSearchResponse"},
441
- "errors":[
442
- {"shape":"AccessDeniedException"},
443
- {"shape":"InternalServerError"},
444
- {"shape":"InvalidParameterException"},
445
- {"shape":"InvalidPaginationTokenException"},
446
- {"shape":"ProvisionedThroughputExceededException"},
447
- {"shape":"ResourceNotFoundException"},
448
- {"shape":"ThrottlingException"}
449
- ]
450
- },
451
- "GetLabelDetection":{
452
- "name":"GetLabelDetection",
453
- "http":{
454
- "method":"POST",
455
- "requestUri":"/"
456
- },
457
- "input":{"shape":"GetLabelDetectionRequest"},
458
- "output":{"shape":"GetLabelDetectionResponse"},
459
- "errors":[
460
- {"shape":"AccessDeniedException"},
461
- {"shape":"InternalServerError"},
462
- {"shape":"InvalidParameterException"},
463
- {"shape":"InvalidPaginationTokenException"},
464
- {"shape":"ProvisionedThroughputExceededException"},
465
- {"shape":"ResourceNotFoundException"},
466
- {"shape":"ThrottlingException"}
467
- ]
468
- },
469
- "GetPersonTracking":{
470
- "name":"GetPersonTracking",
471
- "http":{
472
- "method":"POST",
473
- "requestUri":"/"
474
- },
475
- "input":{"shape":"GetPersonTrackingRequest"},
476
- "output":{"shape":"GetPersonTrackingResponse"},
477
- "errors":[
478
- {"shape":"AccessDeniedException"},
479
- {"shape":"InternalServerError"},
480
- {"shape":"InvalidParameterException"},
481
- {"shape":"InvalidPaginationTokenException"},
482
- {"shape":"ProvisionedThroughputExceededException"},
483
- {"shape":"ResourceNotFoundException"},
484
- {"shape":"ThrottlingException"}
485
- ]
486
- },
487
- "GetTextDetection":{
488
- "name":"GetTextDetection",
489
- "http":{
490
- "method":"POST",
491
- "requestUri":"/"
492
- },
493
- "input":{"shape":"GetTextDetectionRequest"},
494
- "output":{"shape":"GetTextDetectionResponse"},
495
- "errors":[
496
- {"shape":"AccessDeniedException"},
497
- {"shape":"InternalServerError"},
498
- {"shape":"InvalidParameterException"},
499
- {"shape":"InvalidPaginationTokenException"},
500
- {"shape":"ProvisionedThroughputExceededException"},
501
- {"shape":"ResourceNotFoundException"},
502
- {"shape":"ThrottlingException"}
503
- ]
504
- },
505
- "IndexFaces":{
506
- "name":"IndexFaces",
507
- "http":{
508
- "method":"POST",
509
- "requestUri":"/"
510
- },
511
- "input":{"shape":"IndexFacesRequest"},
512
- "output":{"shape":"IndexFacesResponse"},
513
- "errors":[
514
- {"shape":"InvalidS3ObjectException"},
515
- {"shape":"InvalidParameterException"},
516
- {"shape":"ImageTooLargeException"},
517
- {"shape":"AccessDeniedException"},
518
- {"shape":"InternalServerError"},
519
- {"shape":"ThrottlingException"},
520
- {"shape":"ProvisionedThroughputExceededException"},
521
- {"shape":"ResourceNotFoundException"},
522
- {"shape":"InvalidImageFormatException"}
523
- ]
524
- },
525
- "ListCollections":{
526
- "name":"ListCollections",
527
- "http":{
528
- "method":"POST",
529
- "requestUri":"/"
530
- },
531
- "input":{"shape":"ListCollectionsRequest"},
532
- "output":{"shape":"ListCollectionsResponse"},
533
- "errors":[
534
- {"shape":"InvalidParameterException"},
535
- {"shape":"AccessDeniedException"},
536
- {"shape":"InternalServerError"},
537
- {"shape":"ThrottlingException"},
538
- {"shape":"ProvisionedThroughputExceededException"},
539
- {"shape":"InvalidPaginationTokenException"},
540
- {"shape":"ResourceNotFoundException"}
541
- ]
542
- },
543
- "ListFaces":{
544
- "name":"ListFaces",
545
- "http":{
546
- "method":"POST",
547
- "requestUri":"/"
548
- },
549
- "input":{"shape":"ListFacesRequest"},
550
- "output":{"shape":"ListFacesResponse"},
551
- "errors":[
552
- {"shape":"InvalidParameterException"},
553
- {"shape":"AccessDeniedException"},
554
- {"shape":"InternalServerError"},
555
- {"shape":"ThrottlingException"},
556
- {"shape":"ProvisionedThroughputExceededException"},
557
- {"shape":"InvalidPaginationTokenException"},
558
- {"shape":"ResourceNotFoundException"}
559
- ]
560
- },
561
- "ListStreamProcessors":{
562
- "name":"ListStreamProcessors",
563
- "http":{
564
- "method":"POST",
565
- "requestUri":"/"
566
- },
567
- "input":{"shape":"ListStreamProcessorsRequest"},
568
- "output":{"shape":"ListStreamProcessorsResponse"},
569
- "errors":[
570
- {"shape":"AccessDeniedException"},
571
- {"shape":"InternalServerError"},
572
- {"shape":"ThrottlingException"},
573
- {"shape":"InvalidParameterException"},
574
- {"shape":"InvalidPaginationTokenException"},
575
- {"shape":"ProvisionedThroughputExceededException"}
576
- ]
577
- },
578
- "RecognizeCelebrities":{
579
- "name":"RecognizeCelebrities",
580
- "http":{
581
- "method":"POST",
582
- "requestUri":"/"
583
- },
584
- "input":{"shape":"RecognizeCelebritiesRequest"},
585
- "output":{"shape":"RecognizeCelebritiesResponse"},
586
- "errors":[
587
- {"shape":"InvalidS3ObjectException"},
588
- {"shape":"InvalidParameterException"},
589
- {"shape":"InvalidImageFormatException"},
590
- {"shape":"ImageTooLargeException"},
591
- {"shape":"AccessDeniedException"},
592
- {"shape":"InternalServerError"},
593
- {"shape":"ThrottlingException"},
594
- {"shape":"ProvisionedThroughputExceededException"},
595
- {"shape":"InvalidImageFormatException"}
596
- ]
597
- },
598
- "SearchFaces":{
599
- "name":"SearchFaces",
600
- "http":{
601
- "method":"POST",
602
- "requestUri":"/"
603
- },
604
- "input":{"shape":"SearchFacesRequest"},
605
- "output":{"shape":"SearchFacesResponse"},
606
- "errors":[
607
- {"shape":"InvalidParameterException"},
608
- {"shape":"AccessDeniedException"},
609
- {"shape":"InternalServerError"},
610
- {"shape":"ThrottlingException"},
611
- {"shape":"ProvisionedThroughputExceededException"},
612
- {"shape":"ResourceNotFoundException"}
613
- ]
614
- },
615
- "SearchFacesByImage":{
616
- "name":"SearchFacesByImage",
617
- "http":{
618
- "method":"POST",
619
- "requestUri":"/"
620
- },
621
- "input":{"shape":"SearchFacesByImageRequest"},
622
- "output":{"shape":"SearchFacesByImageResponse"},
623
- "errors":[
624
- {"shape":"InvalidS3ObjectException"},
625
- {"shape":"InvalidParameterException"},
626
- {"shape":"ImageTooLargeException"},
627
- {"shape":"AccessDeniedException"},
628
- {"shape":"InternalServerError"},
629
- {"shape":"ThrottlingException"},
630
- {"shape":"ProvisionedThroughputExceededException"},
631
- {"shape":"ResourceNotFoundException"},
632
- {"shape":"InvalidImageFormatException"}
633
- ]
634
- },
635
- "StartCelebrityRecognition":{
636
- "name":"StartCelebrityRecognition",
637
- "http":{
638
- "method":"POST",
639
- "requestUri":"/"
640
- },
641
- "input":{"shape":"StartCelebrityRecognitionRequest"},
642
- "output":{"shape":"StartCelebrityRecognitionResponse"},
643
- "errors":[
644
- {"shape":"AccessDeniedException"},
645
- {"shape":"IdempotentParameterMismatchException"},
646
- {"shape":"InvalidParameterException"},
647
- {"shape":"InvalidS3ObjectException"},
648
- {"shape":"InternalServerError"},
649
- {"shape":"VideoTooLargeException"},
650
- {"shape":"ProvisionedThroughputExceededException"},
651
- {"shape":"LimitExceededException"},
652
- {"shape":"ThrottlingException"}
653
- ],
654
- "idempotent":true
655
- },
656
- "StartContentModeration":{
657
- "name":"StartContentModeration",
658
- "http":{
659
- "method":"POST",
660
- "requestUri":"/"
661
- },
662
- "input":{"shape":"StartContentModerationRequest"},
663
- "output":{"shape":"StartContentModerationResponse"},
664
- "errors":[
665
- {"shape":"AccessDeniedException"},
666
- {"shape":"IdempotentParameterMismatchException"},
667
- {"shape":"InvalidParameterException"},
668
- {"shape":"InvalidS3ObjectException"},
669
- {"shape":"InternalServerError"},
670
- {"shape":"VideoTooLargeException"},
671
- {"shape":"ProvisionedThroughputExceededException"},
672
- {"shape":"LimitExceededException"},
673
- {"shape":"ThrottlingException"}
674
- ],
675
- "idempotent":true
676
- },
677
- "StartFaceDetection":{
678
- "name":"StartFaceDetection",
679
- "http":{
680
- "method":"POST",
681
- "requestUri":"/"
682
- },
683
- "input":{"shape":"StartFaceDetectionRequest"},
684
- "output":{"shape":"StartFaceDetectionResponse"},
685
- "errors":[
686
- {"shape":"AccessDeniedException"},
687
- {"shape":"IdempotentParameterMismatchException"},
688
- {"shape":"InvalidParameterException"},
689
- {"shape":"InvalidS3ObjectException"},
690
- {"shape":"InternalServerError"},
691
- {"shape":"VideoTooLargeException"},
692
- {"shape":"ProvisionedThroughputExceededException"},
693
- {"shape":"LimitExceededException"},
694
- {"shape":"ThrottlingException"}
695
- ],
696
- "idempotent":true
697
- },
698
- "StartFaceSearch":{
699
- "name":"StartFaceSearch",
700
- "http":{
701
- "method":"POST",
702
- "requestUri":"/"
703
- },
704
- "input":{"shape":"StartFaceSearchRequest"},
705
- "output":{"shape":"StartFaceSearchResponse"},
706
- "errors":[
707
- {"shape":"AccessDeniedException"},
708
- {"shape":"IdempotentParameterMismatchException"},
709
- {"shape":"InvalidParameterException"},
710
- {"shape":"InvalidS3ObjectException"},
711
- {"shape":"InternalServerError"},
712
- {"shape":"VideoTooLargeException"},
713
- {"shape":"ProvisionedThroughputExceededException"},
714
- {"shape":"LimitExceededException"},
715
- {"shape":"ResourceNotFoundException"},
716
- {"shape":"ThrottlingException"}
717
- ],
718
- "idempotent":true
719
- },
720
- "StartLabelDetection":{
721
- "name":"StartLabelDetection",
722
- "http":{
723
- "method":"POST",
724
- "requestUri":"/"
725
- },
726
- "input":{"shape":"StartLabelDetectionRequest"},
727
- "output":{"shape":"StartLabelDetectionResponse"},
728
- "errors":[
729
- {"shape":"AccessDeniedException"},
730
- {"shape":"IdempotentParameterMismatchException"},
731
- {"shape":"InvalidParameterException"},
732
- {"shape":"InvalidS3ObjectException"},
733
- {"shape":"InternalServerError"},
734
- {"shape":"VideoTooLargeException"},
735
- {"shape":"ProvisionedThroughputExceededException"},
736
- {"shape":"LimitExceededException"},
737
- {"shape":"ThrottlingException"}
738
- ],
739
- "idempotent":true
740
- },
741
- "StartPersonTracking":{
742
- "name":"StartPersonTracking",
743
- "http":{
744
- "method":"POST",
745
- "requestUri":"/"
746
- },
747
- "input":{"shape":"StartPersonTrackingRequest"},
748
- "output":{"shape":"StartPersonTrackingResponse"},
749
- "errors":[
750
- {"shape":"AccessDeniedException"},
751
- {"shape":"IdempotentParameterMismatchException"},
752
- {"shape":"InvalidParameterException"},
753
- {"shape":"InvalidS3ObjectException"},
754
- {"shape":"InternalServerError"},
755
- {"shape":"VideoTooLargeException"},
756
- {"shape":"ProvisionedThroughputExceededException"},
757
- {"shape":"LimitExceededException"},
758
- {"shape":"ThrottlingException"}
759
- ],
760
- "idempotent":true
761
- },
762
- "StartProjectVersion":{
763
- "name":"StartProjectVersion",
764
- "http":{
765
- "method":"POST",
766
- "requestUri":"/"
767
- },
768
- "input":{"shape":"StartProjectVersionRequest"},
769
- "output":{"shape":"StartProjectVersionResponse"},
770
- "errors":[
771
- {"shape":"ResourceNotFoundException"},
772
- {"shape":"ResourceInUseException"},
773
- {"shape":"LimitExceededException"},
774
- {"shape":"InvalidParameterException"},
775
- {"shape":"AccessDeniedException"},
776
- {"shape":"InternalServerError"},
777
- {"shape":"ThrottlingException"},
778
- {"shape":"ProvisionedThroughputExceededException"}
779
- ]
780
- },
781
- "StartStreamProcessor":{
782
- "name":"StartStreamProcessor",
783
- "http":{
784
- "method":"POST",
785
- "requestUri":"/"
786
- },
787
- "input":{"shape":"StartStreamProcessorRequest"},
788
- "output":{"shape":"StartStreamProcessorResponse"},
789
- "errors":[
790
- {"shape":"AccessDeniedException"},
791
- {"shape":"InternalServerError"},
792
- {"shape":"ThrottlingException"},
793
- {"shape":"InvalidParameterException"},
794
- {"shape":"ResourceNotFoundException"},
795
- {"shape":"ResourceInUseException"},
796
- {"shape":"ProvisionedThroughputExceededException"}
797
- ]
798
- },
799
- "StartTextDetection":{
800
- "name":"StartTextDetection",
801
- "http":{
802
- "method":"POST",
803
- "requestUri":"/"
804
- },
805
- "input":{"shape":"StartTextDetectionRequest"},
806
- "output":{"shape":"StartTextDetectionResponse"},
807
- "errors":[
808
- {"shape":"AccessDeniedException"},
809
- {"shape":"IdempotentParameterMismatchException"},
810
- {"shape":"InvalidParameterException"},
811
- {"shape":"InvalidS3ObjectException"},
812
- {"shape":"InternalServerError"},
813
- {"shape":"VideoTooLargeException"},
814
- {"shape":"ProvisionedThroughputExceededException"},
815
- {"shape":"LimitExceededException"},
816
- {"shape":"ThrottlingException"}
817
- ],
818
- "idempotent":true
819
- },
820
- "StopProjectVersion":{
821
- "name":"StopProjectVersion",
822
- "http":{
823
- "method":"POST",
824
- "requestUri":"/"
825
- },
826
- "input":{"shape":"StopProjectVersionRequest"},
827
- "output":{"shape":"StopProjectVersionResponse"},
828
- "errors":[
829
- {"shape":"ResourceNotFoundException"},
830
- {"shape":"ResourceInUseException"},
831
- {"shape":"InvalidParameterException"},
832
- {"shape":"AccessDeniedException"},
833
- {"shape":"InternalServerError"},
834
- {"shape":"ThrottlingException"},
835
- {"shape":"ProvisionedThroughputExceededException"}
836
- ]
837
- },
838
- "StopStreamProcessor":{
839
- "name":"StopStreamProcessor",
840
- "http":{
841
- "method":"POST",
842
- "requestUri":"/"
843
- },
844
- "input":{"shape":"StopStreamProcessorRequest"},
845
- "output":{"shape":"StopStreamProcessorResponse"},
846
- "errors":[
847
- {"shape":"AccessDeniedException"},
848
- {"shape":"InternalServerError"},
849
- {"shape":"ThrottlingException"},
850
- {"shape":"InvalidParameterException"},
851
- {"shape":"ResourceNotFoundException"},
852
- {"shape":"ResourceInUseException"},
853
- {"shape":"ProvisionedThroughputExceededException"}
854
- ]
855
- }
856
- },
857
- "shapes":{
858
- "AccessDeniedException":{
859
- "type":"structure",
860
- "members":{
861
- },
862
- "exception":true
863
- },
864
- "AgeRange":{
865
- "type":"structure",
866
- "members":{
867
- "Low":{"shape":"UInteger"},
868
- "High":{"shape":"UInteger"}
869
- }
870
- },
871
- "Asset":{
872
- "type":"structure",
873
- "members":{
874
- "GroundTruthManifest":{"shape":"GroundTruthManifest"}
875
- }
876
- },
877
- "Assets":{
878
- "type":"list",
879
- "member":{"shape":"Asset"}
880
- },
881
- "Attribute":{
882
- "type":"string",
883
- "enum":[
884
- "DEFAULT",
885
- "ALL"
886
- ]
887
- },
888
- "Attributes":{
889
- "type":"list",
890
- "member":{"shape":"Attribute"}
891
- },
892
- "Beard":{
893
- "type":"structure",
894
- "members":{
895
- "Value":{"shape":"Boolean"},
896
- "Confidence":{"shape":"Percent"}
897
- }
898
- },
899
- "Boolean":{"type":"boolean"},
900
- "BoundingBox":{
901
- "type":"structure",
902
- "members":{
903
- "Width":{"shape":"Float"},
904
- "Height":{"shape":"Float"},
905
- "Left":{"shape":"Float"},
906
- "Top":{"shape":"Float"}
907
- }
908
- },
909
- "BoundingBoxHeight":{
910
- "type":"float",
911
- "max":1,
912
- "min":0
913
- },
914
- "BoundingBoxWidth":{
915
- "type":"float",
916
- "max":1,
917
- "min":0
918
- },
919
- "Celebrity":{
920
- "type":"structure",
921
- "members":{
922
- "Urls":{"shape":"Urls"},
923
- "Name":{"shape":"String"},
924
- "Id":{"shape":"RekognitionUniqueId"},
925
- "Face":{"shape":"ComparedFace"},
926
- "MatchConfidence":{"shape":"Percent"}
927
- }
928
- },
929
- "CelebrityDetail":{
930
- "type":"structure",
931
- "members":{
932
- "Urls":{"shape":"Urls"},
933
- "Name":{"shape":"String"},
934
- "Id":{"shape":"RekognitionUniqueId"},
935
- "Confidence":{"shape":"Percent"},
936
- "BoundingBox":{"shape":"BoundingBox"},
937
- "Face":{"shape":"FaceDetail"}
938
- }
939
- },
940
- "CelebrityList":{
941
- "type":"list",
942
- "member":{"shape":"Celebrity"}
943
- },
944
- "CelebrityRecognition":{
945
- "type":"structure",
946
- "members":{
947
- "Timestamp":{"shape":"Timestamp"},
948
- "Celebrity":{"shape":"CelebrityDetail"}
949
- }
950
- },
951
- "CelebrityRecognitionSortBy":{
952
- "type":"string",
953
- "enum":[
954
- "ID",
955
- "TIMESTAMP"
956
- ]
957
- },
958
- "CelebrityRecognitions":{
959
- "type":"list",
960
- "member":{"shape":"CelebrityRecognition"}
961
- },
962
- "ClientRequestToken":{
963
- "type":"string",
964
- "max":64,
965
- "min":1,
966
- "pattern":"^[a-zA-Z0-9-_]+$"
967
- },
968
- "CollectionId":{
969
- "type":"string",
970
- "max":255,
971
- "min":1,
972
- "pattern":"[a-zA-Z0-9_.\\-]+"
973
- },
974
- "CollectionIdList":{
975
- "type":"list",
976
- "member":{"shape":"CollectionId"}
977
- },
978
- "CompareFacesMatch":{
979
- "type":"structure",
980
- "members":{
981
- "Similarity":{"shape":"Percent"},
982
- "Face":{"shape":"ComparedFace"}
983
- }
984
- },
985
- "CompareFacesMatchList":{
986
- "type":"list",
987
- "member":{"shape":"CompareFacesMatch"}
988
- },
989
- "CompareFacesRequest":{
990
- "type":"structure",
991
- "required":[
992
- "SourceImage",
993
- "TargetImage"
994
- ],
995
- "members":{
996
- "SourceImage":{"shape":"Image"},
997
- "TargetImage":{"shape":"Image"},
998
- "SimilarityThreshold":{"shape":"Percent"},
999
- "QualityFilter":{"shape":"QualityFilter"}
1000
- }
1001
- },
1002
- "CompareFacesResponse":{
1003
- "type":"structure",
1004
- "members":{
1005
- "SourceImageFace":{"shape":"ComparedSourceImageFace"},
1006
- "FaceMatches":{"shape":"CompareFacesMatchList"},
1007
- "UnmatchedFaces":{"shape":"CompareFacesUnmatchList"},
1008
- "SourceImageOrientationCorrection":{"shape":"OrientationCorrection"},
1009
- "TargetImageOrientationCorrection":{"shape":"OrientationCorrection"}
1010
- }
1011
- },
1012
- "CompareFacesUnmatchList":{
1013
- "type":"list",
1014
- "member":{"shape":"ComparedFace"}
1015
- },
1016
- "ComparedFace":{
1017
- "type":"structure",
1018
- "members":{
1019
- "BoundingBox":{"shape":"BoundingBox"},
1020
- "Confidence":{"shape":"Percent"},
1021
- "Landmarks":{"shape":"Landmarks"},
1022
- "Pose":{"shape":"Pose"},
1023
- "Quality":{"shape":"ImageQuality"}
1024
- }
1025
- },
1026
- "ComparedFaceList":{
1027
- "type":"list",
1028
- "member":{"shape":"ComparedFace"}
1029
- },
1030
- "ComparedSourceImageFace":{
1031
- "type":"structure",
1032
- "members":{
1033
- "BoundingBox":{"shape":"BoundingBox"},
1034
- "Confidence":{"shape":"Percent"}
1035
- }
1036
- },
1037
- "ContentClassifier":{
1038
- "type":"string",
1039
- "enum":[
1040
- "FreeOfPersonallyIdentifiableInformation",
1041
- "FreeOfAdultContent"
1042
- ]
1043
- },
1044
- "ContentClassifiers":{
1045
- "type":"list",
1046
- "member":{"shape":"ContentClassifier"},
1047
- "max":256
1048
- },
1049
- "ContentModerationDetection":{
1050
- "type":"structure",
1051
- "members":{
1052
- "Timestamp":{"shape":"Timestamp"},
1053
- "ModerationLabel":{"shape":"ModerationLabel"}
1054
- }
1055
- },
1056
- "ContentModerationDetections":{
1057
- "type":"list",
1058
- "member":{"shape":"ContentModerationDetection"}
1059
- },
1060
- "ContentModerationSortBy":{
1061
- "type":"string",
1062
- "enum":[
1063
- "NAME",
1064
- "TIMESTAMP"
1065
- ]
1066
- },
1067
- "CreateCollectionRequest":{
1068
- "type":"structure",
1069
- "required":["CollectionId"],
1070
- "members":{
1071
- "CollectionId":{"shape":"CollectionId"}
1072
- }
1073
- },
1074
- "CreateCollectionResponse":{
1075
- "type":"structure",
1076
- "members":{
1077
- "StatusCode":{"shape":"UInteger"},
1078
- "CollectionArn":{"shape":"String"},
1079
- "FaceModelVersion":{"shape":"String"}
1080
- }
1081
- },
1082
- "CreateProjectRequest":{
1083
- "type":"structure",
1084
- "required":["ProjectName"],
1085
- "members":{
1086
- "ProjectName":{"shape":"ProjectName"}
1087
- }
1088
- },
1089
- "CreateProjectResponse":{
1090
- "type":"structure",
1091
- "members":{
1092
- "ProjectArn":{"shape":"ProjectArn"}
1093
- }
1094
- },
1095
- "CreateProjectVersionRequest":{
1096
- "type":"structure",
1097
- "required":[
1098
- "ProjectArn",
1099
- "VersionName",
1100
- "OutputConfig",
1101
- "TrainingData",
1102
- "TestingData"
1103
- ],
1104
- "members":{
1105
- "ProjectArn":{"shape":"ProjectArn"},
1106
- "VersionName":{"shape":"VersionName"},
1107
- "OutputConfig":{"shape":"OutputConfig"},
1108
- "TrainingData":{"shape":"TrainingData"},
1109
- "TestingData":{"shape":"TestingData"}
1110
- }
1111
- },
1112
- "CreateProjectVersionResponse":{
1113
- "type":"structure",
1114
- "members":{
1115
- "ProjectVersionArn":{"shape":"ProjectVersionArn"}
1116
- }
1117
- },
1118
- "CreateStreamProcessorRequest":{
1119
- "type":"structure",
1120
- "required":[
1121
- "Input",
1122
- "Output",
1123
- "Name",
1124
- "Settings",
1125
- "RoleArn"
1126
- ],
1127
- "members":{
1128
- "Input":{"shape":"StreamProcessorInput"},
1129
- "Output":{"shape":"StreamProcessorOutput"},
1130
- "Name":{"shape":"StreamProcessorName"},
1131
- "Settings":{"shape":"StreamProcessorSettings"},
1132
- "RoleArn":{"shape":"RoleArn"}
1133
- }
1134
- },
1135
- "CreateStreamProcessorResponse":{
1136
- "type":"structure",
1137
- "members":{
1138
- "StreamProcessorArn":{"shape":"StreamProcessorArn"}
1139
- }
1140
- },
1141
- "CustomLabel":{
1142
- "type":"structure",
1143
- "members":{
1144
- "Name":{"shape":"String"},
1145
- "Confidence":{"shape":"Percent"},
1146
- "Geometry":{"shape":"Geometry"}
1147
- }
1148
- },
1149
- "CustomLabels":{
1150
- "type":"list",
1151
- "member":{"shape":"CustomLabel"}
1152
- },
1153
- "DateTime":{"type":"timestamp"},
1154
- "Degree":{
1155
- "type":"float",
1156
- "max":180,
1157
- "min":-180
1158
- },
1159
- "DeleteCollectionRequest":{
1160
- "type":"structure",
1161
- "required":["CollectionId"],
1162
- "members":{
1163
- "CollectionId":{"shape":"CollectionId"}
1164
- }
1165
- },
1166
- "DeleteCollectionResponse":{
1167
- "type":"structure",
1168
- "members":{
1169
- "StatusCode":{"shape":"UInteger"}
1170
- }
1171
- },
1172
- "DeleteFacesRequest":{
1173
- "type":"structure",
1174
- "required":[
1175
- "CollectionId",
1176
- "FaceIds"
1177
- ],
1178
- "members":{
1179
- "CollectionId":{"shape":"CollectionId"},
1180
- "FaceIds":{"shape":"FaceIdList"}
1181
- }
1182
- },
1183
- "DeleteFacesResponse":{
1184
- "type":"structure",
1185
- "members":{
1186
- "DeletedFaces":{"shape":"FaceIdList"}
1187
- }
1188
- },
1189
- "DeleteProjectRequest":{
1190
- "type":"structure",
1191
- "required":["ProjectArn"],
1192
- "members":{
1193
- "ProjectArn":{"shape":"ProjectArn"}
1194
- }
1195
- },
1196
- "DeleteProjectResponse":{
1197
- "type":"structure",
1198
- "members":{
1199
- "Status":{"shape":"ProjectStatus"}
1200
- }
1201
- },
1202
- "DeleteProjectVersionRequest":{
1203
- "type":"structure",
1204
- "required":["ProjectVersionArn"],
1205
- "members":{
1206
- "ProjectVersionArn":{"shape":"ProjectVersionArn"}
1207
- }
1208
- },
1209
- "DeleteProjectVersionResponse":{
1210
- "type":"structure",
1211
- "members":{
1212
- "Status":{"shape":"ProjectVersionStatus"}
1213
- }
1214
- },
1215
- "DeleteStreamProcessorRequest":{
1216
- "type":"structure",
1217
- "required":["Name"],
1218
- "members":{
1219
- "Name":{"shape":"StreamProcessorName"}
1220
- }
1221
- },
1222
- "DeleteStreamProcessorResponse":{
1223
- "type":"structure",
1224
- "members":{
1225
- }
1226
- },
1227
- "DescribeCollectionRequest":{
1228
- "type":"structure",
1229
- "required":["CollectionId"],
1230
- "members":{
1231
- "CollectionId":{"shape":"CollectionId"}
1232
- }
1233
- },
1234
- "DescribeCollectionResponse":{
1235
- "type":"structure",
1236
- "members":{
1237
- "FaceCount":{"shape":"ULong"},
1238
- "FaceModelVersion":{"shape":"String"},
1239
- "CollectionARN":{"shape":"String"},
1240
- "CreationTimestamp":{"shape":"DateTime"}
1241
- }
1242
- },
1243
- "DescribeProjectVersionsRequest":{
1244
- "type":"structure",
1245
- "required":["ProjectArn"],
1246
- "members":{
1247
- "ProjectArn":{"shape":"ProjectArn"},
1248
- "VersionNames":{"shape":"VersionNames"},
1249
- "NextToken":{"shape":"ExtendedPaginationToken"},
1250
- "MaxResults":{"shape":"ProjectVersionsPageSize"}
1251
- }
1252
- },
1253
- "DescribeProjectVersionsResponse":{
1254
- "type":"structure",
1255
- "members":{
1256
- "ProjectVersionDescriptions":{"shape":"ProjectVersionDescriptions"},
1257
- "NextToken":{"shape":"ExtendedPaginationToken"}
1258
- }
1259
- },
1260
- "DescribeProjectsRequest":{
1261
- "type":"structure",
1262
- "members":{
1263
- "NextToken":{"shape":"ExtendedPaginationToken"},
1264
- "MaxResults":{"shape":"ProjectsPageSize"}
1265
- }
1266
- },
1267
- "DescribeProjectsResponse":{
1268
- "type":"structure",
1269
- "members":{
1270
- "ProjectDescriptions":{"shape":"ProjectDescriptions"},
1271
- "NextToken":{"shape":"ExtendedPaginationToken"}
1272
- }
1273
- },
1274
- "DescribeStreamProcessorRequest":{
1275
- "type":"structure",
1276
- "required":["Name"],
1277
- "members":{
1278
- "Name":{"shape":"StreamProcessorName"}
1279
- }
1280
- },
1281
- "DescribeStreamProcessorResponse":{
1282
- "type":"structure",
1283
- "members":{
1284
- "Name":{"shape":"StreamProcessorName"},
1285
- "StreamProcessorArn":{"shape":"StreamProcessorArn"},
1286
- "Status":{"shape":"StreamProcessorStatus"},
1287
- "StatusMessage":{"shape":"String"},
1288
- "CreationTimestamp":{"shape":"DateTime"},
1289
- "LastUpdateTimestamp":{"shape":"DateTime"},
1290
- "Input":{"shape":"StreamProcessorInput"},
1291
- "Output":{"shape":"StreamProcessorOutput"},
1292
- "RoleArn":{"shape":"RoleArn"},
1293
- "Settings":{"shape":"StreamProcessorSettings"}
1294
- }
1295
- },
1296
- "DetectCustomLabelsRequest":{
1297
- "type":"structure",
1298
- "required":[
1299
- "ProjectVersionArn",
1300
- "Image"
1301
- ],
1302
- "members":{
1303
- "ProjectVersionArn":{"shape":"ProjectVersionArn"},
1304
- "Image":{"shape":"Image"},
1305
- "MaxResults":{"shape":"UInteger"},
1306
- "MinConfidence":{"shape":"Percent"}
1307
- }
1308
- },
1309
- "DetectCustomLabelsResponse":{
1310
- "type":"structure",
1311
- "members":{
1312
- "CustomLabels":{"shape":"CustomLabels"}
1313
- }
1314
- },
1315
- "DetectFacesRequest":{
1316
- "type":"structure",
1317
- "required":["Image"],
1318
- "members":{
1319
- "Image":{"shape":"Image"},
1320
- "Attributes":{"shape":"Attributes"}
1321
- }
1322
- },
1323
- "DetectFacesResponse":{
1324
- "type":"structure",
1325
- "members":{
1326
- "FaceDetails":{"shape":"FaceDetailList"},
1327
- "OrientationCorrection":{"shape":"OrientationCorrection"}
1328
- }
1329
- },
1330
- "DetectLabelsRequest":{
1331
- "type":"structure",
1332
- "required":["Image"],
1333
- "members":{
1334
- "Image":{"shape":"Image"},
1335
- "MaxLabels":{"shape":"UInteger"},
1336
- "MinConfidence":{"shape":"Percent"}
1337
- }
1338
- },
1339
- "DetectLabelsResponse":{
1340
- "type":"structure",
1341
- "members":{
1342
- "Labels":{"shape":"Labels"},
1343
- "OrientationCorrection":{"shape":"OrientationCorrection"},
1344
- "LabelModelVersion":{"shape":"String"}
1345
- }
1346
- },
1347
- "DetectModerationLabelsRequest":{
1348
- "type":"structure",
1349
- "required":["Image"],
1350
- "members":{
1351
- "Image":{"shape":"Image"},
1352
- "MinConfidence":{"shape":"Percent"},
1353
- "HumanLoopConfig":{"shape":"HumanLoopConfig"}
1354
- }
1355
- },
1356
- "DetectModerationLabelsResponse":{
1357
- "type":"structure",
1358
- "members":{
1359
- "ModerationLabels":{"shape":"ModerationLabels"},
1360
- "ModerationModelVersion":{"shape":"String"},
1361
- "HumanLoopActivationOutput":{"shape":"HumanLoopActivationOutput"}
1362
- }
1363
- },
1364
- "DetectTextFilters":{
1365
- "type":"structure",
1366
- "members":{
1367
- "WordFilter":{"shape":"DetectionFilter"},
1368
- "RegionsOfInterest":{"shape":"RegionsOfInterest"}
1369
- }
1370
- },
1371
- "DetectTextRequest":{
1372
- "type":"structure",
1373
- "required":["Image"],
1374
- "members":{
1375
- "Image":{"shape":"Image"},
1376
- "Filters":{"shape":"DetectTextFilters"}
1377
- }
1378
- },
1379
- "DetectTextResponse":{
1380
- "type":"structure",
1381
- "members":{
1382
- "TextDetections":{"shape":"TextDetectionList"},
1383
- "TextModelVersion":{"shape":"String"}
1384
- }
1385
- },
1386
- "DetectionFilter":{
1387
- "type":"structure",
1388
- "members":{
1389
- "MinConfidence":{"shape":"Percent"},
1390
- "MinBoundingBoxHeight":{"shape":"BoundingBoxHeight"},
1391
- "MinBoundingBoxWidth":{"shape":"BoundingBoxWidth"}
1392
- }
1393
- },
1394
- "Emotion":{
1395
- "type":"structure",
1396
- "members":{
1397
- "Type":{"shape":"EmotionName"},
1398
- "Confidence":{"shape":"Percent"}
1399
- }
1400
- },
1401
- "EmotionName":{
1402
- "type":"string",
1403
- "enum":[
1404
- "HAPPY",
1405
- "SAD",
1406
- "ANGRY",
1407
- "CONFUSED",
1408
- "DISGUSTED",
1409
- "SURPRISED",
1410
- "CALM",
1411
- "UNKNOWN",
1412
- "FEAR"
1413
- ]
1414
- },
1415
- "Emotions":{
1416
- "type":"list",
1417
- "member":{"shape":"Emotion"}
1418
- },
1419
- "EvaluationResult":{
1420
- "type":"structure",
1421
- "members":{
1422
- "F1Score":{"shape":"Float"},
1423
- "Summary":{"shape":"Summary"}
1424
- }
1425
- },
1426
- "ExtendedPaginationToken":{
1427
- "type":"string",
1428
- "max":1024
1429
- },
1430
- "ExternalImageId":{
1431
- "type":"string",
1432
- "max":255,
1433
- "min":1,
1434
- "pattern":"[a-zA-Z0-9_.\\-:]+"
1435
- },
1436
- "EyeOpen":{
1437
- "type":"structure",
1438
- "members":{
1439
- "Value":{"shape":"Boolean"},
1440
- "Confidence":{"shape":"Percent"}
1441
- }
1442
- },
1443
- "Eyeglasses":{
1444
- "type":"structure",
1445
- "members":{
1446
- "Value":{"shape":"Boolean"},
1447
- "Confidence":{"shape":"Percent"}
1448
- }
1449
- },
1450
- "Face":{
1451
- "type":"structure",
1452
- "members":{
1453
- "FaceId":{"shape":"FaceId"},
1454
- "BoundingBox":{"shape":"BoundingBox"},
1455
- "ImageId":{"shape":"ImageId"},
1456
- "ExternalImageId":{"shape":"ExternalImageId"},
1457
- "Confidence":{"shape":"Percent"}
1458
- }
1459
- },
1460
- "FaceAttributes":{
1461
- "type":"string",
1462
- "enum":[
1463
- "DEFAULT",
1464
- "ALL"
1465
- ]
1466
- },
1467
- "FaceDetail":{
1468
- "type":"structure",
1469
- "members":{
1470
- "BoundingBox":{"shape":"BoundingBox"},
1471
- "AgeRange":{"shape":"AgeRange"},
1472
- "Smile":{"shape":"Smile"},
1473
- "Eyeglasses":{"shape":"Eyeglasses"},
1474
- "Sunglasses":{"shape":"Sunglasses"},
1475
- "Gender":{"shape":"Gender"},
1476
- "Beard":{"shape":"Beard"},
1477
- "Mustache":{"shape":"Mustache"},
1478
- "EyesOpen":{"shape":"EyeOpen"},
1479
- "MouthOpen":{"shape":"MouthOpen"},
1480
- "Emotions":{"shape":"Emotions"},
1481
- "Landmarks":{"shape":"Landmarks"},
1482
- "Pose":{"shape":"Pose"},
1483
- "Quality":{"shape":"ImageQuality"},
1484
- "Confidence":{"shape":"Percent"}
1485
- }
1486
- },
1487
- "FaceDetailList":{
1488
- "type":"list",
1489
- "member":{"shape":"FaceDetail"}
1490
- },
1491
- "FaceDetection":{
1492
- "type":"structure",
1493
- "members":{
1494
- "Timestamp":{"shape":"Timestamp"},
1495
- "Face":{"shape":"FaceDetail"}
1496
- }
1497
- },
1498
- "FaceDetections":{
1499
- "type":"list",
1500
- "member":{"shape":"FaceDetection"}
1501
- },
1502
- "FaceId":{
1503
- "type":"string",
1504
- "pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
1505
- },
1506
- "FaceIdList":{
1507
- "type":"list",
1508
- "member":{"shape":"FaceId"},
1509
- "max":4096,
1510
- "min":1
1511
- },
1512
- "FaceList":{
1513
- "type":"list",
1514
- "member":{"shape":"Face"}
1515
- },
1516
- "FaceMatch":{
1517
- "type":"structure",
1518
- "members":{
1519
- "Similarity":{"shape":"Percent"},
1520
- "Face":{"shape":"Face"}
1521
- }
1522
- },
1523
- "FaceMatchList":{
1524
- "type":"list",
1525
- "member":{"shape":"FaceMatch"}
1526
- },
1527
- "FaceModelVersionList":{
1528
- "type":"list",
1529
- "member":{"shape":"String"}
1530
- },
1531
- "FaceRecord":{
1532
- "type":"structure",
1533
- "members":{
1534
- "Face":{"shape":"Face"},
1535
- "FaceDetail":{"shape":"FaceDetail"}
1536
- }
1537
- },
1538
- "FaceRecordList":{
1539
- "type":"list",
1540
- "member":{"shape":"FaceRecord"}
1541
- },
1542
- "FaceSearchSettings":{
1543
- "type":"structure",
1544
- "members":{
1545
- "CollectionId":{"shape":"CollectionId"},
1546
- "FaceMatchThreshold":{"shape":"Percent"}
1547
- }
1548
- },
1549
- "FaceSearchSortBy":{
1550
- "type":"string",
1551
- "enum":[
1552
- "INDEX",
1553
- "TIMESTAMP"
1554
- ]
1555
- },
1556
- "Float":{"type":"float"},
1557
- "FlowDefinitionArn":{
1558
- "type":"string",
1559
- "max":256
1560
- },
1561
- "Gender":{
1562
- "type":"structure",
1563
- "members":{
1564
- "Value":{"shape":"GenderType"},
1565
- "Confidence":{"shape":"Percent"}
1566
- }
1567
- },
1568
- "GenderType":{
1569
- "type":"string",
1570
- "enum":[
1571
- "Male",
1572
- "Female"
1573
- ]
1574
- },
1575
- "Geometry":{
1576
- "type":"structure",
1577
- "members":{
1578
- "BoundingBox":{"shape":"BoundingBox"},
1579
- "Polygon":{"shape":"Polygon"}
1580
- }
1581
- },
1582
- "GetCelebrityInfoRequest":{
1583
- "type":"structure",
1584
- "required":["Id"],
1585
- "members":{
1586
- "Id":{"shape":"RekognitionUniqueId"}
1587
- }
1588
- },
1589
- "GetCelebrityInfoResponse":{
1590
- "type":"structure",
1591
- "members":{
1592
- "Urls":{"shape":"Urls"},
1593
- "Name":{"shape":"String"}
1594
- }
1595
- },
1596
- "GetCelebrityRecognitionRequest":{
1597
- "type":"structure",
1598
- "required":["JobId"],
1599
- "members":{
1600
- "JobId":{"shape":"JobId"},
1601
- "MaxResults":{"shape":"MaxResults"},
1602
- "NextToken":{"shape":"PaginationToken"},
1603
- "SortBy":{"shape":"CelebrityRecognitionSortBy"}
1604
- }
1605
- },
1606
- "GetCelebrityRecognitionResponse":{
1607
- "type":"structure",
1608
- "members":{
1609
- "JobStatus":{"shape":"VideoJobStatus"},
1610
- "StatusMessage":{"shape":"StatusMessage"},
1611
- "VideoMetadata":{"shape":"VideoMetadata"},
1612
- "NextToken":{"shape":"PaginationToken"},
1613
- "Celebrities":{"shape":"CelebrityRecognitions"}
1614
- }
1615
- },
1616
- "GetContentModerationRequest":{
1617
- "type":"structure",
1618
- "required":["JobId"],
1619
- "members":{
1620
- "JobId":{"shape":"JobId"},
1621
- "MaxResults":{"shape":"MaxResults"},
1622
- "NextToken":{"shape":"PaginationToken"},
1623
- "SortBy":{"shape":"ContentModerationSortBy"}
1624
- }
1625
- },
1626
- "GetContentModerationResponse":{
1627
- "type":"structure",
1628
- "members":{
1629
- "JobStatus":{"shape":"VideoJobStatus"},
1630
- "StatusMessage":{"shape":"StatusMessage"},
1631
- "VideoMetadata":{"shape":"VideoMetadata"},
1632
- "ModerationLabels":{"shape":"ContentModerationDetections"},
1633
- "NextToken":{"shape":"PaginationToken"},
1634
- "ModerationModelVersion":{"shape":"String"}
1635
- }
1636
- },
1637
- "GetFaceDetectionRequest":{
1638
- "type":"structure",
1639
- "required":["JobId"],
1640
- "members":{
1641
- "JobId":{"shape":"JobId"},
1642
- "MaxResults":{"shape":"MaxResults"},
1643
- "NextToken":{"shape":"PaginationToken"}
1644
- }
1645
- },
1646
- "GetFaceDetectionResponse":{
1647
- "type":"structure",
1648
- "members":{
1649
- "JobStatus":{"shape":"VideoJobStatus"},
1650
- "StatusMessage":{"shape":"StatusMessage"},
1651
- "VideoMetadata":{"shape":"VideoMetadata"},
1652
- "NextToken":{"shape":"PaginationToken"},
1653
- "Faces":{"shape":"FaceDetections"}
1654
- }
1655
- },
1656
- "GetFaceSearchRequest":{
1657
- "type":"structure",
1658
- "required":["JobId"],
1659
- "members":{
1660
- "JobId":{"shape":"JobId"},
1661
- "MaxResults":{"shape":"MaxResults"},
1662
- "NextToken":{"shape":"PaginationToken"},
1663
- "SortBy":{"shape":"FaceSearchSortBy"}
1664
- }
1665
- },
1666
- "GetFaceSearchResponse":{
1667
- "type":"structure",
1668
- "members":{
1669
- "JobStatus":{"shape":"VideoJobStatus"},
1670
- "StatusMessage":{"shape":"StatusMessage"},
1671
- "NextToken":{"shape":"PaginationToken"},
1672
- "VideoMetadata":{"shape":"VideoMetadata"},
1673
- "Persons":{"shape":"PersonMatches"}
1674
- }
1675
- },
1676
- "GetLabelDetectionRequest":{
1677
- "type":"structure",
1678
- "required":["JobId"],
1679
- "members":{
1680
- "JobId":{"shape":"JobId"},
1681
- "MaxResults":{"shape":"MaxResults"},
1682
- "NextToken":{"shape":"PaginationToken"},
1683
- "SortBy":{"shape":"LabelDetectionSortBy"}
1684
- }
1685
- },
1686
- "GetLabelDetectionResponse":{
1687
- "type":"structure",
1688
- "members":{
1689
- "JobStatus":{"shape":"VideoJobStatus"},
1690
- "StatusMessage":{"shape":"StatusMessage"},
1691
- "VideoMetadata":{"shape":"VideoMetadata"},
1692
- "NextToken":{"shape":"PaginationToken"},
1693
- "Labels":{"shape":"LabelDetections"},
1694
- "LabelModelVersion":{"shape":"String"}
1695
- }
1696
- },
1697
- "GetPersonTrackingRequest":{
1698
- "type":"structure",
1699
- "required":["JobId"],
1700
- "members":{
1701
- "JobId":{"shape":"JobId"},
1702
- "MaxResults":{"shape":"MaxResults"},
1703
- "NextToken":{"shape":"PaginationToken"},
1704
- "SortBy":{"shape":"PersonTrackingSortBy"}
1705
- }
1706
- },
1707
- "GetPersonTrackingResponse":{
1708
- "type":"structure",
1709
- "members":{
1710
- "JobStatus":{"shape":"VideoJobStatus"},
1711
- "StatusMessage":{"shape":"StatusMessage"},
1712
- "VideoMetadata":{"shape":"VideoMetadata"},
1713
- "NextToken":{"shape":"PaginationToken"},
1714
- "Persons":{"shape":"PersonDetections"}
1715
- }
1716
- },
1717
- "GetTextDetectionRequest":{
1718
- "type":"structure",
1719
- "required":["JobId"],
1720
- "members":{
1721
- "JobId":{"shape":"JobId"},
1722
- "MaxResults":{"shape":"MaxResults"},
1723
- "NextToken":{"shape":"PaginationToken"}
1724
- }
1725
- },
1726
- "GetTextDetectionResponse":{
1727
- "type":"structure",
1728
- "members":{
1729
- "JobStatus":{"shape":"VideoJobStatus"},
1730
- "StatusMessage":{"shape":"StatusMessage"},
1731
- "VideoMetadata":{"shape":"VideoMetadata"},
1732
- "TextDetections":{"shape":"TextDetectionResults"},
1733
- "NextToken":{"shape":"PaginationToken"},
1734
- "TextModelVersion":{"shape":"String"}
1735
- }
1736
- },
1737
- "GroundTruthManifest":{
1738
- "type":"structure",
1739
- "members":{
1740
- "S3Object":{"shape":"S3Object"}
1741
- }
1742
- },
1743
- "HumanLoopActivationConditionsEvaluationResults":{
1744
- "type":"string",
1745
- "max":10240
1746
- },
1747
- "HumanLoopActivationOutput":{
1748
- "type":"structure",
1749
- "members":{
1750
- "HumanLoopArn":{"shape":"HumanLoopArn"},
1751
- "HumanLoopActivationReasons":{"shape":"HumanLoopActivationReasons"},
1752
- "HumanLoopActivationConditionsEvaluationResults":{
1753
- "shape":"HumanLoopActivationConditionsEvaluationResults",
1754
- "jsonvalue":true
1755
- }
1756
- }
1757
- },
1758
- "HumanLoopActivationReason":{"type":"string"},
1759
- "HumanLoopActivationReasons":{
1760
- "type":"list",
1761
- "member":{"shape":"HumanLoopActivationReason"},
1762
- "min":1
1763
- },
1764
- "HumanLoopArn":{
1765
- "type":"string",
1766
- "max":256
1767
- },
1768
- "HumanLoopConfig":{
1769
- "type":"structure",
1770
- "required":[
1771
- "HumanLoopName",
1772
- "FlowDefinitionArn"
1773
- ],
1774
- "members":{
1775
- "HumanLoopName":{"shape":"HumanLoopName"},
1776
- "FlowDefinitionArn":{"shape":"FlowDefinitionArn"},
1777
- "DataAttributes":{"shape":"HumanLoopDataAttributes"}
1778
- }
1779
- },
1780
- "HumanLoopDataAttributes":{
1781
- "type":"structure",
1782
- "members":{
1783
- "ContentClassifiers":{"shape":"ContentClassifiers"}
1784
- }
1785
- },
1786
- "HumanLoopName":{
1787
- "type":"string",
1788
- "max":63,
1789
- "min":1,
1790
- "pattern":"^[a-z0-9](-*[a-z0-9])*"
1791
- },
1792
- "HumanLoopQuotaExceededException":{
1793
- "type":"structure",
1794
- "members":{
1795
- "ResourceType":{"shape":"String"},
1796
- "QuotaCode":{"shape":"String"},
1797
- "ServiceCode":{"shape":"String"}
1798
- },
1799
- "exception":true
1800
- },
1801
- "IdempotentParameterMismatchException":{
1802
- "type":"structure",
1803
- "members":{
1804
- },
1805
- "exception":true
1806
- },
1807
- "Image":{
1808
- "type":"structure",
1809
- "members":{
1810
- "Bytes":{"shape":"ImageBlob"},
1811
- "S3Object":{"shape":"S3Object"}
1812
- }
1813
- },
1814
- "ImageBlob":{
1815
- "type":"blob",
1816
- "max":5242880,
1817
- "min":1
1818
- },
1819
- "ImageId":{
1820
- "type":"string",
1821
- "pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
1822
- },
1823
- "ImageQuality":{
1824
- "type":"structure",
1825
- "members":{
1826
- "Brightness":{"shape":"Float"},
1827
- "Sharpness":{"shape":"Float"}
1828
- }
1829
- },
1830
- "ImageTooLargeException":{
1831
- "type":"structure",
1832
- "members":{
1833
- },
1834
- "exception":true
1835
- },
1836
- "IndexFacesRequest":{
1837
- "type":"structure",
1838
- "required":[
1839
- "CollectionId",
1840
- "Image"
1841
- ],
1842
- "members":{
1843
- "CollectionId":{"shape":"CollectionId"},
1844
- "Image":{"shape":"Image"},
1845
- "ExternalImageId":{"shape":"ExternalImageId"},
1846
- "DetectionAttributes":{"shape":"Attributes"},
1847
- "MaxFaces":{"shape":"MaxFacesToIndex"},
1848
- "QualityFilter":{"shape":"QualityFilter"}
1849
- }
1850
- },
1851
- "IndexFacesResponse":{
1852
- "type":"structure",
1853
- "members":{
1854
- "FaceRecords":{"shape":"FaceRecordList"},
1855
- "OrientationCorrection":{"shape":"OrientationCorrection"},
1856
- "FaceModelVersion":{"shape":"String"},
1857
- "UnindexedFaces":{"shape":"UnindexedFaces"}
1858
- }
1859
- },
1860
- "InferenceUnits":{
1861
- "type":"integer",
1862
- "min":1
1863
- },
1864
- "Instance":{
1865
- "type":"structure",
1866
- "members":{
1867
- "BoundingBox":{"shape":"BoundingBox"},
1868
- "Confidence":{"shape":"Percent"}
1869
- }
1870
- },
1871
- "Instances":{
1872
- "type":"list",
1873
- "member":{"shape":"Instance"}
1874
- },
1875
- "InternalServerError":{
1876
- "type":"structure",
1877
- "members":{
1878
- },
1879
- "exception":true,
1880
- "fault":true
1881
- },
1882
- "InvalidImageFormatException":{
1883
- "type":"structure",
1884
- "members":{
1885
- },
1886
- "exception":true
1887
- },
1888
- "InvalidPaginationTokenException":{
1889
- "type":"structure",
1890
- "members":{
1891
- },
1892
- "exception":true
1893
- },
1894
- "InvalidParameterException":{
1895
- "type":"structure",
1896
- "members":{
1897
- },
1898
- "exception":true
1899
- },
1900
- "InvalidS3ObjectException":{
1901
- "type":"structure",
1902
- "members":{
1903
- },
1904
- "exception":true
1905
- },
1906
- "JobId":{
1907
- "type":"string",
1908
- "max":64,
1909
- "min":1,
1910
- "pattern":"^[a-zA-Z0-9-_]+$"
1911
- },
1912
- "JobTag":{
1913
- "type":"string",
1914
- "max":256,
1915
- "min":1,
1916
- "pattern":"[a-zA-Z0-9_.\\-:]+"
1917
- },
1918
- "KinesisDataArn":{
1919
- "type":"string",
1920
- "pattern":"(^arn:([a-z\\d-]+):kinesis:([a-z\\d-]+):\\d{12}:.+$)"
1921
- },
1922
- "KinesisDataStream":{
1923
- "type":"structure",
1924
- "members":{
1925
- "Arn":{"shape":"KinesisDataArn"}
1926
- }
1927
- },
1928
- "KinesisVideoArn":{
1929
- "type":"string",
1930
- "pattern":"(^arn:([a-z\\d-]+):kinesisvideo:([a-z\\d-]+):\\d{12}:.+$)"
1931
- },
1932
- "KinesisVideoStream":{
1933
- "type":"structure",
1934
- "members":{
1935
- "Arn":{"shape":"KinesisVideoArn"}
1936
- }
1937
- },
1938
- "Label":{
1939
- "type":"structure",
1940
- "members":{
1941
- "Name":{"shape":"String"},
1942
- "Confidence":{"shape":"Percent"},
1943
- "Instances":{"shape":"Instances"},
1944
- "Parents":{"shape":"Parents"}
1945
- }
1946
- },
1947
- "LabelDetection":{
1948
- "type":"structure",
1949
- "members":{
1950
- "Timestamp":{"shape":"Timestamp"},
1951
- "Label":{"shape":"Label"}
1952
- }
1953
- },
1954
- "LabelDetectionSortBy":{
1955
- "type":"string",
1956
- "enum":[
1957
- "NAME",
1958
- "TIMESTAMP"
1959
- ]
1960
- },
1961
- "LabelDetections":{
1962
- "type":"list",
1963
- "member":{"shape":"LabelDetection"}
1964
- },
1965
- "Labels":{
1966
- "type":"list",
1967
- "member":{"shape":"Label"}
1968
- },
1969
- "Landmark":{
1970
- "type":"structure",
1971
- "members":{
1972
- "Type":{"shape":"LandmarkType"},
1973
- "X":{"shape":"Float"},
1974
- "Y":{"shape":"Float"}
1975
- }
1976
- },
1977
- "LandmarkType":{
1978
- "type":"string",
1979
- "enum":[
1980
- "eyeLeft",
1981
- "eyeRight",
1982
- "nose",
1983
- "mouthLeft",
1984
- "mouthRight",
1985
- "leftEyeBrowLeft",
1986
- "leftEyeBrowRight",
1987
- "leftEyeBrowUp",
1988
- "rightEyeBrowLeft",
1989
- "rightEyeBrowRight",
1990
- "rightEyeBrowUp",
1991
- "leftEyeLeft",
1992
- "leftEyeRight",
1993
- "leftEyeUp",
1994
- "leftEyeDown",
1995
- "rightEyeLeft",
1996
- "rightEyeRight",
1997
- "rightEyeUp",
1998
- "rightEyeDown",
1999
- "noseLeft",
2000
- "noseRight",
2001
- "mouthUp",
2002
- "mouthDown",
2003
- "leftPupil",
2004
- "rightPupil",
2005
- "upperJawlineLeft",
2006
- "midJawlineLeft",
2007
- "chinBottom",
2008
- "midJawlineRight",
2009
- "upperJawlineRight"
2010
- ]
2011
- },
2012
- "Landmarks":{
2013
- "type":"list",
2014
- "member":{"shape":"Landmark"}
2015
- },
2016
- "LimitExceededException":{
2017
- "type":"structure",
2018
- "members":{
2019
- },
2020
- "exception":true
2021
- },
2022
- "ListCollectionsRequest":{
2023
- "type":"structure",
2024
- "members":{
2025
- "NextToken":{"shape":"PaginationToken"},
2026
- "MaxResults":{"shape":"PageSize"}
2027
- }
2028
- },
2029
- "ListCollectionsResponse":{
2030
- "type":"structure",
2031
- "members":{
2032
- "CollectionIds":{"shape":"CollectionIdList"},
2033
- "NextToken":{"shape":"PaginationToken"},
2034
- "FaceModelVersions":{"shape":"FaceModelVersionList"}
2035
- }
2036
- },
2037
- "ListFacesRequest":{
2038
- "type":"structure",
2039
- "required":["CollectionId"],
2040
- "members":{
2041
- "CollectionId":{"shape":"CollectionId"},
2042
- "NextToken":{"shape":"PaginationToken"},
2043
- "MaxResults":{"shape":"PageSize"}
2044
- }
2045
- },
2046
- "ListFacesResponse":{
2047
- "type":"structure",
2048
- "members":{
2049
- "Faces":{"shape":"FaceList"},
2050
- "NextToken":{"shape":"String"},
2051
- "FaceModelVersion":{"shape":"String"}
2052
- }
2053
- },
2054
- "ListStreamProcessorsRequest":{
2055
- "type":"structure",
2056
- "members":{
2057
- "NextToken":{"shape":"PaginationToken"},
2058
- "MaxResults":{"shape":"MaxResults"}
2059
- }
2060
- },
2061
- "ListStreamProcessorsResponse":{
2062
- "type":"structure",
2063
- "members":{
2064
- "NextToken":{"shape":"PaginationToken"},
2065
- "StreamProcessors":{"shape":"StreamProcessorList"}
2066
- }
2067
- },
2068
- "MaxFaces":{
2069
- "type":"integer",
2070
- "max":4096,
2071
- "min":1
2072
- },
2073
- "MaxFacesToIndex":{
2074
- "type":"integer",
2075
- "min":1
2076
- },
2077
- "MaxResults":{
2078
- "type":"integer",
2079
- "min":1
2080
- },
2081
- "ModerationLabel":{
2082
- "type":"structure",
2083
- "members":{
2084
- "Confidence":{"shape":"Percent"},
2085
- "Name":{"shape":"String"},
2086
- "ParentName":{"shape":"String"}
2087
- }
2088
- },
2089
- "ModerationLabels":{
2090
- "type":"list",
2091
- "member":{"shape":"ModerationLabel"}
2092
- },
2093
- "MouthOpen":{
2094
- "type":"structure",
2095
- "members":{
2096
- "Value":{"shape":"Boolean"},
2097
- "Confidence":{"shape":"Percent"}
2098
- }
2099
- },
2100
- "Mustache":{
2101
- "type":"structure",
2102
- "members":{
2103
- "Value":{"shape":"Boolean"},
2104
- "Confidence":{"shape":"Percent"}
2105
- }
2106
- },
2107
- "NotificationChannel":{
2108
- "type":"structure",
2109
- "required":[
2110
- "SNSTopicArn",
2111
- "RoleArn"
2112
- ],
2113
- "members":{
2114
- "SNSTopicArn":{"shape":"SNSTopicArn"},
2115
- "RoleArn":{"shape":"RoleArn"}
2116
- }
2117
- },
2118
- "OrientationCorrection":{
2119
- "type":"string",
2120
- "enum":[
2121
- "ROTATE_0",
2122
- "ROTATE_90",
2123
- "ROTATE_180",
2124
- "ROTATE_270"
2125
- ]
2126
- },
2127
- "OutputConfig":{
2128
- "type":"structure",
2129
- "members":{
2130
- "S3Bucket":{"shape":"S3Bucket"},
2131
- "S3KeyPrefix":{"shape":"S3KeyPrefix"}
2132
- }
2133
- },
2134
- "PageSize":{
2135
- "type":"integer",
2136
- "max":4096,
2137
- "min":0
2138
- },
2139
- "PaginationToken":{
2140
- "type":"string",
2141
- "max":255
2142
- },
2143
- "Parent":{
2144
- "type":"structure",
2145
- "members":{
2146
- "Name":{"shape":"String"}
2147
- }
2148
- },
2149
- "Parents":{
2150
- "type":"list",
2151
- "member":{"shape":"Parent"}
2152
- },
2153
- "Percent":{
2154
- "type":"float",
2155
- "max":100,
2156
- "min":0
2157
- },
2158
- "PersonDetail":{
2159
- "type":"structure",
2160
- "members":{
2161
- "Index":{"shape":"PersonIndex"},
2162
- "BoundingBox":{"shape":"BoundingBox"},
2163
- "Face":{"shape":"FaceDetail"}
2164
- }
2165
- },
2166
- "PersonDetection":{
2167
- "type":"structure",
2168
- "members":{
2169
- "Timestamp":{"shape":"Timestamp"},
2170
- "Person":{"shape":"PersonDetail"}
2171
- }
2172
- },
2173
- "PersonDetections":{
2174
- "type":"list",
2175
- "member":{"shape":"PersonDetection"}
2176
- },
2177
- "PersonIndex":{"type":"long"},
2178
- "PersonMatch":{
2179
- "type":"structure",
2180
- "members":{
2181
- "Timestamp":{"shape":"Timestamp"},
2182
- "Person":{"shape":"PersonDetail"},
2183
- "FaceMatches":{"shape":"FaceMatchList"}
2184
- }
2185
- },
2186
- "PersonMatches":{
2187
- "type":"list",
2188
- "member":{"shape":"PersonMatch"}
2189
- },
2190
- "PersonTrackingSortBy":{
2191
- "type":"string",
2192
- "enum":[
2193
- "INDEX",
2194
- "TIMESTAMP"
2195
- ]
2196
- },
2197
- "Point":{
2198
- "type":"structure",
2199
- "members":{
2200
- "X":{"shape":"Float"},
2201
- "Y":{"shape":"Float"}
2202
- }
2203
- },
2204
- "Polygon":{
2205
- "type":"list",
2206
- "member":{"shape":"Point"}
2207
- },
2208
- "Pose":{
2209
- "type":"structure",
2210
- "members":{
2211
- "Roll":{"shape":"Degree"},
2212
- "Yaw":{"shape":"Degree"},
2213
- "Pitch":{"shape":"Degree"}
2214
- }
2215
- },
2216
- "ProjectArn":{
2217
- "type":"string",
2218
- "max":2048,
2219
- "min":20,
2220
- "pattern":"(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:project\\/[a-zA-Z0-9_.\\-]{1,255}\\/[0-9]+$)"
2221
- },
2222
- "ProjectDescription":{
2223
- "type":"structure",
2224
- "members":{
2225
- "ProjectArn":{"shape":"ProjectArn"},
2226
- "CreationTimestamp":{"shape":"DateTime"},
2227
- "Status":{"shape":"ProjectStatus"}
2228
- }
2229
- },
2230
- "ProjectDescriptions":{
2231
- "type":"list",
2232
- "member":{"shape":"ProjectDescription"}
2233
- },
2234
- "ProjectName":{
2235
- "type":"string",
2236
- "max":255,
2237
- "min":1,
2238
- "pattern":"[a-zA-Z0-9_.\\-]+"
2239
- },
2240
- "ProjectStatus":{
2241
- "type":"string",
2242
- "enum":[
2243
- "CREATING",
2244
- "CREATED",
2245
- "DELETING"
2246
- ]
2247
- },
2248
- "ProjectVersionArn":{
2249
- "type":"string",
2250
- "max":2048,
2251
- "min":20,
2252
- "pattern":"(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:project\\/[a-zA-Z0-9_.\\-]{1,255}\\/version\\/[a-zA-Z0-9_.\\-]{1,255}\\/[0-9]+$)"
2253
- },
2254
- "ProjectVersionDescription":{
2255
- "type":"structure",
2256
- "members":{
2257
- "ProjectVersionArn":{"shape":"ProjectVersionArn"},
2258
- "CreationTimestamp":{"shape":"DateTime"},
2259
- "MinInferenceUnits":{"shape":"InferenceUnits"},
2260
- "Status":{"shape":"ProjectVersionStatus"},
2261
- "StatusMessage":{"shape":"StatusMessage"},
2262
- "BillableTrainingTimeInSeconds":{"shape":"ULong"},
2263
- "TrainingEndTimestamp":{"shape":"DateTime"},
2264
- "OutputConfig":{"shape":"OutputConfig"},
2265
- "TrainingDataResult":{"shape":"TrainingDataResult"},
2266
- "TestingDataResult":{"shape":"TestingDataResult"},
2267
- "EvaluationResult":{"shape":"EvaluationResult"}
2268
- }
2269
- },
2270
- "ProjectVersionDescriptions":{
2271
- "type":"list",
2272
- "member":{"shape":"ProjectVersionDescription"}
2273
- },
2274
- "ProjectVersionStatus":{
2275
- "type":"string",
2276
- "enum":[
2277
- "TRAINING_IN_PROGRESS",
2278
- "TRAINING_COMPLETED",
2279
- "TRAINING_FAILED",
2280
- "STARTING",
2281
- "RUNNING",
2282
- "FAILED",
2283
- "STOPPING",
2284
- "STOPPED",
2285
- "DELETING"
2286
- ]
2287
- },
2288
- "ProjectVersionsPageSize":{
2289
- "type":"integer",
2290
- "max":100,
2291
- "min":1
2292
- },
2293
- "ProjectsPageSize":{
2294
- "type":"integer",
2295
- "max":100,
2296
- "min":1
2297
- },
2298
- "ProvisionedThroughputExceededException":{
2299
- "type":"structure",
2300
- "members":{
2301
- },
2302
- "exception":true
2303
- },
2304
- "QualityFilter":{
2305
- "type":"string",
2306
- "enum":[
2307
- "NONE",
2308
- "AUTO",
2309
- "LOW",
2310
- "MEDIUM",
2311
- "HIGH"
2312
- ]
2313
- },
2314
- "Reason":{
2315
- "type":"string",
2316
- "enum":[
2317
- "EXCEEDS_MAX_FACES",
2318
- "EXTREME_POSE",
2319
- "LOW_BRIGHTNESS",
2320
- "LOW_SHARPNESS",
2321
- "LOW_CONFIDENCE",
2322
- "SMALL_BOUNDING_BOX",
2323
- "LOW_FACE_QUALITY"
2324
- ]
2325
- },
2326
- "Reasons":{
2327
- "type":"list",
2328
- "member":{"shape":"Reason"}
2329
- },
2330
- "RecognizeCelebritiesRequest":{
2331
- "type":"structure",
2332
- "required":["Image"],
2333
- "members":{
2334
- "Image":{"shape":"Image"}
2335
- }
2336
- },
2337
- "RecognizeCelebritiesResponse":{
2338
- "type":"structure",
2339
- "members":{
2340
- "CelebrityFaces":{"shape":"CelebrityList"},
2341
- "UnrecognizedFaces":{"shape":"ComparedFaceList"},
2342
- "OrientationCorrection":{"shape":"OrientationCorrection"}
2343
- }
2344
- },
2345
- "RegionOfInterest":{
2346
- "type":"structure",
2347
- "members":{
2348
- "BoundingBox":{"shape":"BoundingBox"}
2349
- }
2350
- },
2351
- "RegionsOfInterest":{
2352
- "type":"list",
2353
- "member":{"shape":"RegionOfInterest"},
2354
- "max":10,
2355
- "min":0
2356
- },
2357
- "RekognitionUniqueId":{
2358
- "type":"string",
2359
- "pattern":"[0-9A-Za-z]*"
2360
- },
2361
- "ResourceAlreadyExistsException":{
2362
- "type":"structure",
2363
- "members":{
2364
- },
2365
- "exception":true
2366
- },
2367
- "ResourceInUseException":{
2368
- "type":"structure",
2369
- "members":{
2370
- },
2371
- "exception":true
2372
- },
2373
- "ResourceNotFoundException":{
2374
- "type":"structure",
2375
- "members":{
2376
- },
2377
- "exception":true
2378
- },
2379
- "ResourceNotReadyException":{
2380
- "type":"structure",
2381
- "members":{
2382
- },
2383
- "exception":true
2384
- },
2385
- "RoleArn":{
2386
- "type":"string",
2387
- "pattern":"arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
2388
- },
2389
- "S3Bucket":{
2390
- "type":"string",
2391
- "max":255,
2392
- "min":3,
2393
- "pattern":"[0-9A-Za-z\\.\\-_]*"
2394
- },
2395
- "S3KeyPrefix":{
2396
- "type":"string",
2397
- "max":1024
2398
- },
2399
- "S3Object":{
2400
- "type":"structure",
2401
- "members":{
2402
- "Bucket":{"shape":"S3Bucket"},
2403
- "Name":{"shape":"S3ObjectName"},
2404
- "Version":{"shape":"S3ObjectVersion"}
2405
- }
2406
- },
2407
- "S3ObjectName":{
2408
- "type":"string",
2409
- "max":1024,
2410
- "min":1
2411
- },
2412
- "S3ObjectVersion":{
2413
- "type":"string",
2414
- "max":1024,
2415
- "min":1
2416
- },
2417
- "SNSTopicArn":{
2418
- "type":"string",
2419
- "pattern":"(^arn:aws:sns:.*:\\w{12}:.+$)"
2420
- },
2421
- "SearchFacesByImageRequest":{
2422
- "type":"structure",
2423
- "required":[
2424
- "CollectionId",
2425
- "Image"
2426
- ],
2427
- "members":{
2428
- "CollectionId":{"shape":"CollectionId"},
2429
- "Image":{"shape":"Image"},
2430
- "MaxFaces":{"shape":"MaxFaces"},
2431
- "FaceMatchThreshold":{"shape":"Percent"},
2432
- "QualityFilter":{"shape":"QualityFilter"}
2433
- }
2434
- },
2435
- "SearchFacesByImageResponse":{
2436
- "type":"structure",
2437
- "members":{
2438
- "SearchedFaceBoundingBox":{"shape":"BoundingBox"},
2439
- "SearchedFaceConfidence":{"shape":"Percent"},
2440
- "FaceMatches":{"shape":"FaceMatchList"},
2441
- "FaceModelVersion":{"shape":"String"}
2442
- }
2443
- },
2444
- "SearchFacesRequest":{
2445
- "type":"structure",
2446
- "required":[
2447
- "CollectionId",
2448
- "FaceId"
2449
- ],
2450
- "members":{
2451
- "CollectionId":{"shape":"CollectionId"},
2452
- "FaceId":{"shape":"FaceId"},
2453
- "MaxFaces":{"shape":"MaxFaces"},
2454
- "FaceMatchThreshold":{"shape":"Percent"}
2455
- }
2456
- },
2457
- "SearchFacesResponse":{
2458
- "type":"structure",
2459
- "members":{
2460
- "SearchedFaceId":{"shape":"FaceId"},
2461
- "FaceMatches":{"shape":"FaceMatchList"},
2462
- "FaceModelVersion":{"shape":"String"}
2463
- }
2464
- },
2465
- "Smile":{
2466
- "type":"structure",
2467
- "members":{
2468
- "Value":{"shape":"Boolean"},
2469
- "Confidence":{"shape":"Percent"}
2470
- }
2471
- },
2472
- "StartCelebrityRecognitionRequest":{
2473
- "type":"structure",
2474
- "required":["Video"],
2475
- "members":{
2476
- "Video":{"shape":"Video"},
2477
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2478
- "NotificationChannel":{"shape":"NotificationChannel"},
2479
- "JobTag":{"shape":"JobTag"}
2480
- }
2481
- },
2482
- "StartCelebrityRecognitionResponse":{
2483
- "type":"structure",
2484
- "members":{
2485
- "JobId":{"shape":"JobId"}
2486
- }
2487
- },
2488
- "StartContentModerationRequest":{
2489
- "type":"structure",
2490
- "required":["Video"],
2491
- "members":{
2492
- "Video":{"shape":"Video"},
2493
- "MinConfidence":{"shape":"Percent"},
2494
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2495
- "NotificationChannel":{"shape":"NotificationChannel"},
2496
- "JobTag":{"shape":"JobTag"}
2497
- }
2498
- },
2499
- "StartContentModerationResponse":{
2500
- "type":"structure",
2501
- "members":{
2502
- "JobId":{"shape":"JobId"}
2503
- }
2504
- },
2505
- "StartFaceDetectionRequest":{
2506
- "type":"structure",
2507
- "required":["Video"],
2508
- "members":{
2509
- "Video":{"shape":"Video"},
2510
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2511
- "NotificationChannel":{"shape":"NotificationChannel"},
2512
- "FaceAttributes":{"shape":"FaceAttributes"},
2513
- "JobTag":{"shape":"JobTag"}
2514
- }
2515
- },
2516
- "StartFaceDetectionResponse":{
2517
- "type":"structure",
2518
- "members":{
2519
- "JobId":{"shape":"JobId"}
2520
- }
2521
- },
2522
- "StartFaceSearchRequest":{
2523
- "type":"structure",
2524
- "required":[
2525
- "Video",
2526
- "CollectionId"
2527
- ],
2528
- "members":{
2529
- "Video":{"shape":"Video"},
2530
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2531
- "FaceMatchThreshold":{"shape":"Percent"},
2532
- "CollectionId":{"shape":"CollectionId"},
2533
- "NotificationChannel":{"shape":"NotificationChannel"},
2534
- "JobTag":{"shape":"JobTag"}
2535
- }
2536
- },
2537
- "StartFaceSearchResponse":{
2538
- "type":"structure",
2539
- "members":{
2540
- "JobId":{"shape":"JobId"}
2541
- }
2542
- },
2543
- "StartLabelDetectionRequest":{
2544
- "type":"structure",
2545
- "required":["Video"],
2546
- "members":{
2547
- "Video":{"shape":"Video"},
2548
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2549
- "MinConfidence":{"shape":"Percent"},
2550
- "NotificationChannel":{"shape":"NotificationChannel"},
2551
- "JobTag":{"shape":"JobTag"}
2552
- }
2553
- },
2554
- "StartLabelDetectionResponse":{
2555
- "type":"structure",
2556
- "members":{
2557
- "JobId":{"shape":"JobId"}
2558
- }
2559
- },
2560
- "StartPersonTrackingRequest":{
2561
- "type":"structure",
2562
- "required":["Video"],
2563
- "members":{
2564
- "Video":{"shape":"Video"},
2565
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2566
- "NotificationChannel":{"shape":"NotificationChannel"},
2567
- "JobTag":{"shape":"JobTag"}
2568
- }
2569
- },
2570
- "StartPersonTrackingResponse":{
2571
- "type":"structure",
2572
- "members":{
2573
- "JobId":{"shape":"JobId"}
2574
- }
2575
- },
2576
- "StartProjectVersionRequest":{
2577
- "type":"structure",
2578
- "required":[
2579
- "ProjectVersionArn",
2580
- "MinInferenceUnits"
2581
- ],
2582
- "members":{
2583
- "ProjectVersionArn":{"shape":"ProjectVersionArn"},
2584
- "MinInferenceUnits":{"shape":"InferenceUnits"}
2585
- }
2586
- },
2587
- "StartProjectVersionResponse":{
2588
- "type":"structure",
2589
- "members":{
2590
- "Status":{"shape":"ProjectVersionStatus"}
2591
- }
2592
- },
2593
- "StartStreamProcessorRequest":{
2594
- "type":"structure",
2595
- "required":["Name"],
2596
- "members":{
2597
- "Name":{"shape":"StreamProcessorName"}
2598
- }
2599
- },
2600
- "StartStreamProcessorResponse":{
2601
- "type":"structure",
2602
- "members":{
2603
- }
2604
- },
2605
- "StartTextDetectionFilters":{
2606
- "type":"structure",
2607
- "members":{
2608
- "WordFilter":{"shape":"DetectionFilter"},
2609
- "RegionsOfInterest":{"shape":"RegionsOfInterest"}
2610
- }
2611
- },
2612
- "StartTextDetectionRequest":{
2613
- "type":"structure",
2614
- "required":["Video"],
2615
- "members":{
2616
- "Video":{"shape":"Video"},
2617
- "ClientRequestToken":{"shape":"ClientRequestToken"},
2618
- "NotificationChannel":{"shape":"NotificationChannel"},
2619
- "JobTag":{"shape":"JobTag"},
2620
- "Filters":{"shape":"StartTextDetectionFilters"}
2621
- }
2622
- },
2623
- "StartTextDetectionResponse":{
2624
- "type":"structure",
2625
- "members":{
2626
- "JobId":{"shape":"JobId"}
2627
- }
2628
- },
2629
- "StatusMessage":{"type":"string"},
2630
- "StopProjectVersionRequest":{
2631
- "type":"structure",
2632
- "required":["ProjectVersionArn"],
2633
- "members":{
2634
- "ProjectVersionArn":{"shape":"ProjectVersionArn"}
2635
- }
2636
- },
2637
- "StopProjectVersionResponse":{
2638
- "type":"structure",
2639
- "members":{
2640
- "Status":{"shape":"ProjectVersionStatus"}
2641
- }
2642
- },
2643
- "StopStreamProcessorRequest":{
2644
- "type":"structure",
2645
- "required":["Name"],
2646
- "members":{
2647
- "Name":{"shape":"StreamProcessorName"}
2648
- }
2649
- },
2650
- "StopStreamProcessorResponse":{
2651
- "type":"structure",
2652
- "members":{
2653
- }
2654
- },
2655
- "StreamProcessor":{
2656
- "type":"structure",
2657
- "members":{
2658
- "Name":{"shape":"StreamProcessorName"},
2659
- "Status":{"shape":"StreamProcessorStatus"}
2660
- }
2661
- },
2662
- "StreamProcessorArn":{
2663
- "type":"string",
2664
- "pattern":"(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:streamprocessor\\/.+$)"
2665
- },
2666
- "StreamProcessorInput":{
2667
- "type":"structure",
2668
- "members":{
2669
- "KinesisVideoStream":{"shape":"KinesisVideoStream"}
2670
- }
2671
- },
2672
- "StreamProcessorList":{
2673
- "type":"list",
2674
- "member":{"shape":"StreamProcessor"}
2675
- },
2676
- "StreamProcessorName":{
2677
- "type":"string",
2678
- "max":128,
2679
- "min":1,
2680
- "pattern":"[a-zA-Z0-9_.\\-]+"
2681
- },
2682
- "StreamProcessorOutput":{
2683
- "type":"structure",
2684
- "members":{
2685
- "KinesisDataStream":{"shape":"KinesisDataStream"}
2686
- }
2687
- },
2688
- "StreamProcessorSettings":{
2689
- "type":"structure",
2690
- "members":{
2691
- "FaceSearch":{"shape":"FaceSearchSettings"}
2692
- }
2693
- },
2694
- "StreamProcessorStatus":{
2695
- "type":"string",
2696
- "enum":[
2697
- "STOPPED",
2698
- "STARTING",
2699
- "RUNNING",
2700
- "FAILED",
2701
- "STOPPING"
2702
- ]
2703
- },
2704
- "String":{"type":"string"},
2705
- "Summary":{
2706
- "type":"structure",
2707
- "members":{
2708
- "S3Object":{"shape":"S3Object"}
2709
- }
2710
- },
2711
- "Sunglasses":{
2712
- "type":"structure",
2713
- "members":{
2714
- "Value":{"shape":"Boolean"},
2715
- "Confidence":{"shape":"Percent"}
2716
- }
2717
- },
2718
- "TestingData":{
2719
- "type":"structure",
2720
- "members":{
2721
- "Assets":{"shape":"Assets"},
2722
- "AutoCreate":{"shape":"Boolean"}
2723
- }
2724
- },
2725
- "TestingDataResult":{
2726
- "type":"structure",
2727
- "members":{
2728
- "Input":{"shape":"TestingData"},
2729
- "Output":{"shape":"TestingData"}
2730
- }
2731
- },
2732
- "TextDetection":{
2733
- "type":"structure",
2734
- "members":{
2735
- "DetectedText":{"shape":"String"},
2736
- "Type":{"shape":"TextTypes"},
2737
- "Id":{"shape":"UInteger"},
2738
- "ParentId":{"shape":"UInteger"},
2739
- "Confidence":{"shape":"Percent"},
2740
- "Geometry":{"shape":"Geometry"}
2741
- }
2742
- },
2743
- "TextDetectionList":{
2744
- "type":"list",
2745
- "member":{"shape":"TextDetection"}
2746
- },
2747
- "TextDetectionResult":{
2748
- "type":"structure",
2749
- "members":{
2750
- "Timestamp":{"shape":"Timestamp"},
2751
- "TextDetection":{"shape":"TextDetection"}
2752
- }
2753
- },
2754
- "TextDetectionResults":{
2755
- "type":"list",
2756
- "member":{"shape":"TextDetectionResult"}
2757
- },
2758
- "TextTypes":{
2759
- "type":"string",
2760
- "enum":[
2761
- "LINE",
2762
- "WORD"
2763
- ]
2764
- },
2765
- "ThrottlingException":{
2766
- "type":"structure",
2767
- "members":{
2768
- },
2769
- "exception":true,
2770
- "fault":true
2771
- },
2772
- "Timestamp":{"type":"long"},
2773
- "TrainingData":{
2774
- "type":"structure",
2775
- "members":{
2776
- "Assets":{"shape":"Assets"}
2777
- }
2778
- },
2779
- "TrainingDataResult":{
2780
- "type":"structure",
2781
- "members":{
2782
- "Input":{"shape":"TrainingData"},
2783
- "Output":{"shape":"TrainingData"}
2784
- }
2785
- },
2786
- "UInteger":{
2787
- "type":"integer",
2788
- "min":0
2789
- },
2790
- "ULong":{
2791
- "type":"long",
2792
- "min":0
2793
- },
2794
- "UnindexedFace":{
2795
- "type":"structure",
2796
- "members":{
2797
- "Reasons":{"shape":"Reasons"},
2798
- "FaceDetail":{"shape":"FaceDetail"}
2799
- }
2800
- },
2801
- "UnindexedFaces":{
2802
- "type":"list",
2803
- "member":{"shape":"UnindexedFace"}
2804
- },
2805
- "Url":{"type":"string"},
2806
- "Urls":{
2807
- "type":"list",
2808
- "member":{"shape":"Url"}
2809
- },
2810
- "VersionName":{
2811
- "type":"string",
2812
- "max":255,
2813
- "min":1,
2814
- "pattern":"[a-zA-Z0-9_.\\-]+"
2815
- },
2816
- "VersionNames":{
2817
- "type":"list",
2818
- "member":{"shape":"VersionName"},
2819
- "max":10,
2820
- "min":1
2821
- },
2822
- "Video":{
2823
- "type":"structure",
2824
- "members":{
2825
- "S3Object":{"shape":"S3Object"}
2826
- }
2827
- },
2828
- "VideoJobStatus":{
2829
- "type":"string",
2830
- "enum":[
2831
- "IN_PROGRESS",
2832
- "SUCCEEDED",
2833
- "FAILED"
2834
- ]
2835
- },
2836
- "VideoMetadata":{
2837
- "type":"structure",
2838
- "members":{
2839
- "Codec":{"shape":"String"},
2840
- "DurationMillis":{"shape":"ULong"},
2841
- "Format":{"shape":"String"},
2842
- "FrameRate":{"shape":"Float"},
2843
- "FrameHeight":{"shape":"ULong"},
2844
- "FrameWidth":{"shape":"ULong"}
2845
- }
2846
- },
2847
- "VideoTooLargeException":{
2848
- "type":"structure",
2849
- "members":{
2850
- },
2851
- "exception":true
2852
- }
2853
- }
2854
- }