aws-sdk-core 2.11.408 → 3.77.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1241) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -569
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +30 -17
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +187 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1114
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -863
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -28
  140. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1125
  141. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  142. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  143. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  144. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  145. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  146. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  147. data/apis/acm/2015-12-08/api-2.json +0 -872
  148. data/apis/acm/2015-12-08/examples-1.json +0 -5
  149. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  150. data/apis/acm/2015-12-08/smoke.json +0 -18
  151. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  152. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4129
  153. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  154. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  155. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  156. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  157. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  158. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  159. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  160. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  161. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  162. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  163. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  164. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  165. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  166. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  167. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  168. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  169. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -783
  170. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  171. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  172. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  173. data/apis/application-insights/2018-11-25/api-2.json +0 -1141
  174. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  175. data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
  176. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  177. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  178. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  179. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  180. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  181. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  182. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  183. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  184. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  185. data/apis/appstream/2016-12-01/smoke.json +0 -11
  186. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  187. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  188. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  189. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  190. data/apis/athena/2017-05-18/api-2.json +0 -989
  191. data/apis/athena/2017-05-18/examples-1.json +0 -5
  192. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  193. data/apis/athena/2017-05-18/smoke.json +0 -11
  194. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  195. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  196. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  197. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  198. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  199. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  200. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  201. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  202. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  203. data/apis/backup/2018-11-15/api-2.json +0 -2150
  204. data/apis/backup/2018-11-15/examples-1.json +0 -5
  205. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  206. data/apis/batch/2016-08-10/api-2.json +0 -1137
  207. data/apis/batch/2016-08-10/examples-1.json +0 -589
  208. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  209. data/apis/batch/2016-08-10/smoke.json +0 -11
  210. data/apis/budgets/2016-10-20/api-2.json +0 -830
  211. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  212. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  213. data/apis/ce/2017-10-25/api-2.json +0 -1633
  214. data/apis/ce/2017-10-25/examples-1.json +0 -5
  215. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  216. data/apis/chime/2018-05-01/api-2.json +0 -4483
  217. data/apis/chime/2018-05-01/examples-1.json +0 -5
  218. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  219. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  220. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  221. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  222. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  223. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  224. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  225. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  226. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  227. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  228. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  229. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  230. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  231. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  232. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  233. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  234. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  235. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  239. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  243. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  244. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  245. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  246. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  247. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  250. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  254. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  257. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  258. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  259. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  262. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  263. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  265. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  266. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  267. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  268. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  269. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  270. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  271. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  272. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  273. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  274. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  275. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  276. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  277. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  278. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  279. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  280. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  281. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  282. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  283. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  284. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  285. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  286. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  287. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  288. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  289. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  290. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  291. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  292. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  293. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  295. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  296. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  297. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  298. data/apis/codebuild/2016-10-06/api-2.json +0 -1738
  299. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  300. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  301. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  302. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  303. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  304. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  305. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  306. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  307. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  308. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  309. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  311. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  312. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  313. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  314. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  315. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  316. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  317. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  318. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  319. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  320. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  321. data/apis/codestar/2017-04-19/smoke.json +0 -11
  322. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  323. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  324. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  325. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  326. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  327. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  328. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  329. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  330. data/apis/comprehend/2017-11-27/api-2.json +0 -2632
  331. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  332. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  333. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  334. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  335. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  336. data/apis/config/2014-11-12/api-2.json +0 -4340
  337. data/apis/config/2014-11-12/examples-1.json +0 -5
  338. data/apis/config/2014-11-12/paginators-1.json +0 -21
  339. data/apis/config/2014-11-12/smoke.json +0 -19
  340. data/apis/connect/2017-08-08/api-2.json +0 -2139
  341. data/apis/connect/2017-08-08/examples-1.json +0 -5
  342. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  343. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  344. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  345. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  346. data/apis/cur/2017-01-06/api-2.json +0 -277
  347. data/apis/cur/2017-01-06/examples-1.json +0 -102
  348. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  349. data/apis/cur/2017-01-06/smoke.json +0 -11
  350. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  351. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  352. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  353. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  354. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  355. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  356. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  357. data/apis/dax/2017-04-19/api-2.json +0 -1140
  358. data/apis/dax/2017-04-19/examples-1.json +0 -5
  359. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  360. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  361. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  362. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  363. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  364. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  365. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  366. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  367. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  368. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  369. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  370. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  371. data/apis/discovery/2015-11-01/smoke.json +0 -11
  372. data/apis/dlm/2018-01-12/api-2.json +0 -642
  373. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  374. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  375. data/apis/dms/2016-01-01/api-2.json +0 -2296
  376. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  377. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  378. data/apis/dms/2016-01-01/smoke.json +0 -18
  379. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  380. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  381. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  382. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  383. data/apis/docdb/2014-10-31/smoke.json +0 -18
  384. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  385. data/apis/ds/2015-04-16/api-2.json +0 -3012
  386. data/apis/ds/2015-04-16/examples-1.json +0 -5
  387. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  388. data/apis/ds/2015-04-16/smoke.json +0 -20
  389. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  390. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  391. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  392. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  393. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  394. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  395. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  396. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  397. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  398. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  399. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  400. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  401. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  402. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  403. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  404. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  405. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  406. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  407. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  408. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  409. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  410. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  411. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  412. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  413. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  414. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  415. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  416. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  417. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  418. data/apis/ec2/2016-11-15/api-2.json +0 -26878
  419. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  420. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  421. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  422. data/apis/ec2/2016-11-15/smoke.json +0 -20
  423. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  424. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  425. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  426. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  427. data/apis/ecr/2015-09-21/smoke.json +0 -18
  428. data/apis/ecs/2014-11-13/api-2.json +0 -2910
  429. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  430. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  431. data/apis/ecs/2014-11-13/smoke.json +0 -18
  432. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  433. data/apis/eks/2017-11-01/api-2.json +0 -1211
  434. data/apis/eks/2017-11-01/examples-1.json +0 -135
  435. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  436. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  437. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  438. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  439. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  440. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  441. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  442. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  443. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  444. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  445. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  446. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  447. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  448. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  449. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  450. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  451. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  452. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  453. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  454. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  455. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  456. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  457. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  458. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  459. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  460. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  461. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  462. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  463. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  464. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  465. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  466. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  467. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  468. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  469. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  470. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  471. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  472. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  473. data/apis/email/2010-12-01/api-2.json +0 -3182
  474. data/apis/email/2010-12-01/examples-1.json +0 -1021
  475. data/apis/email/2010-12-01/paginators-1.json +0 -18
  476. data/apis/email/2010-12-01/smoke.json +0 -18
  477. data/apis/email/2010-12-01/waiters-2.json +0 -18
  478. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  479. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  480. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  481. data/apis/es/2015-01-01/api-2.json +0 -1572
  482. data/apis/es/2015-01-01/examples-1.json +0 -5
  483. data/apis/es/2015-01-01/paginators-1.json +0 -29
  484. data/apis/es/2015-01-01/smoke.json +0 -18
  485. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  486. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  487. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  488. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  489. data/apis/events/2015-10-07/api-2.json +0 -1462
  490. data/apis/events/2015-10-07/examples-1.json +0 -5
  491. data/apis/events/2015-10-07/paginators-1.json +0 -4
  492. data/apis/events/2015-10-07/smoke.json +0 -18
  493. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  494. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  495. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  496. data/apis/firehose/2015-08-04/smoke.json +0 -18
  497. data/apis/fms/2018-01-01/api-2.json +0 -701
  498. data/apis/fms/2018-01-01/examples-1.json +0 -5
  499. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  500. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  501. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  502. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  503. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  504. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  505. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  506. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  507. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  508. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  509. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  510. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  511. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  512. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  513. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  514. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  515. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  516. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  517. data/apis/glacier/2012-06-01/smoke.json +0 -18
  518. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  519. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  520. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  521. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  522. data/apis/glue/2017-03-31/api-2.json +0 -6302
  523. data/apis/glue/2017-03-31/examples-1.json +0 -5
  524. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  525. data/apis/glue/2017-03-31/smoke.json +0 -11
  526. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  527. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  528. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  529. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  530. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  531. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  532. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  533. data/apis/health/2016-08-04/api-2.json +0 -554
  534. data/apis/health/2016-08-04/examples-1.json +0 -5
  535. data/apis/health/2016-08-04/paginators-1.json +0 -31
  536. data/apis/health/2016-08-04/smoke.json +0 -11
  537. data/apis/iam/2010-05-08/api-2.json +0 -5787
  538. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  539. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  540. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  541. data/apis/iam/2010-05-08/smoke.json +0 -18
  542. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  543. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  544. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  545. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  546. data/apis/importexport/2010-06-01/api-2.json +0 -667
  547. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  548. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  549. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  550. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  551. data/apis/inspector/2016-02-16/smoke.json +0 -18
  552. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  553. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  554. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  555. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  556. data/apis/iot/2015-05-28/api-2.json +0 -11037
  557. data/apis/iot/2015-05-28/examples-1.json +0 -5
  558. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  559. data/apis/iot/2015-05-28/smoke.json +0 -18
  560. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  561. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  562. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  563. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  564. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  565. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  566. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  567. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  568. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  569. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  570. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  571. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  572. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  573. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  574. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  575. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  576. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  577. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  578. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  579. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  580. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  581. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  582. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  583. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  584. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  585. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  586. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  587. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  588. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  589. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  590. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  591. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  592. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  593. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  594. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  595. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2265
  596. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  597. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  598. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  599. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  600. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  601. data/apis/kms/2014-11-01/api-2.json +0 -2141
  602. data/apis/kms/2014-11-01/examples-1.json +0 -906
  603. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  604. data/apis/kms/2014-11-01/smoke.json +0 -19
  605. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  606. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  607. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  608. data/apis/lambda/2014-11-11/api-2.json +0 -668
  609. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  610. data/apis/lambda/2015-03-31/api-2.json +0 -2682
  611. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  612. data/apis/lambda/2015-03-31/paginators-1.json +0 -46
  613. data/apis/lambda/2015-03-31/smoke.json +0 -18
  614. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  615. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  616. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  617. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  618. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  619. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  620. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  621. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  622. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  623. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  624. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  625. data/apis/logs/2014-03-28/api-2.json +0 -1701
  626. data/apis/logs/2014-03-28/examples-1.json +0 -5
  627. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  628. data/apis/logs/2014-03-28/smoke.json +0 -19
  629. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  630. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  631. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  632. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  633. data/apis/macie/2017-12-19/api-2.json +0 -365
  634. data/apis/macie/2017-12-19/examples-1.json +0 -5
  635. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  636. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  637. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  638. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  639. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  640. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  641. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  642. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  643. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  644. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  645. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  646. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  647. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  648. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
  649. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  650. data/apis/medialive/2017-10-14/api-2.json +0 -10613
  651. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  652. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  653. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  654. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  655. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  656. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  657. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  658. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  659. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  660. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  661. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  662. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  663. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  664. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  665. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  666. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  667. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  668. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  669. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  670. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  671. data/apis/mobile/2017-07-01/api-2.json +0 -551
  672. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  673. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  674. data/apis/monitoring/2010-08-01/api-2.json +0 -1867
  675. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  676. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  677. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  678. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  679. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  680. data/apis/mq/2017-11-27/api-2.json +0 -2538
  681. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  682. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  683. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  684. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  685. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  686. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  687. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  688. data/apis/neptune/2014-10-31/smoke.json +0 -18
  689. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  690. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  691. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  692. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  693. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  694. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  695. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  696. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  697. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  698. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  699. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  700. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  701. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  702. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  703. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  704. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  705. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  706. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  707. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  708. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  709. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  710. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  711. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  712. data/apis/pi/2018-02-27/api-2.json +0 -253
  713. data/apis/pi/2018-02-27/examples-1.json +0 -5
  714. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  715. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  716. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  717. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  718. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  719. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  720. data/apis/polly/2016-06-10/api-2.json +0 -832
  721. data/apis/polly/2016-06-10/examples-1.json +0 -171
  722. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  723. data/apis/polly/2016-06-10/smoke.json +0 -11
  724. data/apis/pricing/2017-10-15/api-2.json +0 -227
  725. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  726. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  727. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  728. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  729. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  730. data/apis/qldb/2019-01-02/api-2.json +0 -776
  731. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  732. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  733. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  734. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  735. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  736. data/apis/ram/2018-01-04/api-2.json +0 -1272
  737. data/apis/ram/2018-01-04/examples-1.json +0 -5
  738. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  739. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  740. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  741. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  742. data/apis/rds/2013-01-10/api-2.json +0 -2903
  743. data/apis/rds/2013-01-10/examples-1.json +0 -5
  744. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  745. data/apis/rds/2013-01-10/smoke.json +0 -18
  746. data/apis/rds/2013-02-12/api-2.json +0 -3059
  747. data/apis/rds/2013-02-12/examples-1.json +0 -5
  748. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  749. data/apis/rds/2013-02-12/smoke.json +0 -18
  750. data/apis/rds/2013-09-09/api-2.json +0 -3160
  751. data/apis/rds/2013-09-09/examples-1.json +0 -5
  752. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  753. data/apis/rds/2013-09-09/smoke.json +0 -18
  754. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  755. data/apis/rds/2014-09-01/api-2.json +0 -3273
  756. data/apis/rds/2014-09-01/examples-1.json +0 -5
  757. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  758. data/apis/rds/2014-09-01/smoke.json +0 -18
  759. data/apis/rds/2014-10-31/api-2.json +0 -6881
  760. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  761. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  762. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  763. data/apis/rds/2014-10-31/smoke.json +0 -18
  764. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  765. data/apis/rds/2015-11-12/api-2.json +0 -5509
  766. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  767. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  768. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  769. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  770. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  771. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  772. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  773. data/apis/redshift/2012-12-01/smoke.json +0 -18
  774. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  775. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  776. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  777. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  778. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  779. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  780. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  781. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  782. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  783. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  784. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  785. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  786. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  787. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  788. data/apis/route53/2013-04-01/api-2.json +0 -3780
  789. data/apis/route53/2013-04-01/examples-1.json +0 -762
  790. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  791. data/apis/route53/2013-04-01/smoke.json +0 -18
  792. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  793. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  794. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  795. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  796. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  797. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  798. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  799. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  800. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  801. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  802. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  803. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  804. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  805. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  806. data/apis/s3/2006-03-01/api-2.json +0 -6653
  807. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  808. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  809. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  810. data/apis/s3/2006-03-01/smoke.json +0 -11
  811. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  812. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  813. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  814. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  815. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  816. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  817. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  818. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  819. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  820. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  821. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  822. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  823. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  824. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  825. data/apis/sdb/2009-04-15/api-2.json +0 -955
  826. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  827. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  828. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  829. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  830. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  831. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  832. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  833. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  834. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  835. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  836. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  837. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  838. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  839. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  840. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  841. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  842. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  843. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  844. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  845. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  846. data/apis/sesv2/2019-09-27/api-2.json +0 -2362
  847. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  848. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  849. data/apis/shield/2016-06-02/api-2.json +0 -893
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -817
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  858. data/apis/sms/2016-10-24/api-2.json +0 -1366
  859. data/apis/sms/2016-10-24/examples-1.json +0 -5
  860. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  861. data/apis/sms/2016-10-24/smoke.json +0 -18
  862. data/apis/snowball/2016-06-30/api-2.json +0 -955
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1468
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -9150
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  881. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  882. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  883. data/apis/sso/2019-06-10/api-2.json +0 -281
  884. data/apis/sso/2019-06-10/examples-1.json +0 -5
  885. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  886. data/apis/states/2016-11-23/api-2.json +0 -1409
  887. data/apis/states/2016-11-23/examples-1.json +0 -5
  888. data/apis/states/2016-11-23/paginators-1.json +0 -28
  889. data/apis/states/2016-11-23/smoke.json +0 -11
  890. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  891. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  892. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  893. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  894. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  895. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  896. data/apis/sts/2011-06-15/api-2.json +0 -598
  897. data/apis/sts/2011-06-15/examples-1.json +0 -234
  898. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  899. data/apis/sts/2011-06-15/smoke.json +0 -19
  900. data/apis/support/2013-04-15/api-2.json +0 -773
  901. data/apis/support/2013-04-15/examples-1.json +0 -5
  902. data/apis/support/2013-04-15/paginators-1.json +0 -25
  903. data/apis/support/2013-04-15/smoke.json +0 -22
  904. data/apis/swf/2012-01-25/api-2.json +0 -2792
  905. data/apis/swf/2012-01-25/examples-1.json +0 -5
  906. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  907. data/apis/textract/2018-06-27/api-2.json +0 -572
  908. data/apis/textract/2018-06-27/examples-1.json +0 -5
  909. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  910. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  911. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  912. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  913. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  914. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  915. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  916. data/apis/transfer/2018-11-05/api-2.json +0 -940
  917. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  918. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  919. data/apis/translate/2017-07-01/api-2.json +0 -408
  920. data/apis/translate/2017-07-01/examples-1.json +0 -5
  921. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  922. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  923. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  924. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  925. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  926. data/apis/waf/2015-08-24/api-2.json +0 -3857
  927. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  928. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  929. data/apis/waf/2015-08-24/smoke.json +0 -21
  930. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  931. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  932. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  933. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  934. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  935. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  936. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  937. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  938. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  939. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  940. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  941. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  942. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  943. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  944. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  945. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  946. data/apis/workspaces/2015-04-08/api-2.json +0 -1994
  947. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  948. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  949. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  950. data/apis/xray/2016-04-12/api-2.json +0 -1352
  951. data/apis/xray/2016-04-12/examples-1.json +0 -5
  952. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  953. data/bin/aws.rb +0 -180
  954. data/endpoints.json +0 -5692
  955. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  956. data/lib/aws-sdk-core/acm.rb +0 -7
  957. data/lib/aws-sdk-core/acmpca.rb +0 -7
  958. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  959. data/lib/aws-sdk-core/amplify.rb +0 -6
  960. data/lib/aws-sdk-core/api/builder.rb +0 -129
  961. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  962. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  963. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  964. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  965. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  966. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  967. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  968. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  969. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  970. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  971. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  972. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  973. data/lib/aws-sdk-core/apigateway.rb +0 -6
  974. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  975. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  976. data/lib/aws-sdk-core/appconfig.rb +0 -6
  977. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  978. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  979. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  980. data/lib/aws-sdk-core/appmesh.rb +0 -6
  981. data/lib/aws-sdk-core/appstream.rb +0 -7
  982. data/lib/aws-sdk-core/appsync.rb +0 -6
  983. data/lib/aws-sdk-core/athena.rb +0 -6
  984. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  985. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  986. data/lib/aws-sdk-core/backup.rb +0 -6
  987. data/lib/aws-sdk-core/batch.rb +0 -6
  988. data/lib/aws-sdk-core/budgets.rb +0 -6
  989. data/lib/aws-sdk-core/checksums.rb +0 -51
  990. data/lib/aws-sdk-core/chime.rb +0 -6
  991. data/lib/aws-sdk-core/client.rb +0 -62
  992. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  993. data/lib/aws-sdk-core/cloud9.rb +0 -6
  994. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  995. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  996. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  997. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  998. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  999. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1000. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1001. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1002. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1003. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1004. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1005. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1006. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1007. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1008. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1009. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1010. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1011. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1012. data/lib/aws-sdk-core/codestar.rb +0 -6
  1013. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1014. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1015. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1016. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1017. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1018. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1019. data/lib/aws-sdk-core/configservice.rb +0 -6
  1020. data/lib/aws-sdk-core/connect.rb +0 -6
  1021. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1022. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1023. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1024. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1025. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1026. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1027. data/lib/aws-sdk-core/datasync.rb +0 -6
  1028. data/lib/aws-sdk-core/dax.rb +0 -6
  1029. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1030. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1031. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1032. data/lib/aws-sdk-core/dlm.rb +0 -6
  1033. data/lib/aws-sdk-core/docdb.rb +0 -7
  1034. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1035. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1036. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1037. data/lib/aws-sdk-core/ec2.rb +0 -8
  1038. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1039. data/lib/aws-sdk-core/ecr.rb +0 -6
  1040. data/lib/aws-sdk-core/ecs.rb +0 -7
  1041. data/lib/aws-sdk-core/efs.rb +0 -6
  1042. data/lib/aws-sdk-core/eks.rb +0 -7
  1043. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1044. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1045. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1046. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1047. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1048. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1049. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1050. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1051. data/lib/aws-sdk-core/emr.rb +0 -7
  1052. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1053. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1054. data/lib/aws-sdk-core/firehose.rb +0 -6
  1055. data/lib/aws-sdk-core/fms.rb +0 -6
  1056. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1057. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1058. data/lib/aws-sdk-core/fsx.rb +0 -6
  1059. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1060. data/lib/aws-sdk-core/glacier.rb +0 -8
  1061. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1062. data/lib/aws-sdk-core/glue.rb +0 -6
  1063. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1064. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1065. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1066. data/lib/aws-sdk-core/health.rb +0 -6
  1067. data/lib/aws-sdk-core/iam.rb +0 -8
  1068. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1069. data/lib/aws-sdk-core/importexport.rb +0 -5
  1070. data/lib/aws-sdk-core/inspector.rb +0 -6
  1071. data/lib/aws-sdk-core/iot.rb +0 -6
  1072. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1073. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1074. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1075. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1076. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1077. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1078. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1079. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1080. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1081. data/lib/aws-sdk-core/kafka.rb +0 -5
  1082. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1083. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1084. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1085. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1086. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1087. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1088. data/lib/aws-sdk-core/kms.rb +0 -6
  1089. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1090. data/lib/aws-sdk-core/lambda.rb +0 -7
  1091. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1092. data/lib/aws-sdk-core/lex.rb +0 -6
  1093. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1094. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1095. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1096. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1097. data/lib/aws-sdk-core/macie.rb +0 -6
  1098. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1099. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1100. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1101. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1102. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1103. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1104. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1105. data/lib/aws-sdk-core/medialive.rb +0 -6
  1106. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1107. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1108. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1109. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1110. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1111. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1112. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1113. data/lib/aws-sdk-core/mobile.rb +0 -6
  1114. data/lib/aws-sdk-core/mq.rb +0 -5
  1115. data/lib/aws-sdk-core/mturk.rb +0 -6
  1116. data/lib/aws-sdk-core/neptune.rb +0 -7
  1117. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1118. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1119. data/lib/aws-sdk-core/organizations.rb +0 -6
  1120. data/lib/aws-sdk-core/partitions.rb +0 -174
  1121. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1122. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1123. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1124. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1125. data/lib/aws-sdk-core/personalize.rb +0 -6
  1126. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1127. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1128. data/lib/aws-sdk-core/pi.rb +0 -6
  1129. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1130. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1131. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1132. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1133. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1134. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1135. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1136. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1137. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1138. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1139. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1140. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1141. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1142. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1143. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1144. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1145. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1146. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1147. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1148. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1149. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1150. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1151. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1152. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1153. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1154. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1155. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1156. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1157. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1158. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1159. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1160. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1161. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1162. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1163. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1164. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1165. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1166. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1167. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1168. data/lib/aws-sdk-core/polly.rb +0 -14
  1169. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1170. data/lib/aws-sdk-core/pricing.rb +0 -6
  1171. data/lib/aws-sdk-core/qldb.rb +0 -6
  1172. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1173. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1174. data/lib/aws-sdk-core/ram.rb +0 -6
  1175. data/lib/aws-sdk-core/rds.rb +0 -16
  1176. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1177. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1178. data/lib/aws-sdk-core/redshift.rb +0 -7
  1179. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1180. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1181. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1182. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1183. data/lib/aws-sdk-core/route53.rb +0 -7
  1184. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1185. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1186. data/lib/aws-sdk-core/s3.rb +0 -26
  1187. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1188. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1189. data/lib/aws-sdk-core/s3control.rb +0 -6
  1190. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1191. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1192. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1193. data/lib/aws-sdk-core/schemas.rb +0 -6
  1194. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1195. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1196. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1197. data/lib/aws-sdk-core/service.rb +0 -4
  1198. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1199. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1200. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1201. data/lib/aws-sdk-core/ses.rb +0 -7
  1202. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1203. data/lib/aws-sdk-core/shield.rb +0 -6
  1204. data/lib/aws-sdk-core/signer.rb +0 -7
  1205. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1206. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1207. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1208. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1209. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1210. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1211. data/lib/aws-sdk-core/sms.rb +0 -6
  1212. data/lib/aws-sdk-core/snowball.rb +0 -6
  1213. data/lib/aws-sdk-core/sns.rb +0 -7
  1214. data/lib/aws-sdk-core/sqs.rb +0 -7
  1215. data/lib/aws-sdk-core/ssm.rb +0 -6
  1216. data/lib/aws-sdk-core/sso.rb +0 -6
  1217. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1218. data/lib/aws-sdk-core/states.rb +0 -6
  1219. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1220. data/lib/aws-sdk-core/sts.rb +0 -6
  1221. data/lib/aws-sdk-core/support.rb +0 -6
  1222. data/lib/aws-sdk-core/swf.rb +0 -6
  1223. data/lib/aws-sdk-core/textract.rb +0 -6
  1224. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1225. data/lib/aws-sdk-core/transfer.rb +0 -6
  1226. data/lib/aws-sdk-core/translate.rb +0 -6
  1227. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1228. data/lib/aws-sdk-core/version.rb +0 -3
  1229. data/lib/aws-sdk-core/waf.rb +0 -6
  1230. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1231. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1232. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1233. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1234. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1235. data/lib/aws-sdk-core/worklink.rb +0 -6
  1236. data/lib/aws-sdk-core/workmail.rb +0 -6
  1237. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1238. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1239. data/lib/aws-sdk-core/xray.rb +0 -6
  1240. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1241. data/service-models.json +0 -833
