aws-sdk-core 2.11.632 → 3.0.0.rc1

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