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,3062 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-10-06",
5
- "endpointPrefix":"codedeploy",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"CodeDeploy",
9
- "serviceFullName":"AWS CodeDeploy",
10
- "serviceId":"CodeDeploy",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"CodeDeploy_20141006",
13
- "uid":"codedeploy-2014-10-06"
14
- },
15
- "operations":{
16
- "AddTagsToOnPremisesInstances":{
17
- "name":"AddTagsToOnPremisesInstances",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"AddTagsToOnPremisesInstancesInput"},
23
- "errors":[
24
- {"shape":"InstanceNameRequiredException"},
25
- {"shape":"InvalidInstanceNameException"},
26
- {"shape":"TagRequiredException"},
27
- {"shape":"InvalidTagException"},
28
- {"shape":"TagLimitExceededException"},
29
- {"shape":"InstanceLimitExceededException"},
30
- {"shape":"InstanceNotRegisteredException"}
31
- ]
32
- },
33
- "BatchGetApplicationRevisions":{
34
- "name":"BatchGetApplicationRevisions",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/"
38
- },
39
- "input":{"shape":"BatchGetApplicationRevisionsInput"},
40
- "output":{"shape":"BatchGetApplicationRevisionsOutput"},
41
- "errors":[
42
- {"shape":"ApplicationDoesNotExistException"},
43
- {"shape":"ApplicationNameRequiredException"},
44
- {"shape":"InvalidApplicationNameException"},
45
- {"shape":"RevisionRequiredException"},
46
- {"shape":"InvalidRevisionException"},
47
- {"shape":"BatchLimitExceededException"}
48
- ]
49
- },
50
- "BatchGetApplications":{
51
- "name":"BatchGetApplications",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"BatchGetApplicationsInput"},
57
- "output":{"shape":"BatchGetApplicationsOutput"},
58
- "errors":[
59
- {"shape":"ApplicationNameRequiredException"},
60
- {"shape":"InvalidApplicationNameException"},
61
- {"shape":"ApplicationDoesNotExistException"},
62
- {"shape":"BatchLimitExceededException"}
63
- ]
64
- },
65
- "BatchGetDeploymentGroups":{
66
- "name":"BatchGetDeploymentGroups",
67
- "http":{
68
- "method":"POST",
69
- "requestUri":"/"
70
- },
71
- "input":{"shape":"BatchGetDeploymentGroupsInput"},
72
- "output":{"shape":"BatchGetDeploymentGroupsOutput"},
73
- "errors":[
74
- {"shape":"ApplicationNameRequiredException"},
75
- {"shape":"InvalidApplicationNameException"},
76
- {"shape":"ApplicationDoesNotExistException"},
77
- {"shape":"DeploymentGroupNameRequiredException"},
78
- {"shape":"InvalidDeploymentGroupNameException"},
79
- {"shape":"BatchLimitExceededException"},
80
- {"shape":"DeploymentConfigDoesNotExistException"}
81
- ]
82
- },
83
- "BatchGetDeploymentInstances":{
84
- "name":"BatchGetDeploymentInstances",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/"
88
- },
89
- "input":{"shape":"BatchGetDeploymentInstancesInput"},
90
- "output":{"shape":"BatchGetDeploymentInstancesOutput"},
91
- "errors":[
92
- {"shape":"DeploymentIdRequiredException"},
93
- {"shape":"DeploymentDoesNotExistException"},
94
- {"shape":"InstanceIdRequiredException"},
95
- {"shape":"InvalidDeploymentIdException"},
96
- {"shape":"InvalidInstanceNameException"},
97
- {"shape":"BatchLimitExceededException"},
98
- {"shape":"InvalidComputePlatformException"}
99
- ],
100
- "deprecated":true,
101
- "deprecatedMessage":"This operation is deprecated, use BatchGetDeploymentTargets instead."
102
- },
103
- "BatchGetDeploymentTargets":{
104
- "name":"BatchGetDeploymentTargets",
105
- "http":{
106
- "method":"POST",
107
- "requestUri":"/"
108
- },
109
- "input":{"shape":"BatchGetDeploymentTargetsInput"},
110
- "output":{"shape":"BatchGetDeploymentTargetsOutput"},
111
- "errors":[
112
- {"shape":"InvalidDeploymentIdException"},
113
- {"shape":"DeploymentIdRequiredException"},
114
- {"shape":"DeploymentDoesNotExistException"},
115
- {"shape":"DeploymentTargetIdRequiredException"},
116
- {"shape":"InvalidDeploymentTargetIdException"},
117
- {"shape":"DeploymentTargetDoesNotExistException"},
118
- {"shape":"DeploymentTargetListSizeExceededException"}
119
- ]
120
- },
121
- "BatchGetDeployments":{
122
- "name":"BatchGetDeployments",
123
- "http":{
124
- "method":"POST",
125
- "requestUri":"/"
126
- },
127
- "input":{"shape":"BatchGetDeploymentsInput"},
128
- "output":{"shape":"BatchGetDeploymentsOutput"},
129
- "errors":[
130
- {"shape":"DeploymentIdRequiredException"},
131
- {"shape":"InvalidDeploymentIdException"},
132
- {"shape":"BatchLimitExceededException"}
133
- ]
134
- },
135
- "BatchGetOnPremisesInstances":{
136
- "name":"BatchGetOnPremisesInstances",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"BatchGetOnPremisesInstancesInput"},
142
- "output":{"shape":"BatchGetOnPremisesInstancesOutput"},
143
- "errors":[
144
- {"shape":"InstanceNameRequiredException"},
145
- {"shape":"InvalidInstanceNameException"},
146
- {"shape":"BatchLimitExceededException"}
147
- ]
148
- },
149
- "ContinueDeployment":{
150
- "name":"ContinueDeployment",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/"
154
- },
155
- "input":{"shape":"ContinueDeploymentInput"},
156
- "errors":[
157
- {"shape":"DeploymentIdRequiredException"},
158
- {"shape":"DeploymentDoesNotExistException"},
159
- {"shape":"DeploymentAlreadyCompletedException"},
160
- {"shape":"InvalidDeploymentIdException"},
161
- {"shape":"DeploymentIsNotInReadyStateException"},
162
- {"shape":"UnsupportedActionForDeploymentTypeException"},
163
- {"shape":"InvalidDeploymentWaitTypeException"},
164
- {"shape":"InvalidDeploymentStatusException"}
165
- ]
166
- },
167
- "CreateApplication":{
168
- "name":"CreateApplication",
169
- "http":{
170
- "method":"POST",
171
- "requestUri":"/"
172
- },
173
- "input":{"shape":"CreateApplicationInput"},
174
- "output":{"shape":"CreateApplicationOutput"},
175
- "errors":[
176
- {"shape":"ApplicationNameRequiredException"},
177
- {"shape":"InvalidApplicationNameException"},
178
- {"shape":"ApplicationAlreadyExistsException"},
179
- {"shape":"ApplicationLimitExceededException"},
180
- {"shape":"InvalidComputePlatformException"}
181
- ]
182
- },
183
- "CreateDeployment":{
184
- "name":"CreateDeployment",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"CreateDeploymentInput"},
190
- "output":{"shape":"CreateDeploymentOutput"},
191
- "errors":[
192
- {"shape":"ApplicationNameRequiredException"},
193
- {"shape":"InvalidApplicationNameException"},
194
- {"shape":"ApplicationDoesNotExistException"},
195
- {"shape":"DeploymentGroupNameRequiredException"},
196
- {"shape":"InvalidDeploymentGroupNameException"},
197
- {"shape":"DeploymentGroupDoesNotExistException"},
198
- {"shape":"RevisionRequiredException"},
199
- {"shape":"RevisionDoesNotExistException"},
200
- {"shape":"InvalidRevisionException"},
201
- {"shape":"InvalidDeploymentConfigNameException"},
202
- {"shape":"DeploymentConfigDoesNotExistException"},
203
- {"shape":"DescriptionTooLongException"},
204
- {"shape":"DeploymentLimitExceededException"},
205
- {"shape":"InvalidTargetInstancesException"},
206
- {"shape":"InvalidAutoRollbackConfigException"},
207
- {"shape":"InvalidLoadBalancerInfoException"},
208
- {"shape":"InvalidFileExistsBehaviorException"},
209
- {"shape":"InvalidRoleException"},
210
- {"shape":"InvalidAutoScalingGroupException"},
211
- {"shape":"ThrottlingException"},
212
- {"shape":"InvalidUpdateOutdatedInstancesOnlyValueException"},
213
- {"shape":"InvalidIgnoreApplicationStopFailuresValueException"},
214
- {"shape":"InvalidGitHubAccountTokenException"}
215
- ]
216
- },
217
- "CreateDeploymentConfig":{
218
- "name":"CreateDeploymentConfig",
219
- "http":{
220
- "method":"POST",
221
- "requestUri":"/"
222
- },
223
- "input":{"shape":"CreateDeploymentConfigInput"},
224
- "output":{"shape":"CreateDeploymentConfigOutput"},
225
- "errors":[
226
- {"shape":"InvalidDeploymentConfigNameException"},
227
- {"shape":"DeploymentConfigNameRequiredException"},
228
- {"shape":"DeploymentConfigAlreadyExistsException"},
229
- {"shape":"InvalidMinimumHealthyHostValueException"},
230
- {"shape":"DeploymentConfigLimitExceededException"},
231
- {"shape":"InvalidComputePlatformException"},
232
- {"shape":"InvalidTrafficRoutingConfigurationException"}
233
- ]
234
- },
235
- "CreateDeploymentGroup":{
236
- "name":"CreateDeploymentGroup",
237
- "http":{
238
- "method":"POST",
239
- "requestUri":"/"
240
- },
241
- "input":{"shape":"CreateDeploymentGroupInput"},
242
- "output":{"shape":"CreateDeploymentGroupOutput"},
243
- "errors":[
244
- {"shape":"ApplicationNameRequiredException"},
245
- {"shape":"InvalidApplicationNameException"},
246
- {"shape":"ApplicationDoesNotExistException"},
247
- {"shape":"DeploymentGroupNameRequiredException"},
248
- {"shape":"InvalidDeploymentGroupNameException"},
249
- {"shape":"DeploymentGroupAlreadyExistsException"},
250
- {"shape":"InvalidEC2TagException"},
251
- {"shape":"InvalidTagException"},
252
- {"shape":"InvalidAutoScalingGroupException"},
253
- {"shape":"InvalidDeploymentConfigNameException"},
254
- {"shape":"DeploymentConfigDoesNotExistException"},
255
- {"shape":"RoleRequiredException"},
256
- {"shape":"InvalidRoleException"},
257
- {"shape":"DeploymentGroupLimitExceededException"},
258
- {"shape":"LifecycleHookLimitExceededException"},
259
- {"shape":"InvalidTriggerConfigException"},
260
- {"shape":"TriggerTargetsLimitExceededException"},
261
- {"shape":"InvalidAlarmConfigException"},
262
- {"shape":"AlarmsLimitExceededException"},
263
- {"shape":"InvalidAutoRollbackConfigException"},
264
- {"shape":"InvalidLoadBalancerInfoException"},
265
- {"shape":"InvalidDeploymentStyleException"},
266
- {"shape":"InvalidBlueGreenDeploymentConfigurationException"},
267
- {"shape":"InvalidEC2TagCombinationException"},
268
- {"shape":"InvalidOnPremisesTagCombinationException"},
269
- {"shape":"TagSetListLimitExceededException"},
270
- {"shape":"InvalidInputException"},
271
- {"shape":"ThrottlingException"},
272
- {"shape":"InvalidECSServiceException"},
273
- {"shape":"InvalidTargetGroupPairException"},
274
- {"shape":"ECSServiceMappingLimitExceededException"}
275
- ]
276
- },
277
- "DeleteApplication":{
278
- "name":"DeleteApplication",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"DeleteApplicationInput"},
284
- "errors":[
285
- {"shape":"ApplicationNameRequiredException"},
286
- {"shape":"InvalidApplicationNameException"}
287
- ]
288
- },
289
- "DeleteDeploymentConfig":{
290
- "name":"DeleteDeploymentConfig",
291
- "http":{
292
- "method":"POST",
293
- "requestUri":"/"
294
- },
295
- "input":{"shape":"DeleteDeploymentConfigInput"},
296
- "errors":[
297
- {"shape":"InvalidDeploymentConfigNameException"},
298
- {"shape":"DeploymentConfigNameRequiredException"},
299
- {"shape":"DeploymentConfigInUseException"},
300
- {"shape":"InvalidOperationException"}
301
- ]
302
- },
303
- "DeleteDeploymentGroup":{
304
- "name":"DeleteDeploymentGroup",
305
- "http":{
306
- "method":"POST",
307
- "requestUri":"/"
308
- },
309
- "input":{"shape":"DeleteDeploymentGroupInput"},
310
- "output":{"shape":"DeleteDeploymentGroupOutput"},
311
- "errors":[
312
- {"shape":"ApplicationNameRequiredException"},
313
- {"shape":"InvalidApplicationNameException"},
314
- {"shape":"DeploymentGroupNameRequiredException"},
315
- {"shape":"InvalidDeploymentGroupNameException"},
316
- {"shape":"InvalidRoleException"}
317
- ]
318
- },
319
- "DeleteGitHubAccountToken":{
320
- "name":"DeleteGitHubAccountToken",
321
- "http":{
322
- "method":"POST",
323
- "requestUri":"/"
324
- },
325
- "input":{"shape":"DeleteGitHubAccountTokenInput"},
326
- "output":{"shape":"DeleteGitHubAccountTokenOutput"},
327
- "errors":[
328
- {"shape":"GitHubAccountTokenNameRequiredException"},
329
- {"shape":"GitHubAccountTokenDoesNotExistException"},
330
- {"shape":"InvalidGitHubAccountTokenNameException"},
331
- {"shape":"ResourceValidationException"},
332
- {"shape":"OperationNotSupportedException"}
333
- ]
334
- },
335
- "DeregisterOnPremisesInstance":{
336
- "name":"DeregisterOnPremisesInstance",
337
- "http":{
338
- "method":"POST",
339
- "requestUri":"/"
340
- },
341
- "input":{"shape":"DeregisterOnPremisesInstanceInput"},
342
- "errors":[
343
- {"shape":"InstanceNameRequiredException"},
344
- {"shape":"InvalidInstanceNameException"}
345
- ]
346
- },
347
- "GetApplication":{
348
- "name":"GetApplication",
349
- "http":{
350
- "method":"POST",
351
- "requestUri":"/"
352
- },
353
- "input":{"shape":"GetApplicationInput"},
354
- "output":{"shape":"GetApplicationOutput"},
355
- "errors":[
356
- {"shape":"ApplicationNameRequiredException"},
357
- {"shape":"InvalidApplicationNameException"},
358
- {"shape":"ApplicationDoesNotExistException"}
359
- ]
360
- },
361
- "GetApplicationRevision":{
362
- "name":"GetApplicationRevision",
363
- "http":{
364
- "method":"POST",
365
- "requestUri":"/"
366
- },
367
- "input":{"shape":"GetApplicationRevisionInput"},
368
- "output":{"shape":"GetApplicationRevisionOutput"},
369
- "errors":[
370
- {"shape":"ApplicationDoesNotExistException"},
371
- {"shape":"ApplicationNameRequiredException"},
372
- {"shape":"InvalidApplicationNameException"},
373
- {"shape":"RevisionDoesNotExistException"},
374
- {"shape":"RevisionRequiredException"},
375
- {"shape":"InvalidRevisionException"}
376
- ]
377
- },
378
- "GetDeployment":{
379
- "name":"GetDeployment",
380
- "http":{
381
- "method":"POST",
382
- "requestUri":"/"
383
- },
384
- "input":{"shape":"GetDeploymentInput"},
385
- "output":{"shape":"GetDeploymentOutput"},
386
- "errors":[
387
- {"shape":"DeploymentIdRequiredException"},
388
- {"shape":"InvalidDeploymentIdException"},
389
- {"shape":"DeploymentDoesNotExistException"}
390
- ]
391
- },
392
- "GetDeploymentConfig":{
393
- "name":"GetDeploymentConfig",
394
- "http":{
395
- "method":"POST",
396
- "requestUri":"/"
397
- },
398
- "input":{"shape":"GetDeploymentConfigInput"},
399
- "output":{"shape":"GetDeploymentConfigOutput"},
400
- "errors":[
401
- {"shape":"InvalidDeploymentConfigNameException"},
402
- {"shape":"DeploymentConfigNameRequiredException"},
403
- {"shape":"DeploymentConfigDoesNotExistException"},
404
- {"shape":"InvalidComputePlatformException"}
405
- ]
406
- },
407
- "GetDeploymentGroup":{
408
- "name":"GetDeploymentGroup",
409
- "http":{
410
- "method":"POST",
411
- "requestUri":"/"
412
- },
413
- "input":{"shape":"GetDeploymentGroupInput"},
414
- "output":{"shape":"GetDeploymentGroupOutput"},
415
- "errors":[
416
- {"shape":"ApplicationNameRequiredException"},
417
- {"shape":"InvalidApplicationNameException"},
418
- {"shape":"ApplicationDoesNotExistException"},
419
- {"shape":"DeploymentGroupNameRequiredException"},
420
- {"shape":"InvalidDeploymentGroupNameException"},
421
- {"shape":"DeploymentGroupDoesNotExistException"},
422
- {"shape":"DeploymentConfigDoesNotExistException"}
423
- ]
424
- },
425
- "GetDeploymentInstance":{
426
- "name":"GetDeploymentInstance",
427
- "http":{
428
- "method":"POST",
429
- "requestUri":"/"
430
- },
431
- "input":{"shape":"GetDeploymentInstanceInput"},
432
- "output":{"shape":"GetDeploymentInstanceOutput"},
433
- "errors":[
434
- {"shape":"DeploymentIdRequiredException"},
435
- {"shape":"DeploymentDoesNotExistException"},
436
- {"shape":"InstanceIdRequiredException"},
437
- {"shape":"InvalidDeploymentIdException"},
438
- {"shape":"InstanceDoesNotExistException"},
439
- {"shape":"InvalidInstanceNameException"},
440
- {"shape":"InvalidComputePlatformException"}
441
- ],
442
- "deprecated":true,
443
- "deprecatedMessage":"This operation is deprecated, use GetDeploymentTarget instead."
444
- },
445
- "GetDeploymentTarget":{
446
- "name":"GetDeploymentTarget",
447
- "http":{
448
- "method":"POST",
449
- "requestUri":"/"
450
- },
451
- "input":{"shape":"GetDeploymentTargetInput"},
452
- "output":{"shape":"GetDeploymentTargetOutput"},
453
- "errors":[
454
- {"shape":"InvalidDeploymentIdException"},
455
- {"shape":"DeploymentIdRequiredException"},
456
- {"shape":"DeploymentDoesNotExistException"},
457
- {"shape":"DeploymentTargetIdRequiredException"},
458
- {"shape":"InvalidDeploymentTargetIdException"},
459
- {"shape":"DeploymentTargetDoesNotExistException"},
460
- {"shape":"InvalidInstanceNameException"}
461
- ]
462
- },
463
- "GetOnPremisesInstance":{
464
- "name":"GetOnPremisesInstance",
465
- "http":{
466
- "method":"POST",
467
- "requestUri":"/"
468
- },
469
- "input":{"shape":"GetOnPremisesInstanceInput"},
470
- "output":{"shape":"GetOnPremisesInstanceOutput"},
471
- "errors":[
472
- {"shape":"InstanceNameRequiredException"},
473
- {"shape":"InstanceNotRegisteredException"},
474
- {"shape":"InvalidInstanceNameException"}
475
- ]
476
- },
477
- "ListApplicationRevisions":{
478
- "name":"ListApplicationRevisions",
479
- "http":{
480
- "method":"POST",
481
- "requestUri":"/"
482
- },
483
- "input":{"shape":"ListApplicationRevisionsInput"},
484
- "output":{"shape":"ListApplicationRevisionsOutput"},
485
- "errors":[
486
- {"shape":"ApplicationDoesNotExistException"},
487
- {"shape":"ApplicationNameRequiredException"},
488
- {"shape":"InvalidApplicationNameException"},
489
- {"shape":"InvalidSortByException"},
490
- {"shape":"InvalidSortOrderException"},
491
- {"shape":"InvalidBucketNameFilterException"},
492
- {"shape":"InvalidKeyPrefixFilterException"},
493
- {"shape":"BucketNameFilterRequiredException"},
494
- {"shape":"InvalidDeployedStateFilterException"},
495
- {"shape":"InvalidNextTokenException"}
496
- ]
497
- },
498
- "ListApplications":{
499
- "name":"ListApplications",
500
- "http":{
501
- "method":"POST",
502
- "requestUri":"/"
503
- },
504
- "input":{"shape":"ListApplicationsInput"},
505
- "output":{"shape":"ListApplicationsOutput"},
506
- "errors":[
507
- {"shape":"InvalidNextTokenException"}
508
- ]
509
- },
510
- "ListDeploymentConfigs":{
511
- "name":"ListDeploymentConfigs",
512
- "http":{
513
- "method":"POST",
514
- "requestUri":"/"
515
- },
516
- "input":{"shape":"ListDeploymentConfigsInput"},
517
- "output":{"shape":"ListDeploymentConfigsOutput"},
518
- "errors":[
519
- {"shape":"InvalidNextTokenException"}
520
- ]
521
- },
522
- "ListDeploymentGroups":{
523
- "name":"ListDeploymentGroups",
524
- "http":{
525
- "method":"POST",
526
- "requestUri":"/"
527
- },
528
- "input":{"shape":"ListDeploymentGroupsInput"},
529
- "output":{"shape":"ListDeploymentGroupsOutput"},
530
- "errors":[
531
- {"shape":"ApplicationNameRequiredException"},
532
- {"shape":"InvalidApplicationNameException"},
533
- {"shape":"ApplicationDoesNotExistException"},
534
- {"shape":"InvalidNextTokenException"}
535
- ]
536
- },
537
- "ListDeploymentInstances":{
538
- "name":"ListDeploymentInstances",
539
- "http":{
540
- "method":"POST",
541
- "requestUri":"/"
542
- },
543
- "input":{"shape":"ListDeploymentInstancesInput"},
544
- "output":{"shape":"ListDeploymentInstancesOutput"},
545
- "errors":[
546
- {"shape":"DeploymentIdRequiredException"},
547
- {"shape":"DeploymentDoesNotExistException"},
548
- {"shape":"DeploymentNotStartedException"},
549
- {"shape":"InvalidNextTokenException"},
550
- {"shape":"InvalidDeploymentIdException"},
551
- {"shape":"InvalidInstanceStatusException"},
552
- {"shape":"InvalidInstanceTypeException"},
553
- {"shape":"InvalidDeploymentInstanceTypeException"},
554
- {"shape":"InvalidTargetFilterNameException"},
555
- {"shape":"InvalidComputePlatformException"}
556
- ],
557
- "deprecated":true,
558
- "deprecatedMessage":"This operation is deprecated, use ListDeploymentTargets instead."
559
- },
560
- "ListDeploymentTargets":{
561
- "name":"ListDeploymentTargets",
562
- "http":{
563
- "method":"POST",
564
- "requestUri":"/"
565
- },
566
- "input":{"shape":"ListDeploymentTargetsInput"},
567
- "output":{"shape":"ListDeploymentTargetsOutput"},
568
- "errors":[
569
- {"shape":"DeploymentIdRequiredException"},
570
- {"shape":"DeploymentDoesNotExistException"},
571
- {"shape":"DeploymentNotStartedException"},
572
- {"shape":"InvalidNextTokenException"},
573
- {"shape":"InvalidDeploymentIdException"},
574
- {"shape":"InvalidInstanceStatusException"},
575
- {"shape":"InvalidInstanceTypeException"},
576
- {"shape":"InvalidDeploymentInstanceTypeException"}
577
- ]
578
- },
579
- "ListDeployments":{
580
- "name":"ListDeployments",
581
- "http":{
582
- "method":"POST",
583
- "requestUri":"/"
584
- },
585
- "input":{"shape":"ListDeploymentsInput"},
586
- "output":{"shape":"ListDeploymentsOutput"},
587
- "errors":[
588
- {"shape":"ApplicationNameRequiredException"},
589
- {"shape":"InvalidApplicationNameException"},
590
- {"shape":"ApplicationDoesNotExistException"},
591
- {"shape":"InvalidDeploymentGroupNameException"},
592
- {"shape":"DeploymentGroupDoesNotExistException"},
593
- {"shape":"DeploymentGroupNameRequiredException"},
594
- {"shape":"InvalidTimeRangeException"},
595
- {"shape":"InvalidDeploymentStatusException"},
596
- {"shape":"InvalidNextTokenException"}
597
- ]
598
- },
599
- "ListGitHubAccountTokenNames":{
600
- "name":"ListGitHubAccountTokenNames",
601
- "http":{
602
- "method":"POST",
603
- "requestUri":"/"
604
- },
605
- "input":{"shape":"ListGitHubAccountTokenNamesInput"},
606
- "output":{"shape":"ListGitHubAccountTokenNamesOutput"},
607
- "errors":[
608
- {"shape":"InvalidNextTokenException"},
609
- {"shape":"ResourceValidationException"},
610
- {"shape":"OperationNotSupportedException"}
611
- ]
612
- },
613
- "ListOnPremisesInstances":{
614
- "name":"ListOnPremisesInstances",
615
- "http":{
616
- "method":"POST",
617
- "requestUri":"/"
618
- },
619
- "input":{"shape":"ListOnPremisesInstancesInput"},
620
- "output":{"shape":"ListOnPremisesInstancesOutput"},
621
- "errors":[
622
- {"shape":"InvalidRegistrationStatusException"},
623
- {"shape":"InvalidTagFilterException"},
624
- {"shape":"InvalidNextTokenException"}
625
- ]
626
- },
627
- "PutLifecycleEventHookExecutionStatus":{
628
- "name":"PutLifecycleEventHookExecutionStatus",
629
- "http":{
630
- "method":"POST",
631
- "requestUri":"/"
632
- },
633
- "input":{"shape":"PutLifecycleEventHookExecutionStatusInput"},
634
- "output":{"shape":"PutLifecycleEventHookExecutionStatusOutput"},
635
- "errors":[
636
- {"shape":"InvalidLifecycleEventHookExecutionStatusException"},
637
- {"shape":"InvalidLifecycleEventHookExecutionIdException"},
638
- {"shape":"LifecycleEventAlreadyCompletedException"},
639
- {"shape":"DeploymentIdRequiredException"},
640
- {"shape":"DeploymentDoesNotExistException"},
641
- {"shape":"InvalidDeploymentIdException"},
642
- {"shape":"UnsupportedActionForDeploymentTypeException"}
643
- ]
644
- },
645
- "RegisterApplicationRevision":{
646
- "name":"RegisterApplicationRevision",
647
- "http":{
648
- "method":"POST",
649
- "requestUri":"/"
650
- },
651
- "input":{"shape":"RegisterApplicationRevisionInput"},
652
- "errors":[
653
- {"shape":"ApplicationDoesNotExistException"},
654
- {"shape":"ApplicationNameRequiredException"},
655
- {"shape":"InvalidApplicationNameException"},
656
- {"shape":"DescriptionTooLongException"},
657
- {"shape":"RevisionRequiredException"},
658
- {"shape":"InvalidRevisionException"}
659
- ]
660
- },
661
- "RegisterOnPremisesInstance":{
662
- "name":"RegisterOnPremisesInstance",
663
- "http":{
664
- "method":"POST",
665
- "requestUri":"/"
666
- },
667
- "input":{"shape":"RegisterOnPremisesInstanceInput"},
668
- "errors":[
669
- {"shape":"InstanceNameAlreadyRegisteredException"},
670
- {"shape":"IamArnRequiredException"},
671
- {"shape":"IamSessionArnAlreadyRegisteredException"},
672
- {"shape":"IamUserArnAlreadyRegisteredException"},
673
- {"shape":"InstanceNameRequiredException"},
674
- {"shape":"IamUserArnRequiredException"},
675
- {"shape":"InvalidInstanceNameException"},
676
- {"shape":"InvalidIamSessionArnException"},
677
- {"shape":"InvalidIamUserArnException"},
678
- {"shape":"MultipleIamArnsProvidedException"}
679
- ]
680
- },
681
- "RemoveTagsFromOnPremisesInstances":{
682
- "name":"RemoveTagsFromOnPremisesInstances",
683
- "http":{
684
- "method":"POST",
685
- "requestUri":"/"
686
- },
687
- "input":{"shape":"RemoveTagsFromOnPremisesInstancesInput"},
688
- "errors":[
689
- {"shape":"InstanceNameRequiredException"},
690
- {"shape":"InvalidInstanceNameException"},
691
- {"shape":"TagRequiredException"},
692
- {"shape":"InvalidTagException"},
693
- {"shape":"TagLimitExceededException"},
694
- {"shape":"InstanceLimitExceededException"},
695
- {"shape":"InstanceNotRegisteredException"}
696
- ]
697
- },
698
- "SkipWaitTimeForInstanceTermination":{
699
- "name":"SkipWaitTimeForInstanceTermination",
700
- "http":{
701
- "method":"POST",
702
- "requestUri":"/"
703
- },
704
- "input":{"shape":"SkipWaitTimeForInstanceTerminationInput"},
705
- "errors":[
706
- {"shape":"DeploymentIdRequiredException"},
707
- {"shape":"DeploymentDoesNotExistException"},
708
- {"shape":"DeploymentAlreadyCompletedException"},
709
- {"shape":"InvalidDeploymentIdException"},
710
- {"shape":"DeploymentNotStartedException"},
711
- {"shape":"UnsupportedActionForDeploymentTypeException"}
712
- ],
713
- "deprecated":true,
714
- "deprecatedMessage":"This operation is deprecated, use ContinueDeployment with DeploymentWaitType instead."
715
- },
716
- "StopDeployment":{
717
- "name":"StopDeployment",
718
- "http":{
719
- "method":"POST",
720
- "requestUri":"/"
721
- },
722
- "input":{"shape":"StopDeploymentInput"},
723
- "output":{"shape":"StopDeploymentOutput"},
724
- "errors":[
725
- {"shape":"DeploymentIdRequiredException"},
726
- {"shape":"DeploymentDoesNotExistException"},
727
- {"shape":"DeploymentGroupDoesNotExistException"},
728
- {"shape":"DeploymentAlreadyCompletedException"},
729
- {"shape":"InvalidDeploymentIdException"}
730
- ]
731
- },
732
- "UpdateApplication":{
733
- "name":"UpdateApplication",
734
- "http":{
735
- "method":"POST",
736
- "requestUri":"/"
737
- },
738
- "input":{"shape":"UpdateApplicationInput"},
739
- "errors":[
740
- {"shape":"ApplicationNameRequiredException"},
741
- {"shape":"InvalidApplicationNameException"},
742
- {"shape":"ApplicationAlreadyExistsException"},
743
- {"shape":"ApplicationDoesNotExistException"}
744
- ]
745
- },
746
- "UpdateDeploymentGroup":{
747
- "name":"UpdateDeploymentGroup",
748
- "http":{
749
- "method":"POST",
750
- "requestUri":"/"
751
- },
752
- "input":{"shape":"UpdateDeploymentGroupInput"},
753
- "output":{"shape":"UpdateDeploymentGroupOutput"},
754
- "errors":[
755
- {"shape":"ApplicationNameRequiredException"},
756
- {"shape":"InvalidApplicationNameException"},
757
- {"shape":"ApplicationDoesNotExistException"},
758
- {"shape":"InvalidDeploymentGroupNameException"},
759
- {"shape":"DeploymentGroupAlreadyExistsException"},
760
- {"shape":"DeploymentGroupNameRequiredException"},
761
- {"shape":"DeploymentGroupDoesNotExistException"},
762
- {"shape":"InvalidEC2TagException"},
763
- {"shape":"InvalidTagException"},
764
- {"shape":"InvalidAutoScalingGroupException"},
765
- {"shape":"InvalidDeploymentConfigNameException"},
766
- {"shape":"DeploymentConfigDoesNotExistException"},
767
- {"shape":"InvalidRoleException"},
768
- {"shape":"LifecycleHookLimitExceededException"},
769
- {"shape":"InvalidTriggerConfigException"},
770
- {"shape":"TriggerTargetsLimitExceededException"},
771
- {"shape":"InvalidAlarmConfigException"},
772
- {"shape":"AlarmsLimitExceededException"},
773
- {"shape":"InvalidAutoRollbackConfigException"},
774
- {"shape":"InvalidLoadBalancerInfoException"},
775
- {"shape":"InvalidDeploymentStyleException"},
776
- {"shape":"InvalidBlueGreenDeploymentConfigurationException"},
777
- {"shape":"InvalidEC2TagCombinationException"},
778
- {"shape":"InvalidOnPremisesTagCombinationException"},
779
- {"shape":"TagSetListLimitExceededException"},
780
- {"shape":"InvalidInputException"},
781
- {"shape":"ThrottlingException"},
782
- {"shape":"InvalidECSServiceException"},
783
- {"shape":"InvalidTargetGroupPairException"},
784
- {"shape":"ECSServiceMappingLimitExceededException"}
785
- ]
786
- }
787
- },
788
- "shapes":{
789
- "AddTagsToOnPremisesInstancesInput":{
790
- "type":"structure",
791
- "required":[
792
- "tags",
793
- "instanceNames"
794
- ],
795
- "members":{
796
- "tags":{"shape":"TagList"},
797
- "instanceNames":{"shape":"InstanceNameList"}
798
- }
799
- },
800
- "AdditionalDeploymentStatusInfo":{
801
- "type":"string",
802
- "deprecated":true,
803
- "deprecatedMessage":"AdditionalDeploymentStatusInfo is deprecated, use DeploymentStatusMessageList instead."
804
- },
805
- "Alarm":{
806
- "type":"structure",
807
- "members":{
808
- "name":{"shape":"AlarmName"}
809
- }
810
- },
811
- "AlarmConfiguration":{
812
- "type":"structure",
813
- "members":{
814
- "enabled":{"shape":"Boolean"},
815
- "ignorePollAlarmFailure":{"shape":"Boolean"},
816
- "alarms":{"shape":"AlarmList"}
817
- }
818
- },
819
- "AlarmList":{
820
- "type":"list",
821
- "member":{"shape":"Alarm"}
822
- },
823
- "AlarmName":{"type":"string"},
824
- "AlarmsLimitExceededException":{
825
- "type":"structure",
826
- "members":{
827
- },
828
- "exception":true
829
- },
830
- "AppSpecContent":{
831
- "type":"structure",
832
- "members":{
833
- "content":{"shape":"RawStringContent"},
834
- "sha256":{"shape":"RawStringSha256"}
835
- }
836
- },
837
- "ApplicationAlreadyExistsException":{
838
- "type":"structure",
839
- "members":{
840
- },
841
- "exception":true
842
- },
843
- "ApplicationDoesNotExistException":{
844
- "type":"structure",
845
- "members":{
846
- },
847
- "exception":true
848
- },
849
- "ApplicationId":{"type":"string"},
850
- "ApplicationInfo":{
851
- "type":"structure",
852
- "members":{
853
- "applicationId":{"shape":"ApplicationId"},
854
- "applicationName":{"shape":"ApplicationName"},
855
- "createTime":{"shape":"Timestamp"},
856
- "linkedToGitHub":{"shape":"Boolean"},
857
- "gitHubAccountName":{"shape":"GitHubAccountTokenName"},
858
- "computePlatform":{"shape":"ComputePlatform"}
859
- }
860
- },
861
- "ApplicationLimitExceededException":{
862
- "type":"structure",
863
- "members":{
864
- },
865
- "exception":true
866
- },
867
- "ApplicationName":{
868
- "type":"string",
869
- "max":100,
870
- "min":1
871
- },
872
- "ApplicationNameRequiredException":{
873
- "type":"structure",
874
- "members":{
875
- },
876
- "exception":true
877
- },
878
- "ApplicationRevisionSortBy":{
879
- "type":"string",
880
- "enum":[
881
- "registerTime",
882
- "firstUsedTime",
883
- "lastUsedTime"
884
- ]
885
- },
886
- "ApplicationsInfoList":{
887
- "type":"list",
888
- "member":{"shape":"ApplicationInfo"}
889
- },
890
- "ApplicationsList":{
891
- "type":"list",
892
- "member":{"shape":"ApplicationName"}
893
- },
894
- "AutoRollbackConfiguration":{
895
- "type":"structure",
896
- "members":{
897
- "enabled":{"shape":"Boolean"},
898
- "events":{"shape":"AutoRollbackEventsList"}
899
- }
900
- },
901
- "AutoRollbackEvent":{
902
- "type":"string",
903
- "enum":[
904
- "DEPLOYMENT_FAILURE",
905
- "DEPLOYMENT_STOP_ON_ALARM",
906
- "DEPLOYMENT_STOP_ON_REQUEST"
907
- ]
908
- },
909
- "AutoRollbackEventsList":{
910
- "type":"list",
911
- "member":{"shape":"AutoRollbackEvent"}
912
- },
913
- "AutoScalingGroup":{
914
- "type":"structure",
915
- "members":{
916
- "name":{"shape":"AutoScalingGroupName"},
917
- "hook":{"shape":"AutoScalingGroupHook"}
918
- }
919
- },
920
- "AutoScalingGroupHook":{"type":"string"},
921
- "AutoScalingGroupList":{
922
- "type":"list",
923
- "member":{"shape":"AutoScalingGroup"}
924
- },
925
- "AutoScalingGroupName":{"type":"string"},
926
- "AutoScalingGroupNameList":{
927
- "type":"list",
928
- "member":{"shape":"AutoScalingGroupName"}
929
- },
930
- "BatchGetApplicationRevisionsInput":{
931
- "type":"structure",
932
- "required":[
933
- "applicationName",
934
- "revisions"
935
- ],
936
- "members":{
937
- "applicationName":{"shape":"ApplicationName"},
938
- "revisions":{"shape":"RevisionLocationList"}
939
- }
940
- },
941
- "BatchGetApplicationRevisionsOutput":{
942
- "type":"structure",
943
- "members":{
944
- "applicationName":{"shape":"ApplicationName"},
945
- "errorMessage":{"shape":"ErrorMessage"},
946
- "revisions":{"shape":"RevisionInfoList"}
947
- }
948
- },
949
- "BatchGetApplicationsInput":{
950
- "type":"structure",
951
- "required":["applicationNames"],
952
- "members":{
953
- "applicationNames":{"shape":"ApplicationsList"}
954
- }
955
- },
956
- "BatchGetApplicationsOutput":{
957
- "type":"structure",
958
- "members":{
959
- "applicationsInfo":{"shape":"ApplicationsInfoList"}
960
- }
961
- },
962
- "BatchGetDeploymentGroupsInput":{
963
- "type":"structure",
964
- "required":[
965
- "applicationName",
966
- "deploymentGroupNames"
967
- ],
968
- "members":{
969
- "applicationName":{"shape":"ApplicationName"},
970
- "deploymentGroupNames":{"shape":"DeploymentGroupsList"}
971
- }
972
- },
973
- "BatchGetDeploymentGroupsOutput":{
974
- "type":"structure",
975
- "members":{
976
- "deploymentGroupsInfo":{"shape":"DeploymentGroupInfoList"},
977
- "errorMessage":{"shape":"ErrorMessage"}
978
- }
979
- },
980
- "BatchGetDeploymentInstancesInput":{
981
- "type":"structure",
982
- "required":[
983
- "deploymentId",
984
- "instanceIds"
985
- ],
986
- "members":{
987
- "deploymentId":{"shape":"DeploymentId"},
988
- "instanceIds":{"shape":"InstancesList"}
989
- }
990
- },
991
- "BatchGetDeploymentInstancesOutput":{
992
- "type":"structure",
993
- "members":{
994
- "instancesSummary":{"shape":"InstanceSummaryList"},
995
- "errorMessage":{"shape":"ErrorMessage"}
996
- }
997
- },
998
- "BatchGetDeploymentTargetsInput":{
999
- "type":"structure",
1000
- "members":{
1001
- "deploymentId":{"shape":"DeploymentId"},
1002
- "targetIds":{"shape":"TargetIdList"}
1003
- }
1004
- },
1005
- "BatchGetDeploymentTargetsOutput":{
1006
- "type":"structure",
1007
- "members":{
1008
- "deploymentTargets":{"shape":"DeploymentTargetList"}
1009
- }
1010
- },
1011
- "BatchGetDeploymentsInput":{
1012
- "type":"structure",
1013
- "required":["deploymentIds"],
1014
- "members":{
1015
- "deploymentIds":{"shape":"DeploymentsList"}
1016
- }
1017
- },
1018
- "BatchGetDeploymentsOutput":{
1019
- "type":"structure",
1020
- "members":{
1021
- "deploymentsInfo":{"shape":"DeploymentsInfoList"}
1022
- }
1023
- },
1024
- "BatchGetOnPremisesInstancesInput":{
1025
- "type":"structure",
1026
- "required":["instanceNames"],
1027
- "members":{
1028
- "instanceNames":{"shape":"InstanceNameList"}
1029
- }
1030
- },
1031
- "BatchGetOnPremisesInstancesOutput":{
1032
- "type":"structure",
1033
- "members":{
1034
- "instanceInfos":{"shape":"InstanceInfoList"}
1035
- }
1036
- },
1037
- "BatchLimitExceededException":{
1038
- "type":"structure",
1039
- "members":{
1040
- },
1041
- "exception":true
1042
- },
1043
- "BlueGreenDeploymentConfiguration":{
1044
- "type":"structure",
1045
- "members":{
1046
- "terminateBlueInstancesOnDeploymentSuccess":{"shape":"BlueInstanceTerminationOption"},
1047
- "deploymentReadyOption":{"shape":"DeploymentReadyOption"},
1048
- "greenFleetProvisioningOption":{"shape":"GreenFleetProvisioningOption"}
1049
- }
1050
- },
1051
- "BlueInstanceTerminationOption":{
1052
- "type":"structure",
1053
- "members":{
1054
- "action":{"shape":"InstanceAction"},
1055
- "terminationWaitTimeInMinutes":{"shape":"Duration"}
1056
- }
1057
- },
1058
- "Boolean":{"type":"boolean"},
1059
- "BucketNameFilterRequiredException":{
1060
- "type":"structure",
1061
- "members":{
1062
- },
1063
- "exception":true
1064
- },
1065
- "BundleType":{
1066
- "type":"string",
1067
- "enum":[
1068
- "tar",
1069
- "tgz",
1070
- "zip",
1071
- "YAML",
1072
- "JSON"
1073
- ]
1074
- },
1075
- "CommitId":{"type":"string"},
1076
- "ComputePlatform":{
1077
- "type":"string",
1078
- "enum":[
1079
- "Server",
1080
- "Lambda",
1081
- "ECS"
1082
- ]
1083
- },
1084
- "ContinueDeploymentInput":{
1085
- "type":"structure",
1086
- "members":{
1087
- "deploymentId":{"shape":"DeploymentId"},
1088
- "deploymentWaitType":{"shape":"DeploymentWaitType"}
1089
- }
1090
- },
1091
- "CreateApplicationInput":{
1092
- "type":"structure",
1093
- "required":["applicationName"],
1094
- "members":{
1095
- "applicationName":{"shape":"ApplicationName"},
1096
- "computePlatform":{"shape":"ComputePlatform"}
1097
- }
1098
- },
1099
- "CreateApplicationOutput":{
1100
- "type":"structure",
1101
- "members":{
1102
- "applicationId":{"shape":"ApplicationId"}
1103
- }
1104
- },
1105
- "CreateDeploymentConfigInput":{
1106
- "type":"structure",
1107
- "required":["deploymentConfigName"],
1108
- "members":{
1109
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1110
- "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"},
1111
- "trafficRoutingConfig":{"shape":"TrafficRoutingConfig"},
1112
- "computePlatform":{"shape":"ComputePlatform"}
1113
- }
1114
- },
1115
- "CreateDeploymentConfigOutput":{
1116
- "type":"structure",
1117
- "members":{
1118
- "deploymentConfigId":{"shape":"DeploymentConfigId"}
1119
- }
1120
- },
1121
- "CreateDeploymentGroupInput":{
1122
- "type":"structure",
1123
- "required":[
1124
- "applicationName",
1125
- "deploymentGroupName",
1126
- "serviceRoleArn"
1127
- ],
1128
- "members":{
1129
- "applicationName":{"shape":"ApplicationName"},
1130
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1131
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1132
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
1133
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
1134
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
1135
- "serviceRoleArn":{"shape":"Role"},
1136
- "triggerConfigurations":{"shape":"TriggerConfigList"},
1137
- "alarmConfiguration":{"shape":"AlarmConfiguration"},
1138
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1139
- "deploymentStyle":{"shape":"DeploymentStyle"},
1140
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
1141
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"},
1142
- "ec2TagSet":{"shape":"EC2TagSet"},
1143
- "ecsServices":{"shape":"ECSServiceList"},
1144
- "onPremisesTagSet":{"shape":"OnPremisesTagSet"}
1145
- }
1146
- },
1147
- "CreateDeploymentGroupOutput":{
1148
- "type":"structure",
1149
- "members":{
1150
- "deploymentGroupId":{"shape":"DeploymentGroupId"}
1151
- }
1152
- },
1153
- "CreateDeploymentInput":{
1154
- "type":"structure",
1155
- "required":["applicationName"],
1156
- "members":{
1157
- "applicationName":{"shape":"ApplicationName"},
1158
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1159
- "revision":{"shape":"RevisionLocation"},
1160
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1161
- "description":{"shape":"Description"},
1162
- "ignoreApplicationStopFailures":{"shape":"Boolean"},
1163
- "targetInstances":{"shape":"TargetInstances"},
1164
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1165
- "updateOutdatedInstancesOnly":{"shape":"Boolean"},
1166
- "fileExistsBehavior":{"shape":"FileExistsBehavior"}
1167
- }
1168
- },
1169
- "CreateDeploymentOutput":{
1170
- "type":"structure",
1171
- "members":{
1172
- "deploymentId":{"shape":"DeploymentId"}
1173
- }
1174
- },
1175
- "DeleteApplicationInput":{
1176
- "type":"structure",
1177
- "required":["applicationName"],
1178
- "members":{
1179
- "applicationName":{"shape":"ApplicationName"}
1180
- }
1181
- },
1182
- "DeleteDeploymentConfigInput":{
1183
- "type":"structure",
1184
- "required":["deploymentConfigName"],
1185
- "members":{
1186
- "deploymentConfigName":{"shape":"DeploymentConfigName"}
1187
- }
1188
- },
1189
- "DeleteDeploymentGroupInput":{
1190
- "type":"structure",
1191
- "required":[
1192
- "applicationName",
1193
- "deploymentGroupName"
1194
- ],
1195
- "members":{
1196
- "applicationName":{"shape":"ApplicationName"},
1197
- "deploymentGroupName":{"shape":"DeploymentGroupName"}
1198
- }
1199
- },
1200
- "DeleteDeploymentGroupOutput":{
1201
- "type":"structure",
1202
- "members":{
1203
- "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
1204
- }
1205
- },
1206
- "DeleteGitHubAccountTokenInput":{
1207
- "type":"structure",
1208
- "members":{
1209
- "tokenName":{"shape":"GitHubAccountTokenName"}
1210
- }
1211
- },
1212
- "DeleteGitHubAccountTokenOutput":{
1213
- "type":"structure",
1214
- "members":{
1215
- "tokenName":{"shape":"GitHubAccountTokenName"}
1216
- }
1217
- },
1218
- "DeploymentAlreadyCompletedException":{
1219
- "type":"structure",
1220
- "members":{
1221
- },
1222
- "exception":true
1223
- },
1224
- "DeploymentAlreadyStartedException":{
1225
- "type":"structure",
1226
- "members":{
1227
- },
1228
- "exception":true
1229
- },
1230
- "DeploymentConfigAlreadyExistsException":{
1231
- "type":"structure",
1232
- "members":{
1233
- },
1234
- "exception":true
1235
- },
1236
- "DeploymentConfigDoesNotExistException":{
1237
- "type":"structure",
1238
- "members":{
1239
- },
1240
- "exception":true
1241
- },
1242
- "DeploymentConfigId":{"type":"string"},
1243
- "DeploymentConfigInUseException":{
1244
- "type":"structure",
1245
- "members":{
1246
- },
1247
- "exception":true
1248
- },
1249
- "DeploymentConfigInfo":{
1250
- "type":"structure",
1251
- "members":{
1252
- "deploymentConfigId":{"shape":"DeploymentConfigId"},
1253
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1254
- "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"},
1255
- "createTime":{"shape":"Timestamp"},
1256
- "computePlatform":{"shape":"ComputePlatform"},
1257
- "trafficRoutingConfig":{"shape":"TrafficRoutingConfig"}
1258
- }
1259
- },
1260
- "DeploymentConfigLimitExceededException":{
1261
- "type":"structure",
1262
- "members":{
1263
- },
1264
- "exception":true
1265
- },
1266
- "DeploymentConfigName":{
1267
- "type":"string",
1268
- "max":100,
1269
- "min":1
1270
- },
1271
- "DeploymentConfigNameRequiredException":{
1272
- "type":"structure",
1273
- "members":{
1274
- },
1275
- "exception":true
1276
- },
1277
- "DeploymentConfigsList":{
1278
- "type":"list",
1279
- "member":{"shape":"DeploymentConfigName"}
1280
- },
1281
- "DeploymentCreator":{
1282
- "type":"string",
1283
- "enum":[
1284
- "user",
1285
- "autoscaling",
1286
- "codeDeployRollback"
1287
- ]
1288
- },
1289
- "DeploymentDoesNotExistException":{
1290
- "type":"structure",
1291
- "members":{
1292
- },
1293
- "exception":true
1294
- },
1295
- "DeploymentGroupAlreadyExistsException":{
1296
- "type":"structure",
1297
- "members":{
1298
- },
1299
- "exception":true
1300
- },
1301
- "DeploymentGroupDoesNotExistException":{
1302
- "type":"structure",
1303
- "members":{
1304
- },
1305
- "exception":true
1306
- },
1307
- "DeploymentGroupId":{"type":"string"},
1308
- "DeploymentGroupInfo":{
1309
- "type":"structure",
1310
- "members":{
1311
- "applicationName":{"shape":"ApplicationName"},
1312
- "deploymentGroupId":{"shape":"DeploymentGroupId"},
1313
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1314
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1315
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
1316
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
1317
- "autoScalingGroups":{"shape":"AutoScalingGroupList"},
1318
- "serviceRoleArn":{"shape":"Role"},
1319
- "targetRevision":{"shape":"RevisionLocation"},
1320
- "triggerConfigurations":{"shape":"TriggerConfigList"},
1321
- "alarmConfiguration":{"shape":"AlarmConfiguration"},
1322
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1323
- "deploymentStyle":{"shape":"DeploymentStyle"},
1324
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
1325
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"},
1326
- "lastSuccessfulDeployment":{"shape":"LastDeploymentInfo"},
1327
- "lastAttemptedDeployment":{"shape":"LastDeploymentInfo"},
1328
- "ec2TagSet":{"shape":"EC2TagSet"},
1329
- "onPremisesTagSet":{"shape":"OnPremisesTagSet"},
1330
- "computePlatform":{"shape":"ComputePlatform"},
1331
- "ecsServices":{"shape":"ECSServiceList"}
1332
- }
1333
- },
1334
- "DeploymentGroupInfoList":{
1335
- "type":"list",
1336
- "member":{"shape":"DeploymentGroupInfo"}
1337
- },
1338
- "DeploymentGroupLimitExceededException":{
1339
- "type":"structure",
1340
- "members":{
1341
- },
1342
- "exception":true
1343
- },
1344
- "DeploymentGroupName":{
1345
- "type":"string",
1346
- "max":100,
1347
- "min":1
1348
- },
1349
- "DeploymentGroupNameRequiredException":{
1350
- "type":"structure",
1351
- "members":{
1352
- },
1353
- "exception":true
1354
- },
1355
- "DeploymentGroupsList":{
1356
- "type":"list",
1357
- "member":{"shape":"DeploymentGroupName"}
1358
- },
1359
- "DeploymentId":{"type":"string"},
1360
- "DeploymentIdRequiredException":{
1361
- "type":"structure",
1362
- "members":{
1363
- },
1364
- "exception":true
1365
- },
1366
- "DeploymentInfo":{
1367
- "type":"structure",
1368
- "members":{
1369
- "applicationName":{"shape":"ApplicationName"},
1370
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1371
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1372
- "deploymentId":{"shape":"DeploymentId"},
1373
- "previousRevision":{"shape":"RevisionLocation"},
1374
- "revision":{"shape":"RevisionLocation"},
1375
- "status":{"shape":"DeploymentStatus"},
1376
- "errorInformation":{"shape":"ErrorInformation"},
1377
- "createTime":{"shape":"Timestamp"},
1378
- "startTime":{"shape":"Timestamp"},
1379
- "completeTime":{"shape":"Timestamp"},
1380
- "deploymentOverview":{"shape":"DeploymentOverview"},
1381
- "description":{"shape":"Description"},
1382
- "creator":{"shape":"DeploymentCreator"},
1383
- "ignoreApplicationStopFailures":{"shape":"Boolean"},
1384
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1385
- "updateOutdatedInstancesOnly":{"shape":"Boolean"},
1386
- "rollbackInfo":{"shape":"RollbackInfo"},
1387
- "deploymentStyle":{"shape":"DeploymentStyle"},
1388
- "targetInstances":{"shape":"TargetInstances"},
1389
- "instanceTerminationWaitTimeStarted":{"shape":"Boolean"},
1390
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
1391
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"},
1392
- "additionalDeploymentStatusInfo":{"shape":"AdditionalDeploymentStatusInfo"},
1393
- "fileExistsBehavior":{"shape":"FileExistsBehavior"},
1394
- "deploymentStatusMessages":{"shape":"DeploymentStatusMessageList"},
1395
- "computePlatform":{"shape":"ComputePlatform"}
1396
- }
1397
- },
1398
- "DeploymentIsNotInReadyStateException":{
1399
- "type":"structure",
1400
- "members":{
1401
- },
1402
- "exception":true
1403
- },
1404
- "DeploymentLimitExceededException":{
1405
- "type":"structure",
1406
- "members":{
1407
- },
1408
- "exception":true
1409
- },
1410
- "DeploymentNotStartedException":{
1411
- "type":"structure",
1412
- "members":{
1413
- },
1414
- "exception":true
1415
- },
1416
- "DeploymentOption":{
1417
- "type":"string",
1418
- "enum":[
1419
- "WITH_TRAFFIC_CONTROL",
1420
- "WITHOUT_TRAFFIC_CONTROL"
1421
- ]
1422
- },
1423
- "DeploymentOverview":{
1424
- "type":"structure",
1425
- "members":{
1426
- "Pending":{"shape":"InstanceCount"},
1427
- "InProgress":{"shape":"InstanceCount"},
1428
- "Succeeded":{"shape":"InstanceCount"},
1429
- "Failed":{"shape":"InstanceCount"},
1430
- "Skipped":{"shape":"InstanceCount"},
1431
- "Ready":{"shape":"InstanceCount"}
1432
- }
1433
- },
1434
- "DeploymentReadyAction":{
1435
- "type":"string",
1436
- "enum":[
1437
- "CONTINUE_DEPLOYMENT",
1438
- "STOP_DEPLOYMENT"
1439
- ]
1440
- },
1441
- "DeploymentReadyOption":{
1442
- "type":"structure",
1443
- "members":{
1444
- "actionOnTimeout":{"shape":"DeploymentReadyAction"},
1445
- "waitTimeInMinutes":{"shape":"Duration"}
1446
- }
1447
- },
1448
- "DeploymentStatus":{
1449
- "type":"string",
1450
- "enum":[
1451
- "Created",
1452
- "Queued",
1453
- "InProgress",
1454
- "Succeeded",
1455
- "Failed",
1456
- "Stopped",
1457
- "Ready"
1458
- ]
1459
- },
1460
- "DeploymentStatusList":{
1461
- "type":"list",
1462
- "member":{"shape":"DeploymentStatus"}
1463
- },
1464
- "DeploymentStatusMessageList":{
1465
- "type":"list",
1466
- "member":{"shape":"ErrorMessage"}
1467
- },
1468
- "DeploymentStyle":{
1469
- "type":"structure",
1470
- "members":{
1471
- "deploymentType":{"shape":"DeploymentType"},
1472
- "deploymentOption":{"shape":"DeploymentOption"}
1473
- }
1474
- },
1475
- "DeploymentTarget":{
1476
- "type":"structure",
1477
- "members":{
1478
- "deploymentTargetType":{"shape":"DeploymentTargetType"},
1479
- "instanceTarget":{"shape":"InstanceTarget"},
1480
- "lambdaTarget":{"shape":"LambdaTarget"},
1481
- "ecsTarget":{"shape":"ECSTarget"}
1482
- }
1483
- },
1484
- "DeploymentTargetDoesNotExistException":{
1485
- "type":"structure",
1486
- "members":{
1487
- },
1488
- "exception":true
1489
- },
1490
- "DeploymentTargetIdRequiredException":{
1491
- "type":"structure",
1492
- "members":{
1493
- },
1494
- "exception":true
1495
- },
1496
- "DeploymentTargetList":{
1497
- "type":"list",
1498
- "member":{"shape":"DeploymentTarget"}
1499
- },
1500
- "DeploymentTargetListSizeExceededException":{
1501
- "type":"structure",
1502
- "members":{
1503
- },
1504
- "exception":true
1505
- },
1506
- "DeploymentTargetType":{
1507
- "type":"string",
1508
- "enum":[
1509
- "InstanceTarget",
1510
- "LambdaTarget",
1511
- "ECSTarget"
1512
- ]
1513
- },
1514
- "DeploymentType":{
1515
- "type":"string",
1516
- "enum":[
1517
- "IN_PLACE",
1518
- "BLUE_GREEN"
1519
- ]
1520
- },
1521
- "DeploymentWaitType":{
1522
- "type":"string",
1523
- "enum":[
1524
- "READY_WAIT",
1525
- "TERMINATION_WAIT"
1526
- ]
1527
- },
1528
- "DeploymentsInfoList":{
1529
- "type":"list",
1530
- "member":{"shape":"DeploymentInfo"}
1531
- },
1532
- "DeploymentsList":{
1533
- "type":"list",
1534
- "member":{"shape":"DeploymentId"}
1535
- },
1536
- "DeregisterOnPremisesInstanceInput":{
1537
- "type":"structure",
1538
- "required":["instanceName"],
1539
- "members":{
1540
- "instanceName":{"shape":"InstanceName"}
1541
- }
1542
- },
1543
- "Description":{"type":"string"},
1544
- "DescriptionTooLongException":{
1545
- "type":"structure",
1546
- "members":{
1547
- },
1548
- "exception":true
1549
- },
1550
- "Diagnostics":{
1551
- "type":"structure",
1552
- "members":{
1553
- "errorCode":{"shape":"LifecycleErrorCode"},
1554
- "scriptName":{"shape":"ScriptName"},
1555
- "message":{"shape":"LifecycleMessage"},
1556
- "logTail":{"shape":"LogTail"}
1557
- }
1558
- },
1559
- "Duration":{"type":"integer"},
1560
- "EC2TagFilter":{
1561
- "type":"structure",
1562
- "members":{
1563
- "Key":{"shape":"Key"},
1564
- "Value":{"shape":"Value"},
1565
- "Type":{"shape":"EC2TagFilterType"}
1566
- }
1567
- },
1568
- "EC2TagFilterList":{
1569
- "type":"list",
1570
- "member":{"shape":"EC2TagFilter"}
1571
- },
1572
- "EC2TagFilterType":{
1573
- "type":"string",
1574
- "enum":[
1575
- "KEY_ONLY",
1576
- "VALUE_ONLY",
1577
- "KEY_AND_VALUE"
1578
- ]
1579
- },
1580
- "EC2TagSet":{
1581
- "type":"structure",
1582
- "members":{
1583
- "ec2TagSetList":{"shape":"EC2TagSetList"}
1584
- }
1585
- },
1586
- "EC2TagSetList":{
1587
- "type":"list",
1588
- "member":{"shape":"EC2TagFilterList"}
1589
- },
1590
- "ECSClusterName":{"type":"string"},
1591
- "ECSService":{
1592
- "type":"structure",
1593
- "members":{
1594
- "serviceName":{"shape":"ECSServiceName"},
1595
- "clusterName":{"shape":"ECSClusterName"}
1596
- }
1597
- },
1598
- "ECSServiceList":{
1599
- "type":"list",
1600
- "member":{"shape":"ECSService"}
1601
- },
1602
- "ECSServiceMappingLimitExceededException":{
1603
- "type":"structure",
1604
- "members":{
1605
- },
1606
- "exception":true
1607
- },
1608
- "ECSServiceName":{"type":"string"},
1609
- "ECSTarget":{
1610
- "type":"structure",
1611
- "members":{
1612
- "deploymentId":{"shape":"DeploymentId"},
1613
- "targetId":{"shape":"TargetId"},
1614
- "targetArn":{"shape":"TargetArn"},
1615
- "lastUpdatedAt":{"shape":"Time"},
1616
- "lifecycleEvents":{"shape":"LifecycleEventList"},
1617
- "status":{"shape":"TargetStatus"},
1618
- "taskSetsInfo":{"shape":"ECSTaskSetList"}
1619
- }
1620
- },
1621
- "ECSTaskSet":{
1622
- "type":"structure",
1623
- "members":{
1624
- "identifer":{"shape":"ECSTaskSetIdentifier"},
1625
- "desiredCount":{"shape":"ECSTaskSetCount"},
1626
- "pendingCount":{"shape":"ECSTaskSetCount"},
1627
- "runningCount":{"shape":"ECSTaskSetCount"},
1628
- "status":{"shape":"ECSTaskSetStatus"},
1629
- "trafficWeight":{"shape":"TrafficWeight"},
1630
- "targetGroup":{"shape":"TargetGroupInfo"},
1631
- "taskSetLabel":{"shape":"TargetLabel"}
1632
- }
1633
- },
1634
- "ECSTaskSetCount":{"type":"long"},
1635
- "ECSTaskSetIdentifier":{"type":"string"},
1636
- "ECSTaskSetList":{
1637
- "type":"list",
1638
- "member":{"shape":"ECSTaskSet"}
1639
- },
1640
- "ECSTaskSetStatus":{"type":"string"},
1641
- "ELBInfo":{
1642
- "type":"structure",
1643
- "members":{
1644
- "name":{"shape":"ELBName"}
1645
- }
1646
- },
1647
- "ELBInfoList":{
1648
- "type":"list",
1649
- "member":{"shape":"ELBInfo"}
1650
- },
1651
- "ELBName":{"type":"string"},
1652
- "ETag":{"type":"string"},
1653
- "ErrorCode":{
1654
- "type":"string",
1655
- "enum":[
1656
- "DEPLOYMENT_GROUP_MISSING",
1657
- "APPLICATION_MISSING",
1658
- "REVISION_MISSING",
1659
- "IAM_ROLE_MISSING",
1660
- "IAM_ROLE_PERMISSIONS",
1661
- "NO_EC2_SUBSCRIPTION",
1662
- "OVER_MAX_INSTANCES",
1663
- "NO_INSTANCES",
1664
- "TIMEOUT",
1665
- "HEALTH_CONSTRAINTS_INVALID",
1666
- "HEALTH_CONSTRAINTS",
1667
- "INTERNAL_ERROR",
1668
- "THROTTLED",
1669
- "ALARM_ACTIVE",
1670
- "AGENT_ISSUE",
1671
- "AUTO_SCALING_IAM_ROLE_PERMISSIONS",
1672
- "AUTO_SCALING_CONFIGURATION",
1673
- "MANUAL_STOP",
1674
- "MISSING_BLUE_GREEN_DEPLOYMENT_CONFIGURATION",
1675
- "MISSING_ELB_INFORMATION",
1676
- "MISSING_GITHUB_TOKEN",
1677
- "ELASTIC_LOAD_BALANCING_INVALID",
1678
- "ELB_INVALID_INSTANCE",
1679
- "INVALID_LAMBDA_CONFIGURATION",
1680
- "INVALID_LAMBDA_FUNCTION",
1681
- "HOOK_EXECUTION_FAILURE",
1682
- "AUTOSCALING_VALIDATION_ERROR",
1683
- "INVALID_ECS_SERVICE",
1684
- "ECS_UPDATE_ERROR",
1685
- "INVALID_REVISION"
1686
- ]
1687
- },
1688
- "ErrorInformation":{
1689
- "type":"structure",
1690
- "members":{
1691
- "code":{"shape":"ErrorCode"},
1692
- "message":{"shape":"ErrorMessage"}
1693
- }
1694
- },
1695
- "ErrorMessage":{"type":"string"},
1696
- "FileExistsBehavior":{
1697
- "type":"string",
1698
- "enum":[
1699
- "DISALLOW",
1700
- "OVERWRITE",
1701
- "RETAIN"
1702
- ]
1703
- },
1704
- "FilterValue":{"type":"string"},
1705
- "FilterValueList":{
1706
- "type":"list",
1707
- "member":{"shape":"FilterValue"}
1708
- },
1709
- "GenericRevisionInfo":{
1710
- "type":"structure",
1711
- "members":{
1712
- "description":{"shape":"Description"},
1713
- "deploymentGroups":{"shape":"DeploymentGroupsList"},
1714
- "firstUsedTime":{"shape":"Timestamp"},
1715
- "lastUsedTime":{"shape":"Timestamp"},
1716
- "registerTime":{"shape":"Timestamp"}
1717
- }
1718
- },
1719
- "GetApplicationInput":{
1720
- "type":"structure",
1721
- "required":["applicationName"],
1722
- "members":{
1723
- "applicationName":{"shape":"ApplicationName"}
1724
- }
1725
- },
1726
- "GetApplicationOutput":{
1727
- "type":"structure",
1728
- "members":{
1729
- "application":{"shape":"ApplicationInfo"}
1730
- }
1731
- },
1732
- "GetApplicationRevisionInput":{
1733
- "type":"structure",
1734
- "required":[
1735
- "applicationName",
1736
- "revision"
1737
- ],
1738
- "members":{
1739
- "applicationName":{"shape":"ApplicationName"},
1740
- "revision":{"shape":"RevisionLocation"}
1741
- }
1742
- },
1743
- "GetApplicationRevisionOutput":{
1744
- "type":"structure",
1745
- "members":{
1746
- "applicationName":{"shape":"ApplicationName"},
1747
- "revision":{"shape":"RevisionLocation"},
1748
- "revisionInfo":{"shape":"GenericRevisionInfo"}
1749
- }
1750
- },
1751
- "GetDeploymentConfigInput":{
1752
- "type":"structure",
1753
- "required":["deploymentConfigName"],
1754
- "members":{
1755
- "deploymentConfigName":{"shape":"DeploymentConfigName"}
1756
- }
1757
- },
1758
- "GetDeploymentConfigOutput":{
1759
- "type":"structure",
1760
- "members":{
1761
- "deploymentConfigInfo":{"shape":"DeploymentConfigInfo"}
1762
- }
1763
- },
1764
- "GetDeploymentGroupInput":{
1765
- "type":"structure",
1766
- "required":[
1767
- "applicationName",
1768
- "deploymentGroupName"
1769
- ],
1770
- "members":{
1771
- "applicationName":{"shape":"ApplicationName"},
1772
- "deploymentGroupName":{"shape":"DeploymentGroupName"}
1773
- }
1774
- },
1775
- "GetDeploymentGroupOutput":{
1776
- "type":"structure",
1777
- "members":{
1778
- "deploymentGroupInfo":{"shape":"DeploymentGroupInfo"}
1779
- }
1780
- },
1781
- "GetDeploymentInput":{
1782
- "type":"structure",
1783
- "required":["deploymentId"],
1784
- "members":{
1785
- "deploymentId":{"shape":"DeploymentId"}
1786
- }
1787
- },
1788
- "GetDeploymentInstanceInput":{
1789
- "type":"structure",
1790
- "required":[
1791
- "deploymentId",
1792
- "instanceId"
1793
- ],
1794
- "members":{
1795
- "deploymentId":{"shape":"DeploymentId"},
1796
- "instanceId":{"shape":"InstanceId"}
1797
- }
1798
- },
1799
- "GetDeploymentInstanceOutput":{
1800
- "type":"structure",
1801
- "members":{
1802
- "instanceSummary":{"shape":"InstanceSummary"}
1803
- }
1804
- },
1805
- "GetDeploymentOutput":{
1806
- "type":"structure",
1807
- "members":{
1808
- "deploymentInfo":{"shape":"DeploymentInfo"}
1809
- }
1810
- },
1811
- "GetDeploymentTargetInput":{
1812
- "type":"structure",
1813
- "members":{
1814
- "deploymentId":{"shape":"DeploymentId"},
1815
- "targetId":{"shape":"TargetId"}
1816
- }
1817
- },
1818
- "GetDeploymentTargetOutput":{
1819
- "type":"structure",
1820
- "members":{
1821
- "deploymentTarget":{"shape":"DeploymentTarget"}
1822
- }
1823
- },
1824
- "GetOnPremisesInstanceInput":{
1825
- "type":"structure",
1826
- "required":["instanceName"],
1827
- "members":{
1828
- "instanceName":{"shape":"InstanceName"}
1829
- }
1830
- },
1831
- "GetOnPremisesInstanceOutput":{
1832
- "type":"structure",
1833
- "members":{
1834
- "instanceInfo":{"shape":"InstanceInfo"}
1835
- }
1836
- },
1837
- "GitHubAccountTokenDoesNotExistException":{
1838
- "type":"structure",
1839
- "members":{
1840
- },
1841
- "exception":true
1842
- },
1843
- "GitHubAccountTokenName":{"type":"string"},
1844
- "GitHubAccountTokenNameList":{
1845
- "type":"list",
1846
- "member":{"shape":"GitHubAccountTokenName"}
1847
- },
1848
- "GitHubAccountTokenNameRequiredException":{
1849
- "type":"structure",
1850
- "members":{
1851
- },
1852
- "exception":true
1853
- },
1854
- "GitHubLocation":{
1855
- "type":"structure",
1856
- "members":{
1857
- "repository":{"shape":"Repository"},
1858
- "commitId":{"shape":"CommitId"}
1859
- }
1860
- },
1861
- "GreenFleetProvisioningAction":{
1862
- "type":"string",
1863
- "enum":[
1864
- "DISCOVER_EXISTING",
1865
- "COPY_AUTO_SCALING_GROUP"
1866
- ]
1867
- },
1868
- "GreenFleetProvisioningOption":{
1869
- "type":"structure",
1870
- "members":{
1871
- "action":{"shape":"GreenFleetProvisioningAction"}
1872
- }
1873
- },
1874
- "IamArnRequiredException":{
1875
- "type":"structure",
1876
- "members":{
1877
- },
1878
- "exception":true
1879
- },
1880
- "IamSessionArn":{"type":"string"},
1881
- "IamSessionArnAlreadyRegisteredException":{
1882
- "type":"structure",
1883
- "members":{
1884
- },
1885
- "exception":true
1886
- },
1887
- "IamUserArn":{"type":"string"},
1888
- "IamUserArnAlreadyRegisteredException":{
1889
- "type":"structure",
1890
- "members":{
1891
- },
1892
- "exception":true
1893
- },
1894
- "IamUserArnRequiredException":{
1895
- "type":"structure",
1896
- "members":{
1897
- },
1898
- "exception":true
1899
- },
1900
- "InstanceAction":{
1901
- "type":"string",
1902
- "enum":[
1903
- "TERMINATE",
1904
- "KEEP_ALIVE"
1905
- ]
1906
- },
1907
- "InstanceArn":{"type":"string"},
1908
- "InstanceCount":{"type":"long"},
1909
- "InstanceDoesNotExistException":{
1910
- "type":"structure",
1911
- "members":{
1912
- },
1913
- "deprecated":true,
1914
- "deprecatedMessage":"This exception is deprecated, use DeploymentTargetDoesNotExistException instead.",
1915
- "exception":true
1916
- },
1917
- "InstanceId":{"type":"string"},
1918
- "InstanceIdRequiredException":{
1919
- "type":"structure",
1920
- "members":{
1921
- },
1922
- "deprecated":true,
1923
- "deprecatedMessage":"This exception is deprecated, use DeploymentTargetIdRequiredException instead.",
1924
- "exception":true
1925
- },
1926
- "InstanceInfo":{
1927
- "type":"structure",
1928
- "members":{
1929
- "instanceName":{"shape":"InstanceName"},
1930
- "iamSessionArn":{"shape":"IamSessionArn"},
1931
- "iamUserArn":{"shape":"IamUserArn"},
1932
- "instanceArn":{"shape":"InstanceArn"},
1933
- "registerTime":{"shape":"Timestamp"},
1934
- "deregisterTime":{"shape":"Timestamp"},
1935
- "tags":{"shape":"TagList"}
1936
- }
1937
- },
1938
- "InstanceInfoList":{
1939
- "type":"list",
1940
- "member":{"shape":"InstanceInfo"}
1941
- },
1942
- "InstanceLimitExceededException":{
1943
- "type":"structure",
1944
- "members":{
1945
- },
1946
- "exception":true
1947
- },
1948
- "InstanceName":{"type":"string"},
1949
- "InstanceNameAlreadyRegisteredException":{
1950
- "type":"structure",
1951
- "members":{
1952
- },
1953
- "exception":true
1954
- },
1955
- "InstanceNameList":{
1956
- "type":"list",
1957
- "member":{"shape":"InstanceName"}
1958
- },
1959
- "InstanceNameRequiredException":{
1960
- "type":"structure",
1961
- "members":{
1962
- },
1963
- "exception":true
1964
- },
1965
- "InstanceNotRegisteredException":{
1966
- "type":"structure",
1967
- "members":{
1968
- },
1969
- "exception":true
1970
- },
1971
- "InstanceStatus":{
1972
- "type":"string",
1973
- "deprecated":true,
1974
- "deprecatedMessage":"InstanceStatus is deprecated, use TargetStatus instead.",
1975
- "enum":[
1976
- "Pending",
1977
- "InProgress",
1978
- "Succeeded",
1979
- "Failed",
1980
- "Skipped",
1981
- "Unknown",
1982
- "Ready"
1983
- ]
1984
- },
1985
- "InstanceStatusList":{
1986
- "type":"list",
1987
- "member":{"shape":"InstanceStatus"}
1988
- },
1989
- "InstanceSummary":{
1990
- "type":"structure",
1991
- "members":{
1992
- "deploymentId":{"shape":"DeploymentId"},
1993
- "instanceId":{"shape":"InstanceId"},
1994
- "status":{"shape":"InstanceStatus"},
1995
- "lastUpdatedAt":{"shape":"Timestamp"},
1996
- "lifecycleEvents":{"shape":"LifecycleEventList"},
1997
- "instanceType":{"shape":"InstanceType"}
1998
- },
1999
- "deprecated":true,
2000
- "deprecatedMessage":"InstanceSummary is deprecated, use DeploymentTarget instead."
2001
- },
2002
- "InstanceSummaryList":{
2003
- "type":"list",
2004
- "member":{"shape":"InstanceSummary"}
2005
- },
2006
- "InstanceTarget":{
2007
- "type":"structure",
2008
- "members":{
2009
- "deploymentId":{"shape":"DeploymentId"},
2010
- "targetId":{"shape":"TargetId"},
2011
- "targetArn":{"shape":"TargetArn"},
2012
- "status":{"shape":"TargetStatus"},
2013
- "lastUpdatedAt":{"shape":"Time"},
2014
- "lifecycleEvents":{"shape":"LifecycleEventList"},
2015
- "instanceLabel":{"shape":"TargetLabel"}
2016
- }
2017
- },
2018
- "InstanceType":{
2019
- "type":"string",
2020
- "enum":[
2021
- "Blue",
2022
- "Green"
2023
- ]
2024
- },
2025
- "InstanceTypeList":{
2026
- "type":"list",
2027
- "member":{"shape":"InstanceType"}
2028
- },
2029
- "InstancesList":{
2030
- "type":"list",
2031
- "member":{"shape":"InstanceId"}
2032
- },
2033
- "InvalidAlarmConfigException":{
2034
- "type":"structure",
2035
- "members":{
2036
- },
2037
- "exception":true
2038
- },
2039
- "InvalidApplicationNameException":{
2040
- "type":"structure",
2041
- "members":{
2042
- },
2043
- "exception":true
2044
- },
2045
- "InvalidAutoRollbackConfigException":{
2046
- "type":"structure",
2047
- "members":{
2048
- },
2049
- "exception":true
2050
- },
2051
- "InvalidAutoScalingGroupException":{
2052
- "type":"structure",
2053
- "members":{
2054
- },
2055
- "exception":true
2056
- },
2057
- "InvalidBlueGreenDeploymentConfigurationException":{
2058
- "type":"structure",
2059
- "members":{
2060
- },
2061
- "exception":true
2062
- },
2063
- "InvalidBucketNameFilterException":{
2064
- "type":"structure",
2065
- "members":{
2066
- },
2067
- "exception":true
2068
- },
2069
- "InvalidComputePlatformException":{
2070
- "type":"structure",
2071
- "members":{
2072
- },
2073
- "exception":true
2074
- },
2075
- "InvalidDeployedStateFilterException":{
2076
- "type":"structure",
2077
- "members":{
2078
- },
2079
- "exception":true
2080
- },
2081
- "InvalidDeploymentConfigNameException":{
2082
- "type":"structure",
2083
- "members":{
2084
- },
2085
- "exception":true
2086
- },
2087
- "InvalidDeploymentGroupNameException":{
2088
- "type":"structure",
2089
- "members":{
2090
- },
2091
- "exception":true
2092
- },
2093
- "InvalidDeploymentIdException":{
2094
- "type":"structure",
2095
- "members":{
2096
- },
2097
- "exception":true
2098
- },
2099
- "InvalidDeploymentInstanceTypeException":{
2100
- "type":"structure",
2101
- "members":{
2102
- },
2103
- "exception":true
2104
- },
2105
- "InvalidDeploymentStatusException":{
2106
- "type":"structure",
2107
- "members":{
2108
- },
2109
- "exception":true
2110
- },
2111
- "InvalidDeploymentStyleException":{
2112
- "type":"structure",
2113
- "members":{
2114
- },
2115
- "exception":true
2116
- },
2117
- "InvalidDeploymentTargetIdException":{
2118
- "type":"structure",
2119
- "members":{
2120
- },
2121
- "exception":true
2122
- },
2123
- "InvalidDeploymentWaitTypeException":{
2124
- "type":"structure",
2125
- "members":{
2126
- },
2127
- "exception":true
2128
- },
2129
- "InvalidEC2TagCombinationException":{
2130
- "type":"structure",
2131
- "members":{
2132
- },
2133
- "exception":true
2134
- },
2135
- "InvalidEC2TagException":{
2136
- "type":"structure",
2137
- "members":{
2138
- },
2139
- "exception":true
2140
- },
2141
- "InvalidECSServiceException":{
2142
- "type":"structure",
2143
- "members":{
2144
- },
2145
- "exception":true
2146
- },
2147
- "InvalidFileExistsBehaviorException":{
2148
- "type":"structure",
2149
- "members":{
2150
- },
2151
- "exception":true
2152
- },
2153
- "InvalidGitHubAccountTokenException":{
2154
- "type":"structure",
2155
- "members":{
2156
- },
2157
- "exception":true
2158
- },
2159
- "InvalidGitHubAccountTokenNameException":{
2160
- "type":"structure",
2161
- "members":{
2162
- },
2163
- "exception":true
2164
- },
2165
- "InvalidIamSessionArnException":{
2166
- "type":"structure",
2167
- "members":{
2168
- },
2169
- "exception":true
2170
- },
2171
- "InvalidIamUserArnException":{
2172
- "type":"structure",
2173
- "members":{
2174
- },
2175
- "exception":true
2176
- },
2177
- "InvalidIgnoreApplicationStopFailuresValueException":{
2178
- "type":"structure",
2179
- "members":{
2180
- },
2181
- "exception":true
2182
- },
2183
- "InvalidInputException":{
2184
- "type":"structure",
2185
- "members":{
2186
- },
2187
- "exception":true
2188
- },
2189
- "InvalidInstanceIdException":{
2190
- "type":"structure",
2191
- "members":{
2192
- },
2193
- "exception":true
2194
- },
2195
- "InvalidInstanceNameException":{
2196
- "type":"structure",
2197
- "members":{
2198
- },
2199
- "exception":true
2200
- },
2201
- "InvalidInstanceStatusException":{
2202
- "type":"structure",
2203
- "members":{
2204
- },
2205
- "exception":true
2206
- },
2207
- "InvalidInstanceTypeException":{
2208
- "type":"structure",
2209
- "members":{
2210
- },
2211
- "exception":true
2212
- },
2213
- "InvalidKeyPrefixFilterException":{
2214
- "type":"structure",
2215
- "members":{
2216
- },
2217
- "exception":true
2218
- },
2219
- "InvalidLifecycleEventHookExecutionIdException":{
2220
- "type":"structure",
2221
- "members":{
2222
- },
2223
- "exception":true
2224
- },
2225
- "InvalidLifecycleEventHookExecutionStatusException":{
2226
- "type":"structure",
2227
- "members":{
2228
- },
2229
- "exception":true
2230
- },
2231
- "InvalidLoadBalancerInfoException":{
2232
- "type":"structure",
2233
- "members":{
2234
- },
2235
- "exception":true
2236
- },
2237
- "InvalidMinimumHealthyHostValueException":{
2238
- "type":"structure",
2239
- "members":{
2240
- },
2241
- "exception":true
2242
- },
2243
- "InvalidNextTokenException":{
2244
- "type":"structure",
2245
- "members":{
2246
- },
2247
- "exception":true
2248
- },
2249
- "InvalidOnPremisesTagCombinationException":{
2250
- "type":"structure",
2251
- "members":{
2252
- },
2253
- "exception":true
2254
- },
2255
- "InvalidOperationException":{
2256
- "type":"structure",
2257
- "members":{
2258
- },
2259
- "exception":true
2260
- },
2261
- "InvalidRegistrationStatusException":{
2262
- "type":"structure",
2263
- "members":{
2264
- },
2265
- "exception":true
2266
- },
2267
- "InvalidRevisionException":{
2268
- "type":"structure",
2269
- "members":{
2270
- },
2271
- "exception":true
2272
- },
2273
- "InvalidRoleException":{
2274
- "type":"structure",
2275
- "members":{
2276
- },
2277
- "exception":true
2278
- },
2279
- "InvalidSortByException":{
2280
- "type":"structure",
2281
- "members":{
2282
- },
2283
- "exception":true
2284
- },
2285
- "InvalidSortOrderException":{
2286
- "type":"structure",
2287
- "members":{
2288
- },
2289
- "exception":true
2290
- },
2291
- "InvalidTagException":{
2292
- "type":"structure",
2293
- "members":{
2294
- },
2295
- "exception":true
2296
- },
2297
- "InvalidTagFilterException":{
2298
- "type":"structure",
2299
- "members":{
2300
- },
2301
- "exception":true
2302
- },
2303
- "InvalidTargetException":{
2304
- "type":"structure",
2305
- "members":{
2306
- },
2307
- "exception":true
2308
- },
2309
- "InvalidTargetFilterNameException":{
2310
- "type":"structure",
2311
- "members":{
2312
- },
2313
- "exception":true
2314
- },
2315
- "InvalidTargetGroupPairException":{
2316
- "type":"structure",
2317
- "members":{
2318
- },
2319
- "exception":true
2320
- },
2321
- "InvalidTargetInstancesException":{
2322
- "type":"structure",
2323
- "members":{
2324
- },
2325
- "exception":true
2326
- },
2327
- "InvalidTimeRangeException":{
2328
- "type":"structure",
2329
- "members":{
2330
- },
2331
- "exception":true
2332
- },
2333
- "InvalidTrafficRoutingConfigurationException":{
2334
- "type":"structure",
2335
- "members":{
2336
- },
2337
- "exception":true
2338
- },
2339
- "InvalidTriggerConfigException":{
2340
- "type":"structure",
2341
- "members":{
2342
- },
2343
- "exception":true
2344
- },
2345
- "InvalidUpdateOutdatedInstancesOnlyValueException":{
2346
- "type":"structure",
2347
- "members":{
2348
- },
2349
- "exception":true
2350
- },
2351
- "Key":{"type":"string"},
2352
- "LambdaTarget":{
2353
- "type":"structure",
2354
- "members":{
2355
- "deploymentId":{"shape":"DeploymentId"},
2356
- "targetId":{"shape":"TargetId"},
2357
- "targetArn":{"shape":"TargetArn"},
2358
- "status":{"shape":"TargetStatus"},
2359
- "lastUpdatedAt":{"shape":"Time"},
2360
- "lifecycleEvents":{"shape":"LifecycleEventList"}
2361
- }
2362
- },
2363
- "LastDeploymentInfo":{
2364
- "type":"structure",
2365
- "members":{
2366
- "deploymentId":{"shape":"DeploymentId"},
2367
- "status":{"shape":"DeploymentStatus"},
2368
- "endTime":{"shape":"Timestamp"},
2369
- "createTime":{"shape":"Timestamp"}
2370
- }
2371
- },
2372
- "LifecycleErrorCode":{
2373
- "type":"string",
2374
- "enum":[
2375
- "Success",
2376
- "ScriptMissing",
2377
- "ScriptNotExecutable",
2378
- "ScriptTimedOut",
2379
- "ScriptFailed",
2380
- "UnknownError"
2381
- ]
2382
- },
2383
- "LifecycleEvent":{
2384
- "type":"structure",
2385
- "members":{
2386
- "lifecycleEventName":{"shape":"LifecycleEventName"},
2387
- "diagnostics":{"shape":"Diagnostics"},
2388
- "startTime":{"shape":"Timestamp"},
2389
- "endTime":{"shape":"Timestamp"},
2390
- "status":{"shape":"LifecycleEventStatus"}
2391
- }
2392
- },
2393
- "LifecycleEventAlreadyCompletedException":{
2394
- "type":"structure",
2395
- "members":{
2396
- },
2397
- "exception":true
2398
- },
2399
- "LifecycleEventHookExecutionId":{"type":"string"},
2400
- "LifecycleEventList":{
2401
- "type":"list",
2402
- "member":{"shape":"LifecycleEvent"}
2403
- },
2404
- "LifecycleEventName":{"type":"string"},
2405
- "LifecycleEventStatus":{
2406
- "type":"string",
2407
- "enum":[
2408
- "Pending",
2409
- "InProgress",
2410
- "Succeeded",
2411
- "Failed",
2412
- "Skipped",
2413
- "Unknown"
2414
- ]
2415
- },
2416
- "LifecycleHookLimitExceededException":{
2417
- "type":"structure",
2418
- "members":{
2419
- },
2420
- "exception":true
2421
- },
2422
- "LifecycleMessage":{"type":"string"},
2423
- "ListApplicationRevisionsInput":{
2424
- "type":"structure",
2425
- "required":["applicationName"],
2426
- "members":{
2427
- "applicationName":{"shape":"ApplicationName"},
2428
- "sortBy":{"shape":"ApplicationRevisionSortBy"},
2429
- "sortOrder":{"shape":"SortOrder"},
2430
- "s3Bucket":{"shape":"S3Bucket"},
2431
- "s3KeyPrefix":{"shape":"S3Key"},
2432
- "deployed":{"shape":"ListStateFilterAction"},
2433
- "nextToken":{"shape":"NextToken"}
2434
- }
2435
- },
2436
- "ListApplicationRevisionsOutput":{
2437
- "type":"structure",
2438
- "members":{
2439
- "revisions":{"shape":"RevisionLocationList"},
2440
- "nextToken":{"shape":"NextToken"}
2441
- }
2442
- },
2443
- "ListApplicationsInput":{
2444
- "type":"structure",
2445
- "members":{
2446
- "nextToken":{"shape":"NextToken"}
2447
- }
2448
- },
2449
- "ListApplicationsOutput":{
2450
- "type":"structure",
2451
- "members":{
2452
- "applications":{"shape":"ApplicationsList"},
2453
- "nextToken":{"shape":"NextToken"}
2454
- }
2455
- },
2456
- "ListDeploymentConfigsInput":{
2457
- "type":"structure",
2458
- "members":{
2459
- "nextToken":{"shape":"NextToken"}
2460
- }
2461
- },
2462
- "ListDeploymentConfigsOutput":{
2463
- "type":"structure",
2464
- "members":{
2465
- "deploymentConfigsList":{"shape":"DeploymentConfigsList"},
2466
- "nextToken":{"shape":"NextToken"}
2467
- }
2468
- },
2469
- "ListDeploymentGroupsInput":{
2470
- "type":"structure",
2471
- "required":["applicationName"],
2472
- "members":{
2473
- "applicationName":{"shape":"ApplicationName"},
2474
- "nextToken":{"shape":"NextToken"}
2475
- }
2476
- },
2477
- "ListDeploymentGroupsOutput":{
2478
- "type":"structure",
2479
- "members":{
2480
- "applicationName":{"shape":"ApplicationName"},
2481
- "deploymentGroups":{"shape":"DeploymentGroupsList"},
2482
- "nextToken":{"shape":"NextToken"}
2483
- }
2484
- },
2485
- "ListDeploymentInstancesInput":{
2486
- "type":"structure",
2487
- "required":["deploymentId"],
2488
- "members":{
2489
- "deploymentId":{"shape":"DeploymentId"},
2490
- "nextToken":{"shape":"NextToken"},
2491
- "instanceStatusFilter":{"shape":"InstanceStatusList"},
2492
- "instanceTypeFilter":{"shape":"InstanceTypeList"}
2493
- }
2494
- },
2495
- "ListDeploymentInstancesOutput":{
2496
- "type":"structure",
2497
- "members":{
2498
- "instancesList":{"shape":"InstancesList"},
2499
- "nextToken":{"shape":"NextToken"}
2500
- }
2501
- },
2502
- "ListDeploymentTargetsInput":{
2503
- "type":"structure",
2504
- "members":{
2505
- "deploymentId":{"shape":"DeploymentId"},
2506
- "nextToken":{"shape":"NextToken"},
2507
- "targetFilters":{"shape":"TargetFilters"}
2508
- }
2509
- },
2510
- "ListDeploymentTargetsOutput":{
2511
- "type":"structure",
2512
- "members":{
2513
- "targetIds":{"shape":"TargetIdList"},
2514
- "nextToken":{"shape":"NextToken"}
2515
- }
2516
- },
2517
- "ListDeploymentsInput":{
2518
- "type":"structure",
2519
- "members":{
2520
- "applicationName":{"shape":"ApplicationName"},
2521
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
2522
- "includeOnlyStatuses":{"shape":"DeploymentStatusList"},
2523
- "createTimeRange":{"shape":"TimeRange"},
2524
- "nextToken":{"shape":"NextToken"}
2525
- }
2526
- },
2527
- "ListDeploymentsOutput":{
2528
- "type":"structure",
2529
- "members":{
2530
- "deployments":{"shape":"DeploymentsList"},
2531
- "nextToken":{"shape":"NextToken"}
2532
- }
2533
- },
2534
- "ListGitHubAccountTokenNamesInput":{
2535
- "type":"structure",
2536
- "members":{
2537
- "nextToken":{"shape":"NextToken"}
2538
- }
2539
- },
2540
- "ListGitHubAccountTokenNamesOutput":{
2541
- "type":"structure",
2542
- "members":{
2543
- "tokenNameList":{"shape":"GitHubAccountTokenNameList"},
2544
- "nextToken":{"shape":"NextToken"}
2545
- }
2546
- },
2547
- "ListOnPremisesInstancesInput":{
2548
- "type":"structure",
2549
- "members":{
2550
- "registrationStatus":{"shape":"RegistrationStatus"},
2551
- "tagFilters":{"shape":"TagFilterList"},
2552
- "nextToken":{"shape":"NextToken"}
2553
- }
2554
- },
2555
- "ListOnPremisesInstancesOutput":{
2556
- "type":"structure",
2557
- "members":{
2558
- "instanceNames":{"shape":"InstanceNameList"},
2559
- "nextToken":{"shape":"NextToken"}
2560
- }
2561
- },
2562
- "ListStateFilterAction":{
2563
- "type":"string",
2564
- "enum":[
2565
- "include",
2566
- "exclude",
2567
- "ignore"
2568
- ]
2569
- },
2570
- "ListenerArn":{"type":"string"},
2571
- "ListenerArnList":{
2572
- "type":"list",
2573
- "member":{"shape":"ListenerArn"}
2574
- },
2575
- "LoadBalancerInfo":{
2576
- "type":"structure",
2577
- "members":{
2578
- "elbInfoList":{"shape":"ELBInfoList"},
2579
- "targetGroupInfoList":{"shape":"TargetGroupInfoList"},
2580
- "targetGroupPairInfoList":{"shape":"TargetGroupPairInfoList"}
2581
- }
2582
- },
2583
- "LogTail":{"type":"string"},
2584
- "Message":{"type":"string"},
2585
- "MinimumHealthyHosts":{
2586
- "type":"structure",
2587
- "members":{
2588
- "value":{"shape":"MinimumHealthyHostsValue"},
2589
- "type":{"shape":"MinimumHealthyHostsType"}
2590
- }
2591
- },
2592
- "MinimumHealthyHostsType":{
2593
- "type":"string",
2594
- "enum":[
2595
- "HOST_COUNT",
2596
- "FLEET_PERCENT"
2597
- ]
2598
- },
2599
- "MinimumHealthyHostsValue":{"type":"integer"},
2600
- "MultipleIamArnsProvidedException":{
2601
- "type":"structure",
2602
- "members":{
2603
- },
2604
- "exception":true
2605
- },
2606
- "NextToken":{"type":"string"},
2607
- "NullableBoolean":{"type":"boolean"},
2608
- "OnPremisesTagSet":{
2609
- "type":"structure",
2610
- "members":{
2611
- "onPremisesTagSetList":{"shape":"OnPremisesTagSetList"}
2612
- }
2613
- },
2614
- "OnPremisesTagSetList":{
2615
- "type":"list",
2616
- "member":{"shape":"TagFilterList"}
2617
- },
2618
- "OperationNotSupportedException":{
2619
- "type":"structure",
2620
- "members":{
2621
- },
2622
- "exception":true
2623
- },
2624
- "Percentage":{"type":"integer"},
2625
- "PutLifecycleEventHookExecutionStatusInput":{
2626
- "type":"structure",
2627
- "members":{
2628
- "deploymentId":{"shape":"DeploymentId"},
2629
- "lifecycleEventHookExecutionId":{"shape":"LifecycleEventHookExecutionId"},
2630
- "status":{"shape":"LifecycleEventStatus"}
2631
- }
2632
- },
2633
- "PutLifecycleEventHookExecutionStatusOutput":{
2634
- "type":"structure",
2635
- "members":{
2636
- "lifecycleEventHookExecutionId":{"shape":"LifecycleEventHookExecutionId"}
2637
- }
2638
- },
2639
- "RawString":{
2640
- "type":"structure",
2641
- "members":{
2642
- "content":{"shape":"RawStringContent"},
2643
- "sha256":{"shape":"RawStringSha256"}
2644
- },
2645
- "deprecated":true,
2646
- "deprecatedMessage":"RawString and String revision type are deprecated, use AppSpecContent type instead."
2647
- },
2648
- "RawStringContent":{"type":"string"},
2649
- "RawStringSha256":{"type":"string"},
2650
- "RegisterApplicationRevisionInput":{
2651
- "type":"structure",
2652
- "required":[
2653
- "applicationName",
2654
- "revision"
2655
- ],
2656
- "members":{
2657
- "applicationName":{"shape":"ApplicationName"},
2658
- "description":{"shape":"Description"},
2659
- "revision":{"shape":"RevisionLocation"}
2660
- }
2661
- },
2662
- "RegisterOnPremisesInstanceInput":{
2663
- "type":"structure",
2664
- "required":["instanceName"],
2665
- "members":{
2666
- "instanceName":{"shape":"InstanceName"},
2667
- "iamSessionArn":{"shape":"IamSessionArn"},
2668
- "iamUserArn":{"shape":"IamUserArn"}
2669
- }
2670
- },
2671
- "RegistrationStatus":{
2672
- "type":"string",
2673
- "enum":[
2674
- "Registered",
2675
- "Deregistered"
2676
- ]
2677
- },
2678
- "RemoveTagsFromOnPremisesInstancesInput":{
2679
- "type":"structure",
2680
- "required":[
2681
- "tags",
2682
- "instanceNames"
2683
- ],
2684
- "members":{
2685
- "tags":{"shape":"TagList"},
2686
- "instanceNames":{"shape":"InstanceNameList"}
2687
- }
2688
- },
2689
- "Repository":{"type":"string"},
2690
- "ResourceValidationException":{
2691
- "type":"structure",
2692
- "members":{
2693
- },
2694
- "exception":true
2695
- },
2696
- "RevisionDoesNotExistException":{
2697
- "type":"structure",
2698
- "members":{
2699
- },
2700
- "exception":true
2701
- },
2702
- "RevisionInfo":{
2703
- "type":"structure",
2704
- "members":{
2705
- "revisionLocation":{"shape":"RevisionLocation"},
2706
- "genericRevisionInfo":{"shape":"GenericRevisionInfo"}
2707
- }
2708
- },
2709
- "RevisionInfoList":{
2710
- "type":"list",
2711
- "member":{"shape":"RevisionInfo"}
2712
- },
2713
- "RevisionLocation":{
2714
- "type":"structure",
2715
- "members":{
2716
- "revisionType":{"shape":"RevisionLocationType"},
2717
- "s3Location":{"shape":"S3Location"},
2718
- "gitHubLocation":{"shape":"GitHubLocation"},
2719
- "string":{"shape":"RawString"},
2720
- "appSpecContent":{"shape":"AppSpecContent"}
2721
- }
2722
- },
2723
- "RevisionLocationList":{
2724
- "type":"list",
2725
- "member":{"shape":"RevisionLocation"}
2726
- },
2727
- "RevisionLocationType":{
2728
- "type":"string",
2729
- "enum":[
2730
- "S3",
2731
- "GitHub",
2732
- "String",
2733
- "AppSpecContent"
2734
- ]
2735
- },
2736
- "RevisionRequiredException":{
2737
- "type":"structure",
2738
- "members":{
2739
- },
2740
- "exception":true
2741
- },
2742
- "Role":{"type":"string"},
2743
- "RoleRequiredException":{
2744
- "type":"structure",
2745
- "members":{
2746
- },
2747
- "exception":true
2748
- },
2749
- "RollbackInfo":{
2750
- "type":"structure",
2751
- "members":{
2752
- "rollbackDeploymentId":{"shape":"DeploymentId"},
2753
- "rollbackTriggeringDeploymentId":{"shape":"DeploymentId"},
2754
- "rollbackMessage":{"shape":"Description"}
2755
- }
2756
- },
2757
- "S3Bucket":{"type":"string"},
2758
- "S3Key":{"type":"string"},
2759
- "S3Location":{
2760
- "type":"structure",
2761
- "members":{
2762
- "bucket":{"shape":"S3Bucket"},
2763
- "key":{"shape":"S3Key"},
2764
- "bundleType":{"shape":"BundleType"},
2765
- "version":{"shape":"VersionId"},
2766
- "eTag":{"shape":"ETag"}
2767
- }
2768
- },
2769
- "ScriptName":{"type":"string"},
2770
- "SkipWaitTimeForInstanceTerminationInput":{
2771
- "type":"structure",
2772
- "members":{
2773
- "deploymentId":{"shape":"DeploymentId"}
2774
- }
2775
- },
2776
- "SortOrder":{
2777
- "type":"string",
2778
- "enum":[
2779
- "ascending",
2780
- "descending"
2781
- ]
2782
- },
2783
- "StopDeploymentInput":{
2784
- "type":"structure",
2785
- "required":["deploymentId"],
2786
- "members":{
2787
- "deploymentId":{"shape":"DeploymentId"},
2788
- "autoRollbackEnabled":{"shape":"NullableBoolean"}
2789
- }
2790
- },
2791
- "StopDeploymentOutput":{
2792
- "type":"structure",
2793
- "members":{
2794
- "status":{"shape":"StopStatus"},
2795
- "statusMessage":{"shape":"Message"}
2796
- }
2797
- },
2798
- "StopStatus":{
2799
- "type":"string",
2800
- "enum":[
2801
- "Pending",
2802
- "Succeeded"
2803
- ]
2804
- },
2805
- "Tag":{
2806
- "type":"structure",
2807
- "members":{
2808
- "Key":{"shape":"Key"},
2809
- "Value":{"shape":"Value"}
2810
- }
2811
- },
2812
- "TagFilter":{
2813
- "type":"structure",
2814
- "members":{
2815
- "Key":{"shape":"Key"},
2816
- "Value":{"shape":"Value"},
2817
- "Type":{"shape":"TagFilterType"}
2818
- }
2819
- },
2820
- "TagFilterList":{
2821
- "type":"list",
2822
- "member":{"shape":"TagFilter"}
2823
- },
2824
- "TagFilterType":{
2825
- "type":"string",
2826
- "enum":[
2827
- "KEY_ONLY",
2828
- "VALUE_ONLY",
2829
- "KEY_AND_VALUE"
2830
- ]
2831
- },
2832
- "TagLimitExceededException":{
2833
- "type":"structure",
2834
- "members":{
2835
- },
2836
- "exception":true
2837
- },
2838
- "TagList":{
2839
- "type":"list",
2840
- "member":{"shape":"Tag"}
2841
- },
2842
- "TagRequiredException":{
2843
- "type":"structure",
2844
- "members":{
2845
- },
2846
- "exception":true
2847
- },
2848
- "TagSetListLimitExceededException":{
2849
- "type":"structure",
2850
- "members":{
2851
- },
2852
- "exception":true
2853
- },
2854
- "TargetArn":{"type":"string"},
2855
- "TargetFilterName":{
2856
- "type":"string",
2857
- "enum":[
2858
- "TargetStatus",
2859
- "ServerInstanceLabel"
2860
- ]
2861
- },
2862
- "TargetFilters":{
2863
- "type":"map",
2864
- "key":{"shape":"TargetFilterName"},
2865
- "value":{"shape":"FilterValueList"}
2866
- },
2867
- "TargetGroupInfo":{
2868
- "type":"structure",
2869
- "members":{
2870
- "name":{"shape":"TargetGroupName"}
2871
- }
2872
- },
2873
- "TargetGroupInfoList":{
2874
- "type":"list",
2875
- "member":{"shape":"TargetGroupInfo"}
2876
- },
2877
- "TargetGroupName":{"type":"string"},
2878
- "TargetGroupPairInfo":{
2879
- "type":"structure",
2880
- "members":{
2881
- "targetGroups":{"shape":"TargetGroupInfoList"},
2882
- "prodTrafficRoute":{"shape":"TrafficRoute"},
2883
- "testTrafficRoute":{"shape":"TrafficRoute"}
2884
- }
2885
- },
2886
- "TargetGroupPairInfoList":{
2887
- "type":"list",
2888
- "member":{"shape":"TargetGroupPairInfo"}
2889
- },
2890
- "TargetId":{"type":"string"},
2891
- "TargetIdList":{
2892
- "type":"list",
2893
- "member":{"shape":"TargetId"}
2894
- },
2895
- "TargetInstances":{
2896
- "type":"structure",
2897
- "members":{
2898
- "tagFilters":{"shape":"EC2TagFilterList"},
2899
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
2900
- "ec2TagSet":{"shape":"EC2TagSet"}
2901
- }
2902
- },
2903
- "TargetLabel":{
2904
- "type":"string",
2905
- "enum":[
2906
- "Blue",
2907
- "Green"
2908
- ]
2909
- },
2910
- "TargetStatus":{
2911
- "type":"string",
2912
- "enum":[
2913
- "Pending",
2914
- "InProgress",
2915
- "Succeeded",
2916
- "Failed",
2917
- "Skipped",
2918
- "Unknown",
2919
- "Ready"
2920
- ]
2921
- },
2922
- "ThrottlingException":{
2923
- "type":"structure",
2924
- "members":{
2925
- },
2926
- "exception":true
2927
- },
2928
- "Time":{"type":"timestamp"},
2929
- "TimeBasedCanary":{
2930
- "type":"structure",
2931
- "members":{
2932
- "canaryPercentage":{"shape":"Percentage"},
2933
- "canaryInterval":{"shape":"WaitTimeInMins"}
2934
- }
2935
- },
2936
- "TimeBasedLinear":{
2937
- "type":"structure",
2938
- "members":{
2939
- "linearPercentage":{"shape":"Percentage"},
2940
- "linearInterval":{"shape":"WaitTimeInMins"}
2941
- }
2942
- },
2943
- "TimeRange":{
2944
- "type":"structure",
2945
- "members":{
2946
- "start":{"shape":"Timestamp"},
2947
- "end":{"shape":"Timestamp"}
2948
- }
2949
- },
2950
- "Timestamp":{"type":"timestamp"},
2951
- "TrafficRoute":{
2952
- "type":"structure",
2953
- "members":{
2954
- "listenerArns":{"shape":"ListenerArnList"}
2955
- }
2956
- },
2957
- "TrafficRoutingConfig":{
2958
- "type":"structure",
2959
- "members":{
2960
- "type":{"shape":"TrafficRoutingType"},
2961
- "timeBasedCanary":{"shape":"TimeBasedCanary"},
2962
- "timeBasedLinear":{"shape":"TimeBasedLinear"}
2963
- }
2964
- },
2965
- "TrafficRoutingType":{
2966
- "type":"string",
2967
- "enum":[
2968
- "TimeBasedCanary",
2969
- "TimeBasedLinear",
2970
- "AllAtOnce"
2971
- ]
2972
- },
2973
- "TrafficWeight":{"type":"double"},
2974
- "TriggerConfig":{
2975
- "type":"structure",
2976
- "members":{
2977
- "triggerName":{"shape":"TriggerName"},
2978
- "triggerTargetArn":{"shape":"TriggerTargetArn"},
2979
- "triggerEvents":{"shape":"TriggerEventTypeList"}
2980
- }
2981
- },
2982
- "TriggerConfigList":{
2983
- "type":"list",
2984
- "member":{"shape":"TriggerConfig"}
2985
- },
2986
- "TriggerEventType":{
2987
- "type":"string",
2988
- "enum":[
2989
- "DeploymentStart",
2990
- "DeploymentSuccess",
2991
- "DeploymentFailure",
2992
- "DeploymentStop",
2993
- "DeploymentRollback",
2994
- "DeploymentReady",
2995
- "InstanceStart",
2996
- "InstanceSuccess",
2997
- "InstanceFailure",
2998
- "InstanceReady"
2999
- ]
3000
- },
3001
- "TriggerEventTypeList":{
3002
- "type":"list",
3003
- "member":{"shape":"TriggerEventType"}
3004
- },
3005
- "TriggerName":{"type":"string"},
3006
- "TriggerTargetArn":{"type":"string"},
3007
- "TriggerTargetsLimitExceededException":{
3008
- "type":"structure",
3009
- "members":{
3010
- },
3011
- "exception":true
3012
- },
3013
- "UnsupportedActionForDeploymentTypeException":{
3014
- "type":"structure",
3015
- "members":{
3016
- },
3017
- "exception":true
3018
- },
3019
- "UpdateApplicationInput":{
3020
- "type":"structure",
3021
- "members":{
3022
- "applicationName":{"shape":"ApplicationName"},
3023
- "newApplicationName":{"shape":"ApplicationName"}
3024
- }
3025
- },
3026
- "UpdateDeploymentGroupInput":{
3027
- "type":"structure",
3028
- "required":[
3029
- "applicationName",
3030
- "currentDeploymentGroupName"
3031
- ],
3032
- "members":{
3033
- "applicationName":{"shape":"ApplicationName"},
3034
- "currentDeploymentGroupName":{"shape":"DeploymentGroupName"},
3035
- "newDeploymentGroupName":{"shape":"DeploymentGroupName"},
3036
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
3037
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
3038
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
3039
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
3040
- "serviceRoleArn":{"shape":"Role"},
3041
- "triggerConfigurations":{"shape":"TriggerConfigList"},
3042
- "alarmConfiguration":{"shape":"AlarmConfiguration"},
3043
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
3044
- "deploymentStyle":{"shape":"DeploymentStyle"},
3045
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
3046
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"},
3047
- "ec2TagSet":{"shape":"EC2TagSet"},
3048
- "ecsServices":{"shape":"ECSServiceList"},
3049
- "onPremisesTagSet":{"shape":"OnPremisesTagSet"}
3050
- }
3051
- },
3052
- "UpdateDeploymentGroupOutput":{
3053
- "type":"structure",
3054
- "members":{
3055
- "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
3056
- }
3057
- },
3058
- "Value":{"type":"string"},
3059
- "VersionId":{"type":"string"},
3060
- "WaitTimeInMins":{"type":"integer"}
3061
- }
3062
- }