aws-sdk-core 2.11.441 → 3.89.0

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