aws-sdk-core 2.11.410 → 3.78.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1278) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -578
  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 -1151
  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 -786
  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/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  312. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  313. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  314. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  315. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  316. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  317. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  318. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  319. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  320. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  321. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  322. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  323. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  324. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  325. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  326. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  327. data/apis/codestar/2017-04-19/smoke.json +0 -11
  328. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  329. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  330. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  331. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  332. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  333. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  334. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  335. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  336. data/apis/comprehend/2017-11-27/api-2.json +0 -2632
  337. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  338. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  339. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  340. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  341. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  342. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  343. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  344. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  345. data/apis/config/2014-11-12/api-2.json +0 -4340
  346. data/apis/config/2014-11-12/examples-1.json +0 -5
  347. data/apis/config/2014-11-12/paginators-1.json +0 -21
  348. data/apis/config/2014-11-12/smoke.json +0 -19
  349. data/apis/connect/2017-08-08/api-2.json +0 -2139
  350. data/apis/connect/2017-08-08/examples-1.json +0 -5
  351. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  352. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  353. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  354. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  355. data/apis/cur/2017-01-06/api-2.json +0 -277
  356. data/apis/cur/2017-01-06/examples-1.json +0 -102
  357. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  358. data/apis/cur/2017-01-06/smoke.json +0 -11
  359. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  360. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  361. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  362. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  363. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  364. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  365. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  366. data/apis/dax/2017-04-19/api-2.json +0 -1140
  367. data/apis/dax/2017-04-19/examples-1.json +0 -5
  368. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  369. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  370. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  371. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  372. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  373. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  374. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  375. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  376. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  377. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  378. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  379. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  380. data/apis/discovery/2015-11-01/smoke.json +0 -11
  381. data/apis/dlm/2018-01-12/api-2.json +0 -642
  382. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  383. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  384. data/apis/dms/2016-01-01/api-2.json +0 -2296
  385. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  386. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  387. data/apis/dms/2016-01-01/smoke.json +0 -18
  388. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  389. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  390. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  391. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  392. data/apis/docdb/2014-10-31/smoke.json +0 -18
  393. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  394. data/apis/ds/2015-04-16/api-2.json +0 -3012
  395. data/apis/ds/2015-04-16/examples-1.json +0 -5
  396. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  397. data/apis/ds/2015-04-16/smoke.json +0 -20
  398. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  399. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  400. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  401. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  402. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  403. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  404. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  405. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  406. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  407. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  408. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  409. data/apis/ebs/2019-11-02/api-2.json +0 -277
  410. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  411. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  412. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  413. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  414. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  415. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  416. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  417. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  418. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  419. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  420. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  421. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  422. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  423. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  424. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  425. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  426. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  427. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  428. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  429. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  430. data/apis/ec2/2016-11-15/api-2.json +0 -28674
  431. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  432. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  433. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  434. data/apis/ec2/2016-11-15/smoke.json +0 -20
  435. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  436. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  437. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  438. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  439. data/apis/ecr/2015-09-21/smoke.json +0 -18
  440. data/apis/ecs/2014-11-13/api-2.json +0 -3130
  441. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  442. data/apis/ecs/2014-11-13/paginators-1.json +0 -46
  443. data/apis/ecs/2014-11-13/smoke.json +0 -18
  444. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  445. data/apis/eks/2017-11-01/api-2.json +0 -1429
  446. data/apis/eks/2017-11-01/examples-1.json +0 -135
  447. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  448. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  449. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  450. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  451. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  452. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  453. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  454. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  455. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  456. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  457. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  458. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  459. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  460. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  461. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  462. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  463. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  464. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  465. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  466. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  467. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  468. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  469. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  470. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  471. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  472. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  473. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  474. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  475. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  476. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  477. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  478. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  479. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  480. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  481. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  482. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  483. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  484. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  485. data/apis/email/2010-12-01/api-2.json +0 -3182
  486. data/apis/email/2010-12-01/examples-1.json +0 -1021
  487. data/apis/email/2010-12-01/paginators-1.json +0 -18
  488. data/apis/email/2010-12-01/smoke.json +0 -18
  489. data/apis/email/2010-12-01/waiters-2.json +0 -18
  490. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  491. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  492. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  493. data/apis/es/2015-01-01/api-2.json +0 -1584
  494. data/apis/es/2015-01-01/examples-1.json +0 -5
  495. data/apis/es/2015-01-01/paginators-1.json +0 -29
  496. data/apis/es/2015-01-01/smoke.json +0 -18
  497. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  498. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  499. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  500. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  501. data/apis/events/2015-10-07/api-2.json +0 -1462
  502. data/apis/events/2015-10-07/examples-1.json +0 -5
  503. data/apis/events/2015-10-07/paginators-1.json +0 -4
  504. data/apis/events/2015-10-07/smoke.json +0 -18
  505. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  506. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  507. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  508. data/apis/firehose/2015-08-04/smoke.json +0 -18
  509. data/apis/fms/2018-01-01/api-2.json +0 -701
  510. data/apis/fms/2018-01-01/examples-1.json +0 -5
  511. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  512. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  513. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  514. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  515. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  516. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  517. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  518. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  519. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  520. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  521. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  522. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  523. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  524. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  525. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  526. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  527. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  528. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  529. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  530. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  531. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  532. data/apis/glacier/2012-06-01/smoke.json +0 -18
  533. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  534. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  535. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  536. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  537. data/apis/glue/2017-03-31/api-2.json +0 -6302
  538. data/apis/glue/2017-03-31/examples-1.json +0 -5
  539. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  540. data/apis/glue/2017-03-31/smoke.json +0 -11
  541. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  542. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  543. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  544. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  545. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  546. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  547. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  548. data/apis/health/2016-08-04/api-2.json +0 -554
  549. data/apis/health/2016-08-04/examples-1.json +0 -5
  550. data/apis/health/2016-08-04/paginators-1.json +0 -31
  551. data/apis/health/2016-08-04/smoke.json +0 -11
  552. data/apis/iam/2010-05-08/api-2.json +0 -5787
  553. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  554. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  555. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  556. data/apis/iam/2010-05-08/smoke.json +0 -18
  557. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  558. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  559. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  560. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  561. data/apis/importexport/2010-06-01/api-2.json +0 -667
  562. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  563. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  564. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  565. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  566. data/apis/inspector/2016-02-16/smoke.json +0 -18
  567. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  568. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  569. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  570. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  571. data/apis/iot/2015-05-28/api-2.json +0 -11037
  572. data/apis/iot/2015-05-28/examples-1.json +0 -5
  573. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  574. data/apis/iot/2015-05-28/smoke.json +0 -18
  575. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  576. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  577. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  578. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  579. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  580. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  581. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  582. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  583. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  584. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  585. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  586. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  587. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  588. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  589. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  590. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  591. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  592. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  593. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  594. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  596. data/apis/kendra/2019-02-03/api-2.json +0 -1737
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  606. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  607. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  608. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  609. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  610. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  611. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  612. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  613. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2265
  614. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  615. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  616. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  617. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  618. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  619. data/apis/kms/2014-11-01/api-2.json +0 -2141
  620. data/apis/kms/2014-11-01/examples-1.json +0 -906
  621. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  622. data/apis/kms/2014-11-01/smoke.json +0 -19
  623. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  624. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  625. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  626. data/apis/lambda/2014-11-11/api-2.json +0 -668
  627. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  628. data/apis/lambda/2015-03-31/api-2.json +0 -2937
  629. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  630. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  631. data/apis/lambda/2015-03-31/smoke.json +0 -18
  632. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  633. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  634. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  635. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  636. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  637. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  638. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  639. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  640. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  641. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  643. data/apis/logs/2014-03-28/api-2.json +0 -1701
  644. data/apis/logs/2014-03-28/examples-1.json +0 -5
  645. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  646. data/apis/logs/2014-03-28/smoke.json +0 -19
  647. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  648. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  649. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  650. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  651. data/apis/macie/2017-12-19/api-2.json +0 -365
  652. data/apis/macie/2017-12-19/examples-1.json +0 -5
  653. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  654. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  655. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  656. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  657. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  658. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  659. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  660. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  661. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  662. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  663. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  664. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  665. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  666. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
  667. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  668. data/apis/medialive/2017-10-14/api-2.json +0 -10613
  669. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  670. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  671. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  672. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  673. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  674. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  675. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  676. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  677. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  678. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  679. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  680. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  681. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  682. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  683. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  684. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  685. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  686. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  687. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  688. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  689. data/apis/mobile/2017-07-01/api-2.json +0 -551
  690. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  691. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  692. data/apis/monitoring/2010-08-01/api-2.json +0 -1867
  693. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  694. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  695. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  696. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  697. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  698. data/apis/mq/2017-11-27/api-2.json +0 -2538
  699. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  700. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  701. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  702. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  703. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  704. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  705. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  706. data/apis/neptune/2014-10-31/smoke.json +0 -18
  707. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  708. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  709. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  710. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  711. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  712. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  713. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  714. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  715. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  716. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  717. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  718. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  719. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  720. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  721. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  722. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  723. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  724. data/apis/outposts/2019-12-03/api-2.json +0 -367
  725. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  726. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  727. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  728. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  729. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  730. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  731. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  732. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  733. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  734. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  735. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  736. data/apis/pi/2018-02-27/api-2.json +0 -253
  737. data/apis/pi/2018-02-27/examples-1.json +0 -5
  738. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  739. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  740. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  741. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  742. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  743. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  744. data/apis/polly/2016-06-10/api-2.json +0 -832
  745. data/apis/polly/2016-06-10/examples-1.json +0 -171
  746. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  747. data/apis/polly/2016-06-10/smoke.json +0 -11
  748. data/apis/pricing/2017-10-15/api-2.json +0 -227
  749. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  750. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  751. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  752. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  753. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  754. data/apis/qldb/2019-01-02/api-2.json +0 -776
  755. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  756. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  757. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  758. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  759. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  760. data/apis/ram/2018-01-04/api-2.json +0 -1272
  761. data/apis/ram/2018-01-04/examples-1.json +0 -5
  762. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  763. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  764. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  765. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  766. data/apis/rds/2013-01-10/api-2.json +0 -2903
  767. data/apis/rds/2013-01-10/examples-1.json +0 -5
  768. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  769. data/apis/rds/2013-01-10/smoke.json +0 -18
  770. data/apis/rds/2013-02-12/api-2.json +0 -3059
  771. data/apis/rds/2013-02-12/examples-1.json +0 -5
  772. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  773. data/apis/rds/2013-02-12/smoke.json +0 -18
  774. data/apis/rds/2013-09-09/api-2.json +0 -3160
  775. data/apis/rds/2013-09-09/examples-1.json +0 -5
  776. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  777. data/apis/rds/2013-09-09/smoke.json +0 -18
  778. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  779. data/apis/rds/2014-09-01/api-2.json +0 -3273
  780. data/apis/rds/2014-09-01/examples-1.json +0 -5
  781. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  782. data/apis/rds/2014-09-01/smoke.json +0 -18
  783. data/apis/rds/2014-10-31/api-2.json +0 -7414
  784. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  785. data/apis/rds/2014-10-31/paginators-1.json +0 -158
  786. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  787. data/apis/rds/2014-10-31/smoke.json +0 -18
  788. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  789. data/apis/rds/2015-11-12/api-2.json +0 -5509
  790. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  791. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  792. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  793. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  794. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  795. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  796. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  797. data/apis/redshift/2012-12-01/smoke.json +0 -18
  798. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  799. data/apis/rekognition/2016-06-27/api-2.json +0 -2659
  800. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  801. data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
  802. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  803. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  804. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  805. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  806. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  807. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  808. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  809. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  810. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  811. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  812. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  813. data/apis/route53/2013-04-01/api-2.json +0 -3780
  814. data/apis/route53/2013-04-01/examples-1.json +0 -762
  815. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  816. data/apis/route53/2013-04-01/smoke.json +0 -18
  817. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  818. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  819. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  820. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  821. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  822. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  823. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  824. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  825. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  826. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  827. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  828. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  829. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  830. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  831. data/apis/s3/2006-03-01/api-2.json +0 -6653
  832. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  833. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  834. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  835. data/apis/s3/2006-03-01/smoke.json +0 -11
  836. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  837. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  838. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  839. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  840. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  841. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  842. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  843. data/apis/sagemaker/2017-07-24/api-2.json +0 -9093
  844. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  845. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  846. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  847. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  848. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  849. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  850. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  851. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  852. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  853. data/apis/sdb/2009-04-15/api-2.json +0 -955
  854. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  855. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  856. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  857. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  858. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  859. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  860. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  861. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  862. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  863. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  864. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  865. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  866. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  867. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  868. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  869. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  870. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  871. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  872. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  873. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  874. data/apis/sesv2/2019-09-27/api-2.json +0 -2362
  875. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  876. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  877. data/apis/shield/2016-06-02/api-2.json +0 -893
  878. data/apis/shield/2016-06-02/examples-1.json +0 -5
  879. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  880. data/apis/shield/2016-06-02/smoke.json +0 -11
  881. data/apis/signer/2017-08-25/api-2.json +0 -817
  882. data/apis/signer/2017-08-25/examples-1.json +0 -5
  883. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  884. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  885. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  886. data/apis/sms/2016-10-24/api-2.json +0 -1366
  887. data/apis/sms/2016-10-24/examples-1.json +0 -5
  888. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  889. data/apis/sms/2016-10-24/smoke.json +0 -18
  890. data/apis/snowball/2016-06-30/api-2.json +0 -955
  891. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  892. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  893. data/apis/snowball/2016-06-30/smoke.json +0 -11
  894. data/apis/sns/2010-03-31/api-2.json +0 -1468
  895. data/apis/sns/2010-03-31/examples-1.json +0 -5
  896. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  897. data/apis/sns/2010-03-31/resources-1.json +0 -327
  898. data/apis/sns/2010-03-31/smoke.json +0 -19
  899. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  900. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  901. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  902. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  903. data/apis/sqs/2012-11-05/smoke.json +0 -18
  904. data/apis/ssm/2014-11-06/api-2.json +0 -9150
  905. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  906. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  907. data/apis/ssm/2014-11-06/smoke.json +0 -18
  908. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  909. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  910. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  911. data/apis/sso/2019-06-10/api-2.json +0 -281
  912. data/apis/sso/2019-06-10/examples-1.json +0 -5
  913. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  914. data/apis/states/2016-11-23/api-2.json +0 -1476
  915. data/apis/states/2016-11-23/examples-1.json +0 -5
  916. data/apis/states/2016-11-23/paginators-1.json +0 -28
  917. data/apis/states/2016-11-23/smoke.json +0 -11
  918. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  919. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  920. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  921. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  922. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  923. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  924. data/apis/sts/2011-06-15/api-2.json +0 -598
  925. data/apis/sts/2011-06-15/examples-1.json +0 -234
  926. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  927. data/apis/sts/2011-06-15/smoke.json +0 -19
  928. data/apis/support/2013-04-15/api-2.json +0 -773
  929. data/apis/support/2013-04-15/examples-1.json +0 -5
  930. data/apis/support/2013-04-15/paginators-1.json +0 -25
  931. data/apis/support/2013-04-15/smoke.json +0 -22
  932. data/apis/swf/2012-01-25/api-2.json +0 -2792
  933. data/apis/swf/2012-01-25/examples-1.json +0 -5
  934. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  935. data/apis/textract/2018-06-27/api-2.json +0 -653
  936. data/apis/textract/2018-06-27/examples-1.json +0 -5
  937. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  938. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  939. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  940. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  941. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  942. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  943. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  944. data/apis/transfer/2018-11-05/api-2.json +0 -940
  945. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  946. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  947. data/apis/translate/2017-07-01/api-2.json +0 -408
  948. data/apis/translate/2017-07-01/examples-1.json +0 -5
  949. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  950. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  951. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  952. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  953. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  954. data/apis/waf/2015-08-24/api-2.json +0 -3857
  955. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  956. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  957. data/apis/waf/2015-08-24/smoke.json +0 -21
  958. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  959. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  960. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  961. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  962. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  963. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  964. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  965. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  966. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  967. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  968. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  969. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  970. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  971. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  972. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  973. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  974. data/apis/workspaces/2015-04-08/api-2.json +0 -1994
  975. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  976. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  977. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  978. data/apis/xray/2016-04-12/api-2.json +0 -1352
  979. data/apis/xray/2016-04-12/examples-1.json +0 -5
  980. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  981. data/bin/aws.rb +0 -180
  982. data/endpoints.json +0 -5701
  983. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  984. data/lib/aws-sdk-core/acm.rb +0 -7
  985. data/lib/aws-sdk-core/acmpca.rb +0 -7
  986. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  987. data/lib/aws-sdk-core/amplify.rb +0 -6
  988. data/lib/aws-sdk-core/api/builder.rb +0 -129
  989. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  990. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  991. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  992. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  993. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  994. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  995. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  996. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  997. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  998. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  999. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1000. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1001. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1002. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1003. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1004. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1005. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1006. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1007. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1008. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1009. data/lib/aws-sdk-core/appstream.rb +0 -7
  1010. data/lib/aws-sdk-core/appsync.rb +0 -6
  1011. data/lib/aws-sdk-core/athena.rb +0 -6
  1012. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1013. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1014. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1015. data/lib/aws-sdk-core/backup.rb +0 -6
  1016. data/lib/aws-sdk-core/batch.rb +0 -6
  1017. data/lib/aws-sdk-core/budgets.rb +0 -6
  1018. data/lib/aws-sdk-core/checksums.rb +0 -51
  1019. data/lib/aws-sdk-core/chime.rb +0 -6
  1020. data/lib/aws-sdk-core/client.rb +0 -62
  1021. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1022. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1023. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1024. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1025. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1026. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1027. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1028. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1029. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1030. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1031. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1032. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1033. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1034. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1035. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1036. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1037. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1038. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1039. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1040. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1041. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1042. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1043. data/lib/aws-sdk-core/codestar.rb +0 -6
  1044. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1045. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1046. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1047. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1048. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1049. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1050. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1051. data/lib/aws-sdk-core/configservice.rb +0 -6
  1052. data/lib/aws-sdk-core/connect.rb +0 -6
  1053. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1054. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1055. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1056. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1057. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1058. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1059. data/lib/aws-sdk-core/datasync.rb +0 -6
  1060. data/lib/aws-sdk-core/dax.rb +0 -6
  1061. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1062. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1063. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1064. data/lib/aws-sdk-core/dlm.rb +0 -6
  1065. data/lib/aws-sdk-core/docdb.rb +0 -7
  1066. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1067. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1068. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1069. data/lib/aws-sdk-core/ebs.rb +0 -6
  1070. data/lib/aws-sdk-core/ec2.rb +0 -8
  1071. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1072. data/lib/aws-sdk-core/ecr.rb +0 -6
  1073. data/lib/aws-sdk-core/ecs.rb +0 -7
  1074. data/lib/aws-sdk-core/efs.rb +0 -6
  1075. data/lib/aws-sdk-core/eks.rb +0 -7
  1076. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1077. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1078. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1079. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1080. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1081. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1082. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1083. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1084. data/lib/aws-sdk-core/emr.rb +0 -7
  1085. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1086. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1087. data/lib/aws-sdk-core/firehose.rb +0 -6
  1088. data/lib/aws-sdk-core/fms.rb +0 -6
  1089. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1090. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1091. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1092. data/lib/aws-sdk-core/fsx.rb +0 -6
  1093. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1094. data/lib/aws-sdk-core/glacier.rb +0 -8
  1095. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1096. data/lib/aws-sdk-core/glue.rb +0 -6
  1097. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1098. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1099. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1100. data/lib/aws-sdk-core/health.rb +0 -6
  1101. data/lib/aws-sdk-core/iam.rb +0 -8
  1102. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1103. data/lib/aws-sdk-core/importexport.rb +0 -5
  1104. data/lib/aws-sdk-core/inspector.rb +0 -6
  1105. data/lib/aws-sdk-core/iot.rb +0 -6
  1106. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1107. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1108. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1109. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1110. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1111. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1112. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1113. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1114. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1115. data/lib/aws-sdk-core/kafka.rb +0 -5
  1116. data/lib/aws-sdk-core/kendra.rb +0 -6
  1117. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1118. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1119. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1120. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1121. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1122. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1123. data/lib/aws-sdk-core/kms.rb +0 -6
  1124. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1125. data/lib/aws-sdk-core/lambda.rb +0 -7
  1126. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1127. data/lib/aws-sdk-core/lex.rb +0 -6
  1128. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1129. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1130. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1131. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1132. data/lib/aws-sdk-core/macie.rb +0 -6
  1133. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1134. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1135. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1136. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1137. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1138. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1139. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1140. data/lib/aws-sdk-core/medialive.rb +0 -6
  1141. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1142. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1143. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1144. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1145. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1146. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1147. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1148. data/lib/aws-sdk-core/mobile.rb +0 -6
  1149. data/lib/aws-sdk-core/mq.rb +0 -5
  1150. data/lib/aws-sdk-core/mturk.rb +0 -6
  1151. data/lib/aws-sdk-core/neptune.rb +0 -7
  1152. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1153. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1154. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1155. data/lib/aws-sdk-core/organizations.rb +0 -6
  1156. data/lib/aws-sdk-core/outposts.rb +0 -6
  1157. data/lib/aws-sdk-core/partitions.rb +0 -174
  1158. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1159. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1160. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1161. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1162. data/lib/aws-sdk-core/personalize.rb +0 -6
  1163. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1164. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1165. data/lib/aws-sdk-core/pi.rb +0 -6
  1166. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1167. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1168. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1169. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1170. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1171. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1172. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1173. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1174. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1175. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1176. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1177. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1178. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1179. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1180. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1181. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1182. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1183. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1184. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1185. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1186. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1187. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1188. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1189. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1190. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1191. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1192. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1193. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1194. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1195. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1196. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1197. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1198. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1199. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1200. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1201. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1202. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1203. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1204. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1205. data/lib/aws-sdk-core/polly.rb +0 -14
  1206. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1207. data/lib/aws-sdk-core/pricing.rb +0 -6
  1208. data/lib/aws-sdk-core/qldb.rb +0 -6
  1209. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1210. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1211. data/lib/aws-sdk-core/ram.rb +0 -6
  1212. data/lib/aws-sdk-core/rds.rb +0 -16
  1213. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1214. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1215. data/lib/aws-sdk-core/redshift.rb +0 -7
  1216. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1217. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1218. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1219. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1220. data/lib/aws-sdk-core/route53.rb +0 -7
  1221. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1222. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1223. data/lib/aws-sdk-core/s3.rb +0 -26
  1224. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1225. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1226. data/lib/aws-sdk-core/s3control.rb +0 -6
  1227. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1228. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1229. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1230. data/lib/aws-sdk-core/schemas.rb +0 -6
  1231. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1232. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1233. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1234. data/lib/aws-sdk-core/service.rb +0 -4
  1235. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1236. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1237. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1238. data/lib/aws-sdk-core/ses.rb +0 -7
  1239. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1240. data/lib/aws-sdk-core/shield.rb +0 -6
  1241. data/lib/aws-sdk-core/signer.rb +0 -7
  1242. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1243. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1244. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1245. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1246. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1247. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1248. data/lib/aws-sdk-core/sms.rb +0 -6
  1249. data/lib/aws-sdk-core/snowball.rb +0 -6
  1250. data/lib/aws-sdk-core/sns.rb +0 -7
  1251. data/lib/aws-sdk-core/sqs.rb +0 -7
  1252. data/lib/aws-sdk-core/ssm.rb +0 -6
  1253. data/lib/aws-sdk-core/sso.rb +0 -6
  1254. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1255. data/lib/aws-sdk-core/states.rb +0 -6
  1256. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1257. data/lib/aws-sdk-core/sts.rb +0 -6
  1258. data/lib/aws-sdk-core/support.rb +0 -6
  1259. data/lib/aws-sdk-core/swf.rb +0 -6
  1260. data/lib/aws-sdk-core/textract.rb +0 -6
  1261. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1262. data/lib/aws-sdk-core/transfer.rb +0 -6
  1263. data/lib/aws-sdk-core/translate.rb +0 -6
  1264. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1265. data/lib/aws-sdk-core/version.rb +0 -3
  1266. data/lib/aws-sdk-core/waf.rb +0 -6
  1267. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1268. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1269. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1270. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1271. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1272. data/lib/aws-sdk-core/worklink.rb +0 -6
  1273. data/lib/aws-sdk-core/workmail.rb +0 -6
  1274. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1275. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1276. data/lib/aws-sdk-core/xray.rb +0 -6
  1277. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1278. data/service-models.json +0 -869
