aws-sdk-core 2.11.442 → 3.89.0

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