aws-sdk-core 2.11.366 → 3.67.0

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