@@ -1,215 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "BatchDeleteImage": [
5
- {
6
- "input": {
7
- "imageIds": [
8
- {
9
- "imageTag": "precise"
10
- }
11
- ],
12
- "repositoryName": "ubuntu"
13
- },
14
- "output": {
15
- "failures": [
16
-
17
- ],
18
- "imageIds": [
19
- {
20
- "imageDigest": "sha256:examplee6d1e504117a17000003d3753086354a38375961f2e665416ef4b1b2f",
21
- "imageTag": "precise"
22
- }
23
- ]
24
- },
25
- "comments": {
26
- },
27
- "description": "This example deletes images with the tags precise and trusty in a repository called ubuntu in the default registry for an account.",
28
- "id": "batchdeleteimages-example-1470860541707",
29
- "title": "To delete multiple images"
30
- }
31
- ],
32
- "BatchGetImage": [
33
- {
34
- "input": {
35
- "imageIds": [
36
- {
37
- "imageTag": "precise"
38
- }
39
- ],
40
- "repositoryName": "ubuntu"
41
- },
42
- "output": {
43
- "failures": [
44
-
45
- ],
46
- "images": [
47
- {
48
- "imageId": {
49
- "imageDigest": "sha256:example76bdff6d83a09ba2a818f0d00000063724a9ac3ba5019c56f74ebf42a",
50
- "imageTag": "precise"
51
- },
52
- "imageManifest": "{\n \"schemaVersion\": 1,\n \"name\": \"ubuntu\",\n \"tag\": \"precise\",\n...",
53
- "registryId": "244698725403",
54
- "repositoryName": "ubuntu"
55
- }
56
- ]
57
- },
58
- "comments": {
59
- "output": {
60
- "imageManifest": "In this example, the imageManifest in the output JSON has been truncated."
61
- }
62
- },
63
- "description": "This example obtains information for an image with a specified image digest ID from the repository named ubuntu in the current account.",
64
- "id": "batchgetimage-example-1470862771437",
65
- "title": "To obtain multiple images in a single request"
66
- }
67
- ],
68
- "CreateRepository": [
69
- {
70
- "input": {
71
- "repositoryName": "project-a/nginx-web-app"
72
- },
73
- "output": {
74
- "repository": {
75
- "registryId": "012345678901",
76
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678901:repository/project-a/nginx-web-app",
77
- "repositoryName": "project-a/nginx-web-app"
78
- }
79
- },
80
- "comments": {
81
- "output": {
82
- "imageManifest": "In this example, the imageManifest in the output JSON has been truncated."
83
- }
84
- },
85
- "description": "This example creates a repository called nginx-web-app inside the project-a namespace in the default registry for an account.",
86
- "id": "createrepository-example-1470863688724",
87
- "title": "To create a new repository"
88
- }
89
- ],
90
- "DeleteRepository": [
91
- {
92
- "input": {
93
- "force": true,
94
- "repositoryName": "ubuntu"
95
- },
96
- "output": {
97
- "repository": {
98
- "registryId": "012345678901",
99
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678901:repository/ubuntu",
100
- "repositoryName": "ubuntu"
101
- }
102
- },
103
- "comments": {
104
- "output": {
105
- "imageManifest": "In this example, the imageManifest in the output JSON has been truncated."
106
- }
107
- },
108
- "description": "This example force deletes a repository named ubuntu in the default registry for an account. The force parameter is required if the repository contains images.",
109
- "id": "deleterepository-example-1470863805703",
110
- "title": "To force delete a repository"
111
- }
112
- ],
113
- "DeleteRepositoryPolicy": [
114
- {
115
- "input": {
116
- "repositoryName": "ubuntu"
117
- },
118
- "output": {
119
- "policyText": "{ ... }",
120
- "registryId": "012345678901",
121
- "repositoryName": "ubuntu"
122
- },
123
- "comments": {
124
- },
125
- "description": "This example deletes the policy associated with the repository named ubuntu in the current account.",
126
- "id": "deleterepositorypolicy-example-1470866943748",
127
- "title": "To delete the policy associated with a repository"
128
- }
129
- ],
130
- "DescribeRepositories": [
131
- {
132
- "input": {
133
- },
134
- "output": {
135
- "repositories": [
136
- {
137
- "registryId": "012345678910",
138
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678910:repository/ubuntu",
139
- "repositoryName": "ubuntu"
140
- },
141
- {
142
- "registryId": "012345678910",
143
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678910:repository/test",
144
- "repositoryName": "test"
145
- }
146
- ]
147
- },
148
- "comments": {
149
- "output": {
150
- }
151
- },
152
- "description": "The following example obtains a list and description of all repositories in the default registry to which the current user has access.",
153
- "id": "describe-repositories-1470856017467",
154
- "title": "To describe all repositories in the current account"
155
- }
156
- ],
157
- "GetAuthorizationToken": [
158
- {
159
- "input": {
160
- },
161
- "output": {
162
- "authorizationData": [
163
- {
164
- "authorizationToken": "QVdTOkN...",
165
- "expiresAt": "1470951892432",
166
- "proxyEndpoint": "https://012345678901.dkr.ecr.us-west-2.amazonaws.com"
167
- }
168
- ]
169
- },
170
- "comments": {
171
- },
172
- "description": "This example gets an authorization token for your default registry.",
173
- "id": "getauthorizationtoken-example-1470867047084",
174
- "title": "To obtain an authorization token"
175
- }
176
- ],
177
- "GetRepositoryPolicy": [
178
- {
179
- "input": {
180
- "repositoryName": "ubuntu"
181
- },
182
- "output": {
183
- "policyText": "{\n \"Version\" : \"2008-10-17\",\n \"Statement\" : [ {\n \"Sid\" : \"new statement\",\n \"Effect\" : \"Allow\",\n \"Principal\" : {\n \"AWS\" : \"arn:aws:iam::012345678901:role/CodeDeployDemo\"\n },\n\"Action\" : [ \"ecr:GetDownloadUrlForLayer\", \"ecr:BatchGetImage\", \"ecr:BatchCheckLayerAvailability\" ]\n } ]\n}",
184
- "registryId": "012345678901",
185
- "repositoryName": "ubuntu"
186
- },
187
- "comments": {
188
- },
189
- "description": "This example obtains the repository policy for the repository named ubuntu.",
190
- "id": "getrepositorypolicy-example-1470867669211",
191
- "title": "To get the current policy for a repository"
192
- }
193
- ],
194
- "ListImages": [
195
- {
196
- "input": {
197
- "repositoryName": "ubuntu"
198
- },
199
- "output": {
200
- "imageIds": [
201
- {
202
- "imageDigest": "sha256:764f63476bdff6d83a09ba2a818f0d35757063724a9ac3ba5019c56f74ebf42a",
203
- "imageTag": "precise"
204
- }
205
- ]
206
- },
207
- "comments": {
208
- },
209
- "description": "This example lists all of the images in the repository named ubuntu in the default registry in the current account. ",
210
- "id": "listimages-example-1470868161594",
211
- "title": "To list all images in a repository"
212
- }
213
- ]
214
- }
215
- }
@@ -1,48 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeImageScanFindings": {
4
- "input_token": "nextToken",
5
- "limit_key": "maxResults",
6
- "non_aggregate_keys": [
7
- "registryId",
8
- "repositoryName",
9
- "imageId",
10
- "imageScanStatus",
11
- "imageScanFindings"
12
- ],
13
- "output_token": "nextToken",
14
- "result_key": "imageScanFindings.findings"
15
- },
16
- "DescribeImages": {
17
- "input_token": "nextToken",
18
- "limit_key": "maxResults",
19
- "output_token": "nextToken",
20
- "result_key": "imageDetails"
21
- },
22
- "DescribeRepositories": {
23
- "input_token": "nextToken",
24
- "limit_key": "maxResults",
25
- "output_token": "nextToken",
26
- "result_key": "repositories"
27
- },
28
- "GetLifecyclePolicyPreview": {
29
- "input_token": "nextToken",
30
- "limit_key": "maxResults",
31
- "non_aggregate_keys": [
32
- "registryId",
33
- "repositoryName",
34
- "lifecyclePolicyText",
35
- "status",
36
- "summary"
37
- ],
38
- "output_token": "nextToken",
39
- "result_key": "previewResults"
40
- },
41
- "ListImages": {
42
- "input_token": "nextToken",
43
- "limit_key": "maxResults",
44
- "output_token": "nextToken",
45
- "result_key": "imageIds"
46
- }
47
- }
48
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "DescribeRepositories",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- },
10
- {
11
- "operationName": "ListImages",
12
- "input": {
13
- "repositoryName": "not-a-real-repository"
14
- },
15
- "errorExpectedFromService": true
16
- }
17
- ]
18
- }
@@ -1,3130 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-11-13",
5
- "endpointPrefix":"ecs",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"Amazon ECS",
9
- "serviceFullName":"Amazon EC2 Container Service",
10
- "serviceId":"ECS",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"AmazonEC2ContainerServiceV20141113",
13
- "uid":"ecs-2014-11-13"
14
- },
15
- "operations":{
16
- "CreateCapacityProvider":{
17
- "name":"CreateCapacityProvider",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CreateCapacityProviderRequest"},
23
- "output":{"shape":"CreateCapacityProviderResponse"},
24
- "errors":[
25
- {"shape":"ServerException"},
26
- {"shape":"ClientException"},
27
- {"shape":"InvalidParameterException"},
28
- {"shape":"LimitExceededException"}
29
- ]
30
- },
31
- "CreateCluster":{
32
- "name":"CreateCluster",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"CreateClusterRequest"},
38
- "output":{"shape":"CreateClusterResponse"},
39
- "errors":[
40
- {"shape":"ServerException"},
41
- {"shape":"ClientException"},
42
- {"shape":"InvalidParameterException"}
43
- ]
44
- },
45
- "CreateService":{
46
- "name":"CreateService",
47
- "http":{
48
- "method":"POST",
49
- "requestUri":"/"
50
- },
51
- "input":{"shape":"CreateServiceRequest"},
52
- "output":{"shape":"CreateServiceResponse"},
53
- "errors":[
54
- {"shape":"ServerException"},
55
- {"shape":"ClientException"},
56
- {"shape":"InvalidParameterException"},
57
- {"shape":"ClusterNotFoundException"},
58
- {"shape":"UnsupportedFeatureException"},
59
- {"shape":"PlatformUnknownException"},
60
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
61
- {"shape":"AccessDeniedException"}
62
- ]
63
- },
64
- "CreateTaskSet":{
65
- "name":"CreateTaskSet",
66
- "http":{
67
- "method":"POST",
68
- "requestUri":"/"
69
- },
70
- "input":{"shape":"CreateTaskSetRequest"},
71
- "output":{"shape":"CreateTaskSetResponse"},
72
- "errors":[
73
- {"shape":"ServerException"},
74
- {"shape":"ClientException"},
75
- {"shape":"InvalidParameterException"},
76
- {"shape":"ClusterNotFoundException"},
77
- {"shape":"UnsupportedFeatureException"},
78
- {"shape":"PlatformUnknownException"},
79
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
80
- {"shape":"AccessDeniedException"},
81
- {"shape":"ServiceNotFoundException"},
82
- {"shape":"ServiceNotActiveException"}
83
- ]
84
- },
85
- "DeleteAccountSetting":{
86
- "name":"DeleteAccountSetting",
87
- "http":{
88
- "method":"POST",
89
- "requestUri":"/"
90
- },
91
- "input":{"shape":"DeleteAccountSettingRequest"},
92
- "output":{"shape":"DeleteAccountSettingResponse"},
93
- "errors":[
94
- {"shape":"ServerException"},
95
- {"shape":"ClientException"},
96
- {"shape":"InvalidParameterException"}
97
- ]
98
- },
99
- "DeleteAttributes":{
100
- "name":"DeleteAttributes",
101
- "http":{
102
- "method":"POST",
103
- "requestUri":"/"
104
- },
105
- "input":{"shape":"DeleteAttributesRequest"},
106
- "output":{"shape":"DeleteAttributesResponse"},
107
- "errors":[
108
- {"shape":"ClusterNotFoundException"},
109
- {"shape":"TargetNotFoundException"},
110
- {"shape":"InvalidParameterException"}
111
- ]
112
- },
113
- "DeleteCluster":{
114
- "name":"DeleteCluster",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/"
118
- },
119
- "input":{"shape":"DeleteClusterRequest"},
120
- "output":{"shape":"DeleteClusterResponse"},
121
- "errors":[
122
- {"shape":"ServerException"},
123
- {"shape":"ClientException"},
124
- {"shape":"InvalidParameterException"},
125
- {"shape":"ClusterNotFoundException"},
126
- {"shape":"ClusterContainsContainerInstancesException"},
127
- {"shape":"ClusterContainsServicesException"},
128
- {"shape":"ClusterContainsTasksException"},
129
- {"shape":"UpdateInProgressException"}
130
- ]
131
- },
132
- "DeleteService":{
133
- "name":"DeleteService",
134
- "http":{
135
- "method":"POST",
136
- "requestUri":"/"
137
- },
138
- "input":{"shape":"DeleteServiceRequest"},
139
- "output":{"shape":"DeleteServiceResponse"},
140
- "errors":[
141
- {"shape":"ServerException"},
142
- {"shape":"ClientException"},
143
- {"shape":"InvalidParameterException"},
144
- {"shape":"ClusterNotFoundException"},
145
- {"shape":"ServiceNotFoundException"}
146
- ]
147
- },
148
- "DeleteTaskSet":{
149
- "name":"DeleteTaskSet",
150
- "http":{
151
- "method":"POST",
152
- "requestUri":"/"
153
- },
154
- "input":{"shape":"DeleteTaskSetRequest"},
155
- "output":{"shape":"DeleteTaskSetResponse"},
156
- "errors":[
157
- {"shape":"ServerException"},
158
- {"shape":"ClientException"},
159
- {"shape":"InvalidParameterException"},
160
- {"shape":"ClusterNotFoundException"},
161
- {"shape":"UnsupportedFeatureException"},
162
- {"shape":"AccessDeniedException"},
163
- {"shape":"ServiceNotFoundException"},
164
- {"shape":"ServiceNotActiveException"},
165
- {"shape":"TaskSetNotFoundException"}
166
- ]
167
- },
168
- "DeregisterContainerInstance":{
169
- "name":"DeregisterContainerInstance",
170
- "http":{
171
- "method":"POST",
172
- "requestUri":"/"
173
- },
174
- "input":{"shape":"DeregisterContainerInstanceRequest"},
175
- "output":{"shape":"DeregisterContainerInstanceResponse"},
176
- "errors":[
177
- {"shape":"ServerException"},
178
- {"shape":"ClientException"},
179
- {"shape":"InvalidParameterException"},
180
- {"shape":"ClusterNotFoundException"}
181
- ]
182
- },
183
- "DeregisterTaskDefinition":{
184
- "name":"DeregisterTaskDefinition",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"DeregisterTaskDefinitionRequest"},
190
- "output":{"shape":"DeregisterTaskDefinitionResponse"},
191
- "errors":[
192
- {"shape":"ServerException"},
193
- {"shape":"ClientException"},
194
- {"shape":"InvalidParameterException"}
195
- ]
196
- },
197
- "DescribeCapacityProviders":{
198
- "name":"DescribeCapacityProviders",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "input":{"shape":"DescribeCapacityProvidersRequest"},
204
- "output":{"shape":"DescribeCapacityProvidersResponse"},
205
- "errors":[
206
- {"shape":"ServerException"},
207
- {"shape":"ClientException"},
208
- {"shape":"InvalidParameterException"}
209
- ]
210
- },
211
- "DescribeClusters":{
212
- "name":"DescribeClusters",
213
- "http":{
214
- "method":"POST",
215
- "requestUri":"/"
216
- },
217
- "input":{"shape":"DescribeClustersRequest"},
218
- "output":{"shape":"DescribeClustersResponse"},
219
- "errors":[
220
- {"shape":"ServerException"},
221
- {"shape":"ClientException"},
222
- {"shape":"InvalidParameterException"}
223
- ]
224
- },
225
- "DescribeContainerInstances":{
226
- "name":"DescribeContainerInstances",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/"
230
- },
231
- "input":{"shape":"DescribeContainerInstancesRequest"},
232
- "output":{"shape":"DescribeContainerInstancesResponse"},
233
- "errors":[
234
- {"shape":"ServerException"},
235
- {"shape":"ClientException"},
236
- {"shape":"InvalidParameterException"},
237
- {"shape":"ClusterNotFoundException"}
238
- ]
239
- },
240
- "DescribeServices":{
241
- "name":"DescribeServices",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"DescribeServicesRequest"},
247
- "output":{"shape":"DescribeServicesResponse"},
248
- "errors":[
249
- {"shape":"ServerException"},
250
- {"shape":"ClientException"},
251
- {"shape":"InvalidParameterException"},
252
- {"shape":"ClusterNotFoundException"}
253
- ]
254
- },
255
- "DescribeTaskDefinition":{
256
- "name":"DescribeTaskDefinition",
257
- "http":{
258
- "method":"POST",
259
- "requestUri":"/"
260
- },
261
- "input":{"shape":"DescribeTaskDefinitionRequest"},
262
- "output":{"shape":"DescribeTaskDefinitionResponse"},
263
- "errors":[
264
- {"shape":"ServerException"},
265
- {"shape":"ClientException"},
266
- {"shape":"InvalidParameterException"}
267
- ]
268
- },
269
- "DescribeTaskSets":{
270
- "name":"DescribeTaskSets",
271
- "http":{
272
- "method":"POST",
273
- "requestUri":"/"
274
- },
275
- "input":{"shape":"DescribeTaskSetsRequest"},
276
- "output":{"shape":"DescribeTaskSetsResponse"},
277
- "errors":[
278
- {"shape":"ServerException"},
279
- {"shape":"ClientException"},
280
- {"shape":"InvalidParameterException"},
281
- {"shape":"ClusterNotFoundException"},
282
- {"shape":"UnsupportedFeatureException"},
283
- {"shape":"AccessDeniedException"},
284
- {"shape":"ServiceNotFoundException"},
285
- {"shape":"ServiceNotActiveException"}
286
- ]
287
- },
288
- "DescribeTasks":{
289
- "name":"DescribeTasks",
290
- "http":{
291
- "method":"POST",
292
- "requestUri":"/"
293
- },
294
- "input":{"shape":"DescribeTasksRequest"},
295
- "output":{"shape":"DescribeTasksResponse"},
296
- "errors":[
297
- {"shape":"ServerException"},
298
- {"shape":"ClientException"},
299
- {"shape":"InvalidParameterException"},
300
- {"shape":"ClusterNotFoundException"}
301
- ]
302
- },
303
- "DiscoverPollEndpoint":{
304
- "name":"DiscoverPollEndpoint",
305
- "http":{
306
- "method":"POST",
307
- "requestUri":"/"
308
- },
309
- "input":{"shape":"DiscoverPollEndpointRequest"},
310
- "output":{"shape":"DiscoverPollEndpointResponse"},
311
- "errors":[
312
- {"shape":"ServerException"},
313
- {"shape":"ClientException"}
314
- ]
315
- },
316
- "ListAccountSettings":{
317
- "name":"ListAccountSettings",
318
- "http":{
319
- "method":"POST",
320
- "requestUri":"/"
321
- },
322
- "input":{"shape":"ListAccountSettingsRequest"},
323
- "output":{"shape":"ListAccountSettingsResponse"},
324
- "errors":[
325
- {"shape":"ServerException"},
326
- {"shape":"ClientException"},
327
- {"shape":"InvalidParameterException"}
328
- ]
329
- },
330
- "ListAttributes":{
331
- "name":"ListAttributes",
332
- "http":{
333
- "method":"POST",
334
- "requestUri":"/"
335
- },
336
- "input":{"shape":"ListAttributesRequest"},
337
- "output":{"shape":"ListAttributesResponse"},
338
- "errors":[
339
- {"shape":"ClusterNotFoundException"},
340
- {"shape":"InvalidParameterException"}
341
- ]
342
- },
343
- "ListClusters":{
344
- "name":"ListClusters",
345
- "http":{
346
- "method":"POST",
347
- "requestUri":"/"
348
- },
349
- "input":{"shape":"ListClustersRequest"},
350
- "output":{"shape":"ListClustersResponse"},
351
- "errors":[
352
- {"shape":"ServerException"},
353
- {"shape":"ClientException"},
354
- {"shape":"InvalidParameterException"}
355
- ]
356
- },
357
- "ListContainerInstances":{
358
- "name":"ListContainerInstances",
359
- "http":{
360
- "method":"POST",
361
- "requestUri":"/"
362
- },
363
- "input":{"shape":"ListContainerInstancesRequest"},
364
- "output":{"shape":"ListContainerInstancesResponse"},
365
- "errors":[
366
- {"shape":"ServerException"},
367
- {"shape":"ClientException"},
368
- {"shape":"InvalidParameterException"},
369
- {"shape":"ClusterNotFoundException"}
370
- ]
371
- },
372
- "ListServices":{
373
- "name":"ListServices",
374
- "http":{
375
- "method":"POST",
376
- "requestUri":"/"
377
- },
378
- "input":{"shape":"ListServicesRequest"},
379
- "output":{"shape":"ListServicesResponse"},
380
- "errors":[
381
- {"shape":"ServerException"},
382
- {"shape":"ClientException"},
383
- {"shape":"InvalidParameterException"},
384
- {"shape":"ClusterNotFoundException"}
385
- ]
386
- },
387
- "ListTagsForResource":{
388
- "name":"ListTagsForResource",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"ListTagsForResourceRequest"},
394
- "output":{"shape":"ListTagsForResourceResponse"},
395
- "errors":[
396
- {"shape":"ServerException"},
397
- {"shape":"ClientException"},
398
- {"shape":"ClusterNotFoundException"},
399
- {"shape":"InvalidParameterException"}
400
- ]
401
- },
402
- "ListTaskDefinitionFamilies":{
403
- "name":"ListTaskDefinitionFamilies",
404
- "http":{
405
- "method":"POST",
406
- "requestUri":"/"
407
- },
408
- "input":{"shape":"ListTaskDefinitionFamiliesRequest"},
409
- "output":{"shape":"ListTaskDefinitionFamiliesResponse"},
410
- "errors":[
411
- {"shape":"ServerException"},
412
- {"shape":"ClientException"},
413
- {"shape":"InvalidParameterException"}
414
- ]
415
- },
416
- "ListTaskDefinitions":{
417
- "name":"ListTaskDefinitions",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/"
421
- },
422
- "input":{"shape":"ListTaskDefinitionsRequest"},
423
- "output":{"shape":"ListTaskDefinitionsResponse"},
424
- "errors":[
425
- {"shape":"ServerException"},
426
- {"shape":"ClientException"},
427
- {"shape":"InvalidParameterException"}
428
- ]
429
- },
430
- "ListTasks":{
431
- "name":"ListTasks",
432
- "http":{
433
- "method":"POST",
434
- "requestUri":"/"
435
- },
436
- "input":{"shape":"ListTasksRequest"},
437
- "output":{"shape":"ListTasksResponse"},
438
- "errors":[
439
- {"shape":"ServerException"},
440
- {"shape":"ClientException"},
441
- {"shape":"InvalidParameterException"},
442
- {"shape":"ClusterNotFoundException"},
443
- {"shape":"ServiceNotFoundException"}
444
- ]
445
- },
446
- "PutAccountSetting":{
447
- "name":"PutAccountSetting",
448
- "http":{
449
- "method":"POST",
450
- "requestUri":"/"
451
- },
452
- "input":{"shape":"PutAccountSettingRequest"},
453
- "output":{"shape":"PutAccountSettingResponse"},
454
- "errors":[
455
- {"shape":"ServerException"},
456
- {"shape":"ClientException"},
457
- {"shape":"InvalidParameterException"}
458
- ]
459
- },
460
- "PutAccountSettingDefault":{
461
- "name":"PutAccountSettingDefault",
462
- "http":{
463
- "method":"POST",
464
- "requestUri":"/"
465
- },
466
- "input":{"shape":"PutAccountSettingDefaultRequest"},
467
- "output":{"shape":"PutAccountSettingDefaultResponse"},
468
- "errors":[
469
- {"shape":"ServerException"},
470
- {"shape":"ClientException"},
471
- {"shape":"InvalidParameterException"}
472
- ]
473
- },
474
- "PutAttributes":{
475
- "name":"PutAttributes",
476
- "http":{
477
- "method":"POST",
478
- "requestUri":"/"
479
- },
480
- "input":{"shape":"PutAttributesRequest"},
481
- "output":{"shape":"PutAttributesResponse"},
482
- "errors":[
483
- {"shape":"ClusterNotFoundException"},
484
- {"shape":"TargetNotFoundException"},
485
- {"shape":"AttributeLimitExceededException"},
486
- {"shape":"InvalidParameterException"}
487
- ]
488
- },
489
- "PutClusterCapacityProviders":{
490
- "name":"PutClusterCapacityProviders",
491
- "http":{
492
- "method":"POST",
493
- "requestUri":"/"
494
- },
495
- "input":{"shape":"PutClusterCapacityProvidersRequest"},
496
- "output":{"shape":"PutClusterCapacityProvidersResponse"},
497
- "errors":[
498
- {"shape":"ServerException"},
499
- {"shape":"ClientException"},
500
- {"shape":"InvalidParameterException"},
501
- {"shape":"ClusterNotFoundException"},
502
- {"shape":"ResourceInUseException"},
503
- {"shape":"UpdateInProgressException"}
504
- ]
505
- },
506
- "RegisterContainerInstance":{
507
- "name":"RegisterContainerInstance",
508
- "http":{
509
- "method":"POST",
510
- "requestUri":"/"
511
- },
512
- "input":{"shape":"RegisterContainerInstanceRequest"},
513
- "output":{"shape":"RegisterContainerInstanceResponse"},
514
- "errors":[
515
- {"shape":"ServerException"},
516
- {"shape":"ClientException"},
517
- {"shape":"InvalidParameterException"}
518
- ]
519
- },
520
- "RegisterTaskDefinition":{
521
- "name":"RegisterTaskDefinition",
522
- "http":{
523
- "method":"POST",
524
- "requestUri":"/"
525
- },
526
- "input":{"shape":"RegisterTaskDefinitionRequest"},
527
- "output":{"shape":"RegisterTaskDefinitionResponse"},
528
- "errors":[
529
- {"shape":"ServerException"},
530
- {"shape":"ClientException"},
531
- {"shape":"InvalidParameterException"}
532
- ]
533
- },
534
- "RunTask":{
535
- "name":"RunTask",
536
- "http":{
537
- "method":"POST",
538
- "requestUri":"/"
539
- },
540
- "input":{"shape":"RunTaskRequest"},
541
- "output":{"shape":"RunTaskResponse"},
542
- "errors":[
543
- {"shape":"ServerException"},
544
- {"shape":"ClientException"},
545
- {"shape":"InvalidParameterException"},
546
- {"shape":"ClusterNotFoundException"},
547
- {"shape":"UnsupportedFeatureException"},
548
- {"shape":"PlatformUnknownException"},
549
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
550
- {"shape":"AccessDeniedException"},
551
- {"shape":"BlockedException"}
552
- ]
553
- },
554
- "StartTask":{
555
- "name":"StartTask",
556
- "http":{
557
- "method":"POST",
558
- "requestUri":"/"
559
- },
560
- "input":{"shape":"StartTaskRequest"},
561
- "output":{"shape":"StartTaskResponse"},
562
- "errors":[
563
- {"shape":"ServerException"},
564
- {"shape":"ClientException"},
565
- {"shape":"InvalidParameterException"},
566
- {"shape":"ClusterNotFoundException"}
567
- ]
568
- },
569
- "StopTask":{
570
- "name":"StopTask",
571
- "http":{
572
- "method":"POST",
573
- "requestUri":"/"
574
- },
575
- "input":{"shape":"StopTaskRequest"},
576
- "output":{"shape":"StopTaskResponse"},
577
- "errors":[
578
- {"shape":"ServerException"},
579
- {"shape":"ClientException"},
580
- {"shape":"InvalidParameterException"},
581
- {"shape":"ClusterNotFoundException"}
582
- ]
583
- },
584
- "SubmitAttachmentStateChanges":{
585
- "name":"SubmitAttachmentStateChanges",
586
- "http":{
587
- "method":"POST",
588
- "requestUri":"/"
589
- },
590
- "input":{"shape":"SubmitAttachmentStateChangesRequest"},
591
- "output":{"shape":"SubmitAttachmentStateChangesResponse"},
592
- "errors":[
593
- {"shape":"ServerException"},
594
- {"shape":"ClientException"},
595
- {"shape":"AccessDeniedException"},
596
- {"shape":"InvalidParameterException"}
597
- ]
598
- },
599
- "SubmitContainerStateChange":{
600
- "name":"SubmitContainerStateChange",
601
- "http":{
602
- "method":"POST",
603
- "requestUri":"/"
604
- },
605
- "input":{"shape":"SubmitContainerStateChangeRequest"},
606
- "output":{"shape":"SubmitContainerStateChangeResponse"},
607
- "errors":[
608
- {"shape":"ServerException"},
609
- {"shape":"ClientException"},
610
- {"shape":"AccessDeniedException"}
611
- ]
612
- },
613
- "SubmitTaskStateChange":{
614
- "name":"SubmitTaskStateChange",
615
- "http":{
616
- "method":"POST",
617
- "requestUri":"/"
618
- },
619
- "input":{"shape":"SubmitTaskStateChangeRequest"},
620
- "output":{"shape":"SubmitTaskStateChangeResponse"},
621
- "errors":[
622
- {"shape":"ServerException"},
623
- {"shape":"ClientException"},
624
- {"shape":"AccessDeniedException"},
625
- {"shape":"InvalidParameterException"}
626
- ]
627
- },
628
- "TagResource":{
629
- "name":"TagResource",
630
- "http":{
631
- "method":"POST",
632
- "requestUri":"/"
633
- },
634
- "input":{"shape":"TagResourceRequest"},
635
- "output":{"shape":"TagResourceResponse"},
636
- "errors":[
637
- {"shape":"ServerException"},
638
- {"shape":"ClientException"},
639
- {"shape":"ClusterNotFoundException"},
640
- {"shape":"ResourceNotFoundException"},
641
- {"shape":"InvalidParameterException"}
642
- ]
643
- },
644
- "UntagResource":{
645
- "name":"UntagResource",
646
- "http":{
647
- "method":"POST",
648
- "requestUri":"/"
649
- },
650
- "input":{"shape":"UntagResourceRequest"},
651
- "output":{"shape":"UntagResourceResponse"},
652
- "errors":[
653
- {"shape":"ServerException"},
654
- {"shape":"ClientException"},
655
- {"shape":"ClusterNotFoundException"},
656
- {"shape":"ResourceNotFoundException"},
657
- {"shape":"InvalidParameterException"}
658
- ]
659
- },
660
- "UpdateClusterSettings":{
661
- "name":"UpdateClusterSettings",
662
- "http":{
663
- "method":"POST",
664
- "requestUri":"/"
665
- },
666
- "input":{"shape":"UpdateClusterSettingsRequest"},
667
- "output":{"shape":"UpdateClusterSettingsResponse"},
668
- "errors":[
669
- {"shape":"ServerException"},
670
- {"shape":"ClientException"},
671
- {"shape":"ClusterNotFoundException"},
672
- {"shape":"InvalidParameterException"}
673
- ]
674
- },
675
- "UpdateContainerAgent":{
676
- "name":"UpdateContainerAgent",
677
- "http":{
678
- "method":"POST",
679
- "requestUri":"/"
680
- },
681
- "input":{"shape":"UpdateContainerAgentRequest"},
682
- "output":{"shape":"UpdateContainerAgentResponse"},
683
- "errors":[
684
- {"shape":"ServerException"},
685
- {"shape":"ClientException"},
686
- {"shape":"InvalidParameterException"},
687
- {"shape":"ClusterNotFoundException"},
688
- {"shape":"UpdateInProgressException"},
689
- {"shape":"NoUpdateAvailableException"},
690
- {"shape":"MissingVersionException"}
691
- ]
692
- },
693
- "UpdateContainerInstancesState":{
694
- "name":"UpdateContainerInstancesState",
695
- "http":{
696
- "method":"POST",
697
- "requestUri":"/"
698
- },
699
- "input":{"shape":"UpdateContainerInstancesStateRequest"},
700
- "output":{"shape":"UpdateContainerInstancesStateResponse"},
701
- "errors":[
702
- {"shape":"ServerException"},
703
- {"shape":"ClientException"},
704
- {"shape":"InvalidParameterException"},
705
- {"shape":"ClusterNotFoundException"}
706
- ]
707
- },
708
- "UpdateService":{
709
- "name":"UpdateService",
710
- "http":{
711
- "method":"POST",
712
- "requestUri":"/"
713
- },
714
- "input":{"shape":"UpdateServiceRequest"},
715
- "output":{"shape":"UpdateServiceResponse"},
716
- "errors":[
717
- {"shape":"ServerException"},
718
- {"shape":"ClientException"},
719
- {"shape":"InvalidParameterException"},
720
- {"shape":"ClusterNotFoundException"},
721
- {"shape":"ServiceNotFoundException"},
722
- {"shape":"ServiceNotActiveException"},
723
- {"shape":"PlatformUnknownException"},
724
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
725
- {"shape":"AccessDeniedException"}
726
- ]
727
- },
728
- "UpdateServicePrimaryTaskSet":{
729
- "name":"UpdateServicePrimaryTaskSet",
730
- "http":{
731
- "method":"POST",
732
- "requestUri":"/"
733
- },
734
- "input":{"shape":"UpdateServicePrimaryTaskSetRequest"},
735
- "output":{"shape":"UpdateServicePrimaryTaskSetResponse"},
736
- "errors":[
737
- {"shape":"ServerException"},
738
- {"shape":"ClientException"},
739
- {"shape":"InvalidParameterException"},
740
- {"shape":"ClusterNotFoundException"},
741
- {"shape":"UnsupportedFeatureException"},
742
- {"shape":"ServiceNotFoundException"},
743
- {"shape":"ServiceNotActiveException"},
744
- {"shape":"TaskSetNotFoundException"},
745
- {"shape":"AccessDeniedException"}
746
- ]
747
- },
748
- "UpdateTaskSet":{
749
- "name":"UpdateTaskSet",
750
- "http":{
751
- "method":"POST",
752
- "requestUri":"/"
753
- },
754
- "input":{"shape":"UpdateTaskSetRequest"},
755
- "output":{"shape":"UpdateTaskSetResponse"},
756
- "errors":[
757
- {"shape":"ServerException"},
758
- {"shape":"ClientException"},
759
- {"shape":"InvalidParameterException"},
760
- {"shape":"ClusterNotFoundException"},
761
- {"shape":"UnsupportedFeatureException"},
762
- {"shape":"AccessDeniedException"},
763
- {"shape":"ServiceNotFoundException"},
764
- {"shape":"ServiceNotActiveException"},
765
- {"shape":"TaskSetNotFoundException"}
766
- ]
767
- }
768
- },
769
- "shapes":{
770
- "AccessDeniedException":{
771
- "type":"structure",
772
- "members":{
773
- },
774
- "exception":true
775
- },
776
- "AgentUpdateStatus":{
777
- "type":"string",
778
- "enum":[
779
- "PENDING",
780
- "STAGING",
781
- "STAGED",
782
- "UPDATING",
783
- "UPDATED",
784
- "FAILED"
785
- ]
786
- },
787
- "AssignPublicIp":{
788
- "type":"string",
789
- "enum":[
790
- "ENABLED",
791
- "DISABLED"
792
- ]
793
- },
794
- "Attachment":{
795
- "type":"structure",
796
- "members":{
797
- "id":{"shape":"String"},
798
- "type":{"shape":"String"},
799
- "status":{"shape":"String"},
800
- "details":{"shape":"AttachmentDetails"}
801
- }
802
- },
803
- "AttachmentDetails":{
804
- "type":"list",
805
- "member":{"shape":"KeyValuePair"}
806
- },
807
- "AttachmentStateChange":{
808
- "type":"structure",
809
- "required":[
810
- "attachmentArn",
811
- "status"
812
- ],
813
- "members":{
814
- "attachmentArn":{"shape":"String"},
815
- "status":{"shape":"String"}
816
- }
817
- },
818
- "AttachmentStateChanges":{
819
- "type":"list",
820
- "member":{"shape":"AttachmentStateChange"}
821
- },
822
- "Attachments":{
823
- "type":"list",
824
- "member":{"shape":"Attachment"}
825
- },
826
- "Attribute":{
827
- "type":"structure",
828
- "required":["name"],
829
- "members":{
830
- "name":{"shape":"String"},
831
- "value":{"shape":"String"},
832
- "targetType":{"shape":"TargetType"},
833
- "targetId":{"shape":"String"}
834
- }
835
- },
836
- "AttributeLimitExceededException":{
837
- "type":"structure",
838
- "members":{
839
- },
840
- "exception":true
841
- },
842
- "Attributes":{
843
- "type":"list",
844
- "member":{"shape":"Attribute"}
845
- },
846
- "AutoScalingGroupProvider":{
847
- "type":"structure",
848
- "required":["autoScalingGroupArn"],
849
- "members":{
850
- "autoScalingGroupArn":{"shape":"String"},
851
- "managedScaling":{"shape":"ManagedScaling"},
852
- "managedTerminationProtection":{"shape":"ManagedTerminationProtection"}
853
- }
854
- },
855
- "AwsVpcConfiguration":{
856
- "type":"structure",
857
- "required":["subnets"],
858
- "members":{
859
- "subnets":{"shape":"StringList"},
860
- "securityGroups":{"shape":"StringList"},
861
- "assignPublicIp":{"shape":"AssignPublicIp"}
862
- }
863
- },
864
- "BlockedException":{
865
- "type":"structure",
866
- "members":{
867
- },
868
- "exception":true
869
- },
870
- "Boolean":{"type":"boolean"},
871
- "BoxedBoolean":{
872
- "type":"boolean",
873
- "box":true
874
- },
875
- "BoxedInteger":{
876
- "type":"integer",
877
- "box":true
878
- },
879
- "CapacityProvider":{
880
- "type":"structure",
881
- "members":{
882
- "capacityProviderArn":{"shape":"String"},
883
- "name":{"shape":"String"},
884
- "status":{"shape":"CapacityProviderStatus"},
885
- "autoScalingGroupProvider":{"shape":"AutoScalingGroupProvider"},
886
- "tags":{"shape":"Tags"}
887
- }
888
- },
889
- "CapacityProviderField":{
890
- "type":"string",
891
- "enum":["TAGS"]
892
- },
893
- "CapacityProviderFieldList":{
894
- "type":"list",
895
- "member":{"shape":"CapacityProviderField"}
896
- },
897
- "CapacityProviderStatus":{
898
- "type":"string",
899
- "enum":["ACTIVE"]
900
- },
901
- "CapacityProviderStrategy":{
902
- "type":"list",
903
- "member":{"shape":"CapacityProviderStrategyItem"}
904
- },
905
- "CapacityProviderStrategyItem":{
906
- "type":"structure",
907
- "required":["capacityProvider"],
908
- "members":{
909
- "capacityProvider":{"shape":"String"},
910
- "weight":{"shape":"CapacityProviderStrategyItemWeight"},
911
- "base":{"shape":"CapacityProviderStrategyItemBase"}
912
- }
913
- },
914
- "CapacityProviderStrategyItemBase":{
915
- "type":"integer",
916
- "max":100000,
917
- "min":0
918
- },
919
- "CapacityProviderStrategyItemWeight":{
920
- "type":"integer",
921
- "max":1000,
922
- "min":0
923
- },
924
- "CapacityProviders":{
925
- "type":"list",
926
- "member":{"shape":"CapacityProvider"}
927
- },
928
- "ClientException":{
929
- "type":"structure",
930
- "members":{
931
- "message":{"shape":"String"}
932
- },
933
- "exception":true
934
- },
935
- "Cluster":{
936
- "type":"structure",
937
- "members":{
938
- "clusterArn":{"shape":"String"},
939
- "clusterName":{"shape":"String"},
940
- "status":{"shape":"String"},
941
- "registeredContainerInstancesCount":{"shape":"Integer"},
942
- "runningTasksCount":{"shape":"Integer"},
943
- "pendingTasksCount":{"shape":"Integer"},
944
- "activeServicesCount":{"shape":"Integer"},
945
- "statistics":{"shape":"Statistics"},
946
- "tags":{"shape":"Tags"},
947
- "settings":{"shape":"ClusterSettings"},
948
- "capacityProviders":{"shape":"StringList"},
949
- "defaultCapacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
950
- "attachments":{"shape":"Attachments"},
951
- "attachmentsStatus":{"shape":"String"}
952
- }
953
- },
954
- "ClusterContainsContainerInstancesException":{
955
- "type":"structure",
956
- "members":{
957
- },
958
- "exception":true
959
- },
960
- "ClusterContainsServicesException":{
961
- "type":"structure",
962
- "members":{
963
- },
964
- "exception":true
965
- },
966
- "ClusterContainsTasksException":{
967
- "type":"structure",
968
- "members":{
969
- },
970
- "exception":true
971
- },
972
- "ClusterField":{
973
- "type":"string",
974
- "enum":[
975
- "ATTACHMENTS",
976
- "SETTINGS",
977
- "STATISTICS",
978
- "TAGS"
979
- ]
980
- },
981
- "ClusterFieldList":{
982
- "type":"list",
983
- "member":{"shape":"ClusterField"}
984
- },
985
- "ClusterNotFoundException":{
986
- "type":"structure",
987
- "members":{
988
- },
989
- "exception":true
990
- },
991
- "ClusterSetting":{
992
- "type":"structure",
993
- "members":{
994
- "name":{"shape":"ClusterSettingName"},
995
- "value":{"shape":"String"}
996
- }
997
- },
998
- "ClusterSettingName":{
999
- "type":"string",
1000
- "enum":["containerInsights"]
1001
- },
1002
- "ClusterSettings":{
1003
- "type":"list",
1004
- "member":{"shape":"ClusterSetting"}
1005
- },
1006
- "Clusters":{
1007
- "type":"list",
1008
- "member":{"shape":"Cluster"}
1009
- },
1010
- "Compatibility":{
1011
- "type":"string",
1012
- "enum":[
1013
- "EC2",
1014
- "FARGATE"
1015
- ]
1016
- },
1017
- "CompatibilityList":{
1018
- "type":"list",
1019
- "member":{"shape":"Compatibility"}
1020
- },
1021
- "Connectivity":{
1022
- "type":"string",
1023
- "enum":[
1024
- "CONNECTED",
1025
- "DISCONNECTED"
1026
- ]
1027
- },
1028
- "Container":{
1029
- "type":"structure",
1030
- "members":{
1031
- "containerArn":{"shape":"String"},
1032
- "taskArn":{"shape":"String"},
1033
- "name":{"shape":"String"},
1034
- "image":{"shape":"String"},
1035
- "imageDigest":{"shape":"String"},
1036
- "runtimeId":{"shape":"String"},
1037
- "lastStatus":{"shape":"String"},
1038
- "exitCode":{"shape":"BoxedInteger"},
1039
- "reason":{"shape":"String"},
1040
- "networkBindings":{"shape":"NetworkBindings"},
1041
- "networkInterfaces":{"shape":"NetworkInterfaces"},
1042
- "healthStatus":{"shape":"HealthStatus"},
1043
- "cpu":{"shape":"String"},
1044
- "memory":{"shape":"String"},
1045
- "memoryReservation":{"shape":"String"},
1046
- "gpuIds":{"shape":"GpuIds"}
1047
- }
1048
- },
1049
- "ContainerCondition":{
1050
- "type":"string",
1051
- "enum":[
1052
- "START",
1053
- "COMPLETE",
1054
- "SUCCESS",
1055
- "HEALTHY"
1056
- ]
1057
- },
1058
- "ContainerDefinition":{
1059
- "type":"structure",
1060
- "members":{
1061
- "name":{"shape":"String"},
1062
- "image":{"shape":"String"},
1063
- "repositoryCredentials":{"shape":"RepositoryCredentials"},
1064
- "cpu":{"shape":"Integer"},
1065
- "memory":{"shape":"BoxedInteger"},
1066
- "memoryReservation":{"shape":"BoxedInteger"},
1067
- "links":{"shape":"StringList"},
1068
- "portMappings":{"shape":"PortMappingList"},
1069
- "essential":{"shape":"BoxedBoolean"},
1070
- "entryPoint":{"shape":"StringList"},
1071
- "command":{"shape":"StringList"},
1072
- "environment":{"shape":"EnvironmentVariables"},
1073
- "mountPoints":{"shape":"MountPointList"},
1074
- "volumesFrom":{"shape":"VolumeFromList"},
1075
- "linuxParameters":{"shape":"LinuxParameters"},
1076
- "secrets":{"shape":"SecretList"},
1077
- "dependsOn":{"shape":"ContainerDependencies"},
1078
- "startTimeout":{"shape":"BoxedInteger"},
1079
- "stopTimeout":{"shape":"BoxedInteger"},
1080
- "hostname":{"shape":"String"},
1081
- "user":{"shape":"String"},
1082
- "workingDirectory":{"shape":"String"},
1083
- "disableNetworking":{"shape":"BoxedBoolean"},
1084
- "privileged":{"shape":"BoxedBoolean"},
1085
- "readonlyRootFilesystem":{"shape":"BoxedBoolean"},
1086
- "dnsServers":{"shape":"StringList"},
1087
- "dnsSearchDomains":{"shape":"StringList"},
1088
- "extraHosts":{"shape":"HostEntryList"},
1089
- "dockerSecurityOptions":{"shape":"StringList"},
1090
- "interactive":{"shape":"BoxedBoolean"},
1091
- "pseudoTerminal":{"shape":"BoxedBoolean"},
1092
- "dockerLabels":{"shape":"DockerLabelsMap"},
1093
- "ulimits":{"shape":"UlimitList"},
1094
- "logConfiguration":{"shape":"LogConfiguration"},
1095
- "healthCheck":{"shape":"HealthCheck"},
1096
- "systemControls":{"shape":"SystemControls"},
1097
- "resourceRequirements":{"shape":"ResourceRequirements"},
1098
- "firelensConfiguration":{"shape":"FirelensConfiguration"}
1099
- }
1100
- },
1101
- "ContainerDefinitions":{
1102
- "type":"list",
1103
- "member":{"shape":"ContainerDefinition"}
1104
- },
1105
- "ContainerDependencies":{
1106
- "type":"list",
1107
- "member":{"shape":"ContainerDependency"}
1108
- },
1109
- "ContainerDependency":{
1110
- "type":"structure",
1111
- "required":[
1112
- "containerName",
1113
- "condition"
1114
- ],
1115
- "members":{
1116
- "containerName":{"shape":"String"},
1117
- "condition":{"shape":"ContainerCondition"}
1118
- }
1119
- },
1120
- "ContainerInstance":{
1121
- "type":"structure",
1122
- "members":{
1123
- "containerInstanceArn":{"shape":"String"},
1124
- "ec2InstanceId":{"shape":"String"},
1125
- "capacityProviderName":{"shape":"String"},
1126
- "version":{"shape":"Long"},
1127
- "versionInfo":{"shape":"VersionInfo"},
1128
- "remainingResources":{"shape":"Resources"},
1129
- "registeredResources":{"shape":"Resources"},
1130
- "status":{"shape":"String"},
1131
- "statusReason":{"shape":"String"},
1132
- "agentConnected":{"shape":"Boolean"},
1133
- "runningTasksCount":{"shape":"Integer"},
1134
- "pendingTasksCount":{"shape":"Integer"},
1135
- "agentUpdateStatus":{"shape":"AgentUpdateStatus"},
1136
- "attributes":{"shape":"Attributes"},
1137
- "registeredAt":{"shape":"Timestamp"},
1138
- "attachments":{"shape":"Attachments"},
1139
- "tags":{"shape":"Tags"}
1140
- }
1141
- },
1142
- "ContainerInstanceField":{
1143
- "type":"string",
1144
- "enum":["TAGS"]
1145
- },
1146
- "ContainerInstanceFieldList":{
1147
- "type":"list",
1148
- "member":{"shape":"ContainerInstanceField"}
1149
- },
1150
- "ContainerInstanceStatus":{
1151
- "type":"string",
1152
- "enum":[
1153
- "ACTIVE",
1154
- "DRAINING",
1155
- "REGISTERING",
1156
- "DEREGISTERING",
1157
- "REGISTRATION_FAILED"
1158
- ]
1159
- },
1160
- "ContainerInstances":{
1161
- "type":"list",
1162
- "member":{"shape":"ContainerInstance"}
1163
- },
1164
- "ContainerOverride":{
1165
- "type":"structure",
1166
- "members":{
1167
- "name":{"shape":"String"},
1168
- "command":{"shape":"StringList"},
1169
- "environment":{"shape":"EnvironmentVariables"},
1170
- "cpu":{"shape":"BoxedInteger"},
1171
- "memory":{"shape":"BoxedInteger"},
1172
- "memoryReservation":{"shape":"BoxedInteger"},
1173
- "resourceRequirements":{"shape":"ResourceRequirements"}
1174
- }
1175
- },
1176
- "ContainerOverrides":{
1177
- "type":"list",
1178
- "member":{"shape":"ContainerOverride"}
1179
- },
1180
- "ContainerStateChange":{
1181
- "type":"structure",
1182
- "members":{
1183
- "containerName":{"shape":"String"},
1184
- "imageDigest":{"shape":"String"},
1185
- "runtimeId":{"shape":"String"},
1186
- "exitCode":{"shape":"BoxedInteger"},
1187
- "networkBindings":{"shape":"NetworkBindings"},
1188
- "reason":{"shape":"String"},
1189
- "status":{"shape":"String"}
1190
- }
1191
- },
1192
- "ContainerStateChanges":{
1193
- "type":"list",
1194
- "member":{"shape":"ContainerStateChange"}
1195
- },
1196
- "Containers":{
1197
- "type":"list",
1198
- "member":{"shape":"Container"}
1199
- },
1200
- "CreateCapacityProviderRequest":{
1201
- "type":"structure",
1202
- "required":[
1203
- "name",
1204
- "autoScalingGroupProvider"
1205
- ],
1206
- "members":{
1207
- "name":{"shape":"String"},
1208
- "autoScalingGroupProvider":{"shape":"AutoScalingGroupProvider"},
1209
- "tags":{"shape":"Tags"}
1210
- }
1211
- },
1212
- "CreateCapacityProviderResponse":{
1213
- "type":"structure",
1214
- "members":{
1215
- "capacityProvider":{"shape":"CapacityProvider"}
1216
- }
1217
- },
1218
- "CreateClusterRequest":{
1219
- "type":"structure",
1220
- "members":{
1221
- "clusterName":{"shape":"String"},
1222
- "tags":{"shape":"Tags"},
1223
- "settings":{"shape":"ClusterSettings"},
1224
- "capacityProviders":{"shape":"StringList"},
1225
- "defaultCapacityProviderStrategy":{"shape":"CapacityProviderStrategy"}
1226
- }
1227
- },
1228
- "CreateClusterResponse":{
1229
- "type":"structure",
1230
- "members":{
1231
- "cluster":{"shape":"Cluster"}
1232
- }
1233
- },
1234
- "CreateServiceRequest":{
1235
- "type":"structure",
1236
- "required":["serviceName"],
1237
- "members":{
1238
- "cluster":{"shape":"String"},
1239
- "serviceName":{"shape":"String"},
1240
- "taskDefinition":{"shape":"String"},
1241
- "loadBalancers":{"shape":"LoadBalancers"},
1242
- "serviceRegistries":{"shape":"ServiceRegistries"},
1243
- "desiredCount":{"shape":"BoxedInteger"},
1244
- "clientToken":{"shape":"String"},
1245
- "launchType":{"shape":"LaunchType"},
1246
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
1247
- "platformVersion":{"shape":"String"},
1248
- "role":{"shape":"String"},
1249
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
1250
- "placementConstraints":{"shape":"PlacementConstraints"},
1251
- "placementStrategy":{"shape":"PlacementStrategies"},
1252
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1253
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
1254
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
1255
- "deploymentController":{"shape":"DeploymentController"},
1256
- "tags":{"shape":"Tags"},
1257
- "enableECSManagedTags":{"shape":"Boolean"},
1258
- "propagateTags":{"shape":"PropagateTags"}
1259
- }
1260
- },
1261
- "CreateServiceResponse":{
1262
- "type":"structure",
1263
- "members":{
1264
- "service":{"shape":"Service"}
1265
- }
1266
- },
1267
- "CreateTaskSetRequest":{
1268
- "type":"structure",
1269
- "required":[
1270
- "service",
1271
- "cluster",
1272
- "taskDefinition"
1273
- ],
1274
- "members":{
1275
- "service":{"shape":"String"},
1276
- "cluster":{"shape":"String"},
1277
- "externalId":{"shape":"String"},
1278
- "taskDefinition":{"shape":"String"},
1279
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1280
- "loadBalancers":{"shape":"LoadBalancers"},
1281
- "serviceRegistries":{"shape":"ServiceRegistries"},
1282
- "launchType":{"shape":"LaunchType"},
1283
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
1284
- "platformVersion":{"shape":"String"},
1285
- "scale":{"shape":"Scale"},
1286
- "clientToken":{"shape":"String"}
1287
- }
1288
- },
1289
- "CreateTaskSetResponse":{
1290
- "type":"structure",
1291
- "members":{
1292
- "taskSet":{"shape":"TaskSet"}
1293
- }
1294
- },
1295
- "DeleteAccountSettingRequest":{
1296
- "type":"structure",
1297
- "required":["name"],
1298
- "members":{
1299
- "name":{"shape":"SettingName"},
1300
- "principalArn":{"shape":"String"}
1301
- }
1302
- },
1303
- "DeleteAccountSettingResponse":{
1304
- "type":"structure",
1305
- "members":{
1306
- "setting":{"shape":"Setting"}
1307
- }
1308
- },
1309
- "DeleteAttributesRequest":{
1310
- "type":"structure",
1311
- "required":["attributes"],
1312
- "members":{
1313
- "cluster":{"shape":"String"},
1314
- "attributes":{"shape":"Attributes"}
1315
- }
1316
- },
1317
- "DeleteAttributesResponse":{
1318
- "type":"structure",
1319
- "members":{
1320
- "attributes":{"shape":"Attributes"}
1321
- }
1322
- },
1323
- "DeleteClusterRequest":{
1324
- "type":"structure",
1325
- "required":["cluster"],
1326
- "members":{
1327
- "cluster":{"shape":"String"}
1328
- }
1329
- },
1330
- "DeleteClusterResponse":{
1331
- "type":"structure",
1332
- "members":{
1333
- "cluster":{"shape":"Cluster"}
1334
- }
1335
- },
1336
- "DeleteServiceRequest":{
1337
- "type":"structure",
1338
- "required":["service"],
1339
- "members":{
1340
- "cluster":{"shape":"String"},
1341
- "service":{"shape":"String"},
1342
- "force":{"shape":"BoxedBoolean"}
1343
- }
1344
- },
1345
- "DeleteServiceResponse":{
1346
- "type":"structure",
1347
- "members":{
1348
- "service":{"shape":"Service"}
1349
- }
1350
- },
1351
- "DeleteTaskSetRequest":{
1352
- "type":"structure",
1353
- "required":[
1354
- "cluster",
1355
- "service",
1356
- "taskSet"
1357
- ],
1358
- "members":{
1359
- "cluster":{"shape":"String"},
1360
- "service":{"shape":"String"},
1361
- "taskSet":{"shape":"String"},
1362
- "force":{"shape":"BoxedBoolean"}
1363
- }
1364
- },
1365
- "DeleteTaskSetResponse":{
1366
- "type":"structure",
1367
- "members":{
1368
- "taskSet":{"shape":"TaskSet"}
1369
- }
1370
- },
1371
- "Deployment":{
1372
- "type":"structure",
1373
- "members":{
1374
- "id":{"shape":"String"},
1375
- "status":{"shape":"String"},
1376
- "taskDefinition":{"shape":"String"},
1377
- "desiredCount":{"shape":"Integer"},
1378
- "pendingCount":{"shape":"Integer"},
1379
- "runningCount":{"shape":"Integer"},
1380
- "createdAt":{"shape":"Timestamp"},
1381
- "updatedAt":{"shape":"Timestamp"},
1382
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
1383
- "launchType":{"shape":"LaunchType"},
1384
- "platformVersion":{"shape":"String"},
1385
- "networkConfiguration":{"shape":"NetworkConfiguration"}
1386
- }
1387
- },
1388
- "DeploymentConfiguration":{
1389
- "type":"structure",
1390
- "members":{
1391
- "maximumPercent":{"shape":"BoxedInteger"},
1392
- "minimumHealthyPercent":{"shape":"BoxedInteger"}
1393
- }
1394
- },
1395
- "DeploymentController":{
1396
- "type":"structure",
1397
- "required":["type"],
1398
- "members":{
1399
- "type":{"shape":"DeploymentControllerType"}
1400
- }
1401
- },
1402
- "DeploymentControllerType":{
1403
- "type":"string",
1404
- "enum":[
1405
- "ECS",
1406
- "CODE_DEPLOY",
1407
- "EXTERNAL"
1408
- ]
1409
- },
1410
- "Deployments":{
1411
- "type":"list",
1412
- "member":{"shape":"Deployment"}
1413
- },
1414
- "DeregisterContainerInstanceRequest":{
1415
- "type":"structure",
1416
- "required":["containerInstance"],
1417
- "members":{
1418
- "cluster":{"shape":"String"},
1419
- "containerInstance":{"shape":"String"},
1420
- "force":{"shape":"BoxedBoolean"}
1421
- }
1422
- },
1423
- "DeregisterContainerInstanceResponse":{
1424
- "type":"structure",
1425
- "members":{
1426
- "containerInstance":{"shape":"ContainerInstance"}
1427
- }
1428
- },
1429
- "DeregisterTaskDefinitionRequest":{
1430
- "type":"structure",
1431
- "required":["taskDefinition"],
1432
- "members":{
1433
- "taskDefinition":{"shape":"String"}
1434
- }
1435
- },
1436
- "DeregisterTaskDefinitionResponse":{
1437
- "type":"structure",
1438
- "members":{
1439
- "taskDefinition":{"shape":"TaskDefinition"}
1440
- }
1441
- },
1442
- "DescribeCapacityProvidersRequest":{
1443
- "type":"structure",
1444
- "members":{
1445
- "capacityProviders":{"shape":"StringList"},
1446
- "include":{"shape":"CapacityProviderFieldList"},
1447
- "maxResults":{"shape":"BoxedInteger"},
1448
- "nextToken":{"shape":"String"}
1449
- }
1450
- },
1451
- "DescribeCapacityProvidersResponse":{
1452
- "type":"structure",
1453
- "members":{
1454
- "capacityProviders":{"shape":"CapacityProviders"},
1455
- "failures":{"shape":"Failures"},
1456
- "nextToken":{"shape":"String"}
1457
- }
1458
- },
1459
- "DescribeClustersRequest":{
1460
- "type":"structure",
1461
- "members":{
1462
- "clusters":{"shape":"StringList"},
1463
- "include":{"shape":"ClusterFieldList"}
1464
- }
1465
- },
1466
- "DescribeClustersResponse":{
1467
- "type":"structure",
1468
- "members":{
1469
- "clusters":{"shape":"Clusters"},
1470
- "failures":{"shape":"Failures"}
1471
- }
1472
- },
1473
- "DescribeContainerInstancesRequest":{
1474
- "type":"structure",
1475
- "required":["containerInstances"],
1476
- "members":{
1477
- "cluster":{"shape":"String"},
1478
- "containerInstances":{"shape":"StringList"},
1479
- "include":{"shape":"ContainerInstanceFieldList"}
1480
- }
1481
- },
1482
- "DescribeContainerInstancesResponse":{
1483
- "type":"structure",
1484
- "members":{
1485
- "containerInstances":{"shape":"ContainerInstances"},
1486
- "failures":{"shape":"Failures"}
1487
- }
1488
- },
1489
- "DescribeServicesRequest":{
1490
- "type":"structure",
1491
- "required":["services"],
1492
- "members":{
1493
- "cluster":{"shape":"String"},
1494
- "services":{"shape":"StringList"},
1495
- "include":{"shape":"ServiceFieldList"}
1496
- }
1497
- },
1498
- "DescribeServicesResponse":{
1499
- "type":"structure",
1500
- "members":{
1501
- "services":{"shape":"Services"},
1502
- "failures":{"shape":"Failures"}
1503
- }
1504
- },
1505
- "DescribeTaskDefinitionRequest":{
1506
- "type":"structure",
1507
- "required":["taskDefinition"],
1508
- "members":{
1509
- "taskDefinition":{"shape":"String"},
1510
- "include":{"shape":"TaskDefinitionFieldList"}
1511
- }
1512
- },
1513
- "DescribeTaskDefinitionResponse":{
1514
- "type":"structure",
1515
- "members":{
1516
- "taskDefinition":{"shape":"TaskDefinition"},
1517
- "tags":{"shape":"Tags"}
1518
- }
1519
- },
1520
- "DescribeTaskSetsRequest":{
1521
- "type":"structure",
1522
- "required":[
1523
- "cluster",
1524
- "service"
1525
- ],
1526
- "members":{
1527
- "cluster":{"shape":"String"},
1528
- "service":{"shape":"String"},
1529
- "taskSets":{"shape":"StringList"}
1530
- }
1531
- },
1532
- "DescribeTaskSetsResponse":{
1533
- "type":"structure",
1534
- "members":{
1535
- "taskSets":{"shape":"TaskSets"},
1536
- "failures":{"shape":"Failures"}
1537
- }
1538
- },
1539
- "DescribeTasksRequest":{
1540
- "type":"structure",
1541
- "required":["tasks"],
1542
- "members":{
1543
- "cluster":{"shape":"String"},
1544
- "tasks":{"shape":"StringList"},
1545
- "include":{"shape":"TaskFieldList"}
1546
- }
1547
- },
1548
- "DescribeTasksResponse":{
1549
- "type":"structure",
1550
- "members":{
1551
- "tasks":{"shape":"Tasks"},
1552
- "failures":{"shape":"Failures"}
1553
- }
1554
- },
1555
- "DesiredStatus":{
1556
- "type":"string",
1557
- "enum":[
1558
- "RUNNING",
1559
- "PENDING",
1560
- "STOPPED"
1561
- ]
1562
- },
1563
- "Device":{
1564
- "type":"structure",
1565
- "required":["hostPath"],
1566
- "members":{
1567
- "hostPath":{"shape":"String"},
1568
- "containerPath":{"shape":"String"},
1569
- "permissions":{"shape":"DeviceCgroupPermissions"}
1570
- }
1571
- },
1572
- "DeviceCgroupPermission":{
1573
- "type":"string",
1574
- "enum":[
1575
- "read",
1576
- "write",
1577
- "mknod"
1578
- ]
1579
- },
1580
- "DeviceCgroupPermissions":{
1581
- "type":"list",
1582
- "member":{"shape":"DeviceCgroupPermission"}
1583
- },
1584
- "DevicesList":{
1585
- "type":"list",
1586
- "member":{"shape":"Device"}
1587
- },
1588
- "DiscoverPollEndpointRequest":{
1589
- "type":"structure",
1590
- "members":{
1591
- "containerInstance":{"shape":"String"},
1592
- "cluster":{"shape":"String"}
1593
- }
1594
- },
1595
- "DiscoverPollEndpointResponse":{
1596
- "type":"structure",
1597
- "members":{
1598
- "endpoint":{"shape":"String"},
1599
- "telemetryEndpoint":{"shape":"String"}
1600
- }
1601
- },
1602
- "DockerLabelsMap":{
1603
- "type":"map",
1604
- "key":{"shape":"String"},
1605
- "value":{"shape":"String"}
1606
- },
1607
- "DockerVolumeConfiguration":{
1608
- "type":"structure",
1609
- "members":{
1610
- "scope":{"shape":"Scope"},
1611
- "autoprovision":{"shape":"BoxedBoolean"},
1612
- "driver":{"shape":"String"},
1613
- "driverOpts":{"shape":"StringMap"},
1614
- "labels":{"shape":"StringMap"}
1615
- }
1616
- },
1617
- "Double":{"type":"double"},
1618
- "EnvironmentVariables":{
1619
- "type":"list",
1620
- "member":{"shape":"KeyValuePair"}
1621
- },
1622
- "Failure":{
1623
- "type":"structure",
1624
- "members":{
1625
- "arn":{"shape":"String"},
1626
- "reason":{"shape":"String"},
1627
- "detail":{"shape":"String"}
1628
- }
1629
- },
1630
- "Failures":{
1631
- "type":"list",
1632
- "member":{"shape":"Failure"}
1633
- },
1634
- "FirelensConfiguration":{
1635
- "type":"structure",
1636
- "required":["type"],
1637
- "members":{
1638
- "type":{"shape":"FirelensConfigurationType"},
1639
- "options":{"shape":"FirelensConfigurationOptionsMap"}
1640
- }
1641
- },
1642
- "FirelensConfigurationOptionsMap":{
1643
- "type":"map",
1644
- "key":{"shape":"String"},
1645
- "value":{"shape":"String"}
1646
- },
1647
- "FirelensConfigurationType":{
1648
- "type":"string",
1649
- "enum":[
1650
- "fluentd",
1651
- "fluentbit"
1652
- ]
1653
- },
1654
- "GpuIds":{
1655
- "type":"list",
1656
- "member":{"shape":"String"}
1657
- },
1658
- "HealthCheck":{
1659
- "type":"structure",
1660
- "required":["command"],
1661
- "members":{
1662
- "command":{"shape":"StringList"},
1663
- "interval":{"shape":"BoxedInteger"},
1664
- "timeout":{"shape":"BoxedInteger"},
1665
- "retries":{"shape":"BoxedInteger"},
1666
- "startPeriod":{"shape":"BoxedInteger"}
1667
- }
1668
- },
1669
- "HealthStatus":{
1670
- "type":"string",
1671
- "enum":[
1672
- "HEALTHY",
1673
- "UNHEALTHY",
1674
- "UNKNOWN"
1675
- ]
1676
- },
1677
- "HostEntry":{
1678
- "type":"structure",
1679
- "required":[
1680
- "hostname",
1681
- "ipAddress"
1682
- ],
1683
- "members":{
1684
- "hostname":{"shape":"String"},
1685
- "ipAddress":{"shape":"String"}
1686
- }
1687
- },
1688
- "HostEntryList":{
1689
- "type":"list",
1690
- "member":{"shape":"HostEntry"}
1691
- },
1692
- "HostVolumeProperties":{
1693
- "type":"structure",
1694
- "members":{
1695
- "sourcePath":{"shape":"String"}
1696
- }
1697
- },
1698
- "InferenceAccelerator":{
1699
- "type":"structure",
1700
- "required":[
1701
- "deviceName",
1702
- "deviceType"
1703
- ],
1704
- "members":{
1705
- "deviceName":{"shape":"String"},
1706
- "deviceType":{"shape":"String"}
1707
- }
1708
- },
1709
- "InferenceAcceleratorOverride":{
1710
- "type":"structure",
1711
- "members":{
1712
- "deviceName":{"shape":"String"},
1713
- "deviceType":{"shape":"String"}
1714
- }
1715
- },
1716
- "InferenceAcceleratorOverrides":{
1717
- "type":"list",
1718
- "member":{"shape":"InferenceAcceleratorOverride"}
1719
- },
1720
- "InferenceAccelerators":{
1721
- "type":"list",
1722
- "member":{"shape":"InferenceAccelerator"}
1723
- },
1724
- "Integer":{"type":"integer"},
1725
- "InvalidParameterException":{
1726
- "type":"structure",
1727
- "members":{
1728
- },
1729
- "exception":true
1730
- },
1731
- "IpcMode":{
1732
- "type":"string",
1733
- "enum":[
1734
- "host",
1735
- "task",
1736
- "none"
1737
- ]
1738
- },
1739
- "KernelCapabilities":{
1740
- "type":"structure",
1741
- "members":{
1742
- "add":{"shape":"StringList"},
1743
- "drop":{"shape":"StringList"}
1744
- }
1745
- },
1746
- "KeyValuePair":{
1747
- "type":"structure",
1748
- "members":{
1749
- "name":{"shape":"String"},
1750
- "value":{"shape":"String"}
1751
- }
1752
- },
1753
- "LaunchType":{
1754
- "type":"string",
1755
- "enum":[
1756
- "EC2",
1757
- "FARGATE"
1758
- ]
1759
- },
1760
- "LimitExceededException":{
1761
- "type":"structure",
1762
- "members":{
1763
- },
1764
- "exception":true
1765
- },
1766
- "LinuxParameters":{
1767
- "type":"structure",
1768
- "members":{
1769
- "capabilities":{"shape":"KernelCapabilities"},
1770
- "devices":{"shape":"DevicesList"},
1771
- "initProcessEnabled":{"shape":"BoxedBoolean"},
1772
- "sharedMemorySize":{"shape":"BoxedInteger"},
1773
- "tmpfs":{"shape":"TmpfsList"},
1774
- "maxSwap":{"shape":"BoxedInteger"},
1775
- "swappiness":{"shape":"BoxedInteger"}
1776
- }
1777
- },
1778
- "ListAccountSettingsRequest":{
1779
- "type":"structure",
1780
- "members":{
1781
- "name":{"shape":"SettingName"},
1782
- "value":{"shape":"String"},
1783
- "principalArn":{"shape":"String"},
1784
- "effectiveSettings":{"shape":"Boolean"},
1785
- "nextToken":{"shape":"String"},
1786
- "maxResults":{"shape":"Integer"}
1787
- }
1788
- },
1789
- "ListAccountSettingsResponse":{
1790
- "type":"structure",
1791
- "members":{
1792
- "settings":{"shape":"Settings"},
1793
- "nextToken":{"shape":"String"}
1794
- }
1795
- },
1796
- "ListAttributesRequest":{
1797
- "type":"structure",
1798
- "required":["targetType"],
1799
- "members":{
1800
- "cluster":{"shape":"String"},
1801
- "targetType":{"shape":"TargetType"},
1802
- "attributeName":{"shape":"String"},
1803
- "attributeValue":{"shape":"String"},
1804
- "nextToken":{"shape":"String"},
1805
- "maxResults":{"shape":"BoxedInteger"}
1806
- }
1807
- },
1808
- "ListAttributesResponse":{
1809
- "type":"structure",
1810
- "members":{
1811
- "attributes":{"shape":"Attributes"},
1812
- "nextToken":{"shape":"String"}
1813
- }
1814
- },
1815
- "ListClustersRequest":{
1816
- "type":"structure",
1817
- "members":{
1818
- "nextToken":{"shape":"String"},
1819
- "maxResults":{"shape":"BoxedInteger"}
1820
- }
1821
- },
1822
- "ListClustersResponse":{
1823
- "type":"structure",
1824
- "members":{
1825
- "clusterArns":{"shape":"StringList"},
1826
- "nextToken":{"shape":"String"}
1827
- }
1828
- },
1829
- "ListContainerInstancesRequest":{
1830
- "type":"structure",
1831
- "members":{
1832
- "cluster":{"shape":"String"},
1833
- "filter":{"shape":"String"},
1834
- "nextToken":{"shape":"String"},
1835
- "maxResults":{"shape":"BoxedInteger"},
1836
- "status":{"shape":"ContainerInstanceStatus"}
1837
- }
1838
- },
1839
- "ListContainerInstancesResponse":{
1840
- "type":"structure",
1841
- "members":{
1842
- "containerInstanceArns":{"shape":"StringList"},
1843
- "nextToken":{"shape":"String"}
1844
- }
1845
- },
1846
- "ListServicesRequest":{
1847
- "type":"structure",
1848
- "members":{
1849
- "cluster":{"shape":"String"},
1850
- "nextToken":{"shape":"String"},
1851
- "maxResults":{"shape":"BoxedInteger"},
1852
- "launchType":{"shape":"LaunchType"},
1853
- "schedulingStrategy":{"shape":"SchedulingStrategy"}
1854
- }
1855
- },
1856
- "ListServicesResponse":{
1857
- "type":"structure",
1858
- "members":{
1859
- "serviceArns":{"shape":"StringList"},
1860
- "nextToken":{"shape":"String"}
1861
- }
1862
- },
1863
- "ListTagsForResourceRequest":{
1864
- "type":"structure",
1865
- "required":["resourceArn"],
1866
- "members":{
1867
- "resourceArn":{"shape":"String"}
1868
- }
1869
- },
1870
- "ListTagsForResourceResponse":{
1871
- "type":"structure",
1872
- "members":{
1873
- "tags":{"shape":"Tags"}
1874
- }
1875
- },
1876
- "ListTaskDefinitionFamiliesRequest":{
1877
- "type":"structure",
1878
- "members":{
1879
- "familyPrefix":{"shape":"String"},
1880
- "status":{"shape":"TaskDefinitionFamilyStatus"},
1881
- "nextToken":{"shape":"String"},
1882
- "maxResults":{"shape":"BoxedInteger"}
1883
- }
1884
- },
1885
- "ListTaskDefinitionFamiliesResponse":{
1886
- "type":"structure",
1887
- "members":{
1888
- "families":{"shape":"StringList"},
1889
- "nextToken":{"shape":"String"}
1890
- }
1891
- },
1892
- "ListTaskDefinitionsRequest":{
1893
- "type":"structure",
1894
- "members":{
1895
- "familyPrefix":{"shape":"String"},
1896
- "status":{"shape":"TaskDefinitionStatus"},
1897
- "sort":{"shape":"SortOrder"},
1898
- "nextToken":{"shape":"String"},
1899
- "maxResults":{"shape":"BoxedInteger"}
1900
- }
1901
- },
1902
- "ListTaskDefinitionsResponse":{
1903
- "type":"structure",
1904
- "members":{
1905
- "taskDefinitionArns":{"shape":"StringList"},
1906
- "nextToken":{"shape":"String"}
1907
- }
1908
- },
1909
- "ListTasksRequest":{
1910
- "type":"structure",
1911
- "members":{
1912
- "cluster":{"shape":"String"},
1913
- "containerInstance":{"shape":"String"},
1914
- "family":{"shape":"String"},
1915
- "nextToken":{"shape":"String"},
1916
- "maxResults":{"shape":"BoxedInteger"},
1917
- "startedBy":{"shape":"String"},
1918
- "serviceName":{"shape":"String"},
1919
- "desiredStatus":{"shape":"DesiredStatus"},
1920
- "launchType":{"shape":"LaunchType"}
1921
- }
1922
- },
1923
- "ListTasksResponse":{
1924
- "type":"structure",
1925
- "members":{
1926
- "taskArns":{"shape":"StringList"},
1927
- "nextToken":{"shape":"String"}
1928
- }
1929
- },
1930
- "LoadBalancer":{
1931
- "type":"structure",
1932
- "members":{
1933
- "targetGroupArn":{"shape":"String"},
1934
- "loadBalancerName":{"shape":"String"},
1935
- "containerName":{"shape":"String"},
1936
- "containerPort":{"shape":"BoxedInteger"}
1937
- }
1938
- },
1939
- "LoadBalancers":{
1940
- "type":"list",
1941
- "member":{"shape":"LoadBalancer"}
1942
- },
1943
- "LogConfiguration":{
1944
- "type":"structure",
1945
- "required":["logDriver"],
1946
- "members":{
1947
- "logDriver":{"shape":"LogDriver"},
1948
- "options":{"shape":"LogConfigurationOptionsMap"},
1949
- "secretOptions":{"shape":"SecretList"}
1950
- }
1951
- },
1952
- "LogConfigurationOptionsMap":{
1953
- "type":"map",
1954
- "key":{"shape":"String"},
1955
- "value":{"shape":"String"}
1956
- },
1957
- "LogDriver":{
1958
- "type":"string",
1959
- "enum":[
1960
- "json-file",
1961
- "syslog",
1962
- "journald",
1963
- "gelf",
1964
- "fluentd",
1965
- "awslogs",
1966
- "splunk",
1967
- "awsfirelens"
1968
- ]
1969
- },
1970
- "Long":{"type":"long"},
1971
- "ManagedScaling":{
1972
- "type":"structure",
1973
- "members":{
1974
- "status":{"shape":"ManagedScalingStatus"},
1975
- "targetCapacity":{"shape":"ManagedScalingTargetCapacity"},
1976
- "minimumScalingStepSize":{"shape":"ManagedScalingStepSize"},
1977
- "maximumScalingStepSize":{"shape":"ManagedScalingStepSize"}
1978
- }
1979
- },
1980
- "ManagedScalingStatus":{
1981
- "type":"string",
1982
- "enum":[
1983
- "ENABLED",
1984
- "DISABLED"
1985
- ]
1986
- },
1987
- "ManagedScalingStepSize":{
1988
- "type":"integer",
1989
- "max":10000,
1990
- "min":1
1991
- },
1992
- "ManagedScalingTargetCapacity":{
1993
- "type":"integer",
1994
- "max":100,
1995
- "min":1
1996
- },
1997
- "ManagedTerminationProtection":{
1998
- "type":"string",
1999
- "enum":[
2000
- "ENABLED",
2001
- "DISABLED"
2002
- ]
2003
- },
2004
- "MissingVersionException":{
2005
- "type":"structure",
2006
- "members":{
2007
- },
2008
- "exception":true
2009
- },
2010
- "MountPoint":{
2011
- "type":"structure",
2012
- "members":{
2013
- "sourceVolume":{"shape":"String"},
2014
- "containerPath":{"shape":"String"},
2015
- "readOnly":{"shape":"BoxedBoolean"}
2016
- }
2017
- },
2018
- "MountPointList":{
2019
- "type":"list",
2020
- "member":{"shape":"MountPoint"}
2021
- },
2022
- "NetworkBinding":{
2023
- "type":"structure",
2024
- "members":{
2025
- "bindIP":{"shape":"String"},
2026
- "containerPort":{"shape":"BoxedInteger"},
2027
- "hostPort":{"shape":"BoxedInteger"},
2028
- "protocol":{"shape":"TransportProtocol"}
2029
- }
2030
- },
2031
- "NetworkBindings":{
2032
- "type":"list",
2033
- "member":{"shape":"NetworkBinding"}
2034
- },
2035
- "NetworkConfiguration":{
2036
- "type":"structure",
2037
- "members":{
2038
- "awsvpcConfiguration":{"shape":"AwsVpcConfiguration"}
2039
- }
2040
- },
2041
- "NetworkInterface":{
2042
- "type":"structure",
2043
- "members":{
2044
- "attachmentId":{"shape":"String"},
2045
- "privateIpv4Address":{"shape":"String"},
2046
- "ipv6Address":{"shape":"String"}
2047
- }
2048
- },
2049
- "NetworkInterfaces":{
2050
- "type":"list",
2051
- "member":{"shape":"NetworkInterface"}
2052
- },
2053
- "NetworkMode":{
2054
- "type":"string",
2055
- "enum":[
2056
- "bridge",
2057
- "host",
2058
- "awsvpc",
2059
- "none"
2060
- ]
2061
- },
2062
- "NoUpdateAvailableException":{
2063
- "type":"structure",
2064
- "members":{
2065
- },
2066
- "exception":true
2067
- },
2068
- "PidMode":{
2069
- "type":"string",
2070
- "enum":[
2071
- "host",
2072
- "task"
2073
- ]
2074
- },
2075
- "PlacementConstraint":{
2076
- "type":"structure",
2077
- "members":{
2078
- "type":{"shape":"PlacementConstraintType"},
2079
- "expression":{"shape":"String"}
2080
- }
2081
- },
2082
- "PlacementConstraintType":{
2083
- "type":"string",
2084
- "enum":[
2085
- "distinctInstance",
2086
- "memberOf"
2087
- ]
2088
- },
2089
- "PlacementConstraints":{
2090
- "type":"list",
2091
- "member":{"shape":"PlacementConstraint"}
2092
- },
2093
- "PlacementStrategies":{
2094
- "type":"list",
2095
- "member":{"shape":"PlacementStrategy"}
2096
- },
2097
- "PlacementStrategy":{
2098
- "type":"structure",
2099
- "members":{
2100
- "type":{"shape":"PlacementStrategyType"},
2101
- "field":{"shape":"String"}
2102
- }
2103
- },
2104
- "PlacementStrategyType":{
2105
- "type":"string",
2106
- "enum":[
2107
- "random",
2108
- "spread",
2109
- "binpack"
2110
- ]
2111
- },
2112
- "PlatformDevice":{
2113
- "type":"structure",
2114
- "required":[
2115
- "id",
2116
- "type"
2117
- ],
2118
- "members":{
2119
- "id":{"shape":"String"},
2120
- "type":{"shape":"PlatformDeviceType"}
2121
- }
2122
- },
2123
- "PlatformDeviceType":{
2124
- "type":"string",
2125
- "enum":["GPU"]
2126
- },
2127
- "PlatformDevices":{
2128
- "type":"list",
2129
- "member":{"shape":"PlatformDevice"}
2130
- },
2131
- "PlatformTaskDefinitionIncompatibilityException":{
2132
- "type":"structure",
2133
- "members":{
2134
- },
2135
- "exception":true
2136
- },
2137
- "PlatformUnknownException":{
2138
- "type":"structure",
2139
- "members":{
2140
- },
2141
- "exception":true
2142
- },
2143
- "PortMapping":{
2144
- "type":"structure",
2145
- "members":{
2146
- "containerPort":{"shape":"BoxedInteger"},
2147
- "hostPort":{"shape":"BoxedInteger"},
2148
- "protocol":{"shape":"TransportProtocol"}
2149
- }
2150
- },
2151
- "PortMappingList":{
2152
- "type":"list",
2153
- "member":{"shape":"PortMapping"}
2154
- },
2155
- "PropagateTags":{
2156
- "type":"string",
2157
- "enum":[
2158
- "TASK_DEFINITION",
2159
- "SERVICE"
2160
- ]
2161
- },
2162
- "ProxyConfiguration":{
2163
- "type":"structure",
2164
- "required":["containerName"],
2165
- "members":{
2166
- "type":{"shape":"ProxyConfigurationType"},
2167
- "containerName":{"shape":"String"},
2168
- "properties":{"shape":"ProxyConfigurationProperties"}
2169
- }
2170
- },
2171
- "ProxyConfigurationProperties":{
2172
- "type":"list",
2173
- "member":{"shape":"KeyValuePair"}
2174
- },
2175
- "ProxyConfigurationType":{
2176
- "type":"string",
2177
- "enum":["APPMESH"]
2178
- },
2179
- "PutAccountSettingDefaultRequest":{
2180
- "type":"structure",
2181
- "required":[
2182
- "name",
2183
- "value"
2184
- ],
2185
- "members":{
2186
- "name":{"shape":"SettingName"},
2187
- "value":{"shape":"String"}
2188
- }
2189
- },
2190
- "PutAccountSettingDefaultResponse":{
2191
- "type":"structure",
2192
- "members":{
2193
- "setting":{"shape":"Setting"}
2194
- }
2195
- },
2196
- "PutAccountSettingRequest":{
2197
- "type":"structure",
2198
- "required":[
2199
- "name",
2200
- "value"
2201
- ],
2202
- "members":{
2203
- "name":{"shape":"SettingName"},
2204
- "value":{"shape":"String"},
2205
- "principalArn":{"shape":"String"}
2206
- }
2207
- },
2208
- "PutAccountSettingResponse":{
2209
- "type":"structure",
2210
- "members":{
2211
- "setting":{"shape":"Setting"}
2212
- }
2213
- },
2214
- "PutAttributesRequest":{
2215
- "type":"structure",
2216
- "required":["attributes"],
2217
- "members":{
2218
- "cluster":{"shape":"String"},
2219
- "attributes":{"shape":"Attributes"}
2220
- }
2221
- },
2222
- "PutAttributesResponse":{
2223
- "type":"structure",
2224
- "members":{
2225
- "attributes":{"shape":"Attributes"}
2226
- }
2227
- },
2228
- "PutClusterCapacityProvidersRequest":{
2229
- "type":"structure",
2230
- "required":[
2231
- "cluster",
2232
- "capacityProviders",
2233
- "defaultCapacityProviderStrategy"
2234
- ],
2235
- "members":{
2236
- "cluster":{"shape":"String"},
2237
- "capacityProviders":{"shape":"StringList"},
2238
- "defaultCapacityProviderStrategy":{"shape":"CapacityProviderStrategy"}
2239
- }
2240
- },
2241
- "PutClusterCapacityProvidersResponse":{
2242
- "type":"structure",
2243
- "members":{
2244
- "cluster":{"shape":"Cluster"}
2245
- }
2246
- },
2247
- "RegisterContainerInstanceRequest":{
2248
- "type":"structure",
2249
- "members":{
2250
- "cluster":{"shape":"String"},
2251
- "instanceIdentityDocument":{"shape":"String"},
2252
- "instanceIdentityDocumentSignature":{"shape":"String"},
2253
- "totalResources":{"shape":"Resources"},
2254
- "versionInfo":{"shape":"VersionInfo"},
2255
- "containerInstanceArn":{"shape":"String"},
2256
- "attributes":{"shape":"Attributes"},
2257
- "platformDevices":{"shape":"PlatformDevices"},
2258
- "tags":{"shape":"Tags"}
2259
- }
2260
- },
2261
- "RegisterContainerInstanceResponse":{
2262
- "type":"structure",
2263
- "members":{
2264
- "containerInstance":{"shape":"ContainerInstance"}
2265
- }
2266
- },
2267
- "RegisterTaskDefinitionRequest":{
2268
- "type":"structure",
2269
- "required":[
2270
- "family",
2271
- "containerDefinitions"
2272
- ],
2273
- "members":{
2274
- "family":{"shape":"String"},
2275
- "taskRoleArn":{"shape":"String"},
2276
- "executionRoleArn":{"shape":"String"},
2277
- "networkMode":{"shape":"NetworkMode"},
2278
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2279
- "volumes":{"shape":"VolumeList"},
2280
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2281
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2282
- "cpu":{"shape":"String"},
2283
- "memory":{"shape":"String"},
2284
- "tags":{"shape":"Tags"},
2285
- "pidMode":{"shape":"PidMode"},
2286
- "ipcMode":{"shape":"IpcMode"},
2287
- "proxyConfiguration":{"shape":"ProxyConfiguration"},
2288
- "inferenceAccelerators":{"shape":"InferenceAccelerators"}
2289
- }
2290
- },
2291
- "RegisterTaskDefinitionResponse":{
2292
- "type":"structure",
2293
- "members":{
2294
- "taskDefinition":{"shape":"TaskDefinition"},
2295
- "tags":{"shape":"Tags"}
2296
- }
2297
- },
2298
- "RepositoryCredentials":{
2299
- "type":"structure",
2300
- "required":["credentialsParameter"],
2301
- "members":{
2302
- "credentialsParameter":{"shape":"String"}
2303
- }
2304
- },
2305
- "RequiresAttributes":{
2306
- "type":"list",
2307
- "member":{"shape":"Attribute"}
2308
- },
2309
- "Resource":{
2310
- "type":"structure",
2311
- "members":{
2312
- "name":{"shape":"String"},
2313
- "type":{"shape":"String"},
2314
- "doubleValue":{"shape":"Double"},
2315
- "longValue":{"shape":"Long"},
2316
- "integerValue":{"shape":"Integer"},
2317
- "stringSetValue":{"shape":"StringList"}
2318
- }
2319
- },
2320
- "ResourceInUseException":{
2321
- "type":"structure",
2322
- "members":{
2323
- },
2324
- "exception":true
2325
- },
2326
- "ResourceNotFoundException":{
2327
- "type":"structure",
2328
- "members":{
2329
- },
2330
- "exception":true
2331
- },
2332
- "ResourceRequirement":{
2333
- "type":"structure",
2334
- "required":[
2335
- "value",
2336
- "type"
2337
- ],
2338
- "members":{
2339
- "value":{"shape":"String"},
2340
- "type":{"shape":"ResourceType"}
2341
- }
2342
- },
2343
- "ResourceRequirements":{
2344
- "type":"list",
2345
- "member":{"shape":"ResourceRequirement"}
2346
- },
2347
- "ResourceType":{
2348
- "type":"string",
2349
- "enum":[
2350
- "GPU",
2351
- "InferenceAccelerator"
2352
- ]
2353
- },
2354
- "Resources":{
2355
- "type":"list",
2356
- "member":{"shape":"Resource"}
2357
- },
2358
- "RunTaskRequest":{
2359
- "type":"structure",
2360
- "required":["taskDefinition"],
2361
- "members":{
2362
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
2363
- "cluster":{"shape":"String"},
2364
- "count":{"shape":"BoxedInteger"},
2365
- "enableECSManagedTags":{"shape":"Boolean"},
2366
- "group":{"shape":"String"},
2367
- "launchType":{"shape":"LaunchType"},
2368
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2369
- "overrides":{"shape":"TaskOverride"},
2370
- "placementConstraints":{"shape":"PlacementConstraints"},
2371
- "placementStrategy":{"shape":"PlacementStrategies"},
2372
- "platformVersion":{"shape":"String"},
2373
- "propagateTags":{"shape":"PropagateTags"},
2374
- "referenceId":{"shape":"String"},
2375
- "startedBy":{"shape":"String"},
2376
- "tags":{"shape":"Tags"},
2377
- "taskDefinition":{"shape":"String"}
2378
- }
2379
- },
2380
- "RunTaskResponse":{
2381
- "type":"structure",
2382
- "members":{
2383
- "tasks":{"shape":"Tasks"},
2384
- "failures":{"shape":"Failures"}
2385
- }
2386
- },
2387
- "Scale":{
2388
- "type":"structure",
2389
- "members":{
2390
- "value":{"shape":"Double"},
2391
- "unit":{"shape":"ScaleUnit"}
2392
- }
2393
- },
2394
- "ScaleUnit":{
2395
- "type":"string",
2396
- "enum":["PERCENT"]
2397
- },
2398
- "SchedulingStrategy":{
2399
- "type":"string",
2400
- "enum":[
2401
- "REPLICA",
2402
- "DAEMON"
2403
- ]
2404
- },
2405
- "Scope":{
2406
- "type":"string",
2407
- "enum":[
2408
- "task",
2409
- "shared"
2410
- ]
2411
- },
2412
- "Secret":{
2413
- "type":"structure",
2414
- "required":[
2415
- "name",
2416
- "valueFrom"
2417
- ],
2418
- "members":{
2419
- "name":{"shape":"String"},
2420
- "valueFrom":{"shape":"String"}
2421
- }
2422
- },
2423
- "SecretList":{
2424
- "type":"list",
2425
- "member":{"shape":"Secret"}
2426
- },
2427
- "ServerException":{
2428
- "type":"structure",
2429
- "members":{
2430
- "message":{"shape":"String"}
2431
- },
2432
- "exception":true,
2433
- "fault":true
2434
- },
2435
- "Service":{
2436
- "type":"structure",
2437
- "members":{
2438
- "serviceArn":{"shape":"String"},
2439
- "serviceName":{"shape":"String"},
2440
- "clusterArn":{"shape":"String"},
2441
- "loadBalancers":{"shape":"LoadBalancers"},
2442
- "serviceRegistries":{"shape":"ServiceRegistries"},
2443
- "status":{"shape":"String"},
2444
- "desiredCount":{"shape":"Integer"},
2445
- "runningCount":{"shape":"Integer"},
2446
- "pendingCount":{"shape":"Integer"},
2447
- "launchType":{"shape":"LaunchType"},
2448
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
2449
- "platformVersion":{"shape":"String"},
2450
- "taskDefinition":{"shape":"String"},
2451
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
2452
- "taskSets":{"shape":"TaskSets"},
2453
- "deployments":{"shape":"Deployments"},
2454
- "roleArn":{"shape":"String"},
2455
- "events":{"shape":"ServiceEvents"},
2456
- "createdAt":{"shape":"Timestamp"},
2457
- "placementConstraints":{"shape":"PlacementConstraints"},
2458
- "placementStrategy":{"shape":"PlacementStrategies"},
2459
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2460
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
2461
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
2462
- "deploymentController":{"shape":"DeploymentController"},
2463
- "tags":{"shape":"Tags"},
2464
- "createdBy":{"shape":"String"},
2465
- "enableECSManagedTags":{"shape":"Boolean"},
2466
- "propagateTags":{"shape":"PropagateTags"}
2467
- }
2468
- },
2469
- "ServiceEvent":{
2470
- "type":"structure",
2471
- "members":{
2472
- "id":{"shape":"String"},
2473
- "createdAt":{"shape":"Timestamp"},
2474
- "message":{"shape":"String"}
2475
- }
2476
- },
2477
- "ServiceEvents":{
2478
- "type":"list",
2479
- "member":{"shape":"ServiceEvent"}
2480
- },
2481
- "ServiceField":{
2482
- "type":"string",
2483
- "enum":["TAGS"]
2484
- },
2485
- "ServiceFieldList":{
2486
- "type":"list",
2487
- "member":{"shape":"ServiceField"}
2488
- },
2489
- "ServiceNotActiveException":{
2490
- "type":"structure",
2491
- "members":{
2492
- },
2493
- "exception":true
2494
- },
2495
- "ServiceNotFoundException":{
2496
- "type":"structure",
2497
- "members":{
2498
- },
2499
- "exception":true
2500
- },
2501
- "ServiceRegistries":{
2502
- "type":"list",
2503
- "member":{"shape":"ServiceRegistry"}
2504
- },
2505
- "ServiceRegistry":{
2506
- "type":"structure",
2507
- "members":{
2508
- "registryArn":{"shape":"String"},
2509
- "port":{"shape":"BoxedInteger"},
2510
- "containerName":{"shape":"String"},
2511
- "containerPort":{"shape":"BoxedInteger"}
2512
- }
2513
- },
2514
- "Services":{
2515
- "type":"list",
2516
- "member":{"shape":"Service"}
2517
- },
2518
- "Setting":{
2519
- "type":"structure",
2520
- "members":{
2521
- "name":{"shape":"SettingName"},
2522
- "value":{"shape":"String"},
2523
- "principalArn":{"shape":"String"}
2524
- }
2525
- },
2526
- "SettingName":{
2527
- "type":"string",
2528
- "enum":[
2529
- "serviceLongArnFormat",
2530
- "taskLongArnFormat",
2531
- "containerInstanceLongArnFormat",
2532
- "awsvpcTrunking",
2533
- "containerInsights"
2534
- ]
2535
- },
2536
- "Settings":{
2537
- "type":"list",
2538
- "member":{"shape":"Setting"}
2539
- },
2540
- "SortOrder":{
2541
- "type":"string",
2542
- "enum":[
2543
- "ASC",
2544
- "DESC"
2545
- ]
2546
- },
2547
- "StabilityStatus":{
2548
- "type":"string",
2549
- "enum":[
2550
- "STEADY_STATE",
2551
- "STABILIZING"
2552
- ]
2553
- },
2554
- "StartTaskRequest":{
2555
- "type":"structure",
2556
- "required":[
2557
- "containerInstances",
2558
- "taskDefinition"
2559
- ],
2560
- "members":{
2561
- "cluster":{"shape":"String"},
2562
- "containerInstances":{"shape":"StringList"},
2563
- "enableECSManagedTags":{"shape":"Boolean"},
2564
- "group":{"shape":"String"},
2565
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2566
- "overrides":{"shape":"TaskOverride"},
2567
- "propagateTags":{"shape":"PropagateTags"},
2568
- "referenceId":{"shape":"String"},
2569
- "startedBy":{"shape":"String"},
2570
- "tags":{"shape":"Tags"},
2571
- "taskDefinition":{"shape":"String"}
2572
- }
2573
- },
2574
- "StartTaskResponse":{
2575
- "type":"structure",
2576
- "members":{
2577
- "tasks":{"shape":"Tasks"},
2578
- "failures":{"shape":"Failures"}
2579
- }
2580
- },
2581
- "Statistics":{
2582
- "type":"list",
2583
- "member":{"shape":"KeyValuePair"}
2584
- },
2585
- "StopTaskRequest":{
2586
- "type":"structure",
2587
- "required":["task"],
2588
- "members":{
2589
- "cluster":{"shape":"String"},
2590
- "task":{"shape":"String"},
2591
- "reason":{"shape":"String"}
2592
- }
2593
- },
2594
- "StopTaskResponse":{
2595
- "type":"structure",
2596
- "members":{
2597
- "task":{"shape":"Task"}
2598
- }
2599
- },
2600
- "String":{"type":"string"},
2601
- "StringList":{
2602
- "type":"list",
2603
- "member":{"shape":"String"}
2604
- },
2605
- "StringMap":{
2606
- "type":"map",
2607
- "key":{"shape":"String"},
2608
- "value":{"shape":"String"}
2609
- },
2610
- "SubmitAttachmentStateChangesRequest":{
2611
- "type":"structure",
2612
- "required":["attachments"],
2613
- "members":{
2614
- "cluster":{"shape":"String"},
2615
- "attachments":{"shape":"AttachmentStateChanges"}
2616
- }
2617
- },
2618
- "SubmitAttachmentStateChangesResponse":{
2619
- "type":"structure",
2620
- "members":{
2621
- "acknowledgment":{"shape":"String"}
2622
- }
2623
- },
2624
- "SubmitContainerStateChangeRequest":{
2625
- "type":"structure",
2626
- "members":{
2627
- "cluster":{"shape":"String"},
2628
- "task":{"shape":"String"},
2629
- "containerName":{"shape":"String"},
2630
- "runtimeId":{"shape":"String"},
2631
- "status":{"shape":"String"},
2632
- "exitCode":{"shape":"BoxedInteger"},
2633
- "reason":{"shape":"String"},
2634
- "networkBindings":{"shape":"NetworkBindings"}
2635
- }
2636
- },
2637
- "SubmitContainerStateChangeResponse":{
2638
- "type":"structure",
2639
- "members":{
2640
- "acknowledgment":{"shape":"String"}
2641
- }
2642
- },
2643
- "SubmitTaskStateChangeRequest":{
2644
- "type":"structure",
2645
- "members":{
2646
- "cluster":{"shape":"String"},
2647
- "task":{"shape":"String"},
2648
- "status":{"shape":"String"},
2649
- "reason":{"shape":"String"},
2650
- "containers":{"shape":"ContainerStateChanges"},
2651
- "attachments":{"shape":"AttachmentStateChanges"},
2652
- "pullStartedAt":{"shape":"Timestamp"},
2653
- "pullStoppedAt":{"shape":"Timestamp"},
2654
- "executionStoppedAt":{"shape":"Timestamp"}
2655
- }
2656
- },
2657
- "SubmitTaskStateChangeResponse":{
2658
- "type":"structure",
2659
- "members":{
2660
- "acknowledgment":{"shape":"String"}
2661
- }
2662
- },
2663
- "SystemControl":{
2664
- "type":"structure",
2665
- "members":{
2666
- "namespace":{"shape":"String"},
2667
- "value":{"shape":"String"}
2668
- }
2669
- },
2670
- "SystemControls":{
2671
- "type":"list",
2672
- "member":{"shape":"SystemControl"}
2673
- },
2674
- "Tag":{
2675
- "type":"structure",
2676
- "members":{
2677
- "key":{"shape":"TagKey"},
2678
- "value":{"shape":"TagValue"}
2679
- }
2680
- },
2681
- "TagKey":{
2682
- "type":"string",
2683
- "max":128,
2684
- "min":1,
2685
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2686
- },
2687
- "TagKeys":{
2688
- "type":"list",
2689
- "member":{"shape":"TagKey"}
2690
- },
2691
- "TagResourceRequest":{
2692
- "type":"structure",
2693
- "required":[
2694
- "resourceArn",
2695
- "tags"
2696
- ],
2697
- "members":{
2698
- "resourceArn":{"shape":"String"},
2699
- "tags":{"shape":"Tags"}
2700
- }
2701
- },
2702
- "TagResourceResponse":{
2703
- "type":"structure",
2704
- "members":{
2705
- }
2706
- },
2707
- "TagValue":{
2708
- "type":"string",
2709
- "max":256,
2710
- "min":0,
2711
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2712
- },
2713
- "Tags":{
2714
- "type":"list",
2715
- "member":{"shape":"Tag"},
2716
- "max":50,
2717
- "min":0
2718
- },
2719
- "TargetNotFoundException":{
2720
- "type":"structure",
2721
- "members":{
2722
- },
2723
- "exception":true
2724
- },
2725
- "TargetType":{
2726
- "type":"string",
2727
- "enum":["container-instance"]
2728
- },
2729
- "Task":{
2730
- "type":"structure",
2731
- "members":{
2732
- "attachments":{"shape":"Attachments"},
2733
- "attributes":{"shape":"Attributes"},
2734
- "availabilityZone":{"shape":"String"},
2735
- "capacityProviderName":{"shape":"String"},
2736
- "clusterArn":{"shape":"String"},
2737
- "connectivity":{"shape":"Connectivity"},
2738
- "connectivityAt":{"shape":"Timestamp"},
2739
- "containerInstanceArn":{"shape":"String"},
2740
- "containers":{"shape":"Containers"},
2741
- "cpu":{"shape":"String"},
2742
- "createdAt":{"shape":"Timestamp"},
2743
- "desiredStatus":{"shape":"String"},
2744
- "executionStoppedAt":{"shape":"Timestamp"},
2745
- "group":{"shape":"String"},
2746
- "healthStatus":{"shape":"HealthStatus"},
2747
- "inferenceAccelerators":{"shape":"InferenceAccelerators"},
2748
- "lastStatus":{"shape":"String"},
2749
- "launchType":{"shape":"LaunchType"},
2750
- "memory":{"shape":"String"},
2751
- "overrides":{"shape":"TaskOverride"},
2752
- "platformVersion":{"shape":"String"},
2753
- "pullStartedAt":{"shape":"Timestamp"},
2754
- "pullStoppedAt":{"shape":"Timestamp"},
2755
- "startedAt":{"shape":"Timestamp"},
2756
- "startedBy":{"shape":"String"},
2757
- "stopCode":{"shape":"TaskStopCode"},
2758
- "stoppedAt":{"shape":"Timestamp"},
2759
- "stoppedReason":{"shape":"String"},
2760
- "stoppingAt":{"shape":"Timestamp"},
2761
- "tags":{"shape":"Tags"},
2762
- "taskArn":{"shape":"String"},
2763
- "taskDefinitionArn":{"shape":"String"},
2764
- "version":{"shape":"Long"}
2765
- }
2766
- },
2767
- "TaskDefinition":{
2768
- "type":"structure",
2769
- "members":{
2770
- "taskDefinitionArn":{"shape":"String"},
2771
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2772
- "family":{"shape":"String"},
2773
- "taskRoleArn":{"shape":"String"},
2774
- "executionRoleArn":{"shape":"String"},
2775
- "networkMode":{"shape":"NetworkMode"},
2776
- "revision":{"shape":"Integer"},
2777
- "volumes":{"shape":"VolumeList"},
2778
- "status":{"shape":"TaskDefinitionStatus"},
2779
- "requiresAttributes":{"shape":"RequiresAttributes"},
2780
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2781
- "compatibilities":{"shape":"CompatibilityList"},
2782
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2783
- "cpu":{"shape":"String"},
2784
- "memory":{"shape":"String"},
2785
- "inferenceAccelerators":{"shape":"InferenceAccelerators"},
2786
- "pidMode":{"shape":"PidMode"},
2787
- "ipcMode":{"shape":"IpcMode"},
2788
- "proxyConfiguration":{"shape":"ProxyConfiguration"}
2789
- }
2790
- },
2791
- "TaskDefinitionFamilyStatus":{
2792
- "type":"string",
2793
- "enum":[
2794
- "ACTIVE",
2795
- "INACTIVE",
2796
- "ALL"
2797
- ]
2798
- },
2799
- "TaskDefinitionField":{
2800
- "type":"string",
2801
- "enum":["TAGS"]
2802
- },
2803
- "TaskDefinitionFieldList":{
2804
- "type":"list",
2805
- "member":{"shape":"TaskDefinitionField"}
2806
- },
2807
- "TaskDefinitionPlacementConstraint":{
2808
- "type":"structure",
2809
- "members":{
2810
- "type":{"shape":"TaskDefinitionPlacementConstraintType"},
2811
- "expression":{"shape":"String"}
2812
- }
2813
- },
2814
- "TaskDefinitionPlacementConstraintType":{
2815
- "type":"string",
2816
- "enum":["memberOf"]
2817
- },
2818
- "TaskDefinitionPlacementConstraints":{
2819
- "type":"list",
2820
- "member":{"shape":"TaskDefinitionPlacementConstraint"}
2821
- },
2822
- "TaskDefinitionStatus":{
2823
- "type":"string",
2824
- "enum":[
2825
- "ACTIVE",
2826
- "INACTIVE"
2827
- ]
2828
- },
2829
- "TaskField":{
2830
- "type":"string",
2831
- "enum":["TAGS"]
2832
- },
2833
- "TaskFieldList":{
2834
- "type":"list",
2835
- "member":{"shape":"TaskField"}
2836
- },
2837
- "TaskOverride":{
2838
- "type":"structure",
2839
- "members":{
2840
- "containerOverrides":{"shape":"ContainerOverrides"},
2841
- "cpu":{"shape":"String"},
2842
- "inferenceAcceleratorOverrides":{"shape":"InferenceAcceleratorOverrides"},
2843
- "executionRoleArn":{"shape":"String"},
2844
- "memory":{"shape":"String"},
2845
- "taskRoleArn":{"shape":"String"}
2846
- }
2847
- },
2848
- "TaskSet":{
2849
- "type":"structure",
2850
- "members":{
2851
- "id":{"shape":"String"},
2852
- "taskSetArn":{"shape":"String"},
2853
- "serviceArn":{"shape":"String"},
2854
- "clusterArn":{"shape":"String"},
2855
- "startedBy":{"shape":"String"},
2856
- "externalId":{"shape":"String"},
2857
- "status":{"shape":"String"},
2858
- "taskDefinition":{"shape":"String"},
2859
- "computedDesiredCount":{"shape":"Integer"},
2860
- "pendingCount":{"shape":"Integer"},
2861
- "runningCount":{"shape":"Integer"},
2862
- "createdAt":{"shape":"Timestamp"},
2863
- "updatedAt":{"shape":"Timestamp"},
2864
- "launchType":{"shape":"LaunchType"},
2865
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
2866
- "platformVersion":{"shape":"String"},
2867
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2868
- "loadBalancers":{"shape":"LoadBalancers"},
2869
- "serviceRegistries":{"shape":"ServiceRegistries"},
2870
- "scale":{"shape":"Scale"},
2871
- "stabilityStatus":{"shape":"StabilityStatus"},
2872
- "stabilityStatusAt":{"shape":"Timestamp"}
2873
- }
2874
- },
2875
- "TaskSetNotFoundException":{
2876
- "type":"structure",
2877
- "members":{
2878
- },
2879
- "exception":true
2880
- },
2881
- "TaskSets":{
2882
- "type":"list",
2883
- "member":{"shape":"TaskSet"}
2884
- },
2885
- "TaskStopCode":{
2886
- "type":"string",
2887
- "enum":[
2888
- "TaskFailedToStart",
2889
- "EssentialContainerExited",
2890
- "UserInitiated"
2891
- ]
2892
- },
2893
- "Tasks":{
2894
- "type":"list",
2895
- "member":{"shape":"Task"}
2896
- },
2897
- "Timestamp":{"type":"timestamp"},
2898
- "Tmpfs":{
2899
- "type":"structure",
2900
- "required":[
2901
- "containerPath",
2902
- "size"
2903
- ],
2904
- "members":{
2905
- "containerPath":{"shape":"String"},
2906
- "size":{"shape":"Integer"},
2907
- "mountOptions":{"shape":"StringList"}
2908
- }
2909
- },
2910
- "TmpfsList":{
2911
- "type":"list",
2912
- "member":{"shape":"Tmpfs"}
2913
- },
2914
- "TransportProtocol":{
2915
- "type":"string",
2916
- "enum":[
2917
- "tcp",
2918
- "udp"
2919
- ]
2920
- },
2921
- "Ulimit":{
2922
- "type":"structure",
2923
- "required":[
2924
- "name",
2925
- "softLimit",
2926
- "hardLimit"
2927
- ],
2928
- "members":{
2929
- "name":{"shape":"UlimitName"},
2930
- "softLimit":{"shape":"Integer"},
2931
- "hardLimit":{"shape":"Integer"}
2932
- }
2933
- },
2934
- "UlimitList":{
2935
- "type":"list",
2936
- "member":{"shape":"Ulimit"}
2937
- },
2938
- "UlimitName":{
2939
- "type":"string",
2940
- "enum":[
2941
- "core",
2942
- "cpu",
2943
- "data",
2944
- "fsize",
2945
- "locks",
2946
- "memlock",
2947
- "msgqueue",
2948
- "nice",
2949
- "nofile",
2950
- "nproc",
2951
- "rss",
2952
- "rtprio",
2953
- "rttime",
2954
- "sigpending",
2955
- "stack"
2956
- ]
2957
- },
2958
- "UnsupportedFeatureException":{
2959
- "type":"structure",
2960
- "members":{
2961
- },
2962
- "exception":true
2963
- },
2964
- "UntagResourceRequest":{
2965
- "type":"structure",
2966
- "required":[
2967
- "resourceArn",
2968
- "tagKeys"
2969
- ],
2970
- "members":{
2971
- "resourceArn":{"shape":"String"},
2972
- "tagKeys":{"shape":"TagKeys"}
2973
- }
2974
- },
2975
- "UntagResourceResponse":{
2976
- "type":"structure",
2977
- "members":{
2978
- }
2979
- },
2980
- "UpdateClusterSettingsRequest":{
2981
- "type":"structure",
2982
- "required":[
2983
- "cluster",
2984
- "settings"
2985
- ],
2986
- "members":{
2987
- "cluster":{"shape":"String"},
2988
- "settings":{"shape":"ClusterSettings"}
2989
- }
2990
- },
2991
- "UpdateClusterSettingsResponse":{
2992
- "type":"structure",
2993
- "members":{
2994
- "cluster":{"shape":"Cluster"}
2995
- }
2996
- },
2997
- "UpdateContainerAgentRequest":{
2998
- "type":"structure",
2999
- "required":["containerInstance"],
3000
- "members":{
3001
- "cluster":{"shape":"String"},
3002
- "containerInstance":{"shape":"String"}
3003
- }
3004
- },
3005
- "UpdateContainerAgentResponse":{
3006
- "type":"structure",
3007
- "members":{
3008
- "containerInstance":{"shape":"ContainerInstance"}
3009
- }
3010
- },
3011
- "UpdateContainerInstancesStateRequest":{
3012
- "type":"structure",
3013
- "required":[
3014
- "containerInstances",
3015
- "status"
3016
- ],
3017
- "members":{
3018
- "cluster":{"shape":"String"},
3019
- "containerInstances":{"shape":"StringList"},
3020
- "status":{"shape":"ContainerInstanceStatus"}
3021
- }
3022
- },
3023
- "UpdateContainerInstancesStateResponse":{
3024
- "type":"structure",
3025
- "members":{
3026
- "containerInstances":{"shape":"ContainerInstances"},
3027
- "failures":{"shape":"Failures"}
3028
- }
3029
- },
3030
- "UpdateInProgressException":{
3031
- "type":"structure",
3032
- "members":{
3033
- },
3034
- "exception":true
3035
- },
3036
- "UpdateServicePrimaryTaskSetRequest":{
3037
- "type":"structure",
3038
- "required":[
3039
- "cluster",
3040
- "service",
3041
- "primaryTaskSet"
3042
- ],
3043
- "members":{
3044
- "cluster":{"shape":"String"},
3045
- "service":{"shape":"String"},
3046
- "primaryTaskSet":{"shape":"String"}
3047
- }
3048
- },
3049
- "UpdateServicePrimaryTaskSetResponse":{
3050
- "type":"structure",
3051
- "members":{
3052
- "taskSet":{"shape":"TaskSet"}
3053
- }
3054
- },
3055
- "UpdateServiceRequest":{
3056
- "type":"structure",
3057
- "required":["service"],
3058
- "members":{
3059
- "cluster":{"shape":"String"},
3060
- "service":{"shape":"String"},
3061
- "desiredCount":{"shape":"BoxedInteger"},
3062
- "taskDefinition":{"shape":"String"},
3063
- "capacityProviderStrategy":{"shape":"CapacityProviderStrategy"},
3064
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
3065
- "networkConfiguration":{"shape":"NetworkConfiguration"},
3066
- "platformVersion":{"shape":"String"},
3067
- "forceNewDeployment":{"shape":"Boolean"},
3068
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
3069
- }
3070
- },
3071
- "UpdateServiceResponse":{
3072
- "type":"structure",
3073
- "members":{
3074
- "service":{"shape":"Service"}
3075
- }
3076
- },
3077
- "UpdateTaskSetRequest":{
3078
- "type":"structure",
3079
- "required":[
3080
- "cluster",
3081
- "service",
3082
- "taskSet",
3083
- "scale"
3084
- ],
3085
- "members":{
3086
- "cluster":{"shape":"String"},
3087
- "service":{"shape":"String"},
3088
- "taskSet":{"shape":"String"},
3089
- "scale":{"shape":"Scale"}
3090
- }
3091
- },
3092
- "UpdateTaskSetResponse":{
3093
- "type":"structure",
3094
- "members":{
3095
- "taskSet":{"shape":"TaskSet"}
3096
- }
3097
- },
3098
- "VersionInfo":{
3099
- "type":"structure",
3100
- "members":{
3101
- "agentVersion":{"shape":"String"},
3102
- "agentHash":{"shape":"String"},
3103
- "dockerVersion":{"shape":"String"}
3104
- }
3105
- },
3106
- "Volume":{
3107
- "type":"structure",
3108
- "members":{
3109
- "name":{"shape":"String"},
3110
- "host":{"shape":"HostVolumeProperties"},
3111
- "dockerVolumeConfiguration":{"shape":"DockerVolumeConfiguration"}
3112
- }
3113
- },
3114
- "VolumeFrom":{
3115
- "type":"structure",
3116
- "members":{
3117
- "sourceContainer":{"shape":"String"},
3118
- "readOnly":{"shape":"BoxedBoolean"}
3119
- }
3120
- },
3121
- "VolumeFromList":{
3122
- "type":"list",
3123
- "member":{"shape":"VolumeFrom"}
3124
- },
3125
- "VolumeList":{
3126
- "type":"list",
3127
- "member":{"shape":"Volume"}
3128
- }
3129
- }
3130
- }