aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  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/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,2414 +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
- "CreateCluster":{
17
- "name":"CreateCluster",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CreateClusterRequest"},
23
- "output":{"shape":"CreateClusterResponse"},
24
- "errors":[
25
- {"shape":"ServerException"},
26
- {"shape":"ClientException"},
27
- {"shape":"InvalidParameterException"}
28
- ]
29
- },
30
- "CreateService":{
31
- "name":"CreateService",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"CreateServiceRequest"},
37
- "output":{"shape":"CreateServiceResponse"},
38
- "errors":[
39
- {"shape":"ServerException"},
40
- {"shape":"ClientException"},
41
- {"shape":"InvalidParameterException"},
42
- {"shape":"ClusterNotFoundException"},
43
- {"shape":"UnsupportedFeatureException"},
44
- {"shape":"PlatformUnknownException"},
45
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
46
- {"shape":"AccessDeniedException"}
47
- ]
48
- },
49
- "DeleteAccountSetting":{
50
- "name":"DeleteAccountSetting",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"DeleteAccountSettingRequest"},
56
- "output":{"shape":"DeleteAccountSettingResponse"},
57
- "errors":[
58
- {"shape":"ServerException"},
59
- {"shape":"ClientException"},
60
- {"shape":"InvalidParameterException"}
61
- ]
62
- },
63
- "DeleteAttributes":{
64
- "name":"DeleteAttributes",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"DeleteAttributesRequest"},
70
- "output":{"shape":"DeleteAttributesResponse"},
71
- "errors":[
72
- {"shape":"ClusterNotFoundException"},
73
- {"shape":"TargetNotFoundException"},
74
- {"shape":"InvalidParameterException"}
75
- ]
76
- },
77
- "DeleteCluster":{
78
- "name":"DeleteCluster",
79
- "http":{
80
- "method":"POST",
81
- "requestUri":"/"
82
- },
83
- "input":{"shape":"DeleteClusterRequest"},
84
- "output":{"shape":"DeleteClusterResponse"},
85
- "errors":[
86
- {"shape":"ServerException"},
87
- {"shape":"ClientException"},
88
- {"shape":"InvalidParameterException"},
89
- {"shape":"ClusterNotFoundException"},
90
- {"shape":"ClusterContainsContainerInstancesException"},
91
- {"shape":"ClusterContainsServicesException"},
92
- {"shape":"ClusterContainsTasksException"}
93
- ]
94
- },
95
- "DeleteService":{
96
- "name":"DeleteService",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"DeleteServiceRequest"},
102
- "output":{"shape":"DeleteServiceResponse"},
103
- "errors":[
104
- {"shape":"ServerException"},
105
- {"shape":"ClientException"},
106
- {"shape":"InvalidParameterException"},
107
- {"shape":"ClusterNotFoundException"},
108
- {"shape":"ServiceNotFoundException"}
109
- ]
110
- },
111
- "DeregisterContainerInstance":{
112
- "name":"DeregisterContainerInstance",
113
- "http":{
114
- "method":"POST",
115
- "requestUri":"/"
116
- },
117
- "input":{"shape":"DeregisterContainerInstanceRequest"},
118
- "output":{"shape":"DeregisterContainerInstanceResponse"},
119
- "errors":[
120
- {"shape":"ServerException"},
121
- {"shape":"ClientException"},
122
- {"shape":"InvalidParameterException"},
123
- {"shape":"ClusterNotFoundException"}
124
- ]
125
- },
126
- "DeregisterTaskDefinition":{
127
- "name":"DeregisterTaskDefinition",
128
- "http":{
129
- "method":"POST",
130
- "requestUri":"/"
131
- },
132
- "input":{"shape":"DeregisterTaskDefinitionRequest"},
133
- "output":{"shape":"DeregisterTaskDefinitionResponse"},
134
- "errors":[
135
- {"shape":"ServerException"},
136
- {"shape":"ClientException"},
137
- {"shape":"InvalidParameterException"}
138
- ]
139
- },
140
- "DescribeClusters":{
141
- "name":"DescribeClusters",
142
- "http":{
143
- "method":"POST",
144
- "requestUri":"/"
145
- },
146
- "input":{"shape":"DescribeClustersRequest"},
147
- "output":{"shape":"DescribeClustersResponse"},
148
- "errors":[
149
- {"shape":"ServerException"},
150
- {"shape":"ClientException"},
151
- {"shape":"InvalidParameterException"}
152
- ]
153
- },
154
- "DescribeContainerInstances":{
155
- "name":"DescribeContainerInstances",
156
- "http":{
157
- "method":"POST",
158
- "requestUri":"/"
159
- },
160
- "input":{"shape":"DescribeContainerInstancesRequest"},
161
- "output":{"shape":"DescribeContainerInstancesResponse"},
162
- "errors":[
163
- {"shape":"ServerException"},
164
- {"shape":"ClientException"},
165
- {"shape":"InvalidParameterException"},
166
- {"shape":"ClusterNotFoundException"}
167
- ]
168
- },
169
- "DescribeServices":{
170
- "name":"DescribeServices",
171
- "http":{
172
- "method":"POST",
173
- "requestUri":"/"
174
- },
175
- "input":{"shape":"DescribeServicesRequest"},
176
- "output":{"shape":"DescribeServicesResponse"},
177
- "errors":[
178
- {"shape":"ServerException"},
179
- {"shape":"ClientException"},
180
- {"shape":"InvalidParameterException"},
181
- {"shape":"ClusterNotFoundException"}
182
- ]
183
- },
184
- "DescribeTaskDefinition":{
185
- "name":"DescribeTaskDefinition",
186
- "http":{
187
- "method":"POST",
188
- "requestUri":"/"
189
- },
190
- "input":{"shape":"DescribeTaskDefinitionRequest"},
191
- "output":{"shape":"DescribeTaskDefinitionResponse"},
192
- "errors":[
193
- {"shape":"ServerException"},
194
- {"shape":"ClientException"},
195
- {"shape":"InvalidParameterException"}
196
- ]
197
- },
198
- "DescribeTasks":{
199
- "name":"DescribeTasks",
200
- "http":{
201
- "method":"POST",
202
- "requestUri":"/"
203
- },
204
- "input":{"shape":"DescribeTasksRequest"},
205
- "output":{"shape":"DescribeTasksResponse"},
206
- "errors":[
207
- {"shape":"ServerException"},
208
- {"shape":"ClientException"},
209
- {"shape":"InvalidParameterException"},
210
- {"shape":"ClusterNotFoundException"}
211
- ]
212
- },
213
- "DiscoverPollEndpoint":{
214
- "name":"DiscoverPollEndpoint",
215
- "http":{
216
- "method":"POST",
217
- "requestUri":"/"
218
- },
219
- "input":{"shape":"DiscoverPollEndpointRequest"},
220
- "output":{"shape":"DiscoverPollEndpointResponse"},
221
- "errors":[
222
- {"shape":"ServerException"},
223
- {"shape":"ClientException"}
224
- ]
225
- },
226
- "ListAccountSettings":{
227
- "name":"ListAccountSettings",
228
- "http":{
229
- "method":"POST",
230
- "requestUri":"/"
231
- },
232
- "input":{"shape":"ListAccountSettingsRequest"},
233
- "output":{"shape":"ListAccountSettingsResponse"},
234
- "errors":[
235
- {"shape":"ServerException"},
236
- {"shape":"ClientException"},
237
- {"shape":"InvalidParameterException"}
238
- ]
239
- },
240
- "ListAttributes":{
241
- "name":"ListAttributes",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"ListAttributesRequest"},
247
- "output":{"shape":"ListAttributesResponse"},
248
- "errors":[
249
- {"shape":"ClusterNotFoundException"},
250
- {"shape":"InvalidParameterException"}
251
- ]
252
- },
253
- "ListClusters":{
254
- "name":"ListClusters",
255
- "http":{
256
- "method":"POST",
257
- "requestUri":"/"
258
- },
259
- "input":{"shape":"ListClustersRequest"},
260
- "output":{"shape":"ListClustersResponse"},
261
- "errors":[
262
- {"shape":"ServerException"},
263
- {"shape":"ClientException"},
264
- {"shape":"InvalidParameterException"}
265
- ]
266
- },
267
- "ListContainerInstances":{
268
- "name":"ListContainerInstances",
269
- "http":{
270
- "method":"POST",
271
- "requestUri":"/"
272
- },
273
- "input":{"shape":"ListContainerInstancesRequest"},
274
- "output":{"shape":"ListContainerInstancesResponse"},
275
- "errors":[
276
- {"shape":"ServerException"},
277
- {"shape":"ClientException"},
278
- {"shape":"InvalidParameterException"},
279
- {"shape":"ClusterNotFoundException"}
280
- ]
281
- },
282
- "ListServices":{
283
- "name":"ListServices",
284
- "http":{
285
- "method":"POST",
286
- "requestUri":"/"
287
- },
288
- "input":{"shape":"ListServicesRequest"},
289
- "output":{"shape":"ListServicesResponse"},
290
- "errors":[
291
- {"shape":"ServerException"},
292
- {"shape":"ClientException"},
293
- {"shape":"InvalidParameterException"},
294
- {"shape":"ClusterNotFoundException"}
295
- ]
296
- },
297
- "ListTagsForResource":{
298
- "name":"ListTagsForResource",
299
- "http":{
300
- "method":"POST",
301
- "requestUri":"/"
302
- },
303
- "input":{"shape":"ListTagsForResourceRequest"},
304
- "output":{"shape":"ListTagsForResourceResponse"},
305
- "errors":[
306
- {"shape":"ServerException"},
307
- {"shape":"ClientException"},
308
- {"shape":"ClusterNotFoundException"},
309
- {"shape":"InvalidParameterException"}
310
- ]
311
- },
312
- "ListTaskDefinitionFamilies":{
313
- "name":"ListTaskDefinitionFamilies",
314
- "http":{
315
- "method":"POST",
316
- "requestUri":"/"
317
- },
318
- "input":{"shape":"ListTaskDefinitionFamiliesRequest"},
319
- "output":{"shape":"ListTaskDefinitionFamiliesResponse"},
320
- "errors":[
321
- {"shape":"ServerException"},
322
- {"shape":"ClientException"},
323
- {"shape":"InvalidParameterException"}
324
- ]
325
- },
326
- "ListTaskDefinitions":{
327
- "name":"ListTaskDefinitions",
328
- "http":{
329
- "method":"POST",
330
- "requestUri":"/"
331
- },
332
- "input":{"shape":"ListTaskDefinitionsRequest"},
333
- "output":{"shape":"ListTaskDefinitionsResponse"},
334
- "errors":[
335
- {"shape":"ServerException"},
336
- {"shape":"ClientException"},
337
- {"shape":"InvalidParameterException"}
338
- ]
339
- },
340
- "ListTasks":{
341
- "name":"ListTasks",
342
- "http":{
343
- "method":"POST",
344
- "requestUri":"/"
345
- },
346
- "input":{"shape":"ListTasksRequest"},
347
- "output":{"shape":"ListTasksResponse"},
348
- "errors":[
349
- {"shape":"ServerException"},
350
- {"shape":"ClientException"},
351
- {"shape":"InvalidParameterException"},
352
- {"shape":"ClusterNotFoundException"},
353
- {"shape":"ServiceNotFoundException"}
354
- ]
355
- },
356
- "PutAccountSetting":{
357
- "name":"PutAccountSetting",
358
- "http":{
359
- "method":"POST",
360
- "requestUri":"/"
361
- },
362
- "input":{"shape":"PutAccountSettingRequest"},
363
- "output":{"shape":"PutAccountSettingResponse"},
364
- "errors":[
365
- {"shape":"ServerException"},
366
- {"shape":"ClientException"},
367
- {"shape":"InvalidParameterException"}
368
- ]
369
- },
370
- "PutAttributes":{
371
- "name":"PutAttributes",
372
- "http":{
373
- "method":"POST",
374
- "requestUri":"/"
375
- },
376
- "input":{"shape":"PutAttributesRequest"},
377
- "output":{"shape":"PutAttributesResponse"},
378
- "errors":[
379
- {"shape":"ClusterNotFoundException"},
380
- {"shape":"TargetNotFoundException"},
381
- {"shape":"AttributeLimitExceededException"},
382
- {"shape":"InvalidParameterException"}
383
- ]
384
- },
385
- "RegisterContainerInstance":{
386
- "name":"RegisterContainerInstance",
387
- "http":{
388
- "method":"POST",
389
- "requestUri":"/"
390
- },
391
- "input":{"shape":"RegisterContainerInstanceRequest"},
392
- "output":{"shape":"RegisterContainerInstanceResponse"},
393
- "errors":[
394
- {"shape":"ServerException"},
395
- {"shape":"ClientException"},
396
- {"shape":"InvalidParameterException"}
397
- ]
398
- },
399
- "RegisterTaskDefinition":{
400
- "name":"RegisterTaskDefinition",
401
- "http":{
402
- "method":"POST",
403
- "requestUri":"/"
404
- },
405
- "input":{"shape":"RegisterTaskDefinitionRequest"},
406
- "output":{"shape":"RegisterTaskDefinitionResponse"},
407
- "errors":[
408
- {"shape":"ServerException"},
409
- {"shape":"ClientException"},
410
- {"shape":"InvalidParameterException"}
411
- ]
412
- },
413
- "RunTask":{
414
- "name":"RunTask",
415
- "http":{
416
- "method":"POST",
417
- "requestUri":"/"
418
- },
419
- "input":{"shape":"RunTaskRequest"},
420
- "output":{"shape":"RunTaskResponse"},
421
- "errors":[
422
- {"shape":"ServerException"},
423
- {"shape":"ClientException"},
424
- {"shape":"InvalidParameterException"},
425
- {"shape":"ClusterNotFoundException"},
426
- {"shape":"UnsupportedFeatureException"},
427
- {"shape":"PlatformUnknownException"},
428
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
429
- {"shape":"AccessDeniedException"},
430
- {"shape":"BlockedException"}
431
- ]
432
- },
433
- "StartTask":{
434
- "name":"StartTask",
435
- "http":{
436
- "method":"POST",
437
- "requestUri":"/"
438
- },
439
- "input":{"shape":"StartTaskRequest"},
440
- "output":{"shape":"StartTaskResponse"},
441
- "errors":[
442
- {"shape":"ServerException"},
443
- {"shape":"ClientException"},
444
- {"shape":"InvalidParameterException"},
445
- {"shape":"ClusterNotFoundException"}
446
- ]
447
- },
448
- "StopTask":{
449
- "name":"StopTask",
450
- "http":{
451
- "method":"POST",
452
- "requestUri":"/"
453
- },
454
- "input":{"shape":"StopTaskRequest"},
455
- "output":{"shape":"StopTaskResponse"},
456
- "errors":[
457
- {"shape":"ServerException"},
458
- {"shape":"ClientException"},
459
- {"shape":"InvalidParameterException"},
460
- {"shape":"ClusterNotFoundException"}
461
- ]
462
- },
463
- "SubmitContainerStateChange":{
464
- "name":"SubmitContainerStateChange",
465
- "http":{
466
- "method":"POST",
467
- "requestUri":"/"
468
- },
469
- "input":{"shape":"SubmitContainerStateChangeRequest"},
470
- "output":{"shape":"SubmitContainerStateChangeResponse"},
471
- "errors":[
472
- {"shape":"ServerException"},
473
- {"shape":"ClientException"},
474
- {"shape":"AccessDeniedException"}
475
- ]
476
- },
477
- "SubmitTaskStateChange":{
478
- "name":"SubmitTaskStateChange",
479
- "http":{
480
- "method":"POST",
481
- "requestUri":"/"
482
- },
483
- "input":{"shape":"SubmitTaskStateChangeRequest"},
484
- "output":{"shape":"SubmitTaskStateChangeResponse"},
485
- "errors":[
486
- {"shape":"ServerException"},
487
- {"shape":"ClientException"},
488
- {"shape":"AccessDeniedException"}
489
- ]
490
- },
491
- "TagResource":{
492
- "name":"TagResource",
493
- "http":{
494
- "method":"POST",
495
- "requestUri":"/"
496
- },
497
- "input":{"shape":"TagResourceRequest"},
498
- "output":{"shape":"TagResourceResponse"},
499
- "errors":[
500
- {"shape":"ServerException"},
501
- {"shape":"ClientException"},
502
- {"shape":"ClusterNotFoundException"},
503
- {"shape":"ResourceNotFoundException"},
504
- {"shape":"InvalidParameterException"}
505
- ]
506
- },
507
- "UntagResource":{
508
- "name":"UntagResource",
509
- "http":{
510
- "method":"POST",
511
- "requestUri":"/"
512
- },
513
- "input":{"shape":"UntagResourceRequest"},
514
- "output":{"shape":"UntagResourceResponse"},
515
- "errors":[
516
- {"shape":"ServerException"},
517
- {"shape":"ClientException"},
518
- {"shape":"ClusterNotFoundException"},
519
- {"shape":"ResourceNotFoundException"},
520
- {"shape":"InvalidParameterException"}
521
- ]
522
- },
523
- "UpdateContainerAgent":{
524
- "name":"UpdateContainerAgent",
525
- "http":{
526
- "method":"POST",
527
- "requestUri":"/"
528
- },
529
- "input":{"shape":"UpdateContainerAgentRequest"},
530
- "output":{"shape":"UpdateContainerAgentResponse"},
531
- "errors":[
532
- {"shape":"ServerException"},
533
- {"shape":"ClientException"},
534
- {"shape":"InvalidParameterException"},
535
- {"shape":"ClusterNotFoundException"},
536
- {"shape":"UpdateInProgressException"},
537
- {"shape":"NoUpdateAvailableException"},
538
- {"shape":"MissingVersionException"}
539
- ]
540
- },
541
- "UpdateContainerInstancesState":{
542
- "name":"UpdateContainerInstancesState",
543
- "http":{
544
- "method":"POST",
545
- "requestUri":"/"
546
- },
547
- "input":{"shape":"UpdateContainerInstancesStateRequest"},
548
- "output":{"shape":"UpdateContainerInstancesStateResponse"},
549
- "errors":[
550
- {"shape":"ServerException"},
551
- {"shape":"ClientException"},
552
- {"shape":"InvalidParameterException"},
553
- {"shape":"ClusterNotFoundException"}
554
- ]
555
- },
556
- "UpdateService":{
557
- "name":"UpdateService",
558
- "http":{
559
- "method":"POST",
560
- "requestUri":"/"
561
- },
562
- "input":{"shape":"UpdateServiceRequest"},
563
- "output":{"shape":"UpdateServiceResponse"},
564
- "errors":[
565
- {"shape":"ServerException"},
566
- {"shape":"ClientException"},
567
- {"shape":"InvalidParameterException"},
568
- {"shape":"ClusterNotFoundException"},
569
- {"shape":"ServiceNotFoundException"},
570
- {"shape":"ServiceNotActiveException"},
571
- {"shape":"PlatformUnknownException"},
572
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
573
- {"shape":"AccessDeniedException"}
574
- ]
575
- }
576
- },
577
- "shapes":{
578
- "AccessDeniedException":{
579
- "type":"structure",
580
- "members":{
581
- },
582
- "exception":true
583
- },
584
- "AgentUpdateStatus":{
585
- "type":"string",
586
- "enum":[
587
- "PENDING",
588
- "STAGING",
589
- "STAGED",
590
- "UPDATING",
591
- "UPDATED",
592
- "FAILED"
593
- ]
594
- },
595
- "AssignPublicIp":{
596
- "type":"string",
597
- "enum":[
598
- "ENABLED",
599
- "DISABLED"
600
- ]
601
- },
602
- "Attachment":{
603
- "type":"structure",
604
- "members":{
605
- "id":{"shape":"String"},
606
- "type":{"shape":"String"},
607
- "status":{"shape":"String"},
608
- "details":{"shape":"AttachmentDetails"}
609
- }
610
- },
611
- "AttachmentDetails":{
612
- "type":"list",
613
- "member":{"shape":"KeyValuePair"}
614
- },
615
- "AttachmentStateChange":{
616
- "type":"structure",
617
- "required":[
618
- "attachmentArn",
619
- "status"
620
- ],
621
- "members":{
622
- "attachmentArn":{"shape":"String"},
623
- "status":{"shape":"String"}
624
- }
625
- },
626
- "AttachmentStateChanges":{
627
- "type":"list",
628
- "member":{"shape":"AttachmentStateChange"}
629
- },
630
- "Attachments":{
631
- "type":"list",
632
- "member":{"shape":"Attachment"}
633
- },
634
- "Attribute":{
635
- "type":"structure",
636
- "required":["name"],
637
- "members":{
638
- "name":{"shape":"String"},
639
- "value":{"shape":"String"},
640
- "targetType":{"shape":"TargetType"},
641
- "targetId":{"shape":"String"}
642
- }
643
- },
644
- "AttributeLimitExceededException":{
645
- "type":"structure",
646
- "members":{
647
- },
648
- "exception":true
649
- },
650
- "Attributes":{
651
- "type":"list",
652
- "member":{"shape":"Attribute"}
653
- },
654
- "AwsVpcConfiguration":{
655
- "type":"structure",
656
- "required":["subnets"],
657
- "members":{
658
- "subnets":{"shape":"StringList"},
659
- "securityGroups":{"shape":"StringList"},
660
- "assignPublicIp":{"shape":"AssignPublicIp"}
661
- }
662
- },
663
- "BlockedException":{
664
- "type":"structure",
665
- "members":{
666
- },
667
- "exception":true
668
- },
669
- "Boolean":{"type":"boolean"},
670
- "BoxedBoolean":{
671
- "type":"boolean",
672
- "box":true
673
- },
674
- "BoxedInteger":{
675
- "type":"integer",
676
- "box":true
677
- },
678
- "ClientException":{
679
- "type":"structure",
680
- "members":{
681
- "message":{"shape":"String"}
682
- },
683
- "exception":true
684
- },
685
- "Cluster":{
686
- "type":"structure",
687
- "members":{
688
- "clusterArn":{"shape":"String"},
689
- "clusterName":{"shape":"String"},
690
- "status":{"shape":"String"},
691
- "registeredContainerInstancesCount":{"shape":"Integer"},
692
- "runningTasksCount":{"shape":"Integer"},
693
- "pendingTasksCount":{"shape":"Integer"},
694
- "activeServicesCount":{"shape":"Integer"},
695
- "statistics":{"shape":"Statistics"},
696
- "tags":{"shape":"Tags"}
697
- }
698
- },
699
- "ClusterContainsContainerInstancesException":{
700
- "type":"structure",
701
- "members":{
702
- },
703
- "exception":true
704
- },
705
- "ClusterContainsServicesException":{
706
- "type":"structure",
707
- "members":{
708
- },
709
- "exception":true
710
- },
711
- "ClusterContainsTasksException":{
712
- "type":"structure",
713
- "members":{
714
- },
715
- "exception":true
716
- },
717
- "ClusterField":{
718
- "type":"string",
719
- "enum":[
720
- "STATISTICS",
721
- "TAGS"
722
- ]
723
- },
724
- "ClusterFieldList":{
725
- "type":"list",
726
- "member":{"shape":"ClusterField"}
727
- },
728
- "ClusterNotFoundException":{
729
- "type":"structure",
730
- "members":{
731
- },
732
- "exception":true
733
- },
734
- "Clusters":{
735
- "type":"list",
736
- "member":{"shape":"Cluster"}
737
- },
738
- "Compatibility":{
739
- "type":"string",
740
- "enum":[
741
- "EC2",
742
- "FARGATE"
743
- ]
744
- },
745
- "CompatibilityList":{
746
- "type":"list",
747
- "member":{"shape":"Compatibility"}
748
- },
749
- "Connectivity":{
750
- "type":"string",
751
- "enum":[
752
- "CONNECTED",
753
- "DISCONNECTED"
754
- ]
755
- },
756
- "Container":{
757
- "type":"structure",
758
- "members":{
759
- "containerArn":{"shape":"String"},
760
- "taskArn":{"shape":"String"},
761
- "name":{"shape":"String"},
762
- "lastStatus":{"shape":"String"},
763
- "exitCode":{"shape":"BoxedInteger"},
764
- "reason":{"shape":"String"},
765
- "networkBindings":{"shape":"NetworkBindings"},
766
- "networkInterfaces":{"shape":"NetworkInterfaces"},
767
- "healthStatus":{"shape":"HealthStatus"}
768
- }
769
- },
770
- "ContainerDefinition":{
771
- "type":"structure",
772
- "members":{
773
- "name":{"shape":"String"},
774
- "image":{"shape":"String"},
775
- "repositoryCredentials":{"shape":"RepositoryCredentials"},
776
- "cpu":{"shape":"Integer"},
777
- "memory":{"shape":"BoxedInteger"},
778
- "memoryReservation":{"shape":"BoxedInteger"},
779
- "links":{"shape":"StringList"},
780
- "portMappings":{"shape":"PortMappingList"},
781
- "essential":{"shape":"BoxedBoolean"},
782
- "entryPoint":{"shape":"StringList"},
783
- "command":{"shape":"StringList"},
784
- "environment":{"shape":"EnvironmentVariables"},
785
- "mountPoints":{"shape":"MountPointList"},
786
- "volumesFrom":{"shape":"VolumeFromList"},
787
- "linuxParameters":{"shape":"LinuxParameters"},
788
- "secrets":{"shape":"SecretList"},
789
- "hostname":{"shape":"String"},
790
- "user":{"shape":"String"},
791
- "workingDirectory":{"shape":"String"},
792
- "disableNetworking":{"shape":"BoxedBoolean"},
793
- "privileged":{"shape":"BoxedBoolean"},
794
- "readonlyRootFilesystem":{"shape":"BoxedBoolean"},
795
- "dnsServers":{"shape":"StringList"},
796
- "dnsSearchDomains":{"shape":"StringList"},
797
- "extraHosts":{"shape":"HostEntryList"},
798
- "dockerSecurityOptions":{"shape":"StringList"},
799
- "interactive":{"shape":"BoxedBoolean"},
800
- "pseudoTerminal":{"shape":"BoxedBoolean"},
801
- "dockerLabels":{"shape":"DockerLabelsMap"},
802
- "ulimits":{"shape":"UlimitList"},
803
- "logConfiguration":{"shape":"LogConfiguration"},
804
- "healthCheck":{"shape":"HealthCheck"},
805
- "systemControls":{"shape":"SystemControls"}
806
- }
807
- },
808
- "ContainerDefinitions":{
809
- "type":"list",
810
- "member":{"shape":"ContainerDefinition"}
811
- },
812
- "ContainerInstance":{
813
- "type":"structure",
814
- "members":{
815
- "containerInstanceArn":{"shape":"String"},
816
- "ec2InstanceId":{"shape":"String"},
817
- "version":{"shape":"Long"},
818
- "versionInfo":{"shape":"VersionInfo"},
819
- "remainingResources":{"shape":"Resources"},
820
- "registeredResources":{"shape":"Resources"},
821
- "status":{"shape":"String"},
822
- "agentConnected":{"shape":"Boolean"},
823
- "runningTasksCount":{"shape":"Integer"},
824
- "pendingTasksCount":{"shape":"Integer"},
825
- "agentUpdateStatus":{"shape":"AgentUpdateStatus"},
826
- "attributes":{"shape":"Attributes"},
827
- "registeredAt":{"shape":"Timestamp"},
828
- "attachments":{"shape":"Attachments"},
829
- "tags":{"shape":"Tags"}
830
- }
831
- },
832
- "ContainerInstanceField":{
833
- "type":"string",
834
- "enum":["TAGS"]
835
- },
836
- "ContainerInstanceFieldList":{
837
- "type":"list",
838
- "member":{"shape":"ContainerInstanceField"}
839
- },
840
- "ContainerInstanceStatus":{
841
- "type":"string",
842
- "enum":[
843
- "ACTIVE",
844
- "DRAINING"
845
- ]
846
- },
847
- "ContainerInstances":{
848
- "type":"list",
849
- "member":{"shape":"ContainerInstance"}
850
- },
851
- "ContainerOverride":{
852
- "type":"structure",
853
- "members":{
854
- "name":{"shape":"String"},
855
- "command":{"shape":"StringList"},
856
- "environment":{"shape":"EnvironmentVariables"},
857
- "cpu":{"shape":"BoxedInteger"},
858
- "memory":{"shape":"BoxedInteger"},
859
- "memoryReservation":{"shape":"BoxedInteger"}
860
- }
861
- },
862
- "ContainerOverrides":{
863
- "type":"list",
864
- "member":{"shape":"ContainerOverride"}
865
- },
866
- "ContainerStateChange":{
867
- "type":"structure",
868
- "members":{
869
- "containerName":{"shape":"String"},
870
- "exitCode":{"shape":"BoxedInteger"},
871
- "networkBindings":{"shape":"NetworkBindings"},
872
- "reason":{"shape":"String"},
873
- "status":{"shape":"String"}
874
- }
875
- },
876
- "ContainerStateChanges":{
877
- "type":"list",
878
- "member":{"shape":"ContainerStateChange"}
879
- },
880
- "Containers":{
881
- "type":"list",
882
- "member":{"shape":"Container"}
883
- },
884
- "CreateClusterRequest":{
885
- "type":"structure",
886
- "members":{
887
- "clusterName":{"shape":"String"},
888
- "tags":{"shape":"Tags"}
889
- }
890
- },
891
- "CreateClusterResponse":{
892
- "type":"structure",
893
- "members":{
894
- "cluster":{"shape":"Cluster"}
895
- }
896
- },
897
- "CreateServiceRequest":{
898
- "type":"structure",
899
- "required":[
900
- "serviceName",
901
- "taskDefinition"
902
- ],
903
- "members":{
904
- "cluster":{"shape":"String"},
905
- "serviceName":{"shape":"String"},
906
- "taskDefinition":{"shape":"String"},
907
- "loadBalancers":{"shape":"LoadBalancers"},
908
- "serviceRegistries":{"shape":"ServiceRegistries"},
909
- "desiredCount":{"shape":"BoxedInteger"},
910
- "clientToken":{"shape":"String"},
911
- "launchType":{"shape":"LaunchType"},
912
- "platformVersion":{"shape":"String"},
913
- "role":{"shape":"String"},
914
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
915
- "placementConstraints":{"shape":"PlacementConstraints"},
916
- "placementStrategy":{"shape":"PlacementStrategies"},
917
- "networkConfiguration":{"shape":"NetworkConfiguration"},
918
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
919
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
920
- "deploymentController":{"shape":"DeploymentController"},
921
- "tags":{"shape":"Tags"},
922
- "enableECSManagedTags":{"shape":"Boolean"},
923
- "propagateTags":{"shape":"PropagateTags"}
924
- }
925
- },
926
- "CreateServiceResponse":{
927
- "type":"structure",
928
- "members":{
929
- "service":{"shape":"Service"}
930
- }
931
- },
932
- "DeleteAccountSettingRequest":{
933
- "type":"structure",
934
- "required":["name"],
935
- "members":{
936
- "name":{"shape":"SettingName"},
937
- "principalArn":{"shape":"String"}
938
- }
939
- },
940
- "DeleteAccountSettingResponse":{
941
- "type":"structure",
942
- "members":{
943
- "setting":{"shape":"Setting"}
944
- }
945
- },
946
- "DeleteAttributesRequest":{
947
- "type":"structure",
948
- "required":["attributes"],
949
- "members":{
950
- "cluster":{"shape":"String"},
951
- "attributes":{"shape":"Attributes"}
952
- }
953
- },
954
- "DeleteAttributesResponse":{
955
- "type":"structure",
956
- "members":{
957
- "attributes":{"shape":"Attributes"}
958
- }
959
- },
960
- "DeleteClusterRequest":{
961
- "type":"structure",
962
- "required":["cluster"],
963
- "members":{
964
- "cluster":{"shape":"String"}
965
- }
966
- },
967
- "DeleteClusterResponse":{
968
- "type":"structure",
969
- "members":{
970
- "cluster":{"shape":"Cluster"}
971
- }
972
- },
973
- "DeleteServiceRequest":{
974
- "type":"structure",
975
- "required":["service"],
976
- "members":{
977
- "cluster":{"shape":"String"},
978
- "service":{"shape":"String"},
979
- "force":{"shape":"BoxedBoolean"}
980
- }
981
- },
982
- "DeleteServiceResponse":{
983
- "type":"structure",
984
- "members":{
985
- "service":{"shape":"Service"}
986
- }
987
- },
988
- "Deployment":{
989
- "type":"structure",
990
- "members":{
991
- "id":{"shape":"String"},
992
- "status":{"shape":"String"},
993
- "taskDefinition":{"shape":"String"},
994
- "desiredCount":{"shape":"Integer"},
995
- "pendingCount":{"shape":"Integer"},
996
- "runningCount":{"shape":"Integer"},
997
- "createdAt":{"shape":"Timestamp"},
998
- "updatedAt":{"shape":"Timestamp"},
999
- "launchType":{"shape":"LaunchType"},
1000
- "platformVersion":{"shape":"String"},
1001
- "networkConfiguration":{"shape":"NetworkConfiguration"}
1002
- }
1003
- },
1004
- "DeploymentConfiguration":{
1005
- "type":"structure",
1006
- "members":{
1007
- "maximumPercent":{"shape":"BoxedInteger"},
1008
- "minimumHealthyPercent":{"shape":"BoxedInteger"}
1009
- }
1010
- },
1011
- "DeploymentController":{
1012
- "type":"structure",
1013
- "required":["type"],
1014
- "members":{
1015
- "type":{"shape":"DeploymentControllerType"}
1016
- }
1017
- },
1018
- "DeploymentControllerType":{
1019
- "type":"string",
1020
- "enum":[
1021
- "ECS",
1022
- "CODE_DEPLOY"
1023
- ]
1024
- },
1025
- "Deployments":{
1026
- "type":"list",
1027
- "member":{"shape":"Deployment"}
1028
- },
1029
- "DeregisterContainerInstanceRequest":{
1030
- "type":"structure",
1031
- "required":["containerInstance"],
1032
- "members":{
1033
- "cluster":{"shape":"String"},
1034
- "containerInstance":{"shape":"String"},
1035
- "force":{"shape":"BoxedBoolean"}
1036
- }
1037
- },
1038
- "DeregisterContainerInstanceResponse":{
1039
- "type":"structure",
1040
- "members":{
1041
- "containerInstance":{"shape":"ContainerInstance"}
1042
- }
1043
- },
1044
- "DeregisterTaskDefinitionRequest":{
1045
- "type":"structure",
1046
- "required":["taskDefinition"],
1047
- "members":{
1048
- "taskDefinition":{"shape":"String"}
1049
- }
1050
- },
1051
- "DeregisterTaskDefinitionResponse":{
1052
- "type":"structure",
1053
- "members":{
1054
- "taskDefinition":{"shape":"TaskDefinition"}
1055
- }
1056
- },
1057
- "DescribeClustersRequest":{
1058
- "type":"structure",
1059
- "members":{
1060
- "clusters":{"shape":"StringList"},
1061
- "include":{"shape":"ClusterFieldList"}
1062
- }
1063
- },
1064
- "DescribeClustersResponse":{
1065
- "type":"structure",
1066
- "members":{
1067
- "clusters":{"shape":"Clusters"},
1068
- "failures":{"shape":"Failures"}
1069
- }
1070
- },
1071
- "DescribeContainerInstancesRequest":{
1072
- "type":"structure",
1073
- "required":["containerInstances"],
1074
- "members":{
1075
- "cluster":{"shape":"String"},
1076
- "containerInstances":{"shape":"StringList"},
1077
- "include":{"shape":"ContainerInstanceFieldList"}
1078
- }
1079
- },
1080
- "DescribeContainerInstancesResponse":{
1081
- "type":"structure",
1082
- "members":{
1083
- "containerInstances":{"shape":"ContainerInstances"},
1084
- "failures":{"shape":"Failures"}
1085
- }
1086
- },
1087
- "DescribeServicesRequest":{
1088
- "type":"structure",
1089
- "required":["services"],
1090
- "members":{
1091
- "cluster":{"shape":"String"},
1092
- "services":{"shape":"StringList"},
1093
- "include":{"shape":"ServiceFieldList"}
1094
- }
1095
- },
1096
- "DescribeServicesResponse":{
1097
- "type":"structure",
1098
- "members":{
1099
- "services":{"shape":"Services"},
1100
- "failures":{"shape":"Failures"}
1101
- }
1102
- },
1103
- "DescribeTaskDefinitionRequest":{
1104
- "type":"structure",
1105
- "required":["taskDefinition"],
1106
- "members":{
1107
- "taskDefinition":{"shape":"String"},
1108
- "include":{"shape":"TaskDefinitionFieldList"}
1109
- }
1110
- },
1111
- "DescribeTaskDefinitionResponse":{
1112
- "type":"structure",
1113
- "members":{
1114
- "taskDefinition":{"shape":"TaskDefinition"},
1115
- "tags":{"shape":"Tags"}
1116
- }
1117
- },
1118
- "DescribeTasksRequest":{
1119
- "type":"structure",
1120
- "required":["tasks"],
1121
- "members":{
1122
- "cluster":{"shape":"String"},
1123
- "tasks":{"shape":"StringList"},
1124
- "include":{"shape":"TaskFieldList"}
1125
- }
1126
- },
1127
- "DescribeTasksResponse":{
1128
- "type":"structure",
1129
- "members":{
1130
- "tasks":{"shape":"Tasks"},
1131
- "failures":{"shape":"Failures"}
1132
- }
1133
- },
1134
- "DesiredStatus":{
1135
- "type":"string",
1136
- "enum":[
1137
- "RUNNING",
1138
- "PENDING",
1139
- "STOPPED"
1140
- ]
1141
- },
1142
- "Device":{
1143
- "type":"structure",
1144
- "required":["hostPath"],
1145
- "members":{
1146
- "hostPath":{"shape":"String"},
1147
- "containerPath":{"shape":"String"},
1148
- "permissions":{"shape":"DeviceCgroupPermissions"}
1149
- }
1150
- },
1151
- "DeviceCgroupPermission":{
1152
- "type":"string",
1153
- "enum":[
1154
- "read",
1155
- "write",
1156
- "mknod"
1157
- ]
1158
- },
1159
- "DeviceCgroupPermissions":{
1160
- "type":"list",
1161
- "member":{"shape":"DeviceCgroupPermission"}
1162
- },
1163
- "DevicesList":{
1164
- "type":"list",
1165
- "member":{"shape":"Device"}
1166
- },
1167
- "DiscoverPollEndpointRequest":{
1168
- "type":"structure",
1169
- "members":{
1170
- "containerInstance":{"shape":"String"},
1171
- "cluster":{"shape":"String"}
1172
- }
1173
- },
1174
- "DiscoverPollEndpointResponse":{
1175
- "type":"structure",
1176
- "members":{
1177
- "endpoint":{"shape":"String"},
1178
- "telemetryEndpoint":{"shape":"String"}
1179
- }
1180
- },
1181
- "DockerLabelsMap":{
1182
- "type":"map",
1183
- "key":{"shape":"String"},
1184
- "value":{"shape":"String"}
1185
- },
1186
- "DockerVolumeConfiguration":{
1187
- "type":"structure",
1188
- "members":{
1189
- "scope":{"shape":"Scope"},
1190
- "autoprovision":{"shape":"BoxedBoolean"},
1191
- "driver":{"shape":"String"},
1192
- "driverOpts":{"shape":"StringMap"},
1193
- "labels":{"shape":"StringMap"}
1194
- }
1195
- },
1196
- "Double":{"type":"double"},
1197
- "EnvironmentVariables":{
1198
- "type":"list",
1199
- "member":{"shape":"KeyValuePair"}
1200
- },
1201
- "Failure":{
1202
- "type":"structure",
1203
- "members":{
1204
- "arn":{"shape":"String"},
1205
- "reason":{"shape":"String"}
1206
- }
1207
- },
1208
- "Failures":{
1209
- "type":"list",
1210
- "member":{"shape":"Failure"}
1211
- },
1212
- "HealthCheck":{
1213
- "type":"structure",
1214
- "required":["command"],
1215
- "members":{
1216
- "command":{"shape":"StringList"},
1217
- "interval":{"shape":"BoxedInteger"},
1218
- "timeout":{"shape":"BoxedInteger"},
1219
- "retries":{"shape":"BoxedInteger"},
1220
- "startPeriod":{"shape":"BoxedInteger"}
1221
- }
1222
- },
1223
- "HealthStatus":{
1224
- "type":"string",
1225
- "enum":[
1226
- "HEALTHY",
1227
- "UNHEALTHY",
1228
- "UNKNOWN"
1229
- ]
1230
- },
1231
- "HostEntry":{
1232
- "type":"structure",
1233
- "required":[
1234
- "hostname",
1235
- "ipAddress"
1236
- ],
1237
- "members":{
1238
- "hostname":{"shape":"String"},
1239
- "ipAddress":{"shape":"String"}
1240
- }
1241
- },
1242
- "HostEntryList":{
1243
- "type":"list",
1244
- "member":{"shape":"HostEntry"}
1245
- },
1246
- "HostVolumeProperties":{
1247
- "type":"structure",
1248
- "members":{
1249
- "sourcePath":{"shape":"String"}
1250
- }
1251
- },
1252
- "Integer":{"type":"integer"},
1253
- "InvalidParameterException":{
1254
- "type":"structure",
1255
- "members":{
1256
- },
1257
- "exception":true
1258
- },
1259
- "IpcMode":{
1260
- "type":"string",
1261
- "enum":[
1262
- "host",
1263
- "task",
1264
- "none"
1265
- ]
1266
- },
1267
- "KernelCapabilities":{
1268
- "type":"structure",
1269
- "members":{
1270
- "add":{"shape":"StringList"},
1271
- "drop":{"shape":"StringList"}
1272
- }
1273
- },
1274
- "KeyValuePair":{
1275
- "type":"structure",
1276
- "members":{
1277
- "name":{"shape":"String"},
1278
- "value":{"shape":"String"}
1279
- }
1280
- },
1281
- "LaunchType":{
1282
- "type":"string",
1283
- "enum":[
1284
- "EC2",
1285
- "FARGATE"
1286
- ]
1287
- },
1288
- "LinuxParameters":{
1289
- "type":"structure",
1290
- "members":{
1291
- "capabilities":{"shape":"KernelCapabilities"},
1292
- "devices":{"shape":"DevicesList"},
1293
- "initProcessEnabled":{"shape":"BoxedBoolean"},
1294
- "sharedMemorySize":{"shape":"BoxedInteger"},
1295
- "tmpfs":{"shape":"TmpfsList"}
1296
- }
1297
- },
1298
- "ListAccountSettingsRequest":{
1299
- "type":"structure",
1300
- "members":{
1301
- "name":{"shape":"SettingName"},
1302
- "value":{"shape":"String"},
1303
- "principalArn":{"shape":"String"},
1304
- "effectiveSettings":{"shape":"Boolean"},
1305
- "nextToken":{"shape":"String"},
1306
- "maxResults":{"shape":"Integer"}
1307
- }
1308
- },
1309
- "ListAccountSettingsResponse":{
1310
- "type":"structure",
1311
- "members":{
1312
- "settings":{"shape":"Settings"},
1313
- "nextToken":{"shape":"String"}
1314
- }
1315
- },
1316
- "ListAttributesRequest":{
1317
- "type":"structure",
1318
- "required":["targetType"],
1319
- "members":{
1320
- "cluster":{"shape":"String"},
1321
- "targetType":{"shape":"TargetType"},
1322
- "attributeName":{"shape":"String"},
1323
- "attributeValue":{"shape":"String"},
1324
- "nextToken":{"shape":"String"},
1325
- "maxResults":{"shape":"BoxedInteger"}
1326
- }
1327
- },
1328
- "ListAttributesResponse":{
1329
- "type":"structure",
1330
- "members":{
1331
- "attributes":{"shape":"Attributes"},
1332
- "nextToken":{"shape":"String"}
1333
- }
1334
- },
1335
- "ListClustersRequest":{
1336
- "type":"structure",
1337
- "members":{
1338
- "nextToken":{"shape":"String"},
1339
- "maxResults":{"shape":"BoxedInteger"}
1340
- }
1341
- },
1342
- "ListClustersResponse":{
1343
- "type":"structure",
1344
- "members":{
1345
- "clusterArns":{"shape":"StringList"},
1346
- "nextToken":{"shape":"String"}
1347
- }
1348
- },
1349
- "ListContainerInstancesRequest":{
1350
- "type":"structure",
1351
- "members":{
1352
- "cluster":{"shape":"String"},
1353
- "filter":{"shape":"String"},
1354
- "nextToken":{"shape":"String"},
1355
- "maxResults":{"shape":"BoxedInteger"},
1356
- "status":{"shape":"ContainerInstanceStatus"}
1357
- }
1358
- },
1359
- "ListContainerInstancesResponse":{
1360
- "type":"structure",
1361
- "members":{
1362
- "containerInstanceArns":{"shape":"StringList"},
1363
- "nextToken":{"shape":"String"}
1364
- }
1365
- },
1366
- "ListServicesRequest":{
1367
- "type":"structure",
1368
- "members":{
1369
- "cluster":{"shape":"String"},
1370
- "nextToken":{"shape":"String"},
1371
- "maxResults":{"shape":"BoxedInteger"},
1372
- "launchType":{"shape":"LaunchType"},
1373
- "schedulingStrategy":{"shape":"SchedulingStrategy"}
1374
- }
1375
- },
1376
- "ListServicesResponse":{
1377
- "type":"structure",
1378
- "members":{
1379
- "serviceArns":{"shape":"StringList"},
1380
- "nextToken":{"shape":"String"}
1381
- }
1382
- },
1383
- "ListTagsForResourceRequest":{
1384
- "type":"structure",
1385
- "required":["resourceArn"],
1386
- "members":{
1387
- "resourceArn":{"shape":"String"}
1388
- }
1389
- },
1390
- "ListTagsForResourceResponse":{
1391
- "type":"structure",
1392
- "members":{
1393
- "tags":{"shape":"Tags"}
1394
- }
1395
- },
1396
- "ListTaskDefinitionFamiliesRequest":{
1397
- "type":"structure",
1398
- "members":{
1399
- "familyPrefix":{"shape":"String"},
1400
- "status":{"shape":"TaskDefinitionFamilyStatus"},
1401
- "nextToken":{"shape":"String"},
1402
- "maxResults":{"shape":"BoxedInteger"}
1403
- }
1404
- },
1405
- "ListTaskDefinitionFamiliesResponse":{
1406
- "type":"structure",
1407
- "members":{
1408
- "families":{"shape":"StringList"},
1409
- "nextToken":{"shape":"String"}
1410
- }
1411
- },
1412
- "ListTaskDefinitionsRequest":{
1413
- "type":"structure",
1414
- "members":{
1415
- "familyPrefix":{"shape":"String"},
1416
- "status":{"shape":"TaskDefinitionStatus"},
1417
- "sort":{"shape":"SortOrder"},
1418
- "nextToken":{"shape":"String"},
1419
- "maxResults":{"shape":"BoxedInteger"}
1420
- }
1421
- },
1422
- "ListTaskDefinitionsResponse":{
1423
- "type":"structure",
1424
- "members":{
1425
- "taskDefinitionArns":{"shape":"StringList"},
1426
- "nextToken":{"shape":"String"}
1427
- }
1428
- },
1429
- "ListTasksRequest":{
1430
- "type":"structure",
1431
- "members":{
1432
- "cluster":{"shape":"String"},
1433
- "containerInstance":{"shape":"String"},
1434
- "family":{"shape":"String"},
1435
- "nextToken":{"shape":"String"},
1436
- "maxResults":{"shape":"BoxedInteger"},
1437
- "startedBy":{"shape":"String"},
1438
- "serviceName":{"shape":"String"},
1439
- "desiredStatus":{"shape":"DesiredStatus"},
1440
- "launchType":{"shape":"LaunchType"}
1441
- }
1442
- },
1443
- "ListTasksResponse":{
1444
- "type":"structure",
1445
- "members":{
1446
- "taskArns":{"shape":"StringList"},
1447
- "nextToken":{"shape":"String"}
1448
- }
1449
- },
1450
- "LoadBalancer":{
1451
- "type":"structure",
1452
- "members":{
1453
- "targetGroupArn":{"shape":"String"},
1454
- "loadBalancerName":{"shape":"String"},
1455
- "containerName":{"shape":"String"},
1456
- "containerPort":{"shape":"BoxedInteger"}
1457
- }
1458
- },
1459
- "LoadBalancers":{
1460
- "type":"list",
1461
- "member":{"shape":"LoadBalancer"}
1462
- },
1463
- "LogConfiguration":{
1464
- "type":"structure",
1465
- "required":["logDriver"],
1466
- "members":{
1467
- "logDriver":{"shape":"LogDriver"},
1468
- "options":{"shape":"LogConfigurationOptionsMap"}
1469
- }
1470
- },
1471
- "LogConfigurationOptionsMap":{
1472
- "type":"map",
1473
- "key":{"shape":"String"},
1474
- "value":{"shape":"String"}
1475
- },
1476
- "LogDriver":{
1477
- "type":"string",
1478
- "enum":[
1479
- "json-file",
1480
- "syslog",
1481
- "journald",
1482
- "gelf",
1483
- "fluentd",
1484
- "awslogs",
1485
- "splunk"
1486
- ]
1487
- },
1488
- "Long":{"type":"long"},
1489
- "MissingVersionException":{
1490
- "type":"structure",
1491
- "members":{
1492
- },
1493
- "exception":true
1494
- },
1495
- "MountPoint":{
1496
- "type":"structure",
1497
- "members":{
1498
- "sourceVolume":{"shape":"String"},
1499
- "containerPath":{"shape":"String"},
1500
- "readOnly":{"shape":"BoxedBoolean"}
1501
- }
1502
- },
1503
- "MountPointList":{
1504
- "type":"list",
1505
- "member":{"shape":"MountPoint"}
1506
- },
1507
- "NetworkBinding":{
1508
- "type":"structure",
1509
- "members":{
1510
- "bindIP":{"shape":"String"},
1511
- "containerPort":{"shape":"BoxedInteger"},
1512
- "hostPort":{"shape":"BoxedInteger"},
1513
- "protocol":{"shape":"TransportProtocol"}
1514
- }
1515
- },
1516
- "NetworkBindings":{
1517
- "type":"list",
1518
- "member":{"shape":"NetworkBinding"}
1519
- },
1520
- "NetworkConfiguration":{
1521
- "type":"structure",
1522
- "members":{
1523
- "awsvpcConfiguration":{"shape":"AwsVpcConfiguration"}
1524
- }
1525
- },
1526
- "NetworkInterface":{
1527
- "type":"structure",
1528
- "members":{
1529
- "attachmentId":{"shape":"String"},
1530
- "privateIpv4Address":{"shape":"String"},
1531
- "ipv6Address":{"shape":"String"}
1532
- }
1533
- },
1534
- "NetworkInterfaces":{
1535
- "type":"list",
1536
- "member":{"shape":"NetworkInterface"}
1537
- },
1538
- "NetworkMode":{
1539
- "type":"string",
1540
- "enum":[
1541
- "bridge",
1542
- "host",
1543
- "awsvpc",
1544
- "none"
1545
- ]
1546
- },
1547
- "NoUpdateAvailableException":{
1548
- "type":"structure",
1549
- "members":{
1550
- },
1551
- "exception":true
1552
- },
1553
- "PidMode":{
1554
- "type":"string",
1555
- "enum":[
1556
- "host",
1557
- "task"
1558
- ]
1559
- },
1560
- "PlacementConstraint":{
1561
- "type":"structure",
1562
- "members":{
1563
- "type":{"shape":"PlacementConstraintType"},
1564
- "expression":{"shape":"String"}
1565
- }
1566
- },
1567
- "PlacementConstraintType":{
1568
- "type":"string",
1569
- "enum":[
1570
- "distinctInstance",
1571
- "memberOf"
1572
- ]
1573
- },
1574
- "PlacementConstraints":{
1575
- "type":"list",
1576
- "member":{"shape":"PlacementConstraint"}
1577
- },
1578
- "PlacementStrategies":{
1579
- "type":"list",
1580
- "member":{"shape":"PlacementStrategy"}
1581
- },
1582
- "PlacementStrategy":{
1583
- "type":"structure",
1584
- "members":{
1585
- "type":{"shape":"PlacementStrategyType"},
1586
- "field":{"shape":"String"}
1587
- }
1588
- },
1589
- "PlacementStrategyType":{
1590
- "type":"string",
1591
- "enum":[
1592
- "random",
1593
- "spread",
1594
- "binpack"
1595
- ]
1596
- },
1597
- "PlatformTaskDefinitionIncompatibilityException":{
1598
- "type":"structure",
1599
- "members":{
1600
- },
1601
- "exception":true
1602
- },
1603
- "PlatformUnknownException":{
1604
- "type":"structure",
1605
- "members":{
1606
- },
1607
- "exception":true
1608
- },
1609
- "PortMapping":{
1610
- "type":"structure",
1611
- "members":{
1612
- "containerPort":{"shape":"BoxedInteger"},
1613
- "hostPort":{"shape":"BoxedInteger"},
1614
- "protocol":{"shape":"TransportProtocol"}
1615
- }
1616
- },
1617
- "PortMappingList":{
1618
- "type":"list",
1619
- "member":{"shape":"PortMapping"}
1620
- },
1621
- "PropagateTags":{
1622
- "type":"string",
1623
- "enum":[
1624
- "TASK_DEFINITION",
1625
- "SERVICE"
1626
- ]
1627
- },
1628
- "PutAccountSettingRequest":{
1629
- "type":"structure",
1630
- "required":[
1631
- "name",
1632
- "value"
1633
- ],
1634
- "members":{
1635
- "name":{"shape":"SettingName"},
1636
- "value":{"shape":"String"},
1637
- "principalArn":{"shape":"String"}
1638
- }
1639
- },
1640
- "PutAccountSettingResponse":{
1641
- "type":"structure",
1642
- "members":{
1643
- "setting":{"shape":"Setting"}
1644
- }
1645
- },
1646
- "PutAttributesRequest":{
1647
- "type":"structure",
1648
- "required":["attributes"],
1649
- "members":{
1650
- "cluster":{"shape":"String"},
1651
- "attributes":{"shape":"Attributes"}
1652
- }
1653
- },
1654
- "PutAttributesResponse":{
1655
- "type":"structure",
1656
- "members":{
1657
- "attributes":{"shape":"Attributes"}
1658
- }
1659
- },
1660
- "RegisterContainerInstanceRequest":{
1661
- "type":"structure",
1662
- "members":{
1663
- "cluster":{"shape":"String"},
1664
- "instanceIdentityDocument":{"shape":"String"},
1665
- "instanceIdentityDocumentSignature":{"shape":"String"},
1666
- "totalResources":{"shape":"Resources"},
1667
- "versionInfo":{"shape":"VersionInfo"},
1668
- "containerInstanceArn":{"shape":"String"},
1669
- "attributes":{"shape":"Attributes"},
1670
- "tags":{"shape":"Tags"}
1671
- }
1672
- },
1673
- "RegisterContainerInstanceResponse":{
1674
- "type":"structure",
1675
- "members":{
1676
- "containerInstance":{"shape":"ContainerInstance"}
1677
- }
1678
- },
1679
- "RegisterTaskDefinitionRequest":{
1680
- "type":"structure",
1681
- "required":[
1682
- "family",
1683
- "containerDefinitions"
1684
- ],
1685
- "members":{
1686
- "family":{"shape":"String"},
1687
- "taskRoleArn":{"shape":"String"},
1688
- "executionRoleArn":{"shape":"String"},
1689
- "networkMode":{"shape":"NetworkMode"},
1690
- "containerDefinitions":{"shape":"ContainerDefinitions"},
1691
- "volumes":{"shape":"VolumeList"},
1692
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
1693
- "requiresCompatibilities":{"shape":"CompatibilityList"},
1694
- "cpu":{"shape":"String"},
1695
- "memory":{"shape":"String"},
1696
- "tags":{"shape":"Tags"},
1697
- "pidMode":{"shape":"PidMode"},
1698
- "ipcMode":{"shape":"IpcMode"}
1699
- }
1700
- },
1701
- "RegisterTaskDefinitionResponse":{
1702
- "type":"structure",
1703
- "members":{
1704
- "taskDefinition":{"shape":"TaskDefinition"},
1705
- "tags":{"shape":"Tags"}
1706
- }
1707
- },
1708
- "RepositoryCredentials":{
1709
- "type":"structure",
1710
- "required":["credentialsParameter"],
1711
- "members":{
1712
- "credentialsParameter":{"shape":"String"}
1713
- }
1714
- },
1715
- "RequiresAttributes":{
1716
- "type":"list",
1717
- "member":{"shape":"Attribute"}
1718
- },
1719
- "Resource":{
1720
- "type":"structure",
1721
- "members":{
1722
- "name":{"shape":"String"},
1723
- "type":{"shape":"String"},
1724
- "doubleValue":{"shape":"Double"},
1725
- "longValue":{"shape":"Long"},
1726
- "integerValue":{"shape":"Integer"},
1727
- "stringSetValue":{"shape":"StringList"}
1728
- }
1729
- },
1730
- "ResourceNotFoundException":{
1731
- "type":"structure",
1732
- "members":{
1733
- },
1734
- "exception":true
1735
- },
1736
- "Resources":{
1737
- "type":"list",
1738
- "member":{"shape":"Resource"}
1739
- },
1740
- "RunTaskRequest":{
1741
- "type":"structure",
1742
- "required":["taskDefinition"],
1743
- "members":{
1744
- "cluster":{"shape":"String"},
1745
- "taskDefinition":{"shape":"String"},
1746
- "overrides":{"shape":"TaskOverride"},
1747
- "count":{"shape":"BoxedInteger"},
1748
- "startedBy":{"shape":"String"},
1749
- "group":{"shape":"String"},
1750
- "placementConstraints":{"shape":"PlacementConstraints"},
1751
- "placementStrategy":{"shape":"PlacementStrategies"},
1752
- "launchType":{"shape":"LaunchType"},
1753
- "platformVersion":{"shape":"String"},
1754
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1755
- "tags":{"shape":"Tags"},
1756
- "enableECSManagedTags":{"shape":"Boolean"},
1757
- "propagateTags":{"shape":"PropagateTags"}
1758
- }
1759
- },
1760
- "RunTaskResponse":{
1761
- "type":"structure",
1762
- "members":{
1763
- "tasks":{"shape":"Tasks"},
1764
- "failures":{"shape":"Failures"}
1765
- }
1766
- },
1767
- "Scale":{
1768
- "type":"structure",
1769
- "members":{
1770
- "value":{"shape":"Double"},
1771
- "unit":{"shape":"ScaleUnit"}
1772
- }
1773
- },
1774
- "ScaleUnit":{
1775
- "type":"string",
1776
- "enum":["PERCENT"]
1777
- },
1778
- "SchedulingStrategy":{
1779
- "type":"string",
1780
- "enum":[
1781
- "REPLICA",
1782
- "DAEMON"
1783
- ]
1784
- },
1785
- "Scope":{
1786
- "type":"string",
1787
- "enum":[
1788
- "task",
1789
- "shared"
1790
- ]
1791
- },
1792
- "Secret":{
1793
- "type":"structure",
1794
- "required":[
1795
- "name",
1796
- "valueFrom"
1797
- ],
1798
- "members":{
1799
- "name":{"shape":"String"},
1800
- "valueFrom":{"shape":"String"}
1801
- }
1802
- },
1803
- "SecretList":{
1804
- "type":"list",
1805
- "member":{"shape":"Secret"}
1806
- },
1807
- "ServerException":{
1808
- "type":"structure",
1809
- "members":{
1810
- "message":{"shape":"String"}
1811
- },
1812
- "exception":true,
1813
- "fault":true
1814
- },
1815
- "Service":{
1816
- "type":"structure",
1817
- "members":{
1818
- "serviceArn":{"shape":"String"},
1819
- "serviceName":{"shape":"String"},
1820
- "clusterArn":{"shape":"String"},
1821
- "loadBalancers":{"shape":"LoadBalancers"},
1822
- "serviceRegistries":{"shape":"ServiceRegistries"},
1823
- "status":{"shape":"String"},
1824
- "desiredCount":{"shape":"Integer"},
1825
- "runningCount":{"shape":"Integer"},
1826
- "pendingCount":{"shape":"Integer"},
1827
- "launchType":{"shape":"LaunchType"},
1828
- "platformVersion":{"shape":"String"},
1829
- "taskDefinition":{"shape":"String"},
1830
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
1831
- "taskSets":{"shape":"TaskSets"},
1832
- "deployments":{"shape":"Deployments"},
1833
- "roleArn":{"shape":"String"},
1834
- "events":{"shape":"ServiceEvents"},
1835
- "createdAt":{"shape":"Timestamp"},
1836
- "placementConstraints":{"shape":"PlacementConstraints"},
1837
- "placementStrategy":{"shape":"PlacementStrategies"},
1838
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1839
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
1840
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
1841
- "deploymentController":{"shape":"DeploymentController"},
1842
- "tags":{"shape":"Tags"},
1843
- "createdBy":{"shape":"String"},
1844
- "enableECSManagedTags":{"shape":"Boolean"},
1845
- "propagateTags":{"shape":"PropagateTags"}
1846
- }
1847
- },
1848
- "ServiceEvent":{
1849
- "type":"structure",
1850
- "members":{
1851
- "id":{"shape":"String"},
1852
- "createdAt":{"shape":"Timestamp"},
1853
- "message":{"shape":"String"}
1854
- }
1855
- },
1856
- "ServiceEvents":{
1857
- "type":"list",
1858
- "member":{"shape":"ServiceEvent"}
1859
- },
1860
- "ServiceField":{
1861
- "type":"string",
1862
- "enum":["TAGS"]
1863
- },
1864
- "ServiceFieldList":{
1865
- "type":"list",
1866
- "member":{"shape":"ServiceField"}
1867
- },
1868
- "ServiceNotActiveException":{
1869
- "type":"structure",
1870
- "members":{
1871
- },
1872
- "exception":true
1873
- },
1874
- "ServiceNotFoundException":{
1875
- "type":"structure",
1876
- "members":{
1877
- },
1878
- "exception":true
1879
- },
1880
- "ServiceRegistries":{
1881
- "type":"list",
1882
- "member":{"shape":"ServiceRegistry"}
1883
- },
1884
- "ServiceRegistry":{
1885
- "type":"structure",
1886
- "members":{
1887
- "registryArn":{"shape":"String"},
1888
- "port":{"shape":"BoxedInteger"},
1889
- "containerName":{"shape":"String"},
1890
- "containerPort":{"shape":"BoxedInteger"}
1891
- }
1892
- },
1893
- "Services":{
1894
- "type":"list",
1895
- "member":{"shape":"Service"}
1896
- },
1897
- "Setting":{
1898
- "type":"structure",
1899
- "members":{
1900
- "name":{"shape":"SettingName"},
1901
- "value":{"shape":"String"},
1902
- "principalArn":{"shape":"String"}
1903
- }
1904
- },
1905
- "SettingName":{
1906
- "type":"string",
1907
- "enum":[
1908
- "serviceLongArnFormat",
1909
- "taskLongArnFormat",
1910
- "containerInstanceLongArnFormat"
1911
- ]
1912
- },
1913
- "Settings":{
1914
- "type":"list",
1915
- "member":{"shape":"Setting"}
1916
- },
1917
- "SortOrder":{
1918
- "type":"string",
1919
- "enum":[
1920
- "ASC",
1921
- "DESC"
1922
- ]
1923
- },
1924
- "StabilityStatus":{
1925
- "type":"string",
1926
- "enum":[
1927
- "STEADY_STATE",
1928
- "STABILIZING"
1929
- ]
1930
- },
1931
- "StartTaskRequest":{
1932
- "type":"structure",
1933
- "required":[
1934
- "taskDefinition",
1935
- "containerInstances"
1936
- ],
1937
- "members":{
1938
- "cluster":{"shape":"String"},
1939
- "taskDefinition":{"shape":"String"},
1940
- "overrides":{"shape":"TaskOverride"},
1941
- "containerInstances":{"shape":"StringList"},
1942
- "startedBy":{"shape":"String"},
1943
- "group":{"shape":"String"},
1944
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1945
- "tags":{"shape":"Tags"},
1946
- "enableECSManagedTags":{"shape":"Boolean"},
1947
- "propagateTags":{"shape":"PropagateTags"}
1948
- }
1949
- },
1950
- "StartTaskResponse":{
1951
- "type":"structure",
1952
- "members":{
1953
- "tasks":{"shape":"Tasks"},
1954
- "failures":{"shape":"Failures"}
1955
- }
1956
- },
1957
- "Statistics":{
1958
- "type":"list",
1959
- "member":{"shape":"KeyValuePair"}
1960
- },
1961
- "StopTaskRequest":{
1962
- "type":"structure",
1963
- "required":["task"],
1964
- "members":{
1965
- "cluster":{"shape":"String"},
1966
- "task":{"shape":"String"},
1967
- "reason":{"shape":"String"}
1968
- }
1969
- },
1970
- "StopTaskResponse":{
1971
- "type":"structure",
1972
- "members":{
1973
- "task":{"shape":"Task"}
1974
- }
1975
- },
1976
- "String":{"type":"string"},
1977
- "StringList":{
1978
- "type":"list",
1979
- "member":{"shape":"String"}
1980
- },
1981
- "StringMap":{
1982
- "type":"map",
1983
- "key":{"shape":"String"},
1984
- "value":{"shape":"String"}
1985
- },
1986
- "SubmitContainerStateChangeRequest":{
1987
- "type":"structure",
1988
- "members":{
1989
- "cluster":{"shape":"String"},
1990
- "task":{"shape":"String"},
1991
- "containerName":{"shape":"String"},
1992
- "status":{"shape":"String"},
1993
- "exitCode":{"shape":"BoxedInteger"},
1994
- "reason":{"shape":"String"},
1995
- "networkBindings":{"shape":"NetworkBindings"}
1996
- }
1997
- },
1998
- "SubmitContainerStateChangeResponse":{
1999
- "type":"structure",
2000
- "members":{
2001
- "acknowledgment":{"shape":"String"}
2002
- }
2003
- },
2004
- "SubmitTaskStateChangeRequest":{
2005
- "type":"structure",
2006
- "members":{
2007
- "cluster":{"shape":"String"},
2008
- "task":{"shape":"String"},
2009
- "status":{"shape":"String"},
2010
- "reason":{"shape":"String"},
2011
- "containers":{"shape":"ContainerStateChanges"},
2012
- "attachments":{"shape":"AttachmentStateChanges"},
2013
- "pullStartedAt":{"shape":"Timestamp"},
2014
- "pullStoppedAt":{"shape":"Timestamp"},
2015
- "executionStoppedAt":{"shape":"Timestamp"}
2016
- }
2017
- },
2018
- "SubmitTaskStateChangeResponse":{
2019
- "type":"structure",
2020
- "members":{
2021
- "acknowledgment":{"shape":"String"}
2022
- }
2023
- },
2024
- "SystemControl":{
2025
- "type":"structure",
2026
- "members":{
2027
- "namespace":{"shape":"String"},
2028
- "value":{"shape":"String"}
2029
- }
2030
- },
2031
- "SystemControls":{
2032
- "type":"list",
2033
- "member":{"shape":"SystemControl"}
2034
- },
2035
- "Tag":{
2036
- "type":"structure",
2037
- "members":{
2038
- "key":{"shape":"TagKey"},
2039
- "value":{"shape":"TagValue"}
2040
- }
2041
- },
2042
- "TagKey":{
2043
- "type":"string",
2044
- "max":128,
2045
- "min":1,
2046
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2047
- },
2048
- "TagKeys":{
2049
- "type":"list",
2050
- "member":{"shape":"TagKey"}
2051
- },
2052
- "TagResourceRequest":{
2053
- "type":"structure",
2054
- "required":[
2055
- "resourceArn",
2056
- "tags"
2057
- ],
2058
- "members":{
2059
- "resourceArn":{"shape":"String"},
2060
- "tags":{"shape":"Tags"}
2061
- }
2062
- },
2063
- "TagResourceResponse":{
2064
- "type":"structure",
2065
- "members":{
2066
- }
2067
- },
2068
- "TagValue":{
2069
- "type":"string",
2070
- "max":256,
2071
- "min":0,
2072
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2073
- },
2074
- "Tags":{
2075
- "type":"list",
2076
- "member":{"shape":"Tag"},
2077
- "max":50,
2078
- "min":0
2079
- },
2080
- "TargetNotFoundException":{
2081
- "type":"structure",
2082
- "members":{
2083
- },
2084
- "exception":true
2085
- },
2086
- "TargetType":{
2087
- "type":"string",
2088
- "enum":["container-instance"]
2089
- },
2090
- "Task":{
2091
- "type":"structure",
2092
- "members":{
2093
- "taskArn":{"shape":"String"},
2094
- "clusterArn":{"shape":"String"},
2095
- "taskDefinitionArn":{"shape":"String"},
2096
- "containerInstanceArn":{"shape":"String"},
2097
- "overrides":{"shape":"TaskOverride"},
2098
- "lastStatus":{"shape":"String"},
2099
- "desiredStatus":{"shape":"String"},
2100
- "cpu":{"shape":"String"},
2101
- "memory":{"shape":"String"},
2102
- "containers":{"shape":"Containers"},
2103
- "startedBy":{"shape":"String"},
2104
- "version":{"shape":"Long"},
2105
- "stoppedReason":{"shape":"String"},
2106
- "stopCode":{"shape":"TaskStopCode"},
2107
- "connectivity":{"shape":"Connectivity"},
2108
- "connectivityAt":{"shape":"Timestamp"},
2109
- "pullStartedAt":{"shape":"Timestamp"},
2110
- "pullStoppedAt":{"shape":"Timestamp"},
2111
- "executionStoppedAt":{"shape":"Timestamp"},
2112
- "createdAt":{"shape":"Timestamp"},
2113
- "startedAt":{"shape":"Timestamp"},
2114
- "stoppingAt":{"shape":"Timestamp"},
2115
- "stoppedAt":{"shape":"Timestamp"},
2116
- "group":{"shape":"String"},
2117
- "launchType":{"shape":"LaunchType"},
2118
- "platformVersion":{"shape":"String"},
2119
- "attachments":{"shape":"Attachments"},
2120
- "healthStatus":{"shape":"HealthStatus"},
2121
- "tags":{"shape":"Tags"}
2122
- }
2123
- },
2124
- "TaskDefinition":{
2125
- "type":"structure",
2126
- "members":{
2127
- "taskDefinitionArn":{"shape":"String"},
2128
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2129
- "family":{"shape":"String"},
2130
- "taskRoleArn":{"shape":"String"},
2131
- "executionRoleArn":{"shape":"String"},
2132
- "networkMode":{"shape":"NetworkMode"},
2133
- "revision":{"shape":"Integer"},
2134
- "volumes":{"shape":"VolumeList"},
2135
- "status":{"shape":"TaskDefinitionStatus"},
2136
- "requiresAttributes":{"shape":"RequiresAttributes"},
2137
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2138
- "compatibilities":{"shape":"CompatibilityList"},
2139
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2140
- "cpu":{"shape":"String"},
2141
- "memory":{"shape":"String"},
2142
- "pidMode":{"shape":"PidMode"},
2143
- "ipcMode":{"shape":"IpcMode"}
2144
- }
2145
- },
2146
- "TaskDefinitionFamilyStatus":{
2147
- "type":"string",
2148
- "enum":[
2149
- "ACTIVE",
2150
- "INACTIVE",
2151
- "ALL"
2152
- ]
2153
- },
2154
- "TaskDefinitionField":{
2155
- "type":"string",
2156
- "enum":["TAGS"]
2157
- },
2158
- "TaskDefinitionFieldList":{
2159
- "type":"list",
2160
- "member":{"shape":"TaskDefinitionField"}
2161
- },
2162
- "TaskDefinitionPlacementConstraint":{
2163
- "type":"structure",
2164
- "members":{
2165
- "type":{"shape":"TaskDefinitionPlacementConstraintType"},
2166
- "expression":{"shape":"String"}
2167
- }
2168
- },
2169
- "TaskDefinitionPlacementConstraintType":{
2170
- "type":"string",
2171
- "enum":["memberOf"]
2172
- },
2173
- "TaskDefinitionPlacementConstraints":{
2174
- "type":"list",
2175
- "member":{"shape":"TaskDefinitionPlacementConstraint"}
2176
- },
2177
- "TaskDefinitionStatus":{
2178
- "type":"string",
2179
- "enum":[
2180
- "ACTIVE",
2181
- "INACTIVE"
2182
- ]
2183
- },
2184
- "TaskField":{
2185
- "type":"string",
2186
- "enum":["TAGS"]
2187
- },
2188
- "TaskFieldList":{
2189
- "type":"list",
2190
- "member":{"shape":"TaskField"}
2191
- },
2192
- "TaskOverride":{
2193
- "type":"structure",
2194
- "members":{
2195
- "containerOverrides":{"shape":"ContainerOverrides"},
2196
- "taskRoleArn":{"shape":"String"},
2197
- "executionRoleArn":{"shape":"String"}
2198
- }
2199
- },
2200
- "TaskSet":{
2201
- "type":"structure",
2202
- "members":{
2203
- "id":{"shape":"String"},
2204
- "taskSetArn":{"shape":"String"},
2205
- "startedBy":{"shape":"String"},
2206
- "externalId":{"shape":"String"},
2207
- "status":{"shape":"String"},
2208
- "taskDefinition":{"shape":"String"},
2209
- "computedDesiredCount":{"shape":"Integer"},
2210
- "pendingCount":{"shape":"Integer"},
2211
- "runningCount":{"shape":"Integer"},
2212
- "createdAt":{"shape":"Timestamp"},
2213
- "updatedAt":{"shape":"Timestamp"},
2214
- "launchType":{"shape":"LaunchType"},
2215
- "platformVersion":{"shape":"String"},
2216
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2217
- "loadBalancers":{"shape":"LoadBalancers"},
2218
- "scale":{"shape":"Scale"},
2219
- "stabilityStatus":{"shape":"StabilityStatus"},
2220
- "stabilityStatusAt":{"shape":"Timestamp"}
2221
- }
2222
- },
2223
- "TaskSets":{
2224
- "type":"list",
2225
- "member":{"shape":"TaskSet"}
2226
- },
2227
- "TaskStopCode":{
2228
- "type":"string",
2229
- "enum":[
2230
- "TaskFailedToStart",
2231
- "EssentialContainerExited",
2232
- "UserInitiated"
2233
- ]
2234
- },
2235
- "Tasks":{
2236
- "type":"list",
2237
- "member":{"shape":"Task"}
2238
- },
2239
- "Timestamp":{"type":"timestamp"},
2240
- "Tmpfs":{
2241
- "type":"structure",
2242
- "required":[
2243
- "containerPath",
2244
- "size"
2245
- ],
2246
- "members":{
2247
- "containerPath":{"shape":"String"},
2248
- "size":{"shape":"Integer"},
2249
- "mountOptions":{"shape":"StringList"}
2250
- }
2251
- },
2252
- "TmpfsList":{
2253
- "type":"list",
2254
- "member":{"shape":"Tmpfs"}
2255
- },
2256
- "TransportProtocol":{
2257
- "type":"string",
2258
- "enum":[
2259
- "tcp",
2260
- "udp"
2261
- ]
2262
- },
2263
- "Ulimit":{
2264
- "type":"structure",
2265
- "required":[
2266
- "name",
2267
- "softLimit",
2268
- "hardLimit"
2269
- ],
2270
- "members":{
2271
- "name":{"shape":"UlimitName"},
2272
- "softLimit":{"shape":"Integer"},
2273
- "hardLimit":{"shape":"Integer"}
2274
- }
2275
- },
2276
- "UlimitList":{
2277
- "type":"list",
2278
- "member":{"shape":"Ulimit"}
2279
- },
2280
- "UlimitName":{
2281
- "type":"string",
2282
- "enum":[
2283
- "core",
2284
- "cpu",
2285
- "data",
2286
- "fsize",
2287
- "locks",
2288
- "memlock",
2289
- "msgqueue",
2290
- "nice",
2291
- "nofile",
2292
- "nproc",
2293
- "rss",
2294
- "rtprio",
2295
- "rttime",
2296
- "sigpending",
2297
- "stack"
2298
- ]
2299
- },
2300
- "UnsupportedFeatureException":{
2301
- "type":"structure",
2302
- "members":{
2303
- },
2304
- "exception":true
2305
- },
2306
- "UntagResourceRequest":{
2307
- "type":"structure",
2308
- "required":[
2309
- "resourceArn",
2310
- "tagKeys"
2311
- ],
2312
- "members":{
2313
- "resourceArn":{"shape":"String"},
2314
- "tagKeys":{"shape":"TagKeys"}
2315
- }
2316
- },
2317
- "UntagResourceResponse":{
2318
- "type":"structure",
2319
- "members":{
2320
- }
2321
- },
2322
- "UpdateContainerAgentRequest":{
2323
- "type":"structure",
2324
- "required":["containerInstance"],
2325
- "members":{
2326
- "cluster":{"shape":"String"},
2327
- "containerInstance":{"shape":"String"}
2328
- }
2329
- },
2330
- "UpdateContainerAgentResponse":{
2331
- "type":"structure",
2332
- "members":{
2333
- "containerInstance":{"shape":"ContainerInstance"}
2334
- }
2335
- },
2336
- "UpdateContainerInstancesStateRequest":{
2337
- "type":"structure",
2338
- "required":[
2339
- "containerInstances",
2340
- "status"
2341
- ],
2342
- "members":{
2343
- "cluster":{"shape":"String"},
2344
- "containerInstances":{"shape":"StringList"},
2345
- "status":{"shape":"ContainerInstanceStatus"}
2346
- }
2347
- },
2348
- "UpdateContainerInstancesStateResponse":{
2349
- "type":"structure",
2350
- "members":{
2351
- "containerInstances":{"shape":"ContainerInstances"},
2352
- "failures":{"shape":"Failures"}
2353
- }
2354
- },
2355
- "UpdateInProgressException":{
2356
- "type":"structure",
2357
- "members":{
2358
- },
2359
- "exception":true
2360
- },
2361
- "UpdateServiceRequest":{
2362
- "type":"structure",
2363
- "required":["service"],
2364
- "members":{
2365
- "cluster":{"shape":"String"},
2366
- "service":{"shape":"String"},
2367
- "desiredCount":{"shape":"BoxedInteger"},
2368
- "taskDefinition":{"shape":"String"},
2369
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
2370
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2371
- "platformVersion":{"shape":"String"},
2372
- "forceNewDeployment":{"shape":"Boolean"},
2373
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
2374
- }
2375
- },
2376
- "UpdateServiceResponse":{
2377
- "type":"structure",
2378
- "members":{
2379
- "service":{"shape":"Service"}
2380
- }
2381
- },
2382
- "VersionInfo":{
2383
- "type":"structure",
2384
- "members":{
2385
- "agentVersion":{"shape":"String"},
2386
- "agentHash":{"shape":"String"},
2387
- "dockerVersion":{"shape":"String"}
2388
- }
2389
- },
2390
- "Volume":{
2391
- "type":"structure",
2392
- "members":{
2393
- "name":{"shape":"String"},
2394
- "host":{"shape":"HostVolumeProperties"},
2395
- "dockerVolumeConfiguration":{"shape":"DockerVolumeConfiguration"}
2396
- }
2397
- },
2398
- "VolumeFrom":{
2399
- "type":"structure",
2400
- "members":{
2401
- "sourceContainer":{"shape":"String"},
2402
- "readOnly":{"shape":"BoxedBoolean"}
2403
- }
2404
- },
2405
- "VolumeFromList":{
2406
- "type":"list",
2407
- "member":{"shape":"VolumeFrom"}
2408
- },
2409
- "VolumeList":{
2410
- "type":"list",
2411
- "member":{"shape":"Volume"}
2412
- }
2413
- }
2414
- }