aws-sdk-core 2.11.632 → 3.0.0.rc1

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