@@ -1,52 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeSchedule": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults",
7
- "result_key": "ScheduleActions"
8
- },
9
- "ListChannels": {
10
- "input_token": "NextToken",
11
- "output_token": "NextToken",
12
- "limit_key": "MaxResults",
13
- "result_key": "Channels"
14
- },
15
- "ListInputSecurityGroups": {
16
- "input_token": "NextToken",
17
- "output_token": "NextToken",
18
- "limit_key": "MaxResults",
19
- "result_key": "InputSecurityGroups"
20
- },
21
- "ListInputs": {
22
- "input_token": "NextToken",
23
- "output_token": "NextToken",
24
- "limit_key": "MaxResults",
25
- "result_key": "Inputs"
26
- },
27
- "ListOfferings": {
28
- "input_token": "NextToken",
29
- "output_token": "NextToken",
30
- "limit_key": "MaxResults",
31
- "result_key": "Offerings"
32
- },
33
- "ListReservations": {
34
- "input_token": "NextToken",
35
- "output_token": "NextToken",
36
- "limit_key": "MaxResults",
37
- "result_key": "Reservations"
38
- },
39
- "ListMultiplexPrograms": {
40
- "input_token": "NextToken",
41
- "output_token": "NextToken",
42
- "limit_key": "MaxResults",
43
- "result_key": "MultiplexPrograms"
44
- },
45
- "ListMultiplexes": {
46
- "input_token": "NextToken",
47
- "output_token": "NextToken",
48
- "limit_key": "MaxResults",
49
- "result_key": "Multiplexes"
50
- }
51
- }
52
- }
@@ -1,217 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "ChannelCreated": {
5
- "description": "Wait until a channel has been created",
6
- "operation": "DescribeChannel",
7
- "delay": 3,
8
- "maxAttempts": 5,
9
- "acceptors": [
10
- {
11
- "state": "success",
12
- "matcher": "path",
13
- "argument": "State",
14
- "expected": "IDLE"
15
- },
16
- {
17
- "state": "retry",
18
- "matcher": "path",
19
- "argument": "State",
20
- "expected": "CREATING"
21
- },
22
- {
23
- "state": "retry",
24
- "matcher": "status",
25
- "expected": 500
26
- },
27
- {
28
- "state": "failure",
29
- "matcher": "path",
30
- "argument": "State",
31
- "expected": "CREATE_FAILED"
32
- }
33
- ]
34
- },
35
- "ChannelRunning": {
36
- "description": "Wait until a channel is running",
37
- "operation": "DescribeChannel",
38
- "delay": 5,
39
- "maxAttempts": 120,
40
- "acceptors": [
41
- {
42
- "state": "success",
43
- "matcher": "path",
44
- "argument": "State",
45
- "expected": "RUNNING"
46
- },
47
- {
48
- "state": "retry",
49
- "matcher": "path",
50
- "argument": "State",
51
- "expected": "STARTING"
52
- },
53
- {
54
- "state": "retry",
55
- "matcher": "status",
56
- "expected": 500
57
- }
58
- ]
59
- },
60
- "ChannelStopped": {
61
- "description": "Wait until a channel has is stopped",
62
- "operation": "DescribeChannel",
63
- "delay": 5,
64
- "maxAttempts": 28,
65
- "acceptors": [
66
- {
67
- "state": "success",
68
- "matcher": "path",
69
- "argument": "State",
70
- "expected": "IDLE"
71
- },
72
- {
73
- "state": "retry",
74
- "matcher": "path",
75
- "argument": "State",
76
- "expected": "STOPPING"
77
- },
78
- {
79
- "state": "retry",
80
- "matcher": "status",
81
- "expected": 500
82
- }
83
- ]
84
- },
85
- "ChannelDeleted": {
86
- "description": "Wait until a channel has been deleted",
87
- "operation": "DescribeChannel",
88
- "delay": 5,
89
- "maxAttempts": 20,
90
- "acceptors": [
91
- {
92
- "state": "success",
93
- "matcher": "path",
94
- "argument": "State",
95
- "expected": "DELETED"
96
- },
97
- {
98
- "state": "retry",
99
- "matcher": "path",
100
- "argument": "State",
101
- "expected": "DELETING"
102
- },
103
- {
104
- "state": "retry",
105
- "matcher": "status",
106
- "expected": 500
107
- }
108
- ]
109
- },
110
- "MultiplexCreated": {
111
- "description": "Wait until a multiplex has been created",
112
- "operation": "DescribeMultiplex",
113
- "delay": 3,
114
- "maxAttempts": 5,
115
- "acceptors": [
116
- {
117
- "state": "success",
118
- "matcher": "path",
119
- "argument": "State",
120
- "expected": "IDLE"
121
- },
122
- {
123
- "state": "retry",
124
- "matcher": "path",
125
- "argument": "State",
126
- "expected": "CREATING"
127
- },
128
- {
129
- "state": "retry",
130
- "matcher": "status",
131
- "expected": 500
132
- },
133
- {
134
- "state": "failure",
135
- "matcher": "path",
136
- "argument": "State",
137
- "expected": "CREATE_FAILED"
138
- }
139
- ]
140
- },
141
- "MultiplexRunning": {
142
- "description": "Wait until a multiplex is running",
143
- "operation": "DescribeMultiplex",
144
- "delay": 5,
145
- "maxAttempts": 120,
146
- "acceptors": [
147
- {
148
- "state": "success",
149
- "matcher": "path",
150
- "argument": "State",
151
- "expected": "RUNNING"
152
- },
153
- {
154
- "state": "retry",
155
- "matcher": "path",
156
- "argument": "State",
157
- "expected": "STARTING"
158
- },
159
- {
160
- "state": "retry",
161
- "matcher": "status",
162
- "expected": 500
163
- }
164
- ]
165
- },
166
- "MultiplexStopped": {
167
- "description": "Wait until a multiplex has is stopped",
168
- "operation": "DescribeMultiplex",
169
- "delay": 5,
170
- "maxAttempts": 28,
171
- "acceptors": [
172
- {
173
- "state": "success",
174
- "matcher": "path",
175
- "argument": "State",
176
- "expected": "IDLE"
177
- },
178
- {
179
- "state": "retry",
180
- "matcher": "path",
181
- "argument": "State",
182
- "expected": "STOPPING"
183
- },
184
- {
185
- "state": "retry",
186
- "matcher": "status",
187
- "expected": 500
188
- }
189
- ]
190
- },
191
- "MultiplexDeleted": {
192
- "description": "Wait until a multiplex has been deleted",
193
- "operation": "DescribeMultiplex",
194
- "delay": 5,
195
- "maxAttempts": 20,
196
- "acceptors": [
197
- {
198
- "state": "success",
199
- "matcher": "path",
200
- "argument": "State",
201
- "expected": "DELETED"
202
- },
203
- {
204
- "state": "retry",
205
- "matcher": "path",
206
- "argument": "State",
207
- "expected": "DELETING"
208
- },
209
- {
210
- "state": "retry",
211
- "matcher": "status",
212
- "expected": 500
213
- }
214
- ]
215
- }
216
- }
217
- }
@@ -1,1526 +0,0 @@
1
- {
2
- "metadata": {
3
- "apiVersion": "2018-11-07",
4
- "endpointPrefix": "mediapackage-vod",
5
- "jsonVersion": "1.1",
6
- "protocol": "rest-json",
7
- "serviceAbbreviation": "MediaPackage Vod",
8
- "serviceFullName": "AWS Elemental MediaPackage VOD",
9
- "serviceId": "MediaPackage Vod",
10
- "signatureVersion": "v4",
11
- "signingName": "mediapackage-vod",
12
- "uid": "mediapackage-vod-2018-11-07"
13
- },
14
- "operations": {
15
- "CreateAsset": {
16
- "errors": [
17
- {
18
- "shape": "UnprocessableEntityException"
19
- },
20
- {
21
- "shape": "InternalServerErrorException"
22
- },
23
- {
24
- "shape": "ForbiddenException"
25
- },
26
- {
27
- "shape": "NotFoundException"
28
- },
29
- {
30
- "shape": "ServiceUnavailableException"
31
- },
32
- {
33
- "shape": "TooManyRequestsException"
34
- }
35
- ],
36
- "http": {
37
- "method": "POST",
38
- "requestUri": "/assets",
39
- "responseCode": 200
40
- },
41
- "input": {
42
- "shape": "CreateAssetRequest"
43
- },
44
- "name": "CreateAsset",
45
- "output": {
46
- "shape": "CreateAssetResponse"
47
- }
48
- },
49
- "CreatePackagingConfiguration": {
50
- "errors": [
51
- {
52
- "shape": "UnprocessableEntityException"
53
- },
54
- {
55
- "shape": "InternalServerErrorException"
56
- },
57
- {
58
- "shape": "ForbiddenException"
59
- },
60
- {
61
- "shape": "NotFoundException"
62
- },
63
- {
64
- "shape": "ServiceUnavailableException"
65
- },
66
- {
67
- "shape": "TooManyRequestsException"
68
- }
69
- ],
70
- "http": {
71
- "method": "POST",
72
- "requestUri": "/packaging_configurations",
73
- "responseCode": 200
74
- },
75
- "input": {
76
- "shape": "CreatePackagingConfigurationRequest"
77
- },
78
- "name": "CreatePackagingConfiguration",
79
- "output": {
80
- "shape": "CreatePackagingConfigurationResponse"
81
- }
82
- },
83
- "CreatePackagingGroup": {
84
- "errors": [
85
- {
86
- "shape": "UnprocessableEntityException"
87
- },
88
- {
89
- "shape": "InternalServerErrorException"
90
- },
91
- {
92
- "shape": "ForbiddenException"
93
- },
94
- {
95
- "shape": "NotFoundException"
96
- },
97
- {
98
- "shape": "ServiceUnavailableException"
99
- },
100
- {
101
- "shape": "TooManyRequestsException"
102
- }
103
- ],
104
- "http": {
105
- "method": "POST",
106
- "requestUri": "/packaging_groups",
107
- "responseCode": 200
108
- },
109
- "input": {
110
- "shape": "CreatePackagingGroupRequest"
111
- },
112
- "name": "CreatePackagingGroup",
113
- "output": {
114
- "shape": "CreatePackagingGroupResponse"
115
- }
116
- },
117
- "DeleteAsset": {
118
- "errors": [
119
- {
120
- "shape": "UnprocessableEntityException"
121
- },
122
- {
123
- "shape": "InternalServerErrorException"
124
- },
125
- {
126
- "shape": "ForbiddenException"
127
- },
128
- {
129
- "shape": "NotFoundException"
130
- },
131
- {
132
- "shape": "ServiceUnavailableException"
133
- },
134
- {
135
- "shape": "TooManyRequestsException"
136
- }
137
- ],
138
- "http": {
139
- "method": "DELETE",
140
- "requestUri": "/assets/{id}",
141
- "responseCode": 202
142
- },
143
- "input": {
144
- "shape": "DeleteAssetRequest"
145
- },
146
- "name": "DeleteAsset",
147
- "output": {
148
- "shape": "DeleteAssetResponse"
149
- }
150
- },
151
- "DeletePackagingConfiguration": {
152
- "errors": [
153
- {
154
- "shape": "UnprocessableEntityException"
155
- },
156
- {
157
- "shape": "InternalServerErrorException"
158
- },
159
- {
160
- "shape": "ForbiddenException"
161
- },
162
- {
163
- "shape": "NotFoundException"
164
- },
165
- {
166
- "shape": "ServiceUnavailableException"
167
- },
168
- {
169
- "shape": "TooManyRequestsException"
170
- }
171
- ],
172
- "http": {
173
- "method": "DELETE",
174
- "requestUri": "/packaging_configurations/{id}",
175
- "responseCode": 202
176
- },
177
- "input": {
178
- "shape": "DeletePackagingConfigurationRequest"
179
- },
180
- "name": "DeletePackagingConfiguration",
181
- "output": {
182
- "shape": "DeletePackagingConfigurationResponse"
183
- }
184
- },
185
- "DeletePackagingGroup": {
186
- "errors": [
187
- {
188
- "shape": "UnprocessableEntityException"
189
- },
190
- {
191
- "shape": "InternalServerErrorException"
192
- },
193
- {
194
- "shape": "ForbiddenException"
195
- },
196
- {
197
- "shape": "NotFoundException"
198
- },
199
- {
200
- "shape": "ServiceUnavailableException"
201
- },
202
- {
203
- "shape": "TooManyRequestsException"
204
- }
205
- ],
206
- "http": {
207
- "method": "DELETE",
208
- "requestUri": "/packaging_groups/{id}",
209
- "responseCode": 202
210
- },
211
- "input": {
212
- "shape": "DeletePackagingGroupRequest"
213
- },
214
- "name": "DeletePackagingGroup",
215
- "output": {
216
- "shape": "DeletePackagingGroupResponse"
217
- }
218
- },
219
- "DescribeAsset": {
220
- "errors": [
221
- {
222
- "shape": "UnprocessableEntityException"
223
- },
224
- {
225
- "shape": "InternalServerErrorException"
226
- },
227
- {
228
- "shape": "ForbiddenException"
229
- },
230
- {
231
- "shape": "NotFoundException"
232
- },
233
- {
234
- "shape": "ServiceUnavailableException"
235
- },
236
- {
237
- "shape": "TooManyRequestsException"
238
- }
239
- ],
240
- "http": {
241
- "method": "GET",
242
- "requestUri": "/assets/{id}",
243
- "responseCode": 200
244
- },
245
- "input": {
246
- "shape": "DescribeAssetRequest"
247
- },
248
- "name": "DescribeAsset",
249
- "output": {
250
- "shape": "DescribeAssetResponse"
251
- }
252
- },
253
- "DescribePackagingConfiguration": {
254
- "errors": [
255
- {
256
- "shape": "UnprocessableEntityException"
257
- },
258
- {
259
- "shape": "InternalServerErrorException"
260
- },
261
- {
262
- "shape": "ForbiddenException"
263
- },
264
- {
265
- "shape": "NotFoundException"
266
- },
267
- {
268
- "shape": "ServiceUnavailableException"
269
- },
270
- {
271
- "shape": "TooManyRequestsException"
272
- }
273
- ],
274
- "http": {
275
- "method": "GET",
276
- "requestUri": "/packaging_configurations/{id}",
277
- "responseCode": 200
278
- },
279
- "input": {
280
- "shape": "DescribePackagingConfigurationRequest"
281
- },
282
- "name": "DescribePackagingConfiguration",
283
- "output": {
284
- "shape": "DescribePackagingConfigurationResponse"
285
- }
286
- },
287
- "DescribePackagingGroup": {
288
- "errors": [
289
- {
290
- "shape": "UnprocessableEntityException"
291
- },
292
- {
293
- "shape": "InternalServerErrorException"
294
- },
295
- {
296
- "shape": "ForbiddenException"
297
- },
298
- {
299
- "shape": "NotFoundException"
300
- },
301
- {
302
- "shape": "ServiceUnavailableException"
303
- },
304
- {
305
- "shape": "TooManyRequestsException"
306
- }
307
- ],
308
- "http": {
309
- "method": "GET",
310
- "requestUri": "/packaging_groups/{id}",
311
- "responseCode": 200
312
- },
313
- "input": {
314
- "shape": "DescribePackagingGroupRequest"
315
- },
316
- "name": "DescribePackagingGroup",
317
- "output": {
318
- "shape": "DescribePackagingGroupResponse"
319
- }
320
- },
321
- "ListAssets": {
322
- "errors": [
323
- {
324
- "shape": "UnprocessableEntityException"
325
- },
326
- {
327
- "shape": "InternalServerErrorException"
328
- },
329
- {
330
- "shape": "ForbiddenException"
331
- },
332
- {
333
- "shape": "NotFoundException"
334
- },
335
- {
336
- "shape": "ServiceUnavailableException"
337
- },
338
- {
339
- "shape": "TooManyRequestsException"
340
- }
341
- ],
342
- "http": {
343
- "method": "GET",
344
- "requestUri": "/assets",
345
- "responseCode": 200
346
- },
347
- "input": {
348
- "shape": "ListAssetsRequest"
349
- },
350
- "name": "ListAssets",
351
- "output": {
352
- "shape": "ListAssetsResponse"
353
- }
354
- },
355
- "ListPackagingConfigurations": {
356
- "errors": [
357
- {
358
- "shape": "UnprocessableEntityException"
359
- },
360
- {
361
- "shape": "InternalServerErrorException"
362
- },
363
- {
364
- "shape": "ForbiddenException"
365
- },
366
- {
367
- "shape": "NotFoundException"
368
- },
369
- {
370
- "shape": "ServiceUnavailableException"
371
- },
372
- {
373
- "shape": "TooManyRequestsException"
374
- }
375
- ],
376
- "http": {
377
- "method": "GET",
378
- "requestUri": "/packaging_configurations",
379
- "responseCode": 200
380
- },
381
- "input": {
382
- "shape": "ListPackagingConfigurationsRequest"
383
- },
384
- "name": "ListPackagingConfigurations",
385
- "output": {
386
- "shape": "ListPackagingConfigurationsResponse"
387
- }
388
- },
389
- "ListPackagingGroups": {
390
- "errors": [
391
- {
392
- "shape": "UnprocessableEntityException"
393
- },
394
- {
395
- "shape": "InternalServerErrorException"
396
- },
397
- {
398
- "shape": "ForbiddenException"
399
- },
400
- {
401
- "shape": "NotFoundException"
402
- },
403
- {
404
- "shape": "ServiceUnavailableException"
405
- },
406
- {
407
- "shape": "TooManyRequestsException"
408
- }
409
- ],
410
- "http": {
411
- "method": "GET",
412
- "requestUri": "/packaging_groups",
413
- "responseCode": 200
414
- },
415
- "input": {
416
- "shape": "ListPackagingGroupsRequest"
417
- },
418
- "name": "ListPackagingGroups",
419
- "output": {
420
- "shape": "ListPackagingGroupsResponse"
421
- }
422
- }
423
- },
424
- "shapes": {
425
- "AdMarkers": {
426
- "enum": [
427
- "NONE",
428
- "SCTE35_ENHANCED",
429
- "PASSTHROUGH"
430
- ],
431
- "type": "string"
432
- },
433
- "Asset": {
434
- "members": {
435
- "Arn": {
436
- "locationName": "arn",
437
- "shape": "__string"
438
- },
439
- "CreatedAt": {
440
- "locationName": "createdAt",
441
- "shape": "__string"
442
- },
443
- "EgressEndpoints": {
444
- "locationName": "egressEndpoints",
445
- "shape": "__listOfEgressEndpoint"
446
- },
447
- "Id": {
448
- "locationName": "id",
449
- "shape": "__string"
450
- },
451
- "PackagingGroupId": {
452
- "locationName": "packagingGroupId",
453
- "shape": "__string"
454
- },
455
- "ResourceId": {
456
- "locationName": "resourceId",
457
- "shape": "__string"
458
- },
459
- "SourceArn": {
460
- "locationName": "sourceArn",
461
- "shape": "__string"
462
- },
463
- "SourceRoleArn": {
464
- "locationName": "sourceRoleArn",
465
- "shape": "__string"
466
- }
467
- },
468
- "type": "structure"
469
- },
470
- "AssetCreateParameters": {
471
- "members": {
472
- "Id": {
473
- "locationName": "id",
474
- "shape": "__string"
475
- },
476
- "PackagingGroupId": {
477
- "locationName": "packagingGroupId",
478
- "shape": "__string"
479
- },
480
- "ResourceId": {
481
- "locationName": "resourceId",
482
- "shape": "__string"
483
- },
484
- "SourceArn": {
485
- "locationName": "sourceArn",
486
- "shape": "__string"
487
- },
488
- "SourceRoleArn": {
489
- "locationName": "sourceRoleArn",
490
- "shape": "__string"
491
- }
492
- },
493
- "required": [
494
- "SourceArn",
495
- "Id",
496
- "PackagingGroupId",
497
- "SourceRoleArn"
498
- ],
499
- "type": "structure"
500
- },
501
- "AssetList": {
502
- "members": {
503
- "Assets": {
504
- "locationName": "assets",
505
- "shape": "__listOfAssetShallow"
506
- },
507
- "NextToken": {
508
- "locationName": "nextToken",
509
- "shape": "__string"
510
- }
511
- },
512
- "type": "structure"
513
- },
514
- "AssetShallow": {
515
- "members": {
516
- "Arn": {
517
- "locationName": "arn",
518
- "shape": "__string"
519
- },
520
- "CreatedAt": {
521
- "locationName": "createdAt",
522
- "shape": "__string"
523
- },
524
- "Id": {
525
- "locationName": "id",
526
- "shape": "__string"
527
- },
528
- "PackagingGroupId": {
529
- "locationName": "packagingGroupId",
530
- "shape": "__string"
531
- },
532
- "ResourceId": {
533
- "locationName": "resourceId",
534
- "shape": "__string"
535
- },
536
- "SourceArn": {
537
- "locationName": "sourceArn",
538
- "shape": "__string"
539
- },
540
- "SourceRoleArn": {
541
- "locationName": "sourceRoleArn",
542
- "shape": "__string"
543
- }
544
- },
545
- "type": "structure"
546
- },
547
- "CmafEncryption": {
548
- "members": {
549
- "SpekeKeyProvider": {
550
- "locationName": "spekeKeyProvider",
551
- "shape": "SpekeKeyProvider"
552
- }
553
- },
554
- "required": [
555
- "SpekeKeyProvider"
556
- ],
557
- "type": "structure"
558
- },
559
- "CmafPackage": {
560
- "members": {
561
- "Encryption": {
562
- "locationName": "encryption",
563
- "shape": "CmafEncryption"
564
- },
565
- "HlsManifests": {
566
- "locationName": "hlsManifests",
567
- "shape": "__listOfHlsManifest"
568
- },
569
- "SegmentDurationSeconds": {
570
- "locationName": "segmentDurationSeconds",
571
- "shape": "__integer"
572
- }
573
- },
574
- "required": [
575
- "HlsManifests"
576
- ],
577
- "type": "structure"
578
- },
579
- "CreateAssetRequest": {
580
- "members": {
581
- "Id": {
582
- "locationName": "id",
583
- "shape": "__string"
584
- },
585
- "PackagingGroupId": {
586
- "locationName": "packagingGroupId",
587
- "shape": "__string"
588
- },
589
- "ResourceId": {
590
- "locationName": "resourceId",
591
- "shape": "__string"
592
- },
593
- "SourceArn": {
594
- "locationName": "sourceArn",
595
- "shape": "__string"
596
- },
597
- "SourceRoleArn": {
598
- "locationName": "sourceRoleArn",
599
- "shape": "__string"
600
- }
601
- },
602
- "required": [
603
- "SourceArn",
604
- "Id",
605
- "PackagingGroupId",
606
- "SourceRoleArn"
607
- ],
608
- "type": "structure"
609
- },
610
- "CreateAssetResponse": {
611
- "members": {
612
- "Arn": {
613
- "locationName": "arn",
614
- "shape": "__string"
615
- },
616
- "CreatedAt": {
617
- "locationName": "createdAt",
618
- "shape": "__string"
619
- },
620
- "EgressEndpoints": {
621
- "locationName": "egressEndpoints",
622
- "shape": "__listOfEgressEndpoint"
623
- },
624
- "Id": {
625
- "locationName": "id",
626
- "shape": "__string"
627
- },
628
- "PackagingGroupId": {
629
- "locationName": "packagingGroupId",
630
- "shape": "__string"
631
- },
632
- "ResourceId": {
633
- "locationName": "resourceId",
634
- "shape": "__string"
635
- },
636
- "SourceArn": {
637
- "locationName": "sourceArn",
638
- "shape": "__string"
639
- },
640
- "SourceRoleArn": {
641
- "locationName": "sourceRoleArn",
642
- "shape": "__string"
643
- }
644
- },
645
- "type": "structure"
646
- },
647
- "CreatePackagingConfigurationRequest": {
648
- "members": {
649
- "CmafPackage": {
650
- "locationName": "cmafPackage",
651
- "shape": "CmafPackage"
652
- },
653
- "DashPackage": {
654
- "locationName": "dashPackage",
655
- "shape": "DashPackage"
656
- },
657
- "HlsPackage": {
658
- "locationName": "hlsPackage",
659
- "shape": "HlsPackage"
660
- },
661
- "Id": {
662
- "locationName": "id",
663
- "shape": "__string"
664
- },
665
- "MssPackage": {
666
- "locationName": "mssPackage",
667
- "shape": "MssPackage"
668
- },
669
- "PackagingGroupId": {
670
- "locationName": "packagingGroupId",
671
- "shape": "__string"
672
- }
673
- },
674
- "required": [
675
- "Id",
676
- "PackagingGroupId"
677
- ],
678
- "type": "structure"
679
- },
680
- "CreatePackagingConfigurationResponse": {
681
- "members": {
682
- "Arn": {
683
- "locationName": "arn",
684
- "shape": "__string"
685
- },
686
- "CmafPackage": {
687
- "locationName": "cmafPackage",
688
- "shape": "CmafPackage"
689
- },
690
- "DashPackage": {
691
- "locationName": "dashPackage",
692
- "shape": "DashPackage"
693
- },
694
- "HlsPackage": {
695
- "locationName": "hlsPackage",
696
- "shape": "HlsPackage"
697
- },
698
- "Id": {
699
- "locationName": "id",
700
- "shape": "__string"
701
- },
702
- "MssPackage": {
703
- "locationName": "mssPackage",
704
- "shape": "MssPackage"
705
- },
706
- "PackagingGroupId": {
707
- "locationName": "packagingGroupId",
708
- "shape": "__string"
709
- }
710
- },
711
- "type": "structure"
712
- },
713
- "CreatePackagingGroupRequest": {
714
- "members": {
715
- "Id": {
716
- "locationName": "id",
717
- "shape": "__string"
718
- }
719
- },
720
- "required": [
721
- "Id"
722
- ],
723
- "type": "structure"
724
- },
725
- "CreatePackagingGroupResponse": {
726
- "members": {
727
- "Arn": {
728
- "locationName": "arn",
729
- "shape": "__string"
730
- },
731
- "DomainName": {
732
- "locationName": "domainName",
733
- "shape": "__string"
734
- },
735
- "Id": {
736
- "locationName": "id",
737
- "shape": "__string"
738
- }
739
- },
740
- "type": "structure"
741
- },
742
- "DashEncryption": {
743
- "members": {
744
- "SpekeKeyProvider": {
745
- "locationName": "spekeKeyProvider",
746
- "shape": "SpekeKeyProvider"
747
- }
748
- },
749
- "required": [
750
- "SpekeKeyProvider"
751
- ],
752
- "type": "structure"
753
- },
754
- "DashManifest": {
755
- "members": {
756
- "ManifestName": {
757
- "locationName": "manifestName",
758
- "shape": "__string"
759
- },
760
- "MinBufferTimeSeconds": {
761
- "locationName": "minBufferTimeSeconds",
762
- "shape": "__integer"
763
- },
764
- "Profile": {
765
- "locationName": "profile",
766
- "shape": "Profile"
767
- },
768
- "StreamSelection": {
769
- "locationName": "streamSelection",
770
- "shape": "StreamSelection"
771
- }
772
- },
773
- "type": "structure"
774
- },
775
- "DashPackage": {
776
- "members": {
777
- "DashManifests": {
778
- "locationName": "dashManifests",
779
- "shape": "__listOfDashManifest"
780
- },
781
- "Encryption": {
782
- "locationName": "encryption",
783
- "shape": "DashEncryption"
784
- },
785
- "SegmentDurationSeconds": {
786
- "locationName": "segmentDurationSeconds",
787
- "shape": "__integer"
788
- }
789
- },
790
- "required": [
791
- "DashManifests"
792
- ],
793
- "type": "structure"
794
- },
795
- "DeleteAssetRequest": {
796
- "members": {
797
- "Id": {
798
- "location": "uri",
799
- "locationName": "id",
800
- "shape": "__string"
801
- }
802
- },
803
- "required": [
804
- "Id"
805
- ],
806
- "type": "structure"
807
- },
808
- "DeleteAssetResponse": {
809
- "members": {},
810
- "type": "structure"
811
- },
812
- "DeletePackagingConfigurationRequest": {
813
- "members": {
814
- "Id": {
815
- "location": "uri",
816
- "locationName": "id",
817
- "shape": "__string"
818
- }
819
- },
820
- "required": [
821
- "Id"
822
- ],
823
- "type": "structure"
824
- },
825
- "DeletePackagingConfigurationResponse": {
826
- "members": {},
827
- "type": "structure"
828
- },
829
- "DeletePackagingGroupRequest": {
830
- "members": {
831
- "Id": {
832
- "location": "uri",
833
- "locationName": "id",
834
- "shape": "__string"
835
- }
836
- },
837
- "required": [
838
- "Id"
839
- ],
840
- "type": "structure"
841
- },
842
- "DeletePackagingGroupResponse": {
843
- "members": {},
844
- "type": "structure"
845
- },
846
- "DescribeAssetRequest": {
847
- "members": {
848
- "Id": {
849
- "location": "uri",
850
- "locationName": "id",
851
- "shape": "__string"
852
- }
853
- },
854
- "required": [
855
- "Id"
856
- ],
857
- "type": "structure"
858
- },
859
- "DescribeAssetResponse": {
860
- "members": {
861
- "Arn": {
862
- "locationName": "arn",
863
- "shape": "__string"
864
- },
865
- "CreatedAt": {
866
- "locationName": "createdAt",
867
- "shape": "__string"
868
- },
869
- "EgressEndpoints": {
870
- "locationName": "egressEndpoints",
871
- "shape": "__listOfEgressEndpoint"
872
- },
873
- "Id": {
874
- "locationName": "id",
875
- "shape": "__string"
876
- },
877
- "PackagingGroupId": {
878
- "locationName": "packagingGroupId",
879
- "shape": "__string"
880
- },
881
- "ResourceId": {
882
- "locationName": "resourceId",
883
- "shape": "__string"
884
- },
885
- "SourceArn": {
886
- "locationName": "sourceArn",
887
- "shape": "__string"
888
- },
889
- "SourceRoleArn": {
890
- "locationName": "sourceRoleArn",
891
- "shape": "__string"
892
- }
893
- },
894
- "type": "structure"
895
- },
896
- "DescribePackagingConfigurationRequest": {
897
- "members": {
898
- "Id": {
899
- "location": "uri",
900
- "locationName": "id",
901
- "shape": "__string"
902
- }
903
- },
904
- "required": [
905
- "Id"
906
- ],
907
- "type": "structure"
908
- },
909
- "DescribePackagingConfigurationResponse": {
910
- "members": {
911
- "Arn": {
912
- "locationName": "arn",
913
- "shape": "__string"
914
- },
915
- "CmafPackage": {
916
- "locationName": "cmafPackage",
917
- "shape": "CmafPackage"
918
- },
919
- "DashPackage": {
920
- "locationName": "dashPackage",
921
- "shape": "DashPackage"
922
- },
923
- "HlsPackage": {
924
- "locationName": "hlsPackage",
925
- "shape": "HlsPackage"
926
- },
927
- "Id": {
928
- "locationName": "id",
929
- "shape": "__string"
930
- },
931
- "MssPackage": {
932
- "locationName": "mssPackage",
933
- "shape": "MssPackage"
934
- },
935
- "PackagingGroupId": {
936
- "locationName": "packagingGroupId",
937
- "shape": "__string"
938
- }
939
- },
940
- "type": "structure"
941
- },
942
- "DescribePackagingGroupRequest": {
943
- "members": {
944
- "Id": {
945
- "location": "uri",
946
- "locationName": "id",
947
- "shape": "__string"
948
- }
949
- },
950
- "required": [
951
- "Id"
952
- ],
953
- "type": "structure"
954
- },
955
- "DescribePackagingGroupResponse": {
956
- "members": {
957
- "Arn": {
958
- "locationName": "arn",
959
- "shape": "__string"
960
- },
961
- "DomainName": {
962
- "locationName": "domainName",
963
- "shape": "__string"
964
- },
965
- "Id": {
966
- "locationName": "id",
967
- "shape": "__string"
968
- }
969
- },
970
- "type": "structure"
971
- },
972
- "EgressEndpoint": {
973
- "members": {
974
- "PackagingConfigurationId": {
975
- "locationName": "packagingConfigurationId",
976
- "shape": "__string"
977
- },
978
- "Url": {
979
- "locationName": "url",
980
- "shape": "__string"
981
- }
982
- },
983
- "type": "structure"
984
- },
985
- "EncryptionMethod": {
986
- "enum": [
987
- "AES_128",
988
- "SAMPLE_AES"
989
- ],
990
- "type": "string"
991
- },
992
- "ForbiddenException": {
993
- "error": {
994
- "httpStatusCode": 403
995
- },
996
- "exception": true,
997
- "members": {
998
- "Message": {
999
- "locationName": "message",
1000
- "shape": "__string"
1001
- }
1002
- },
1003
- "type": "structure"
1004
- },
1005
- "HlsEncryption": {
1006
- "members": {
1007
- "ConstantInitializationVector": {
1008
- "locationName": "constantInitializationVector",
1009
- "shape": "__string"
1010
- },
1011
- "EncryptionMethod": {
1012
- "locationName": "encryptionMethod",
1013
- "shape": "EncryptionMethod"
1014
- },
1015
- "SpekeKeyProvider": {
1016
- "locationName": "spekeKeyProvider",
1017
- "shape": "SpekeKeyProvider"
1018
- }
1019
- },
1020
- "required": [
1021
- "SpekeKeyProvider"
1022
- ],
1023
- "type": "structure"
1024
- },
1025
- "HlsManifest": {
1026
- "members": {
1027
- "AdMarkers": {
1028
- "locationName": "adMarkers",
1029
- "shape": "AdMarkers"
1030
- },
1031
- "IncludeIframeOnlyStream": {
1032
- "locationName": "includeIframeOnlyStream",
1033
- "shape": "__boolean"
1034
- },
1035
- "ManifestName": {
1036
- "locationName": "manifestName",
1037
- "shape": "__string"
1038
- },
1039
- "ProgramDateTimeIntervalSeconds": {
1040
- "locationName": "programDateTimeIntervalSeconds",
1041
- "shape": "__integer"
1042
- },
1043
- "RepeatExtXKey": {
1044
- "locationName": "repeatExtXKey",
1045
- "shape": "__boolean"
1046
- },
1047
- "StreamSelection": {
1048
- "locationName": "streamSelection",
1049
- "shape": "StreamSelection"
1050
- }
1051
- },
1052
- "type": "structure"
1053
- },
1054
- "HlsPackage": {
1055
- "members": {
1056
- "Encryption": {
1057
- "locationName": "encryption",
1058
- "shape": "HlsEncryption"
1059
- },
1060
- "HlsManifests": {
1061
- "locationName": "hlsManifests",
1062
- "shape": "__listOfHlsManifest"
1063
- },
1064
- "SegmentDurationSeconds": {
1065
- "locationName": "segmentDurationSeconds",
1066
- "shape": "__integer"
1067
- },
1068
- "UseAudioRenditionGroup": {
1069
- "locationName": "useAudioRenditionGroup",
1070
- "shape": "__boolean"
1071
- }
1072
- },
1073
- "required": [
1074
- "HlsManifests"
1075
- ],
1076
- "type": "structure"
1077
- },
1078
- "InternalServerErrorException": {
1079
- "error": {
1080
- "httpStatusCode": 500
1081
- },
1082
- "exception": true,
1083
- "members": {
1084
- "Message": {
1085
- "locationName": "message",
1086
- "shape": "__string"
1087
- }
1088
- },
1089
- "type": "structure"
1090
- },
1091
- "ListAssetsRequest": {
1092
- "members": {
1093
- "MaxResults": {
1094
- "location": "querystring",
1095
- "locationName": "maxResults",
1096
- "shape": "MaxResults"
1097
- },
1098
- "NextToken": {
1099
- "location": "querystring",
1100
- "locationName": "nextToken",
1101
- "shape": "__string"
1102
- },
1103
- "PackagingGroupId": {
1104
- "location": "querystring",
1105
- "locationName": "packagingGroupId",
1106
- "shape": "__string"
1107
- }
1108
- },
1109
- "type": "structure"
1110
- },
1111
- "ListAssetsResponse": {
1112
- "members": {
1113
- "Assets": {
1114
- "locationName": "assets",
1115
- "shape": "__listOfAssetShallow"
1116
- },
1117
- "NextToken": {
1118
- "locationName": "nextToken",
1119
- "shape": "__string"
1120
- }
1121
- },
1122
- "type": "structure"
1123
- },
1124
- "ListPackagingConfigurationsRequest": {
1125
- "members": {
1126
- "MaxResults": {
1127
- "location": "querystring",
1128
- "locationName": "maxResults",
1129
- "shape": "MaxResults"
1130
- },
1131
- "NextToken": {
1132
- "location": "querystring",
1133
- "locationName": "nextToken",
1134
- "shape": "__string"
1135
- },
1136
- "PackagingGroupId": {
1137
- "location": "querystring",
1138
- "locationName": "packagingGroupId",
1139
- "shape": "__string"
1140
- }
1141
- },
1142
- "type": "structure"
1143
- },
1144
- "ListPackagingConfigurationsResponse": {
1145
- "members": {
1146
- "NextToken": {
1147
- "locationName": "nextToken",
1148
- "shape": "__string"
1149
- },
1150
- "PackagingConfigurations": {
1151
- "locationName": "packagingConfigurations",
1152
- "shape": "__listOfPackagingConfiguration"
1153
- }
1154
- },
1155
- "type": "structure"
1156
- },
1157
- "ListPackagingGroupsRequest": {
1158
- "members": {
1159
- "MaxResults": {
1160
- "location": "querystring",
1161
- "locationName": "maxResults",
1162
- "shape": "MaxResults"
1163
- },
1164
- "NextToken": {
1165
- "location": "querystring",
1166
- "locationName": "nextToken",
1167
- "shape": "__string"
1168
- }
1169
- },
1170
- "type": "structure"
1171
- },
1172
- "ListPackagingGroupsResponse": {
1173
- "members": {
1174
- "NextToken": {
1175
- "locationName": "nextToken",
1176
- "shape": "__string"
1177
- },
1178
- "PackagingGroups": {
1179
- "locationName": "packagingGroups",
1180
- "shape": "__listOfPackagingGroup"
1181
- }
1182
- },
1183
- "type": "structure"
1184
- },
1185
- "MaxResults": {
1186
- "max": 1000,
1187
- "min": 1,
1188
- "type": "integer"
1189
- },
1190
- "MssEncryption": {
1191
- "members": {
1192
- "SpekeKeyProvider": {
1193
- "locationName": "spekeKeyProvider",
1194
- "shape": "SpekeKeyProvider"
1195
- }
1196
- },
1197
- "required": [
1198
- "SpekeKeyProvider"
1199
- ],
1200
- "type": "structure"
1201
- },
1202
- "MssManifest": {
1203
- "members": {
1204
- "ManifestName": {
1205
- "locationName": "manifestName",
1206
- "shape": "__string"
1207
- },
1208
- "StreamSelection": {
1209
- "locationName": "streamSelection",
1210
- "shape": "StreamSelection"
1211
- }
1212
- },
1213
- "type": "structure"
1214
- },
1215
- "MssPackage": {
1216
- "members": {
1217
- "Encryption": {
1218
- "locationName": "encryption",
1219
- "shape": "MssEncryption"
1220
- },
1221
- "MssManifests": {
1222
- "locationName": "mssManifests",
1223
- "shape": "__listOfMssManifest"
1224
- },
1225
- "SegmentDurationSeconds": {
1226
- "locationName": "segmentDurationSeconds",
1227
- "shape": "__integer"
1228
- }
1229
- },
1230
- "required": [
1231
- "MssManifests"
1232
- ],
1233
- "type": "structure"
1234
- },
1235
- "NotFoundException": {
1236
- "error": {
1237
- "httpStatusCode": 404
1238
- },
1239
- "exception": true,
1240
- "members": {
1241
- "Message": {
1242
- "locationName": "message",
1243
- "shape": "__string"
1244
- }
1245
- },
1246
- "type": "structure"
1247
- },
1248
- "PackagingConfiguration": {
1249
- "members": {
1250
- "Arn": {
1251
- "locationName": "arn",
1252
- "shape": "__string"
1253
- },
1254
- "CmafPackage": {
1255
- "locationName": "cmafPackage",
1256
- "shape": "CmafPackage"
1257
- },
1258
- "DashPackage": {
1259
- "locationName": "dashPackage",
1260
- "shape": "DashPackage"
1261
- },
1262
- "HlsPackage": {
1263
- "locationName": "hlsPackage",
1264
- "shape": "HlsPackage"
1265
- },
1266
- "Id": {
1267
- "locationName": "id",
1268
- "shape": "__string"
1269
- },
1270
- "MssPackage": {
1271
- "locationName": "mssPackage",
1272
- "shape": "MssPackage"
1273
- },
1274
- "PackagingGroupId": {
1275
- "locationName": "packagingGroupId",
1276
- "shape": "__string"
1277
- }
1278
- },
1279
- "type": "structure"
1280
- },
1281
- "PackagingConfigurationCreateParameters": {
1282
- "members": {
1283
- "CmafPackage": {
1284
- "locationName": "cmafPackage",
1285
- "shape": "CmafPackage"
1286
- },
1287
- "DashPackage": {
1288
- "locationName": "dashPackage",
1289
- "shape": "DashPackage"
1290
- },
1291
- "HlsPackage": {
1292
- "locationName": "hlsPackage",
1293
- "shape": "HlsPackage"
1294
- },
1295
- "Id": {
1296
- "locationName": "id",
1297
- "shape": "__string"
1298
- },
1299
- "MssPackage": {
1300
- "locationName": "mssPackage",
1301
- "shape": "MssPackage"
1302
- },
1303
- "PackagingGroupId": {
1304
- "locationName": "packagingGroupId",
1305
- "shape": "__string"
1306
- }
1307
- },
1308
- "required": [
1309
- "Id",
1310
- "PackagingGroupId"
1311
- ],
1312
- "type": "structure"
1313
- },
1314
- "PackagingConfigurationList": {
1315
- "members": {
1316
- "NextToken": {
1317
- "locationName": "nextToken",
1318
- "shape": "__string"
1319
- },
1320
- "PackagingConfigurations": {
1321
- "locationName": "packagingConfigurations",
1322
- "shape": "__listOfPackagingConfiguration"
1323
- }
1324
- },
1325
- "type": "structure"
1326
- },
1327
- "PackagingGroup": {
1328
- "members": {
1329
- "Arn": {
1330
- "locationName": "arn",
1331
- "shape": "__string"
1332
- },
1333
- "DomainName": {
1334
- "locationName": "domainName",
1335
- "shape": "__string"
1336
- },
1337
- "Id": {
1338
- "locationName": "id",
1339
- "shape": "__string"
1340
- }
1341
- },
1342
- "type": "structure"
1343
- },
1344
- "PackagingGroupCreateParameters": {
1345
- "members": {
1346
- "Id": {
1347
- "locationName": "id",
1348
- "shape": "__string"
1349
- }
1350
- },
1351
- "required": [
1352
- "Id"
1353
- ],
1354
- "type": "structure"
1355
- },
1356
- "PackagingGroupList": {
1357
- "members": {
1358
- "NextToken": {
1359
- "locationName": "nextToken",
1360
- "shape": "__string"
1361
- },
1362
- "PackagingGroups": {
1363
- "locationName": "packagingGroups",
1364
- "shape": "__listOfPackagingGroup"
1365
- }
1366
- },
1367
- "type": "structure"
1368
- },
1369
- "Profile": {
1370
- "enum": [
1371
- "NONE",
1372
- "HBBTV_1_5"
1373
- ],
1374
- "type": "string"
1375
- },
1376
- "ServiceUnavailableException": {
1377
- "error": {
1378
- "httpStatusCode": 503
1379
- },
1380
- "exception": true,
1381
- "members": {
1382
- "Message": {
1383
- "locationName": "message",
1384
- "shape": "__string"
1385
- }
1386
- },
1387
- "type": "structure"
1388
- },
1389
- "SpekeKeyProvider": {
1390
- "members": {
1391
- "RoleArn": {
1392
- "locationName": "roleArn",
1393
- "shape": "__string"
1394
- },
1395
- "SystemIds": {
1396
- "locationName": "systemIds",
1397
- "shape": "__listOf__string"
1398
- },
1399
- "Url": {
1400
- "locationName": "url",
1401
- "shape": "__string"
1402
- }
1403
- },
1404
- "required": [
1405
- "SystemIds",
1406
- "Url",
1407
- "RoleArn"
1408
- ],
1409
- "type": "structure"
1410
- },
1411
- "StreamOrder": {
1412
- "enum": [
1413
- "ORIGINAL",
1414
- "VIDEO_BITRATE_ASCENDING",
1415
- "VIDEO_BITRATE_DESCENDING"
1416
- ],
1417
- "type": "string"
1418
- },
1419
- "StreamSelection": {
1420
- "members": {
1421
- "MaxVideoBitsPerSecond": {
1422
- "locationName": "maxVideoBitsPerSecond",
1423
- "shape": "__integer"
1424
- },
1425
- "MinVideoBitsPerSecond": {
1426
- "locationName": "minVideoBitsPerSecond",
1427
- "shape": "__integer"
1428
- },
1429
- "StreamOrder": {
1430
- "locationName": "streamOrder",
1431
- "shape": "StreamOrder"
1432
- }
1433
- },
1434
- "type": "structure"
1435
- },
1436
- "TooManyRequestsException": {
1437
- "error": {
1438
- "httpStatusCode": 429
1439
- },
1440
- "exception": true,
1441
- "members": {
1442
- "Message": {
1443
- "locationName": "message",
1444
- "shape": "__string"
1445
- }
1446
- },
1447
- "type": "structure"
1448
- },
1449
- "UnprocessableEntityException": {
1450
- "error": {
1451
- "httpStatusCode": 422
1452
- },
1453
- "exception": true,
1454
- "members": {
1455
- "Message": {
1456
- "locationName": "message",
1457
- "shape": "__string"
1458
- }
1459
- },
1460
- "type": "structure"
1461
- },
1462
- "__boolean": {
1463
- "type": "boolean"
1464
- },
1465
- "__double": {
1466
- "type": "double"
1467
- },
1468
- "__integer": {
1469
- "type": "integer"
1470
- },
1471
- "__listOfAssetShallow": {
1472
- "member": {
1473
- "shape": "AssetShallow"
1474
- },
1475
- "type": "list"
1476
- },
1477
- "__listOfDashManifest": {
1478
- "member": {
1479
- "shape": "DashManifest"
1480
- },
1481
- "type": "list"
1482
- },
1483
- "__listOfEgressEndpoint": {
1484
- "member": {
1485
- "shape": "EgressEndpoint"
1486
- },
1487
- "type": "list"
1488
- },
1489
- "__listOfHlsManifest": {
1490
- "member": {
1491
- "shape": "HlsManifest"
1492
- },
1493
- "type": "list"
1494
- },
1495
- "__listOfMssManifest": {
1496
- "member": {
1497
- "shape": "MssManifest"
1498
- },
1499
- "type": "list"
1500
- },
1501
- "__listOfPackagingConfiguration": {
1502
- "member": {
1503
- "shape": "PackagingConfiguration"
1504
- },
1505
- "type": "list"
1506
- },
1507
- "__listOfPackagingGroup": {
1508
- "member": {
1509
- "shape": "PackagingGroup"
1510
- },
1511
- "type": "list"
1512
- },
1513
- "__listOf__string": {
1514
- "member": {
1515
- "shape": "__string"
1516
- },
1517
- "type": "list"
1518
- },
1519
- "__long": {
1520
- "type": "long"
1521
- },
1522
- "__string": {
1523
- "type": "string"
1524
- }
1525
- }
1526
- }