aws-sdk-core 2.11.502 → 3.94.0

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