aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  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 +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,24 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeAlarmHistory": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxRecords",
7
- "result_key": "AlarmHistoryItems"
8
- },
9
- "DescribeAlarms": {
10
- "input_token": "NextToken",
11
- "output_token": "NextToken",
12
- "limit_key": "MaxRecords",
13
- "result_key": "MetricAlarms"
14
- },
15
- "DescribeAlarmsForMetric": {
16
- "result_key": "MetricAlarms"
17
- },
18
- "ListMetrics": {
19
- "input_token": "NextToken",
20
- "output_token": "NextToken",
21
- "result_key": "Metrics"
22
- }
23
- }
24
- }
@@ -1,346 +0,0 @@
1
- {
2
- "service": {
3
- "has": {
4
- "Alarm": {
5
- "resource": {
6
- "type": "Alarm",
7
- "identifiers": [
8
- {
9
- "target": "Name",
10
- "source": "input"
11
- }
12
- ]
13
- }
14
- },
15
- "Metric": {
16
- "resource": {
17
- "type": "Metric",
18
- "identifiers": [
19
- {
20
- "target": "Namespace",
21
- "source": "input"
22
- },
23
- {
24
- "target": "Name",
25
- "source": "input"
26
- }
27
- ]
28
- }
29
- }
30
- },
31
- "hasMany": {
32
- "Alarms": {
33
- "request": { "operation": "DescribeAlarms" },
34
- "resource": {
35
- "type": "Alarm",
36
- "identifiers": [
37
- {
38
- "target": "Name",
39
- "source": "response",
40
- "path": "MetricAlarms[].AlarmName"
41
- }
42
- ],
43
- "path": "MetricAlarms[]"
44
- }
45
- },
46
- "Metrics": {
47
- "request": { "operation": "ListMetrics" },
48
- "resource": {
49
- "type": "Metric",
50
- "identifiers": [
51
- {
52
- "target": "Namespace",
53
- "source": "response",
54
- "path": "Metrics[].Namespace"
55
- },
56
- {
57
- "target": "Name",
58
- "source": "response",
59
- "path": "Metrics[].MetricName"
60
- }
61
- ],
62
- "path": "Metrics[]"
63
- }
64
- }
65
- }
66
- },
67
- "resources": {
68
- "Alarm": {
69
- "identifiers": [
70
- {
71
- "name": "Name",
72
- "memberName": "AlarmName"
73
- }
74
- ],
75
- "shape": "MetricAlarm",
76
- "load": {
77
- "request": {
78
- "operation": "DescribeAlarms",
79
- "params": [
80
- {
81
- "target": "AlarmNames[0]",
82
- "source": "identifier",
83
- "name": "Name"
84
- }
85
- ]
86
- },
87
- "path": "MetricAlarms[0]"
88
- },
89
- "actions": {
90
- "Delete": {
91
- "request": {
92
- "operation": "DeleteAlarms",
93
- "params": [
94
- {
95
- "target": "AlarmNames[0]",
96
- "source": "identifier",
97
- "name": "Name"
98
- }
99
- ]
100
- }
101
- },
102
- "DescribeHistory": {
103
- "request": {
104
- "operation": "DescribeAlarmHistory",
105
- "params": [
106
- {
107
- "target": "AlarmName",
108
- "source": "identifier",
109
- "name": "Name"
110
- }
111
- ]
112
- }
113
- },
114
- "DisableActions": {
115
- "request": {
116
- "operation": "DisableAlarmActions",
117
- "params": [
118
- {
119
- "target": "AlarmNames[0]",
120
- "source": "identifier",
121
- "name": "Name"
122
- }
123
- ]
124
- }
125
- },
126
- "EnableActions": {
127
- "request": {
128
- "operation": "EnableAlarmActions",
129
- "params": [
130
- {
131
- "target": "AlarmNames[0]",
132
- "source": "identifier",
133
- "name": "Name"
134
- }
135
- ]
136
- }
137
- },
138
- "SetState": {
139
- "request": {
140
- "operation": "SetAlarmState",
141
- "params": [
142
- {
143
- "target": "AlarmName",
144
- "source": "identifier",
145
- "name": "Name"
146
- }
147
- ]
148
- }
149
- }
150
- },
151
- "batchActions": {
152
- "Delete": {
153
- "request": {
154
- "operation": "DeleteAlarms",
155
- "params": [
156
- {
157
- "target": "AlarmNames[]",
158
- "source": "identifier",
159
- "name": "Name"
160
- }
161
- ]
162
- }
163
- },
164
- "DisableActions": {
165
- "request": {
166
- "operation": "DisableAlarmActions",
167
- "params": [
168
- {
169
- "target": "AlarmNames[]",
170
- "source": "identifier",
171
- "name": "Name"
172
- }
173
- ]
174
- }
175
- },
176
- "EnableActions": {
177
- "request": {
178
- "operation": "EnableAlarmActions",
179
- "params": [
180
- {
181
- "target": "AlarmNames[]",
182
- "source": "identifier",
183
- "name": "Name"
184
- }
185
- ]
186
- }
187
- }
188
- },
189
- "waiters": {
190
- "Exists": {
191
- "waiterName": "AlarmExists",
192
- "params": [
193
- {
194
- "target": "AlarmNames[]",
195
- "source": "identifier",
196
- "name": "Name"
197
- }
198
- ]
199
- }
200
- },
201
- "has": {
202
- "Metric": {
203
- "resource": {
204
- "type": "Metric",
205
- "identifiers": [
206
- {
207
- "target": "Namespace",
208
- "source": "data",
209
- "path": "Namespace"
210
- },
211
- {
212
- "target": "Name",
213
- "source": "data",
214
- "path": "MetricName"
215
- }
216
- ]
217
- }
218
- }
219
- }
220
- },
221
- "Metric": {
222
- "identifiers": [
223
- {
224
- "name": "Namespace",
225
- "memberName": "Namespace"
226
- },
227
- {
228
- "name": "Name",
229
- "memberName": "MetricName"
230
- }
231
- ],
232
- "shape": "Metric",
233
- "load": {
234
- "request": {
235
- "operation": "ListMetrics",
236
- "params": [
237
- {
238
- "target": "MetricName",
239
- "source": "identifier",
240
- "name": "Name"
241
- },
242
- {
243
- "target": "Namespace",
244
- "source": "identifier",
245
- "name": "Namespace"
246
- }
247
- ]
248
- },
249
- "path": "Metrics[0]"
250
- },
251
- "actions": {
252
- "GetStatistics": {
253
- "request": {
254
- "operation": "GetMetricStatistics",
255
- "params": [
256
- {
257
- "target": "Namespace",
258
- "source": "identifier",
259
- "name": "Namespace"
260
- },
261
- {
262
- "target": "MetricName",
263
- "source": "identifier",
264
- "name": "Name"
265
- }
266
- ]
267
- }
268
- },
269
- "PutAlarm": {
270
- "request": {
271
- "operation": "PutMetricAlarm",
272
- "params": [
273
- {
274
- "target": "Namespace",
275
- "source": "identifier",
276
- "name": "Namespace"
277
- },
278
- {
279
- "target": "MetricName",
280
- "source": "identifier",
281
- "name": "Name"
282
- }
283
- ]
284
- },
285
- "resource": {
286
- "type": "Alarm",
287
- "identifiers": [
288
- {
289
- "target": "Name",
290
- "source": "requestParameter",
291
- "path": "AlarmName"
292
- }
293
- ]
294
- }
295
- },
296
- "PutData": {
297
- "request": {
298
- "operation": "PutMetricData",
299
- "params": [
300
- {
301
- "target": "Namespace",
302
- "source": "identifier",
303
- "name": "Namespace"
304
- },
305
- {
306
- "target": "MetricData[].MetricName",
307
- "source": "identifier",
308
- "name": "Name"
309
- }
310
- ]
311
- }
312
- }
313
- },
314
- "hasMany": {
315
- "Alarms": {
316
- "request": {
317
- "operation": "DescribeAlarmsForMetric",
318
- "params": [
319
- {
320
- "target": "Namespace",
321
- "source": "identifier",
322
- "name": "Namespace"
323
- },
324
- {
325
- "target": "MetricName",
326
- "source": "identifier",
327
- "name": "Name"
328
- }
329
- ]
330
- },
331
- "resource": {
332
- "type": "Alarm",
333
- "identifiers": [
334
- {
335
- "target": "Name",
336
- "source": "response",
337
- "path": "MetricAlarms[].AlarmName"
338
- }
339
- ],
340
- "path": "MetricAlarms[]"
341
- }
342
- }
343
- }
344
- }
345
- }
346
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "AlarmExists": {
5
- "delay": 5,
6
- "maxAttempts": 40,
7
- "operation": "DescribeAlarms",
8
- "acceptors": [
9
- {
10
- "matcher": "path",
11
- "expected": true,
12
- "argument": "length(MetricAlarms[]) > `0`",
13
- "state": "success"
14
- }
15
- ]
16
- }
17
- }
18
- }
@@ -1,2606 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2013-02-18",
5
- "endpointPrefix":"opsworks",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS OpsWorks",
9
- "signatureVersion":"v4",
10
- "targetPrefix":"OpsWorks_20130218"
11
- },
12
- "operations":{
13
- "AssignInstance":{
14
- "name":"AssignInstance",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AssignInstanceRequest"},
20
- "errors":[
21
- {"shape":"ValidationException"},
22
- {"shape":"ResourceNotFoundException"}
23
- ]
24
- },
25
- "AssignVolume":{
26
- "name":"AssignVolume",
27
- "http":{
28
- "method":"POST",
29
- "requestUri":"/"
30
- },
31
- "input":{"shape":"AssignVolumeRequest"},
32
- "errors":[
33
- {"shape":"ValidationException"},
34
- {"shape":"ResourceNotFoundException"}
35
- ]
36
- },
37
- "AssociateElasticIp":{
38
- "name":"AssociateElasticIp",
39
- "http":{
40
- "method":"POST",
41
- "requestUri":"/"
42
- },
43
- "input":{"shape":"AssociateElasticIpRequest"},
44
- "errors":[
45
- {"shape":"ValidationException"},
46
- {"shape":"ResourceNotFoundException"}
47
- ]
48
- },
49
- "AttachElasticLoadBalancer":{
50
- "name":"AttachElasticLoadBalancer",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"AttachElasticLoadBalancerRequest"},
56
- "errors":[
57
- {"shape":"ValidationException"},
58
- {"shape":"ResourceNotFoundException"}
59
- ]
60
- },
61
- "CloneStack":{
62
- "name":"CloneStack",
63
- "http":{
64
- "method":"POST",
65
- "requestUri":"/"
66
- },
67
- "input":{"shape":"CloneStackRequest"},
68
- "output":{"shape":"CloneStackResult"},
69
- "errors":[
70
- {"shape":"ValidationException"},
71
- {"shape":"ResourceNotFoundException"}
72
- ]
73
- },
74
- "CreateApp":{
75
- "name":"CreateApp",
76
- "http":{
77
- "method":"POST",
78
- "requestUri":"/"
79
- },
80
- "input":{"shape":"CreateAppRequest"},
81
- "output":{"shape":"CreateAppResult"},
82
- "errors":[
83
- {"shape":"ValidationException"},
84
- {"shape":"ResourceNotFoundException"}
85
- ]
86
- },
87
- "CreateDeployment":{
88
- "name":"CreateDeployment",
89
- "http":{
90
- "method":"POST",
91
- "requestUri":"/"
92
- },
93
- "input":{"shape":"CreateDeploymentRequest"},
94
- "output":{"shape":"CreateDeploymentResult"},
95
- "errors":[
96
- {"shape":"ValidationException"},
97
- {"shape":"ResourceNotFoundException"}
98
- ]
99
- },
100
- "CreateInstance":{
101
- "name":"CreateInstance",
102
- "http":{
103
- "method":"POST",
104
- "requestUri":"/"
105
- },
106
- "input":{"shape":"CreateInstanceRequest"},
107
- "output":{"shape":"CreateInstanceResult"},
108
- "errors":[
109
- {"shape":"ValidationException"},
110
- {"shape":"ResourceNotFoundException"}
111
- ]
112
- },
113
- "CreateLayer":{
114
- "name":"CreateLayer",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/"
118
- },
119
- "input":{"shape":"CreateLayerRequest"},
120
- "output":{"shape":"CreateLayerResult"},
121
- "errors":[
122
- {"shape":"ValidationException"},
123
- {"shape":"ResourceNotFoundException"}
124
- ]
125
- },
126
- "CreateStack":{
127
- "name":"CreateStack",
128
- "http":{
129
- "method":"POST",
130
- "requestUri":"/"
131
- },
132
- "input":{"shape":"CreateStackRequest"},
133
- "output":{"shape":"CreateStackResult"},
134
- "errors":[
135
- {"shape":"ValidationException"}
136
- ]
137
- },
138
- "CreateUserProfile":{
139
- "name":"CreateUserProfile",
140
- "http":{
141
- "method":"POST",
142
- "requestUri":"/"
143
- },
144
- "input":{"shape":"CreateUserProfileRequest"},
145
- "output":{"shape":"CreateUserProfileResult"},
146
- "errors":[
147
- {"shape":"ValidationException"}
148
- ]
149
- },
150
- "DeleteApp":{
151
- "name":"DeleteApp",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"DeleteAppRequest"},
157
- "errors":[
158
- {"shape":"ValidationException"},
159
- {"shape":"ResourceNotFoundException"}
160
- ]
161
- },
162
- "DeleteInstance":{
163
- "name":"DeleteInstance",
164
- "http":{
165
- "method":"POST",
166
- "requestUri":"/"
167
- },
168
- "input":{"shape":"DeleteInstanceRequest"},
169
- "errors":[
170
- {"shape":"ValidationException"},
171
- {"shape":"ResourceNotFoundException"}
172
- ]
173
- },
174
- "DeleteLayer":{
175
- "name":"DeleteLayer",
176
- "http":{
177
- "method":"POST",
178
- "requestUri":"/"
179
- },
180
- "input":{"shape":"DeleteLayerRequest"},
181
- "errors":[
182
- {"shape":"ValidationException"},
183
- {"shape":"ResourceNotFoundException"}
184
- ]
185
- },
186
- "DeleteStack":{
187
- "name":"DeleteStack",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/"
191
- },
192
- "input":{"shape":"DeleteStackRequest"},
193
- "errors":[
194
- {"shape":"ValidationException"},
195
- {"shape":"ResourceNotFoundException"}
196
- ]
197
- },
198
- "DeleteUserProfile":{
199
- "name":"DeleteUserProfile",
200
- "http":{
201
- "method":"POST",
202
- "requestUri":"/"
203
- },
204
- "input":{"shape":"DeleteUserProfileRequest"},
205
- "errors":[
206
- {"shape":"ValidationException"},
207
- {"shape":"ResourceNotFoundException"}
208
- ]
209
- },
210
- "DeregisterEcsCluster":{
211
- "name":"DeregisterEcsCluster",
212
- "http":{
213
- "method":"POST",
214
- "requestUri":"/"
215
- },
216
- "input":{"shape":"DeregisterEcsClusterRequest"},
217
- "errors":[
218
- {"shape":"ValidationException"},
219
- {"shape":"ResourceNotFoundException"}
220
- ]
221
- },
222
- "DeregisterElasticIp":{
223
- "name":"DeregisterElasticIp",
224
- "http":{
225
- "method":"POST",
226
- "requestUri":"/"
227
- },
228
- "input":{"shape":"DeregisterElasticIpRequest"},
229
- "errors":[
230
- {"shape":"ValidationException"},
231
- {"shape":"ResourceNotFoundException"}
232
- ]
233
- },
234
- "DeregisterInstance":{
235
- "name":"DeregisterInstance",
236
- "http":{
237
- "method":"POST",
238
- "requestUri":"/"
239
- },
240
- "input":{"shape":"DeregisterInstanceRequest"},
241
- "errors":[
242
- {"shape":"ValidationException"},
243
- {"shape":"ResourceNotFoundException"}
244
- ]
245
- },
246
- "DeregisterRdsDbInstance":{
247
- "name":"DeregisterRdsDbInstance",
248
- "http":{
249
- "method":"POST",
250
- "requestUri":"/"
251
- },
252
- "input":{"shape":"DeregisterRdsDbInstanceRequest"},
253
- "errors":[
254
- {"shape":"ValidationException"},
255
- {"shape":"ResourceNotFoundException"}
256
- ]
257
- },
258
- "DeregisterVolume":{
259
- "name":"DeregisterVolume",
260
- "http":{
261
- "method":"POST",
262
- "requestUri":"/"
263
- },
264
- "input":{"shape":"DeregisterVolumeRequest"},
265
- "errors":[
266
- {"shape":"ValidationException"},
267
- {"shape":"ResourceNotFoundException"}
268
- ]
269
- },
270
- "DescribeAgentVersions":{
271
- "name":"DescribeAgentVersions",
272
- "http":{
273
- "method":"POST",
274
- "requestUri":"/"
275
- },
276
- "input":{"shape":"DescribeAgentVersionsRequest"},
277
- "output":{"shape":"DescribeAgentVersionsResult"},
278
- "errors":[
279
- {"shape":"ValidationException"},
280
- {"shape":"ResourceNotFoundException"}
281
- ]
282
- },
283
- "DescribeApps":{
284
- "name":"DescribeApps",
285
- "http":{
286
- "method":"POST",
287
- "requestUri":"/"
288
- },
289
- "input":{"shape":"DescribeAppsRequest"},
290
- "output":{"shape":"DescribeAppsResult"},
291
- "errors":[
292
- {"shape":"ValidationException"},
293
- {"shape":"ResourceNotFoundException"}
294
- ]
295
- },
296
- "DescribeCommands":{
297
- "name":"DescribeCommands",
298
- "http":{
299
- "method":"POST",
300
- "requestUri":"/"
301
- },
302
- "input":{"shape":"DescribeCommandsRequest"},
303
- "output":{"shape":"DescribeCommandsResult"},
304
- "errors":[
305
- {"shape":"ValidationException"},
306
- {"shape":"ResourceNotFoundException"}
307
- ]
308
- },
309
- "DescribeDeployments":{
310
- "name":"DescribeDeployments",
311
- "http":{
312
- "method":"POST",
313
- "requestUri":"/"
314
- },
315
- "input":{"shape":"DescribeDeploymentsRequest"},
316
- "output":{"shape":"DescribeDeploymentsResult"},
317
- "errors":[
318
- {"shape":"ValidationException"},
319
- {"shape":"ResourceNotFoundException"}
320
- ]
321
- },
322
- "DescribeEcsClusters":{
323
- "name":"DescribeEcsClusters",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DescribeEcsClustersRequest"},
329
- "output":{"shape":"DescribeEcsClustersResult"},
330
- "errors":[
331
- {"shape":"ValidationException"},
332
- {"shape":"ResourceNotFoundException"}
333
- ]
334
- },
335
- "DescribeElasticIps":{
336
- "name":"DescribeElasticIps",
337
- "http":{
338
- "method":"POST",
339
- "requestUri":"/"
340
- },
341
- "input":{"shape":"DescribeElasticIpsRequest"},
342
- "output":{"shape":"DescribeElasticIpsResult"},
343
- "errors":[
344
- {"shape":"ValidationException"},
345
- {"shape":"ResourceNotFoundException"}
346
- ]
347
- },
348
- "DescribeElasticLoadBalancers":{
349
- "name":"DescribeElasticLoadBalancers",
350
- "http":{
351
- "method":"POST",
352
- "requestUri":"/"
353
- },
354
- "input":{"shape":"DescribeElasticLoadBalancersRequest"},
355
- "output":{"shape":"DescribeElasticLoadBalancersResult"},
356
- "errors":[
357
- {"shape":"ValidationException"},
358
- {"shape":"ResourceNotFoundException"}
359
- ]
360
- },
361
- "DescribeInstances":{
362
- "name":"DescribeInstances",
363
- "http":{
364
- "method":"POST",
365
- "requestUri":"/"
366
- },
367
- "input":{"shape":"DescribeInstancesRequest"},
368
- "output":{"shape":"DescribeInstancesResult"},
369
- "errors":[
370
- {"shape":"ValidationException"},
371
- {"shape":"ResourceNotFoundException"}
372
- ]
373
- },
374
- "DescribeLayers":{
375
- "name":"DescribeLayers",
376
- "http":{
377
- "method":"POST",
378
- "requestUri":"/"
379
- },
380
- "input":{"shape":"DescribeLayersRequest"},
381
- "output":{"shape":"DescribeLayersResult"},
382
- "errors":[
383
- {"shape":"ValidationException"},
384
- {"shape":"ResourceNotFoundException"}
385
- ]
386
- },
387
- "DescribeLoadBasedAutoScaling":{
388
- "name":"DescribeLoadBasedAutoScaling",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"DescribeLoadBasedAutoScalingRequest"},
394
- "output":{"shape":"DescribeLoadBasedAutoScalingResult"},
395
- "errors":[
396
- {"shape":"ValidationException"},
397
- {"shape":"ResourceNotFoundException"}
398
- ]
399
- },
400
- "DescribeMyUserProfile":{
401
- "name":"DescribeMyUserProfile",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "output":{"shape":"DescribeMyUserProfileResult"}
407
- },
408
- "DescribePermissions":{
409
- "name":"DescribePermissions",
410
- "http":{
411
- "method":"POST",
412
- "requestUri":"/"
413
- },
414
- "input":{"shape":"DescribePermissionsRequest"},
415
- "output":{"shape":"DescribePermissionsResult"},
416
- "errors":[
417
- {"shape":"ValidationException"},
418
- {"shape":"ResourceNotFoundException"}
419
- ]
420
- },
421
- "DescribeRaidArrays":{
422
- "name":"DescribeRaidArrays",
423
- "http":{
424
- "method":"POST",
425
- "requestUri":"/"
426
- },
427
- "input":{"shape":"DescribeRaidArraysRequest"},
428
- "output":{"shape":"DescribeRaidArraysResult"},
429
- "errors":[
430
- {"shape":"ValidationException"},
431
- {"shape":"ResourceNotFoundException"}
432
- ]
433
- },
434
- "DescribeRdsDbInstances":{
435
- "name":"DescribeRdsDbInstances",
436
- "http":{
437
- "method":"POST",
438
- "requestUri":"/"
439
- },
440
- "input":{"shape":"DescribeRdsDbInstancesRequest"},
441
- "output":{"shape":"DescribeRdsDbInstancesResult"},
442
- "errors":[
443
- {"shape":"ValidationException"},
444
- {"shape":"ResourceNotFoundException"}
445
- ]
446
- },
447
- "DescribeServiceErrors":{
448
- "name":"DescribeServiceErrors",
449
- "http":{
450
- "method":"POST",
451
- "requestUri":"/"
452
- },
453
- "input":{"shape":"DescribeServiceErrorsRequest"},
454
- "output":{"shape":"DescribeServiceErrorsResult"},
455
- "errors":[
456
- {"shape":"ValidationException"},
457
- {"shape":"ResourceNotFoundException"}
458
- ]
459
- },
460
- "DescribeStackProvisioningParameters":{
461
- "name":"DescribeStackProvisioningParameters",
462
- "http":{
463
- "method":"POST",
464
- "requestUri":"/"
465
- },
466
- "input":{"shape":"DescribeStackProvisioningParametersRequest"},
467
- "output":{"shape":"DescribeStackProvisioningParametersResult"},
468
- "errors":[
469
- {"shape":"ValidationException"},
470
- {"shape":"ResourceNotFoundException"}
471
- ]
472
- },
473
- "DescribeStackSummary":{
474
- "name":"DescribeStackSummary",
475
- "http":{
476
- "method":"POST",
477
- "requestUri":"/"
478
- },
479
- "input":{"shape":"DescribeStackSummaryRequest"},
480
- "output":{"shape":"DescribeStackSummaryResult"},
481
- "errors":[
482
- {"shape":"ValidationException"},
483
- {"shape":"ResourceNotFoundException"}
484
- ]
485
- },
486
- "DescribeStacks":{
487
- "name":"DescribeStacks",
488
- "http":{
489
- "method":"POST",
490
- "requestUri":"/"
491
- },
492
- "input":{"shape":"DescribeStacksRequest"},
493
- "output":{"shape":"DescribeStacksResult"},
494
- "errors":[
495
- {"shape":"ValidationException"},
496
- {"shape":"ResourceNotFoundException"}
497
- ]
498
- },
499
- "DescribeTimeBasedAutoScaling":{
500
- "name":"DescribeTimeBasedAutoScaling",
501
- "http":{
502
- "method":"POST",
503
- "requestUri":"/"
504
- },
505
- "input":{"shape":"DescribeTimeBasedAutoScalingRequest"},
506
- "output":{"shape":"DescribeTimeBasedAutoScalingResult"},
507
- "errors":[
508
- {"shape":"ValidationException"},
509
- {"shape":"ResourceNotFoundException"}
510
- ]
511
- },
512
- "DescribeUserProfiles":{
513
- "name":"DescribeUserProfiles",
514
- "http":{
515
- "method":"POST",
516
- "requestUri":"/"
517
- },
518
- "input":{"shape":"DescribeUserProfilesRequest"},
519
- "output":{"shape":"DescribeUserProfilesResult"},
520
- "errors":[
521
- {"shape":"ValidationException"},
522
- {"shape":"ResourceNotFoundException"}
523
- ]
524
- },
525
- "DescribeVolumes":{
526
- "name":"DescribeVolumes",
527
- "http":{
528
- "method":"POST",
529
- "requestUri":"/"
530
- },
531
- "input":{"shape":"DescribeVolumesRequest"},
532
- "output":{"shape":"DescribeVolumesResult"},
533
- "errors":[
534
- {"shape":"ValidationException"},
535
- {"shape":"ResourceNotFoundException"}
536
- ]
537
- },
538
- "DetachElasticLoadBalancer":{
539
- "name":"DetachElasticLoadBalancer",
540
- "http":{
541
- "method":"POST",
542
- "requestUri":"/"
543
- },
544
- "input":{"shape":"DetachElasticLoadBalancerRequest"},
545
- "errors":[
546
- {"shape":"ResourceNotFoundException"}
547
- ]
548
- },
549
- "DisassociateElasticIp":{
550
- "name":"DisassociateElasticIp",
551
- "http":{
552
- "method":"POST",
553
- "requestUri":"/"
554
- },
555
- "input":{"shape":"DisassociateElasticIpRequest"},
556
- "errors":[
557
- {"shape":"ValidationException"},
558
- {"shape":"ResourceNotFoundException"}
559
- ]
560
- },
561
- "GetHostnameSuggestion":{
562
- "name":"GetHostnameSuggestion",
563
- "http":{
564
- "method":"POST",
565
- "requestUri":"/"
566
- },
567
- "input":{"shape":"GetHostnameSuggestionRequest"},
568
- "output":{"shape":"GetHostnameSuggestionResult"},
569
- "errors":[
570
- {"shape":"ValidationException"},
571
- {"shape":"ResourceNotFoundException"}
572
- ]
573
- },
574
- "GrantAccess":{
575
- "name":"GrantAccess",
576
- "http":{
577
- "method":"POST",
578
- "requestUri":"/"
579
- },
580
- "input":{"shape":"GrantAccessRequest"},
581
- "output":{"shape":"GrantAccessResult"},
582
- "errors":[
583
- {"shape":"ValidationException"},
584
- {"shape":"ResourceNotFoundException"}
585
- ]
586
- },
587
- "RebootInstance":{
588
- "name":"RebootInstance",
589
- "http":{
590
- "method":"POST",
591
- "requestUri":"/"
592
- },
593
- "input":{"shape":"RebootInstanceRequest"},
594
- "errors":[
595
- {"shape":"ValidationException"},
596
- {"shape":"ResourceNotFoundException"}
597
- ]
598
- },
599
- "RegisterEcsCluster":{
600
- "name":"RegisterEcsCluster",
601
- "http":{
602
- "method":"POST",
603
- "requestUri":"/"
604
- },
605
- "input":{"shape":"RegisterEcsClusterRequest"},
606
- "output":{"shape":"RegisterEcsClusterResult"},
607
- "errors":[
608
- {"shape":"ValidationException"},
609
- {"shape":"ResourceNotFoundException"}
610
- ]
611
- },
612
- "RegisterElasticIp":{
613
- "name":"RegisterElasticIp",
614
- "http":{
615
- "method":"POST",
616
- "requestUri":"/"
617
- },
618
- "input":{"shape":"RegisterElasticIpRequest"},
619
- "output":{"shape":"RegisterElasticIpResult"},
620
- "errors":[
621
- {"shape":"ValidationException"},
622
- {"shape":"ResourceNotFoundException"}
623
- ]
624
- },
625
- "RegisterInstance":{
626
- "name":"RegisterInstance",
627
- "http":{
628
- "method":"POST",
629
- "requestUri":"/"
630
- },
631
- "input":{"shape":"RegisterInstanceRequest"},
632
- "output":{"shape":"RegisterInstanceResult"},
633
- "errors":[
634
- {"shape":"ValidationException"},
635
- {"shape":"ResourceNotFoundException"}
636
- ]
637
- },
638
- "RegisterRdsDbInstance":{
639
- "name":"RegisterRdsDbInstance",
640
- "http":{
641
- "method":"POST",
642
- "requestUri":"/"
643
- },
644
- "input":{"shape":"RegisterRdsDbInstanceRequest"},
645
- "errors":[
646
- {"shape":"ValidationException"},
647
- {"shape":"ResourceNotFoundException"}
648
- ]
649
- },
650
- "RegisterVolume":{
651
- "name":"RegisterVolume",
652
- "http":{
653
- "method":"POST",
654
- "requestUri":"/"
655
- },
656
- "input":{"shape":"RegisterVolumeRequest"},
657
- "output":{"shape":"RegisterVolumeResult"},
658
- "errors":[
659
- {"shape":"ValidationException"},
660
- {"shape":"ResourceNotFoundException"}
661
- ]
662
- },
663
- "SetLoadBasedAutoScaling":{
664
- "name":"SetLoadBasedAutoScaling",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/"
668
- },
669
- "input":{"shape":"SetLoadBasedAutoScalingRequest"},
670
- "errors":[
671
- {"shape":"ValidationException"},
672
- {"shape":"ResourceNotFoundException"}
673
- ]
674
- },
675
- "SetPermission":{
676
- "name":"SetPermission",
677
- "http":{
678
- "method":"POST",
679
- "requestUri":"/"
680
- },
681
- "input":{"shape":"SetPermissionRequest"},
682
- "errors":[
683
- {"shape":"ValidationException"},
684
- {"shape":"ResourceNotFoundException"}
685
- ]
686
- },
687
- "SetTimeBasedAutoScaling":{
688
- "name":"SetTimeBasedAutoScaling",
689
- "http":{
690
- "method":"POST",
691
- "requestUri":"/"
692
- },
693
- "input":{"shape":"SetTimeBasedAutoScalingRequest"},
694
- "errors":[
695
- {"shape":"ValidationException"},
696
- {"shape":"ResourceNotFoundException"}
697
- ]
698
- },
699
- "StartInstance":{
700
- "name":"StartInstance",
701
- "http":{
702
- "method":"POST",
703
- "requestUri":"/"
704
- },
705
- "input":{"shape":"StartInstanceRequest"},
706
- "errors":[
707
- {"shape":"ValidationException"},
708
- {"shape":"ResourceNotFoundException"}
709
- ]
710
- },
711
- "StartStack":{
712
- "name":"StartStack",
713
- "http":{
714
- "method":"POST",
715
- "requestUri":"/"
716
- },
717
- "input":{"shape":"StartStackRequest"},
718
- "errors":[
719
- {"shape":"ValidationException"},
720
- {"shape":"ResourceNotFoundException"}
721
- ]
722
- },
723
- "StopInstance":{
724
- "name":"StopInstance",
725
- "http":{
726
- "method":"POST",
727
- "requestUri":"/"
728
- },
729
- "input":{"shape":"StopInstanceRequest"},
730
- "errors":[
731
- {"shape":"ValidationException"},
732
- {"shape":"ResourceNotFoundException"}
733
- ]
734
- },
735
- "StopStack":{
736
- "name":"StopStack",
737
- "http":{
738
- "method":"POST",
739
- "requestUri":"/"
740
- },
741
- "input":{"shape":"StopStackRequest"},
742
- "errors":[
743
- {"shape":"ValidationException"},
744
- {"shape":"ResourceNotFoundException"}
745
- ]
746
- },
747
- "UnassignInstance":{
748
- "name":"UnassignInstance",
749
- "http":{
750
- "method":"POST",
751
- "requestUri":"/"
752
- },
753
- "input":{"shape":"UnassignInstanceRequest"},
754
- "errors":[
755
- {"shape":"ValidationException"},
756
- {"shape":"ResourceNotFoundException"}
757
- ]
758
- },
759
- "UnassignVolume":{
760
- "name":"UnassignVolume",
761
- "http":{
762
- "method":"POST",
763
- "requestUri":"/"
764
- },
765
- "input":{"shape":"UnassignVolumeRequest"},
766
- "errors":[
767
- {"shape":"ValidationException"},
768
- {"shape":"ResourceNotFoundException"}
769
- ]
770
- },
771
- "UpdateApp":{
772
- "name":"UpdateApp",
773
- "http":{
774
- "method":"POST",
775
- "requestUri":"/"
776
- },
777
- "input":{"shape":"UpdateAppRequest"},
778
- "errors":[
779
- {"shape":"ValidationException"},
780
- {"shape":"ResourceNotFoundException"}
781
- ]
782
- },
783
- "UpdateElasticIp":{
784
- "name":"UpdateElasticIp",
785
- "http":{
786
- "method":"POST",
787
- "requestUri":"/"
788
- },
789
- "input":{"shape":"UpdateElasticIpRequest"},
790
- "errors":[
791
- {"shape":"ValidationException"},
792
- {"shape":"ResourceNotFoundException"}
793
- ]
794
- },
795
- "UpdateInstance":{
796
- "name":"UpdateInstance",
797
- "http":{
798
- "method":"POST",
799
- "requestUri":"/"
800
- },
801
- "input":{"shape":"UpdateInstanceRequest"},
802
- "errors":[
803
- {"shape":"ValidationException"},
804
- {"shape":"ResourceNotFoundException"}
805
- ]
806
- },
807
- "UpdateLayer":{
808
- "name":"UpdateLayer",
809
- "http":{
810
- "method":"POST",
811
- "requestUri":"/"
812
- },
813
- "input":{"shape":"UpdateLayerRequest"},
814
- "errors":[
815
- {"shape":"ValidationException"},
816
- {"shape":"ResourceNotFoundException"}
817
- ]
818
- },
819
- "UpdateMyUserProfile":{
820
- "name":"UpdateMyUserProfile",
821
- "http":{
822
- "method":"POST",
823
- "requestUri":"/"
824
- },
825
- "input":{"shape":"UpdateMyUserProfileRequest"},
826
- "errors":[
827
- {"shape":"ValidationException"}
828
- ]
829
- },
830
- "UpdateRdsDbInstance":{
831
- "name":"UpdateRdsDbInstance",
832
- "http":{
833
- "method":"POST",
834
- "requestUri":"/"
835
- },
836
- "input":{"shape":"UpdateRdsDbInstanceRequest"},
837
- "errors":[
838
- {"shape":"ValidationException"},
839
- {"shape":"ResourceNotFoundException"}
840
- ]
841
- },
842
- "UpdateStack":{
843
- "name":"UpdateStack",
844
- "http":{
845
- "method":"POST",
846
- "requestUri":"/"
847
- },
848
- "input":{"shape":"UpdateStackRequest"},
849
- "errors":[
850
- {"shape":"ValidationException"},
851
- {"shape":"ResourceNotFoundException"}
852
- ]
853
- },
854
- "UpdateUserProfile":{
855
- "name":"UpdateUserProfile",
856
- "http":{
857
- "method":"POST",
858
- "requestUri":"/"
859
- },
860
- "input":{"shape":"UpdateUserProfileRequest"},
861
- "errors":[
862
- {"shape":"ValidationException"},
863
- {"shape":"ResourceNotFoundException"}
864
- ]
865
- },
866
- "UpdateVolume":{
867
- "name":"UpdateVolume",
868
- "http":{
869
- "method":"POST",
870
- "requestUri":"/"
871
- },
872
- "input":{"shape":"UpdateVolumeRequest"},
873
- "errors":[
874
- {"shape":"ValidationException"},
875
- {"shape":"ResourceNotFoundException"}
876
- ]
877
- }
878
- },
879
- "shapes":{
880
- "AgentVersion":{
881
- "type":"structure",
882
- "members":{
883
- "Version":{"shape":"String"},
884
- "ConfigurationManager":{"shape":"StackConfigurationManager"}
885
- }
886
- },
887
- "AgentVersions":{
888
- "type":"list",
889
- "member":{"shape":"AgentVersion"}
890
- },
891
- "App":{
892
- "type":"structure",
893
- "members":{
894
- "AppId":{"shape":"String"},
895
- "StackId":{"shape":"String"},
896
- "Shortname":{"shape":"String"},
897
- "Name":{"shape":"String"},
898
- "Description":{"shape":"String"},
899
- "DataSources":{"shape":"DataSources"},
900
- "Type":{"shape":"AppType"},
901
- "AppSource":{"shape":"Source"},
902
- "Domains":{"shape":"Strings"},
903
- "EnableSsl":{"shape":"Boolean"},
904
- "SslConfiguration":{"shape":"SslConfiguration"},
905
- "Attributes":{"shape":"AppAttributes"},
906
- "CreatedAt":{"shape":"String"},
907
- "Environment":{"shape":"EnvironmentVariables"}
908
- }
909
- },
910
- "AppAttributes":{
911
- "type":"map",
912
- "key":{"shape":"AppAttributesKeys"},
913
- "value":{"shape":"String"}
914
- },
915
- "AppAttributesKeys":{
916
- "type":"string",
917
- "enum":[
918
- "DocumentRoot",
919
- "RailsEnv",
920
- "AutoBundleOnDeploy",
921
- "AwsFlowRubySettings"
922
- ]
923
- },
924
- "AppType":{
925
- "type":"string",
926
- "enum":[
927
- "aws-flow-ruby",
928
- "java",
929
- "rails",
930
- "php",
931
- "nodejs",
932
- "static",
933
- "other"
934
- ]
935
- },
936
- "Apps":{
937
- "type":"list",
938
- "member":{"shape":"App"}
939
- },
940
- "Architecture":{
941
- "type":"string",
942
- "enum":[
943
- "x86_64",
944
- "i386"
945
- ]
946
- },
947
- "AssignInstanceRequest":{
948
- "type":"structure",
949
- "required":[
950
- "InstanceId",
951
- "LayerIds"
952
- ],
953
- "members":{
954
- "InstanceId":{"shape":"String"},
955
- "LayerIds":{"shape":"Strings"}
956
- }
957
- },
958
- "AssignVolumeRequest":{
959
- "type":"structure",
960
- "required":["VolumeId"],
961
- "members":{
962
- "VolumeId":{"shape":"String"},
963
- "InstanceId":{"shape":"String"}
964
- }
965
- },
966
- "AssociateElasticIpRequest":{
967
- "type":"structure",
968
- "required":["ElasticIp"],
969
- "members":{
970
- "ElasticIp":{"shape":"String"},
971
- "InstanceId":{"shape":"String"}
972
- }
973
- },
974
- "AttachElasticLoadBalancerRequest":{
975
- "type":"structure",
976
- "required":[
977
- "ElasticLoadBalancerName",
978
- "LayerId"
979
- ],
980
- "members":{
981
- "ElasticLoadBalancerName":{"shape":"String"},
982
- "LayerId":{"shape":"String"}
983
- }
984
- },
985
- "AutoScalingThresholds":{
986
- "type":"structure",
987
- "members":{
988
- "InstanceCount":{"shape":"Integer"},
989
- "ThresholdsWaitTime":{"shape":"Minute"},
990
- "IgnoreMetricsTime":{"shape":"Minute"},
991
- "CpuThreshold":{"shape":"Double"},
992
- "MemoryThreshold":{"shape":"Double"},
993
- "LoadThreshold":{"shape":"Double"},
994
- "Alarms":{"shape":"Strings"}
995
- }
996
- },
997
- "AutoScalingType":{
998
- "type":"string",
999
- "enum":[
1000
- "load",
1001
- "timer"
1002
- ]
1003
- },
1004
- "BlockDeviceMapping":{
1005
- "type":"structure",
1006
- "members":{
1007
- "DeviceName":{"shape":"String"},
1008
- "NoDevice":{"shape":"String"},
1009
- "VirtualName":{"shape":"String"},
1010
- "Ebs":{"shape":"EbsBlockDevice"}
1011
- }
1012
- },
1013
- "BlockDeviceMappings":{
1014
- "type":"list",
1015
- "member":{"shape":"BlockDeviceMapping"}
1016
- },
1017
- "Boolean":{
1018
- "type":"boolean",
1019
- "box":true
1020
- },
1021
- "ChefConfiguration":{
1022
- "type":"structure",
1023
- "members":{
1024
- "ManageBerkshelf":{"shape":"Boolean"},
1025
- "BerkshelfVersion":{"shape":"String"}
1026
- }
1027
- },
1028
- "CloneStackRequest":{
1029
- "type":"structure",
1030
- "required":[
1031
- "SourceStackId",
1032
- "ServiceRoleArn"
1033
- ],
1034
- "members":{
1035
- "SourceStackId":{"shape":"String"},
1036
- "Name":{"shape":"String"},
1037
- "Region":{"shape":"String"},
1038
- "VpcId":{"shape":"String"},
1039
- "Attributes":{"shape":"StackAttributes"},
1040
- "ServiceRoleArn":{"shape":"String"},
1041
- "DefaultInstanceProfileArn":{"shape":"String"},
1042
- "DefaultOs":{"shape":"String"},
1043
- "HostnameTheme":{"shape":"String"},
1044
- "DefaultAvailabilityZone":{"shape":"String"},
1045
- "DefaultSubnetId":{"shape":"String"},
1046
- "CustomJson":{"shape":"String"},
1047
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
1048
- "ChefConfiguration":{"shape":"ChefConfiguration"},
1049
- "UseCustomCookbooks":{"shape":"Boolean"},
1050
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
1051
- "CustomCookbooksSource":{"shape":"Source"},
1052
- "DefaultSshKeyName":{"shape":"String"},
1053
- "ClonePermissions":{"shape":"Boolean"},
1054
- "CloneAppIds":{"shape":"Strings"},
1055
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
1056
- "AgentVersion":{"shape":"String"}
1057
- }
1058
- },
1059
- "CloneStackResult":{
1060
- "type":"structure",
1061
- "members":{
1062
- "StackId":{"shape":"String"}
1063
- }
1064
- },
1065
- "Command":{
1066
- "type":"structure",
1067
- "members":{
1068
- "CommandId":{"shape":"String"},
1069
- "InstanceId":{"shape":"String"},
1070
- "DeploymentId":{"shape":"String"},
1071
- "CreatedAt":{"shape":"DateTime"},
1072
- "AcknowledgedAt":{"shape":"DateTime"},
1073
- "CompletedAt":{"shape":"DateTime"},
1074
- "Status":{"shape":"String"},
1075
- "ExitCode":{"shape":"Integer"},
1076
- "LogUrl":{"shape":"String"},
1077
- "Type":{"shape":"String"}
1078
- }
1079
- },
1080
- "Commands":{
1081
- "type":"list",
1082
- "member":{"shape":"Command"}
1083
- },
1084
- "CreateAppRequest":{
1085
- "type":"structure",
1086
- "required":[
1087
- "StackId",
1088
- "Name",
1089
- "Type"
1090
- ],
1091
- "members":{
1092
- "StackId":{"shape":"String"},
1093
- "Shortname":{"shape":"String"},
1094
- "Name":{"shape":"String"},
1095
- "Description":{"shape":"String"},
1096
- "DataSources":{"shape":"DataSources"},
1097
- "Type":{"shape":"AppType"},
1098
- "AppSource":{"shape":"Source"},
1099
- "Domains":{"shape":"Strings"},
1100
- "EnableSsl":{"shape":"Boolean"},
1101
- "SslConfiguration":{"shape":"SslConfiguration"},
1102
- "Attributes":{"shape":"AppAttributes"},
1103
- "Environment":{"shape":"EnvironmentVariables"}
1104
- }
1105
- },
1106
- "CreateAppResult":{
1107
- "type":"structure",
1108
- "members":{
1109
- "AppId":{"shape":"String"}
1110
- }
1111
- },
1112
- "CreateDeploymentRequest":{
1113
- "type":"structure",
1114
- "required":[
1115
- "StackId",
1116
- "Command"
1117
- ],
1118
- "members":{
1119
- "StackId":{"shape":"String"},
1120
- "AppId":{"shape":"String"},
1121
- "InstanceIds":{"shape":"Strings"},
1122
- "LayerIds":{"shape":"Strings"},
1123
- "Command":{"shape":"DeploymentCommand"},
1124
- "Comment":{"shape":"String"},
1125
- "CustomJson":{"shape":"String"}
1126
- }
1127
- },
1128
- "CreateDeploymentResult":{
1129
- "type":"structure",
1130
- "members":{
1131
- "DeploymentId":{"shape":"String"}
1132
- }
1133
- },
1134
- "CreateInstanceRequest":{
1135
- "type":"structure",
1136
- "required":[
1137
- "StackId",
1138
- "LayerIds",
1139
- "InstanceType"
1140
- ],
1141
- "members":{
1142
- "StackId":{"shape":"String"},
1143
- "LayerIds":{"shape":"Strings"},
1144
- "InstanceType":{"shape":"String"},
1145
- "AutoScalingType":{"shape":"AutoScalingType"},
1146
- "Hostname":{"shape":"String"},
1147
- "Os":{"shape":"String"},
1148
- "AmiId":{"shape":"String"},
1149
- "SshKeyName":{"shape":"String"},
1150
- "AvailabilityZone":{"shape":"String"},
1151
- "VirtualizationType":{"shape":"String"},
1152
- "SubnetId":{"shape":"String"},
1153
- "Architecture":{"shape":"Architecture"},
1154
- "RootDeviceType":{"shape":"RootDeviceType"},
1155
- "BlockDeviceMappings":{"shape":"BlockDeviceMappings"},
1156
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1157
- "EbsOptimized":{"shape":"Boolean"},
1158
- "AgentVersion":{"shape":"String"},
1159
- "Tenancy":{"shape":"String"}
1160
- }
1161
- },
1162
- "CreateInstanceResult":{
1163
- "type":"structure",
1164
- "members":{
1165
- "InstanceId":{"shape":"String"}
1166
- }
1167
- },
1168
- "CreateLayerRequest":{
1169
- "type":"structure",
1170
- "required":[
1171
- "StackId",
1172
- "Type",
1173
- "Name",
1174
- "Shortname"
1175
- ],
1176
- "members":{
1177
- "StackId":{"shape":"String"},
1178
- "Type":{"shape":"LayerType"},
1179
- "Name":{"shape":"String"},
1180
- "Shortname":{"shape":"String"},
1181
- "Attributes":{"shape":"LayerAttributes"},
1182
- "CustomInstanceProfileArn":{"shape":"String"},
1183
- "CustomJson":{"shape":"String"},
1184
- "CustomSecurityGroupIds":{"shape":"Strings"},
1185
- "Packages":{"shape":"Strings"},
1186
- "VolumeConfigurations":{"shape":"VolumeConfigurations"},
1187
- "EnableAutoHealing":{"shape":"Boolean"},
1188
- "AutoAssignElasticIps":{"shape":"Boolean"},
1189
- "AutoAssignPublicIps":{"shape":"Boolean"},
1190
- "CustomRecipes":{"shape":"Recipes"},
1191
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1192
- "UseEbsOptimizedInstances":{"shape":"Boolean"},
1193
- "LifecycleEventConfiguration":{"shape":"LifecycleEventConfiguration"}
1194
- }
1195
- },
1196
- "CreateLayerResult":{
1197
- "type":"structure",
1198
- "members":{
1199
- "LayerId":{"shape":"String"}
1200
- }
1201
- },
1202
- "CreateStackRequest":{
1203
- "type":"structure",
1204
- "required":[
1205
- "Name",
1206
- "Region",
1207
- "ServiceRoleArn",
1208
- "DefaultInstanceProfileArn"
1209
- ],
1210
- "members":{
1211
- "Name":{"shape":"String"},
1212
- "Region":{"shape":"String"},
1213
- "VpcId":{"shape":"String"},
1214
- "Attributes":{"shape":"StackAttributes"},
1215
- "ServiceRoleArn":{"shape":"String"},
1216
- "DefaultInstanceProfileArn":{"shape":"String"},
1217
- "DefaultOs":{"shape":"String"},
1218
- "HostnameTheme":{"shape":"String"},
1219
- "DefaultAvailabilityZone":{"shape":"String"},
1220
- "DefaultSubnetId":{"shape":"String"},
1221
- "CustomJson":{"shape":"String"},
1222
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
1223
- "ChefConfiguration":{"shape":"ChefConfiguration"},
1224
- "UseCustomCookbooks":{"shape":"Boolean"},
1225
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
1226
- "CustomCookbooksSource":{"shape":"Source"},
1227
- "DefaultSshKeyName":{"shape":"String"},
1228
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
1229
- "AgentVersion":{"shape":"String"}
1230
- }
1231
- },
1232
- "CreateStackResult":{
1233
- "type":"structure",
1234
- "members":{
1235
- "StackId":{"shape":"String"}
1236
- }
1237
- },
1238
- "CreateUserProfileRequest":{
1239
- "type":"structure",
1240
- "required":["IamUserArn"],
1241
- "members":{
1242
- "IamUserArn":{"shape":"String"},
1243
- "SshUsername":{"shape":"String"},
1244
- "SshPublicKey":{"shape":"String"},
1245
- "AllowSelfManagement":{"shape":"Boolean"}
1246
- }
1247
- },
1248
- "CreateUserProfileResult":{
1249
- "type":"structure",
1250
- "members":{
1251
- "IamUserArn":{"shape":"String"}
1252
- }
1253
- },
1254
- "DailyAutoScalingSchedule":{
1255
- "type":"map",
1256
- "key":{"shape":"Hour"},
1257
- "value":{"shape":"Switch"}
1258
- },
1259
- "DataSource":{
1260
- "type":"structure",
1261
- "members":{
1262
- "Type":{"shape":"String"},
1263
- "Arn":{"shape":"String"},
1264
- "DatabaseName":{"shape":"String"}
1265
- }
1266
- },
1267
- "DataSources":{
1268
- "type":"list",
1269
- "member":{"shape":"DataSource"}
1270
- },
1271
- "DateTime":{"type":"string"},
1272
- "DeleteAppRequest":{
1273
- "type":"structure",
1274
- "required":["AppId"],
1275
- "members":{
1276
- "AppId":{"shape":"String"}
1277
- }
1278
- },
1279
- "DeleteInstanceRequest":{
1280
- "type":"structure",
1281
- "required":["InstanceId"],
1282
- "members":{
1283
- "InstanceId":{"shape":"String"},
1284
- "DeleteElasticIp":{"shape":"Boolean"},
1285
- "DeleteVolumes":{"shape":"Boolean"}
1286
- }
1287
- },
1288
- "DeleteLayerRequest":{
1289
- "type":"structure",
1290
- "required":["LayerId"],
1291
- "members":{
1292
- "LayerId":{"shape":"String"}
1293
- }
1294
- },
1295
- "DeleteStackRequest":{
1296
- "type":"structure",
1297
- "required":["StackId"],
1298
- "members":{
1299
- "StackId":{"shape":"String"}
1300
- }
1301
- },
1302
- "DeleteUserProfileRequest":{
1303
- "type":"structure",
1304
- "required":["IamUserArn"],
1305
- "members":{
1306
- "IamUserArn":{"shape":"String"}
1307
- }
1308
- },
1309
- "Deployment":{
1310
- "type":"structure",
1311
- "members":{
1312
- "DeploymentId":{"shape":"String"},
1313
- "StackId":{"shape":"String"},
1314
- "AppId":{"shape":"String"},
1315
- "CreatedAt":{"shape":"DateTime"},
1316
- "CompletedAt":{"shape":"DateTime"},
1317
- "Duration":{"shape":"Integer"},
1318
- "IamUserArn":{"shape":"String"},
1319
- "Comment":{"shape":"String"},
1320
- "Command":{"shape":"DeploymentCommand"},
1321
- "Status":{"shape":"String"},
1322
- "CustomJson":{"shape":"String"},
1323
- "InstanceIds":{"shape":"Strings"}
1324
- }
1325
- },
1326
- "DeploymentCommand":{
1327
- "type":"structure",
1328
- "required":["Name"],
1329
- "members":{
1330
- "Name":{"shape":"DeploymentCommandName"},
1331
- "Args":{"shape":"DeploymentCommandArgs"}
1332
- }
1333
- },
1334
- "DeploymentCommandArgs":{
1335
- "type":"map",
1336
- "key":{"shape":"String"},
1337
- "value":{"shape":"Strings"}
1338
- },
1339
- "DeploymentCommandName":{
1340
- "type":"string",
1341
- "enum":[
1342
- "install_dependencies",
1343
- "update_dependencies",
1344
- "update_custom_cookbooks",
1345
- "execute_recipes",
1346
- "configure",
1347
- "setup",
1348
- "deploy",
1349
- "rollback",
1350
- "start",
1351
- "stop",
1352
- "restart",
1353
- "undeploy"
1354
- ]
1355
- },
1356
- "Deployments":{
1357
- "type":"list",
1358
- "member":{"shape":"Deployment"}
1359
- },
1360
- "DeregisterEcsClusterRequest":{
1361
- "type":"structure",
1362
- "required":["EcsClusterArn"],
1363
- "members":{
1364
- "EcsClusterArn":{"shape":"String"}
1365
- }
1366
- },
1367
- "DeregisterElasticIpRequest":{
1368
- "type":"structure",
1369
- "required":["ElasticIp"],
1370
- "members":{
1371
- "ElasticIp":{"shape":"String"}
1372
- }
1373
- },
1374
- "DeregisterInstanceRequest":{
1375
- "type":"structure",
1376
- "required":["InstanceId"],
1377
- "members":{
1378
- "InstanceId":{"shape":"String"}
1379
- }
1380
- },
1381
- "DeregisterRdsDbInstanceRequest":{
1382
- "type":"structure",
1383
- "required":["RdsDbInstanceArn"],
1384
- "members":{
1385
- "RdsDbInstanceArn":{"shape":"String"}
1386
- }
1387
- },
1388
- "DeregisterVolumeRequest":{
1389
- "type":"structure",
1390
- "required":["VolumeId"],
1391
- "members":{
1392
- "VolumeId":{"shape":"String"}
1393
- }
1394
- },
1395
- "DescribeAgentVersionsRequest":{
1396
- "type":"structure",
1397
- "members":{
1398
- "StackId":{"shape":"String"},
1399
- "ConfigurationManager":{"shape":"StackConfigurationManager"}
1400
- }
1401
- },
1402
- "DescribeAgentVersionsResult":{
1403
- "type":"structure",
1404
- "members":{
1405
- "AgentVersions":{"shape":"AgentVersions"}
1406
- }
1407
- },
1408
- "DescribeAppsRequest":{
1409
- "type":"structure",
1410
- "members":{
1411
- "StackId":{"shape":"String"},
1412
- "AppIds":{"shape":"Strings"}
1413
- }
1414
- },
1415
- "DescribeAppsResult":{
1416
- "type":"structure",
1417
- "members":{
1418
- "Apps":{"shape":"Apps"}
1419
- }
1420
- },
1421
- "DescribeCommandsRequest":{
1422
- "type":"structure",
1423
- "members":{
1424
- "DeploymentId":{"shape":"String"},
1425
- "InstanceId":{"shape":"String"},
1426
- "CommandIds":{"shape":"Strings"}
1427
- }
1428
- },
1429
- "DescribeCommandsResult":{
1430
- "type":"structure",
1431
- "members":{
1432
- "Commands":{"shape":"Commands"}
1433
- }
1434
- },
1435
- "DescribeDeploymentsRequest":{
1436
- "type":"structure",
1437
- "members":{
1438
- "StackId":{"shape":"String"},
1439
- "AppId":{"shape":"String"},
1440
- "DeploymentIds":{"shape":"Strings"}
1441
- }
1442
- },
1443
- "DescribeDeploymentsResult":{
1444
- "type":"structure",
1445
- "members":{
1446
- "Deployments":{"shape":"Deployments"}
1447
- }
1448
- },
1449
- "DescribeEcsClustersRequest":{
1450
- "type":"structure",
1451
- "members":{
1452
- "EcsClusterArns":{"shape":"Strings"},
1453
- "StackId":{"shape":"String"},
1454
- "NextToken":{"shape":"String"},
1455
- "MaxResults":{"shape":"Integer"}
1456
- }
1457
- },
1458
- "DescribeEcsClustersResult":{
1459
- "type":"structure",
1460
- "members":{
1461
- "EcsClusters":{"shape":"EcsClusters"},
1462
- "NextToken":{"shape":"String"}
1463
- }
1464
- },
1465
- "DescribeElasticIpsRequest":{
1466
- "type":"structure",
1467
- "members":{
1468
- "InstanceId":{"shape":"String"},
1469
- "StackId":{"shape":"String"},
1470
- "Ips":{"shape":"Strings"}
1471
- }
1472
- },
1473
- "DescribeElasticIpsResult":{
1474
- "type":"structure",
1475
- "members":{
1476
- "ElasticIps":{"shape":"ElasticIps"}
1477
- }
1478
- },
1479
- "DescribeElasticLoadBalancersRequest":{
1480
- "type":"structure",
1481
- "members":{
1482
- "StackId":{"shape":"String"},
1483
- "LayerIds":{"shape":"Strings"}
1484
- }
1485
- },
1486
- "DescribeElasticLoadBalancersResult":{
1487
- "type":"structure",
1488
- "members":{
1489
- "ElasticLoadBalancers":{"shape":"ElasticLoadBalancers"}
1490
- }
1491
- },
1492
- "DescribeInstancesRequest":{
1493
- "type":"structure",
1494
- "members":{
1495
- "StackId":{"shape":"String"},
1496
- "LayerId":{"shape":"String"},
1497
- "InstanceIds":{"shape":"Strings"}
1498
- }
1499
- },
1500
- "DescribeInstancesResult":{
1501
- "type":"structure",
1502
- "members":{
1503
- "Instances":{"shape":"Instances"}
1504
- }
1505
- },
1506
- "DescribeLayersRequest":{
1507
- "type":"structure",
1508
- "members":{
1509
- "StackId":{"shape":"String"},
1510
- "LayerIds":{"shape":"Strings"}
1511
- }
1512
- },
1513
- "DescribeLayersResult":{
1514
- "type":"structure",
1515
- "members":{
1516
- "Layers":{"shape":"Layers"}
1517
- }
1518
- },
1519
- "DescribeLoadBasedAutoScalingRequest":{
1520
- "type":"structure",
1521
- "required":["LayerIds"],
1522
- "members":{
1523
- "LayerIds":{"shape":"Strings"}
1524
- }
1525
- },
1526
- "DescribeLoadBasedAutoScalingResult":{
1527
- "type":"structure",
1528
- "members":{
1529
- "LoadBasedAutoScalingConfigurations":{"shape":"LoadBasedAutoScalingConfigurations"}
1530
- }
1531
- },
1532
- "DescribeMyUserProfileResult":{
1533
- "type":"structure",
1534
- "members":{
1535
- "UserProfile":{"shape":"SelfUserProfile"}
1536
- }
1537
- },
1538
- "DescribePermissionsRequest":{
1539
- "type":"structure",
1540
- "members":{
1541
- "IamUserArn":{"shape":"String"},
1542
- "StackId":{"shape":"String"}
1543
- }
1544
- },
1545
- "DescribePermissionsResult":{
1546
- "type":"structure",
1547
- "members":{
1548
- "Permissions":{"shape":"Permissions"}
1549
- }
1550
- },
1551
- "DescribeRaidArraysRequest":{
1552
- "type":"structure",
1553
- "members":{
1554
- "InstanceId":{"shape":"String"},
1555
- "StackId":{"shape":"String"},
1556
- "RaidArrayIds":{"shape":"Strings"}
1557
- }
1558
- },
1559
- "DescribeRaidArraysResult":{
1560
- "type":"structure",
1561
- "members":{
1562
- "RaidArrays":{"shape":"RaidArrays"}
1563
- }
1564
- },
1565
- "DescribeRdsDbInstancesRequest":{
1566
- "type":"structure",
1567
- "required":["StackId"],
1568
- "members":{
1569
- "StackId":{"shape":"String"},
1570
- "RdsDbInstanceArns":{"shape":"Strings"}
1571
- }
1572
- },
1573
- "DescribeRdsDbInstancesResult":{
1574
- "type":"structure",
1575
- "members":{
1576
- "RdsDbInstances":{"shape":"RdsDbInstances"}
1577
- }
1578
- },
1579
- "DescribeServiceErrorsRequest":{
1580
- "type":"structure",
1581
- "members":{
1582
- "StackId":{"shape":"String"},
1583
- "InstanceId":{"shape":"String"},
1584
- "ServiceErrorIds":{"shape":"Strings"}
1585
- }
1586
- },
1587
- "DescribeServiceErrorsResult":{
1588
- "type":"structure",
1589
- "members":{
1590
- "ServiceErrors":{"shape":"ServiceErrors"}
1591
- }
1592
- },
1593
- "DescribeStackProvisioningParametersRequest":{
1594
- "type":"structure",
1595
- "required":["StackId"],
1596
- "members":{
1597
- "StackId":{"shape":"String"}
1598
- }
1599
- },
1600
- "DescribeStackProvisioningParametersResult":{
1601
- "type":"structure",
1602
- "members":{
1603
- "AgentInstallerUrl":{"shape":"String"},
1604
- "Parameters":{"shape":"Parameters"}
1605
- }
1606
- },
1607
- "DescribeStackSummaryRequest":{
1608
- "type":"structure",
1609
- "required":["StackId"],
1610
- "members":{
1611
- "StackId":{"shape":"String"}
1612
- }
1613
- },
1614
- "DescribeStackSummaryResult":{
1615
- "type":"structure",
1616
- "members":{
1617
- "StackSummary":{"shape":"StackSummary"}
1618
- }
1619
- },
1620
- "DescribeStacksRequest":{
1621
- "type":"structure",
1622
- "members":{
1623
- "StackIds":{"shape":"Strings"}
1624
- }
1625
- },
1626
- "DescribeStacksResult":{
1627
- "type":"structure",
1628
- "members":{
1629
- "Stacks":{"shape":"Stacks"}
1630
- }
1631
- },
1632
- "DescribeTimeBasedAutoScalingRequest":{
1633
- "type":"structure",
1634
- "required":["InstanceIds"],
1635
- "members":{
1636
- "InstanceIds":{"shape":"Strings"}
1637
- }
1638
- },
1639
- "DescribeTimeBasedAutoScalingResult":{
1640
- "type":"structure",
1641
- "members":{
1642
- "TimeBasedAutoScalingConfigurations":{"shape":"TimeBasedAutoScalingConfigurations"}
1643
- }
1644
- },
1645
- "DescribeUserProfilesRequest":{
1646
- "type":"structure",
1647
- "members":{
1648
- "IamUserArns":{"shape":"Strings"}
1649
- }
1650
- },
1651
- "DescribeUserProfilesResult":{
1652
- "type":"structure",
1653
- "members":{
1654
- "UserProfiles":{"shape":"UserProfiles"}
1655
- }
1656
- },
1657
- "DescribeVolumesRequest":{
1658
- "type":"structure",
1659
- "members":{
1660
- "InstanceId":{"shape":"String"},
1661
- "StackId":{"shape":"String"},
1662
- "RaidArrayId":{"shape":"String"},
1663
- "VolumeIds":{"shape":"Strings"}
1664
- }
1665
- },
1666
- "DescribeVolumesResult":{
1667
- "type":"structure",
1668
- "members":{
1669
- "Volumes":{"shape":"Volumes"}
1670
- }
1671
- },
1672
- "DetachElasticLoadBalancerRequest":{
1673
- "type":"structure",
1674
- "required":[
1675
- "ElasticLoadBalancerName",
1676
- "LayerId"
1677
- ],
1678
- "members":{
1679
- "ElasticLoadBalancerName":{"shape":"String"},
1680
- "LayerId":{"shape":"String"}
1681
- }
1682
- },
1683
- "DisassociateElasticIpRequest":{
1684
- "type":"structure",
1685
- "required":["ElasticIp"],
1686
- "members":{
1687
- "ElasticIp":{"shape":"String"}
1688
- }
1689
- },
1690
- "Double":{
1691
- "type":"double",
1692
- "box":true
1693
- },
1694
- "EbsBlockDevice":{
1695
- "type":"structure",
1696
- "members":{
1697
- "SnapshotId":{"shape":"String"},
1698
- "Iops":{"shape":"Integer"},
1699
- "VolumeSize":{"shape":"Integer"},
1700
- "VolumeType":{"shape":"VolumeType"},
1701
- "DeleteOnTermination":{"shape":"Boolean"}
1702
- }
1703
- },
1704
- "EcsCluster":{
1705
- "type":"structure",
1706
- "members":{
1707
- "EcsClusterArn":{"shape":"String"},
1708
- "EcsClusterName":{"shape":"String"},
1709
- "StackId":{"shape":"String"},
1710
- "RegisteredAt":{"shape":"DateTime"}
1711
- }
1712
- },
1713
- "EcsClusters":{
1714
- "type":"list",
1715
- "member":{"shape":"EcsCluster"}
1716
- },
1717
- "ElasticIp":{
1718
- "type":"structure",
1719
- "members":{
1720
- "Ip":{"shape":"String"},
1721
- "Name":{"shape":"String"},
1722
- "Domain":{"shape":"String"},
1723
- "Region":{"shape":"String"},
1724
- "InstanceId":{"shape":"String"}
1725
- }
1726
- },
1727
- "ElasticIps":{
1728
- "type":"list",
1729
- "member":{"shape":"ElasticIp"}
1730
- },
1731
- "ElasticLoadBalancer":{
1732
- "type":"structure",
1733
- "members":{
1734
- "ElasticLoadBalancerName":{"shape":"String"},
1735
- "Region":{"shape":"String"},
1736
- "DnsName":{"shape":"String"},
1737
- "StackId":{"shape":"String"},
1738
- "LayerId":{"shape":"String"},
1739
- "VpcId":{"shape":"String"},
1740
- "AvailabilityZones":{"shape":"Strings"},
1741
- "SubnetIds":{"shape":"Strings"},
1742
- "Ec2InstanceIds":{"shape":"Strings"}
1743
- }
1744
- },
1745
- "ElasticLoadBalancers":{
1746
- "type":"list",
1747
- "member":{"shape":"ElasticLoadBalancer"}
1748
- },
1749
- "EnvironmentVariable":{
1750
- "type":"structure",
1751
- "required":[
1752
- "Key",
1753
- "Value"
1754
- ],
1755
- "members":{
1756
- "Key":{"shape":"String"},
1757
- "Value":{"shape":"String"},
1758
- "Secure":{"shape":"Boolean"}
1759
- }
1760
- },
1761
- "EnvironmentVariables":{
1762
- "type":"list",
1763
- "member":{"shape":"EnvironmentVariable"}
1764
- },
1765
- "GetHostnameSuggestionRequest":{
1766
- "type":"structure",
1767
- "required":["LayerId"],
1768
- "members":{
1769
- "LayerId":{"shape":"String"}
1770
- }
1771
- },
1772
- "GetHostnameSuggestionResult":{
1773
- "type":"structure",
1774
- "members":{
1775
- "LayerId":{"shape":"String"},
1776
- "Hostname":{"shape":"String"}
1777
- }
1778
- },
1779
- "GrantAccessRequest":{
1780
- "type":"structure",
1781
- "required":["InstanceId"],
1782
- "members":{
1783
- "InstanceId":{"shape":"String"},
1784
- "ValidForInMinutes":{"shape":"ValidForInMinutes"}
1785
- }
1786
- },
1787
- "GrantAccessResult":{
1788
- "type":"structure",
1789
- "members":{
1790
- "TemporaryCredential":{"shape":"TemporaryCredential"}
1791
- }
1792
- },
1793
- "Hour":{"type":"string"},
1794
- "Instance":{
1795
- "type":"structure",
1796
- "members":{
1797
- "AgentVersion":{"shape":"String"},
1798
- "AmiId":{"shape":"String"},
1799
- "Architecture":{"shape":"Architecture"},
1800
- "AutoScalingType":{"shape":"AutoScalingType"},
1801
- "AvailabilityZone":{"shape":"String"},
1802
- "BlockDeviceMappings":{"shape":"BlockDeviceMappings"},
1803
- "CreatedAt":{"shape":"DateTime"},
1804
- "EbsOptimized":{"shape":"Boolean"},
1805
- "Ec2InstanceId":{"shape":"String"},
1806
- "EcsClusterArn":{"shape":"String"},
1807
- "EcsContainerInstanceArn":{"shape":"String"},
1808
- "ElasticIp":{"shape":"String"},
1809
- "Hostname":{"shape":"String"},
1810
- "InfrastructureClass":{"shape":"String"},
1811
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1812
- "InstanceId":{"shape":"String"},
1813
- "InstanceProfileArn":{"shape":"String"},
1814
- "InstanceType":{"shape":"String"},
1815
- "LastServiceErrorId":{"shape":"String"},
1816
- "LayerIds":{"shape":"Strings"},
1817
- "Os":{"shape":"String"},
1818
- "Platform":{"shape":"String"},
1819
- "PrivateDns":{"shape":"String"},
1820
- "PrivateIp":{"shape":"String"},
1821
- "PublicDns":{"shape":"String"},
1822
- "PublicIp":{"shape":"String"},
1823
- "RegisteredBy":{"shape":"String"},
1824
- "ReportedAgentVersion":{"shape":"String"},
1825
- "ReportedOs":{"shape":"ReportedOs"},
1826
- "RootDeviceType":{"shape":"RootDeviceType"},
1827
- "RootDeviceVolumeId":{"shape":"String"},
1828
- "SecurityGroupIds":{"shape":"Strings"},
1829
- "SshHostDsaKeyFingerprint":{"shape":"String"},
1830
- "SshHostRsaKeyFingerprint":{"shape":"String"},
1831
- "SshKeyName":{"shape":"String"},
1832
- "StackId":{"shape":"String"},
1833
- "Status":{"shape":"String"},
1834
- "SubnetId":{"shape":"String"},
1835
- "Tenancy":{"shape":"String"},
1836
- "VirtualizationType":{"shape":"VirtualizationType"}
1837
- }
1838
- },
1839
- "InstanceIdentity":{
1840
- "type":"structure",
1841
- "members":{
1842
- "Document":{"shape":"String"},
1843
- "Signature":{"shape":"String"}
1844
- }
1845
- },
1846
- "Instances":{
1847
- "type":"list",
1848
- "member":{"shape":"Instance"}
1849
- },
1850
- "InstancesCount":{
1851
- "type":"structure",
1852
- "members":{
1853
- "Assigning":{"shape":"Integer"},
1854
- "Booting":{"shape":"Integer"},
1855
- "ConnectionLost":{"shape":"Integer"},
1856
- "Deregistering":{"shape":"Integer"},
1857
- "Online":{"shape":"Integer"},
1858
- "Pending":{"shape":"Integer"},
1859
- "Rebooting":{"shape":"Integer"},
1860
- "Registered":{"shape":"Integer"},
1861
- "Registering":{"shape":"Integer"},
1862
- "Requested":{"shape":"Integer"},
1863
- "RunningSetup":{"shape":"Integer"},
1864
- "SetupFailed":{"shape":"Integer"},
1865
- "ShuttingDown":{"shape":"Integer"},
1866
- "StartFailed":{"shape":"Integer"},
1867
- "Stopped":{"shape":"Integer"},
1868
- "Stopping":{"shape":"Integer"},
1869
- "Terminated":{"shape":"Integer"},
1870
- "Terminating":{"shape":"Integer"},
1871
- "Unassigning":{"shape":"Integer"}
1872
- }
1873
- },
1874
- "Integer":{
1875
- "type":"integer",
1876
- "box":true
1877
- },
1878
- "Layer":{
1879
- "type":"structure",
1880
- "members":{
1881
- "StackId":{"shape":"String"},
1882
- "LayerId":{"shape":"String"},
1883
- "Type":{"shape":"LayerType"},
1884
- "Name":{"shape":"String"},
1885
- "Shortname":{"shape":"String"},
1886
- "Attributes":{"shape":"LayerAttributes"},
1887
- "CustomInstanceProfileArn":{"shape":"String"},
1888
- "CustomJson":{"shape":"String"},
1889
- "CustomSecurityGroupIds":{"shape":"Strings"},
1890
- "DefaultSecurityGroupNames":{"shape":"Strings"},
1891
- "Packages":{"shape":"Strings"},
1892
- "VolumeConfigurations":{"shape":"VolumeConfigurations"},
1893
- "EnableAutoHealing":{"shape":"Boolean"},
1894
- "AutoAssignElasticIps":{"shape":"Boolean"},
1895
- "AutoAssignPublicIps":{"shape":"Boolean"},
1896
- "DefaultRecipes":{"shape":"Recipes"},
1897
- "CustomRecipes":{"shape":"Recipes"},
1898
- "CreatedAt":{"shape":"DateTime"},
1899
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1900
- "UseEbsOptimizedInstances":{"shape":"Boolean"},
1901
- "LifecycleEventConfiguration":{"shape":"LifecycleEventConfiguration"}
1902
- }
1903
- },
1904
- "LayerAttributes":{
1905
- "type":"map",
1906
- "key":{"shape":"LayerAttributesKeys"},
1907
- "value":{"shape":"String"}
1908
- },
1909
- "LayerAttributesKeys":{
1910
- "type":"string",
1911
- "enum":[
1912
- "EcsClusterArn",
1913
- "EnableHaproxyStats",
1914
- "HaproxyStatsUrl",
1915
- "HaproxyStatsUser",
1916
- "HaproxyStatsPassword",
1917
- "HaproxyHealthCheckUrl",
1918
- "HaproxyHealthCheckMethod",
1919
- "MysqlRootPassword",
1920
- "MysqlRootPasswordUbiquitous",
1921
- "GangliaUrl",
1922
- "GangliaUser",
1923
- "GangliaPassword",
1924
- "MemcachedMemory",
1925
- "NodejsVersion",
1926
- "RubyVersion",
1927
- "RubygemsVersion",
1928
- "ManageBundler",
1929
- "BundlerVersion",
1930
- "RailsStack",
1931
- "PassengerVersion",
1932
- "Jvm",
1933
- "JvmVersion",
1934
- "JvmOptions",
1935
- "JavaAppServer",
1936
- "JavaAppServerVersion"
1937
- ]
1938
- },
1939
- "LayerType":{
1940
- "type":"string",
1941
- "enum":[
1942
- "aws-flow-ruby",
1943
- "ecs-cluster",
1944
- "java-app",
1945
- "lb",
1946
- "web",
1947
- "php-app",
1948
- "rails-app",
1949
- "nodejs-app",
1950
- "memcached",
1951
- "db-master",
1952
- "monitoring-master",
1953
- "custom"
1954
- ]
1955
- },
1956
- "Layers":{
1957
- "type":"list",
1958
- "member":{"shape":"Layer"}
1959
- },
1960
- "LifecycleEventConfiguration":{
1961
- "type":"structure",
1962
- "members":{
1963
- "Shutdown":{"shape":"ShutdownEventConfiguration"}
1964
- }
1965
- },
1966
- "LoadBasedAutoScalingConfiguration":{
1967
- "type":"structure",
1968
- "members":{
1969
- "LayerId":{"shape":"String"},
1970
- "Enable":{"shape":"Boolean"},
1971
- "UpScaling":{"shape":"AutoScalingThresholds"},
1972
- "DownScaling":{"shape":"AutoScalingThresholds"}
1973
- }
1974
- },
1975
- "LoadBasedAutoScalingConfigurations":{
1976
- "type":"list",
1977
- "member":{"shape":"LoadBasedAutoScalingConfiguration"}
1978
- },
1979
- "Minute":{
1980
- "type":"integer",
1981
- "box":true,
1982
- "max":100,
1983
- "min":1
1984
- },
1985
- "Parameters":{
1986
- "type":"map",
1987
- "key":{"shape":"String"},
1988
- "value":{"shape":"String"}
1989
- },
1990
- "Permission":{
1991
- "type":"structure",
1992
- "members":{
1993
- "StackId":{"shape":"String"},
1994
- "IamUserArn":{"shape":"String"},
1995
- "AllowSsh":{"shape":"Boolean"},
1996
- "AllowSudo":{"shape":"Boolean"},
1997
- "Level":{"shape":"String"}
1998
- }
1999
- },
2000
- "Permissions":{
2001
- "type":"list",
2002
- "member":{"shape":"Permission"}
2003
- },
2004
- "RaidArray":{
2005
- "type":"structure",
2006
- "members":{
2007
- "RaidArrayId":{"shape":"String"},
2008
- "InstanceId":{"shape":"String"},
2009
- "Name":{"shape":"String"},
2010
- "RaidLevel":{"shape":"Integer"},
2011
- "NumberOfDisks":{"shape":"Integer"},
2012
- "Size":{"shape":"Integer"},
2013
- "Device":{"shape":"String"},
2014
- "MountPoint":{"shape":"String"},
2015
- "AvailabilityZone":{"shape":"String"},
2016
- "CreatedAt":{"shape":"DateTime"},
2017
- "StackId":{"shape":"String"},
2018
- "VolumeType":{"shape":"String"},
2019
- "Iops":{"shape":"Integer"}
2020
- }
2021
- },
2022
- "RaidArrays":{
2023
- "type":"list",
2024
- "member":{"shape":"RaidArray"}
2025
- },
2026
- "RdsDbInstance":{
2027
- "type":"structure",
2028
- "members":{
2029
- "RdsDbInstanceArn":{"shape":"String"},
2030
- "DbInstanceIdentifier":{"shape":"String"},
2031
- "DbUser":{"shape":"String"},
2032
- "DbPassword":{"shape":"String"},
2033
- "Region":{"shape":"String"},
2034
- "Address":{"shape":"String"},
2035
- "Engine":{"shape":"String"},
2036
- "StackId":{"shape":"String"},
2037
- "MissingOnRds":{"shape":"Boolean"}
2038
- }
2039
- },
2040
- "RdsDbInstances":{
2041
- "type":"list",
2042
- "member":{"shape":"RdsDbInstance"}
2043
- },
2044
- "RebootInstanceRequest":{
2045
- "type":"structure",
2046
- "required":["InstanceId"],
2047
- "members":{
2048
- "InstanceId":{"shape":"String"}
2049
- }
2050
- },
2051
- "Recipes":{
2052
- "type":"structure",
2053
- "members":{
2054
- "Setup":{"shape":"Strings"},
2055
- "Configure":{"shape":"Strings"},
2056
- "Deploy":{"shape":"Strings"},
2057
- "Undeploy":{"shape":"Strings"},
2058
- "Shutdown":{"shape":"Strings"}
2059
- }
2060
- },
2061
- "RegisterEcsClusterRequest":{
2062
- "type":"structure",
2063
- "required":[
2064
- "EcsClusterArn",
2065
- "StackId"
2066
- ],
2067
- "members":{
2068
- "EcsClusterArn":{"shape":"String"},
2069
- "StackId":{"shape":"String"}
2070
- }
2071
- },
2072
- "RegisterEcsClusterResult":{
2073
- "type":"structure",
2074
- "members":{
2075
- "EcsClusterArn":{"shape":"String"}
2076
- }
2077
- },
2078
- "RegisterElasticIpRequest":{
2079
- "type":"structure",
2080
- "required":[
2081
- "ElasticIp",
2082
- "StackId"
2083
- ],
2084
- "members":{
2085
- "ElasticIp":{"shape":"String"},
2086
- "StackId":{"shape":"String"}
2087
- }
2088
- },
2089
- "RegisterElasticIpResult":{
2090
- "type":"structure",
2091
- "members":{
2092
- "ElasticIp":{"shape":"String"}
2093
- }
2094
- },
2095
- "RegisterInstanceRequest":{
2096
- "type":"structure",
2097
- "required":["StackId"],
2098
- "members":{
2099
- "StackId":{"shape":"String"},
2100
- "Hostname":{"shape":"String"},
2101
- "PublicIp":{"shape":"String"},
2102
- "PrivateIp":{"shape":"String"},
2103
- "RsaPublicKey":{"shape":"String"},
2104
- "RsaPublicKeyFingerprint":{"shape":"String"},
2105
- "InstanceIdentity":{"shape":"InstanceIdentity"}
2106
- }
2107
- },
2108
- "RegisterInstanceResult":{
2109
- "type":"structure",
2110
- "members":{
2111
- "InstanceId":{"shape":"String"}
2112
- }
2113
- },
2114
- "RegisterRdsDbInstanceRequest":{
2115
- "type":"structure",
2116
- "required":[
2117
- "StackId",
2118
- "RdsDbInstanceArn",
2119
- "DbUser",
2120
- "DbPassword"
2121
- ],
2122
- "members":{
2123
- "StackId":{"shape":"String"},
2124
- "RdsDbInstanceArn":{"shape":"String"},
2125
- "DbUser":{"shape":"String"},
2126
- "DbPassword":{"shape":"String"}
2127
- }
2128
- },
2129
- "RegisterVolumeRequest":{
2130
- "type":"structure",
2131
- "required":["StackId"],
2132
- "members":{
2133
- "Ec2VolumeId":{"shape":"String"},
2134
- "StackId":{"shape":"String"}
2135
- }
2136
- },
2137
- "RegisterVolumeResult":{
2138
- "type":"structure",
2139
- "members":{
2140
- "VolumeId":{"shape":"String"}
2141
- }
2142
- },
2143
- "ReportedOs":{
2144
- "type":"structure",
2145
- "members":{
2146
- "Family":{"shape":"String"},
2147
- "Name":{"shape":"String"},
2148
- "Version":{"shape":"String"}
2149
- }
2150
- },
2151
- "ResourceNotFoundException":{
2152
- "type":"structure",
2153
- "members":{
2154
- "message":{"shape":"String"}
2155
- },
2156
- "exception":true
2157
- },
2158
- "RootDeviceType":{
2159
- "type":"string",
2160
- "enum":[
2161
- "ebs",
2162
- "instance-store"
2163
- ]
2164
- },
2165
- "SelfUserProfile":{
2166
- "type":"structure",
2167
- "members":{
2168
- "IamUserArn":{"shape":"String"},
2169
- "Name":{"shape":"String"},
2170
- "SshUsername":{"shape":"String"},
2171
- "SshPublicKey":{"shape":"String"}
2172
- }
2173
- },
2174
- "ServiceError":{
2175
- "type":"structure",
2176
- "members":{
2177
- "ServiceErrorId":{"shape":"String"},
2178
- "StackId":{"shape":"String"},
2179
- "InstanceId":{"shape":"String"},
2180
- "Type":{"shape":"String"},
2181
- "Message":{"shape":"String"},
2182
- "CreatedAt":{"shape":"DateTime"}
2183
- }
2184
- },
2185
- "ServiceErrors":{
2186
- "type":"list",
2187
- "member":{"shape":"ServiceError"}
2188
- },
2189
- "SetLoadBasedAutoScalingRequest":{
2190
- "type":"structure",
2191
- "required":["LayerId"],
2192
- "members":{
2193
- "LayerId":{"shape":"String"},
2194
- "Enable":{"shape":"Boolean"},
2195
- "UpScaling":{"shape":"AutoScalingThresholds"},
2196
- "DownScaling":{"shape":"AutoScalingThresholds"}
2197
- }
2198
- },
2199
- "SetPermissionRequest":{
2200
- "type":"structure",
2201
- "required":[
2202
- "StackId",
2203
- "IamUserArn"
2204
- ],
2205
- "members":{
2206
- "StackId":{"shape":"String"},
2207
- "IamUserArn":{"shape":"String"},
2208
- "AllowSsh":{"shape":"Boolean"},
2209
- "AllowSudo":{"shape":"Boolean"},
2210
- "Level":{"shape":"String"}
2211
- }
2212
- },
2213
- "SetTimeBasedAutoScalingRequest":{
2214
- "type":"structure",
2215
- "required":["InstanceId"],
2216
- "members":{
2217
- "InstanceId":{"shape":"String"},
2218
- "AutoScalingSchedule":{"shape":"WeeklyAutoScalingSchedule"}
2219
- }
2220
- },
2221
- "ShutdownEventConfiguration":{
2222
- "type":"structure",
2223
- "members":{
2224
- "ExecutionTimeout":{"shape":"Integer"},
2225
- "DelayUntilElbConnectionsDrained":{"shape":"Boolean"}
2226
- }
2227
- },
2228
- "Source":{
2229
- "type":"structure",
2230
- "members":{
2231
- "Type":{"shape":"SourceType"},
2232
- "Url":{"shape":"String"},
2233
- "Username":{"shape":"String"},
2234
- "Password":{"shape":"String"},
2235
- "SshKey":{"shape":"String"},
2236
- "Revision":{"shape":"String"}
2237
- }
2238
- },
2239
- "SourceType":{
2240
- "type":"string",
2241
- "enum":[
2242
- "git",
2243
- "svn",
2244
- "archive",
2245
- "s3"
2246
- ]
2247
- },
2248
- "SslConfiguration":{
2249
- "type":"structure",
2250
- "required":[
2251
- "Certificate",
2252
- "PrivateKey"
2253
- ],
2254
- "members":{
2255
- "Certificate":{"shape":"String"},
2256
- "PrivateKey":{"shape":"String"},
2257
- "Chain":{"shape":"String"}
2258
- }
2259
- },
2260
- "Stack":{
2261
- "type":"structure",
2262
- "members":{
2263
- "StackId":{"shape":"String"},
2264
- "Name":{"shape":"String"},
2265
- "Arn":{"shape":"String"},
2266
- "Region":{"shape":"String"},
2267
- "VpcId":{"shape":"String"},
2268
- "Attributes":{"shape":"StackAttributes"},
2269
- "ServiceRoleArn":{"shape":"String"},
2270
- "DefaultInstanceProfileArn":{"shape":"String"},
2271
- "DefaultOs":{"shape":"String"},
2272
- "HostnameTheme":{"shape":"String"},
2273
- "DefaultAvailabilityZone":{"shape":"String"},
2274
- "DefaultSubnetId":{"shape":"String"},
2275
- "CustomJson":{"shape":"String"},
2276
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
2277
- "ChefConfiguration":{"shape":"ChefConfiguration"},
2278
- "UseCustomCookbooks":{"shape":"Boolean"},
2279
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
2280
- "CustomCookbooksSource":{"shape":"Source"},
2281
- "DefaultSshKeyName":{"shape":"String"},
2282
- "CreatedAt":{"shape":"DateTime"},
2283
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
2284
- "AgentVersion":{"shape":"String"}
2285
- }
2286
- },
2287
- "StackAttributes":{
2288
- "type":"map",
2289
- "key":{"shape":"StackAttributesKeys"},
2290
- "value":{"shape":"String"}
2291
- },
2292
- "StackAttributesKeys":{
2293
- "type":"string",
2294
- "enum":["Color"]
2295
- },
2296
- "StackConfigurationManager":{
2297
- "type":"structure",
2298
- "members":{
2299
- "Name":{"shape":"String"},
2300
- "Version":{"shape":"String"}
2301
- }
2302
- },
2303
- "StackSummary":{
2304
- "type":"structure",
2305
- "members":{
2306
- "StackId":{"shape":"String"},
2307
- "Name":{"shape":"String"},
2308
- "Arn":{"shape":"String"},
2309
- "LayersCount":{"shape":"Integer"},
2310
- "AppsCount":{"shape":"Integer"},
2311
- "InstancesCount":{"shape":"InstancesCount"}
2312
- }
2313
- },
2314
- "Stacks":{
2315
- "type":"list",
2316
- "member":{"shape":"Stack"}
2317
- },
2318
- "StartInstanceRequest":{
2319
- "type":"structure",
2320
- "required":["InstanceId"],
2321
- "members":{
2322
- "InstanceId":{"shape":"String"}
2323
- }
2324
- },
2325
- "StartStackRequest":{
2326
- "type":"structure",
2327
- "required":["StackId"],
2328
- "members":{
2329
- "StackId":{"shape":"String"}
2330
- }
2331
- },
2332
- "StopInstanceRequest":{
2333
- "type":"structure",
2334
- "required":["InstanceId"],
2335
- "members":{
2336
- "InstanceId":{"shape":"String"}
2337
- }
2338
- },
2339
- "StopStackRequest":{
2340
- "type":"structure",
2341
- "required":["StackId"],
2342
- "members":{
2343
- "StackId":{"shape":"String"}
2344
- }
2345
- },
2346
- "String":{"type":"string"},
2347
- "Strings":{
2348
- "type":"list",
2349
- "member":{"shape":"String"}
2350
- },
2351
- "Switch":{"type":"string"},
2352
- "TemporaryCredential":{
2353
- "type":"structure",
2354
- "members":{
2355
- "Username":{"shape":"String"},
2356
- "Password":{"shape":"String"},
2357
- "ValidForInMinutes":{"shape":"Integer"},
2358
- "InstanceId":{"shape":"String"}
2359
- }
2360
- },
2361
- "TimeBasedAutoScalingConfiguration":{
2362
- "type":"structure",
2363
- "members":{
2364
- "InstanceId":{"shape":"String"},
2365
- "AutoScalingSchedule":{"shape":"WeeklyAutoScalingSchedule"}
2366
- }
2367
- },
2368
- "TimeBasedAutoScalingConfigurations":{
2369
- "type":"list",
2370
- "member":{"shape":"TimeBasedAutoScalingConfiguration"}
2371
- },
2372
- "UnassignInstanceRequest":{
2373
- "type":"structure",
2374
- "required":["InstanceId"],
2375
- "members":{
2376
- "InstanceId":{"shape":"String"}
2377
- }
2378
- },
2379
- "UnassignVolumeRequest":{
2380
- "type":"structure",
2381
- "required":["VolumeId"],
2382
- "members":{
2383
- "VolumeId":{"shape":"String"}
2384
- }
2385
- },
2386
- "UpdateAppRequest":{
2387
- "type":"structure",
2388
- "required":["AppId"],
2389
- "members":{
2390
- "AppId":{"shape":"String"},
2391
- "Name":{"shape":"String"},
2392
- "Description":{"shape":"String"},
2393
- "DataSources":{"shape":"DataSources"},
2394
- "Type":{"shape":"AppType"},
2395
- "AppSource":{"shape":"Source"},
2396
- "Domains":{"shape":"Strings"},
2397
- "EnableSsl":{"shape":"Boolean"},
2398
- "SslConfiguration":{"shape":"SslConfiguration"},
2399
- "Attributes":{"shape":"AppAttributes"},
2400
- "Environment":{"shape":"EnvironmentVariables"}
2401
- }
2402
- },
2403
- "UpdateElasticIpRequest":{
2404
- "type":"structure",
2405
- "required":["ElasticIp"],
2406
- "members":{
2407
- "ElasticIp":{"shape":"String"},
2408
- "Name":{"shape":"String"}
2409
- }
2410
- },
2411
- "UpdateInstanceRequest":{
2412
- "type":"structure",
2413
- "required":["InstanceId"],
2414
- "members":{
2415
- "InstanceId":{"shape":"String"},
2416
- "LayerIds":{"shape":"Strings"},
2417
- "InstanceType":{"shape":"String"},
2418
- "AutoScalingType":{"shape":"AutoScalingType"},
2419
- "Hostname":{"shape":"String"},
2420
- "Os":{"shape":"String"},
2421
- "AmiId":{"shape":"String"},
2422
- "SshKeyName":{"shape":"String"},
2423
- "Architecture":{"shape":"Architecture"},
2424
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
2425
- "EbsOptimized":{"shape":"Boolean"},
2426
- "AgentVersion":{"shape":"String"}
2427
- }
2428
- },
2429
- "UpdateLayerRequest":{
2430
- "type":"structure",
2431
- "required":["LayerId"],
2432
- "members":{
2433
- "LayerId":{"shape":"String"},
2434
- "Name":{"shape":"String"},
2435
- "Shortname":{"shape":"String"},
2436
- "Attributes":{"shape":"LayerAttributes"},
2437
- "CustomInstanceProfileArn":{"shape":"String"},
2438
- "CustomJson":{"shape":"String"},
2439
- "CustomSecurityGroupIds":{"shape":"Strings"},
2440
- "Packages":{"shape":"Strings"},
2441
- "VolumeConfigurations":{"shape":"VolumeConfigurations"},
2442
- "EnableAutoHealing":{"shape":"Boolean"},
2443
- "AutoAssignElasticIps":{"shape":"Boolean"},
2444
- "AutoAssignPublicIps":{"shape":"Boolean"},
2445
- "CustomRecipes":{"shape":"Recipes"},
2446
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
2447
- "UseEbsOptimizedInstances":{"shape":"Boolean"},
2448
- "LifecycleEventConfiguration":{"shape":"LifecycleEventConfiguration"}
2449
- }
2450
- },
2451
- "UpdateMyUserProfileRequest":{
2452
- "type":"structure",
2453
- "members":{
2454
- "SshPublicKey":{"shape":"String"}
2455
- }
2456
- },
2457
- "UpdateRdsDbInstanceRequest":{
2458
- "type":"structure",
2459
- "required":["RdsDbInstanceArn"],
2460
- "members":{
2461
- "RdsDbInstanceArn":{"shape":"String"},
2462
- "DbUser":{"shape":"String"},
2463
- "DbPassword":{"shape":"String"}
2464
- }
2465
- },
2466
- "UpdateStackRequest":{
2467
- "type":"structure",
2468
- "required":["StackId"],
2469
- "members":{
2470
- "StackId":{"shape":"String"},
2471
- "Name":{"shape":"String"},
2472
- "Attributes":{"shape":"StackAttributes"},
2473
- "ServiceRoleArn":{"shape":"String"},
2474
- "DefaultInstanceProfileArn":{"shape":"String"},
2475
- "DefaultOs":{"shape":"String"},
2476
- "HostnameTheme":{"shape":"String"},
2477
- "DefaultAvailabilityZone":{"shape":"String"},
2478
- "DefaultSubnetId":{"shape":"String"},
2479
- "CustomJson":{"shape":"String"},
2480
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
2481
- "ChefConfiguration":{"shape":"ChefConfiguration"},
2482
- "UseCustomCookbooks":{"shape":"Boolean"},
2483
- "CustomCookbooksSource":{"shape":"Source"},
2484
- "DefaultSshKeyName":{"shape":"String"},
2485
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
2486
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
2487
- "AgentVersion":{"shape":"String"}
2488
- }
2489
- },
2490
- "UpdateUserProfileRequest":{
2491
- "type":"structure",
2492
- "required":["IamUserArn"],
2493
- "members":{
2494
- "IamUserArn":{"shape":"String"},
2495
- "SshUsername":{"shape":"String"},
2496
- "SshPublicKey":{"shape":"String"},
2497
- "AllowSelfManagement":{"shape":"Boolean"}
2498
- }
2499
- },
2500
- "UpdateVolumeRequest":{
2501
- "type":"structure",
2502
- "required":["VolumeId"],
2503
- "members":{
2504
- "VolumeId":{"shape":"String"},
2505
- "Name":{"shape":"String"},
2506
- "MountPoint":{"shape":"String"}
2507
- }
2508
- },
2509
- "UserProfile":{
2510
- "type":"structure",
2511
- "members":{
2512
- "IamUserArn":{"shape":"String"},
2513
- "Name":{"shape":"String"},
2514
- "SshUsername":{"shape":"String"},
2515
- "SshPublicKey":{"shape":"String"},
2516
- "AllowSelfManagement":{"shape":"Boolean"}
2517
- }
2518
- },
2519
- "UserProfiles":{
2520
- "type":"list",
2521
- "member":{"shape":"UserProfile"}
2522
- },
2523
- "ValidForInMinutes":{
2524
- "type":"integer",
2525
- "box":true,
2526
- "max":1440,
2527
- "min":60
2528
- },
2529
- "ValidationException":{
2530
- "type":"structure",
2531
- "members":{
2532
- "message":{"shape":"String"}
2533
- },
2534
- "exception":true
2535
- },
2536
- "VirtualizationType":{
2537
- "type":"string",
2538
- "enum":[
2539
- "paravirtual",
2540
- "hvm"
2541
- ]
2542
- },
2543
- "Volume":{
2544
- "type":"structure",
2545
- "members":{
2546
- "VolumeId":{"shape":"String"},
2547
- "Ec2VolumeId":{"shape":"String"},
2548
- "Name":{"shape":"String"},
2549
- "RaidArrayId":{"shape":"String"},
2550
- "InstanceId":{"shape":"String"},
2551
- "Status":{"shape":"String"},
2552
- "Size":{"shape":"Integer"},
2553
- "Device":{"shape":"String"},
2554
- "MountPoint":{"shape":"String"},
2555
- "Region":{"shape":"String"},
2556
- "AvailabilityZone":{"shape":"String"},
2557
- "VolumeType":{"shape":"String"},
2558
- "Iops":{"shape":"Integer"}
2559
- }
2560
- },
2561
- "VolumeConfiguration":{
2562
- "type":"structure",
2563
- "required":[
2564
- "MountPoint",
2565
- "NumberOfDisks",
2566
- "Size"
2567
- ],
2568
- "members":{
2569
- "MountPoint":{"shape":"String"},
2570
- "RaidLevel":{"shape":"Integer"},
2571
- "NumberOfDisks":{"shape":"Integer"},
2572
- "Size":{"shape":"Integer"},
2573
- "VolumeType":{"shape":"String"},
2574
- "Iops":{"shape":"Integer"}
2575
- }
2576
- },
2577
- "VolumeConfigurations":{
2578
- "type":"list",
2579
- "member":{"shape":"VolumeConfiguration"}
2580
- },
2581
- "VolumeType":{
2582
- "type":"string",
2583
- "enum":[
2584
- "gp2",
2585
- "io1",
2586
- "standard"
2587
- ]
2588
- },
2589
- "Volumes":{
2590
- "type":"list",
2591
- "member":{"shape":"Volume"}
2592
- },
2593
- "WeeklyAutoScalingSchedule":{
2594
- "type":"structure",
2595
- "members":{
2596
- "Monday":{"shape":"DailyAutoScalingSchedule"},
2597
- "Tuesday":{"shape":"DailyAutoScalingSchedule"},
2598
- "Wednesday":{"shape":"DailyAutoScalingSchedule"},
2599
- "Thursday":{"shape":"DailyAutoScalingSchedule"},
2600
- "Friday":{"shape":"DailyAutoScalingSchedule"},
2601
- "Saturday":{"shape":"DailyAutoScalingSchedule"},
2602
- "Sunday":{"shape":"DailyAutoScalingSchedule"}
2603
- }
2604
- }
2605
- }
2606
- }