aws-sdk-core 2.11.408 → 3.77.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1241) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -569
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  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 +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  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 +60 -26
  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 +280 -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 +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  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/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +30 -17
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +187 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1114
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -863
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -28
  140. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1125
  141. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  142. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  143. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  144. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  145. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  146. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  147. data/apis/acm/2015-12-08/api-2.json +0 -872
  148. data/apis/acm/2015-12-08/examples-1.json +0 -5
  149. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  150. data/apis/acm/2015-12-08/smoke.json +0 -18
  151. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  152. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4129
  153. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  154. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  155. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  156. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  157. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  158. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  159. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  160. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  161. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  162. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  163. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  164. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  165. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  166. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  167. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  168. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  169. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -783
  170. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  171. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  172. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  173. data/apis/application-insights/2018-11-25/api-2.json +0 -1141
  174. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  175. data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
  176. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  177. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  178. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  179. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  180. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  181. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  182. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  183. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  184. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  185. data/apis/appstream/2016-12-01/smoke.json +0 -11
  186. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  187. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  188. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  189. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  190. data/apis/athena/2017-05-18/api-2.json +0 -989
  191. data/apis/athena/2017-05-18/examples-1.json +0 -5
  192. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  193. data/apis/athena/2017-05-18/smoke.json +0 -11
  194. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  195. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  196. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  197. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  198. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  199. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  200. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  201. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  202. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  203. data/apis/backup/2018-11-15/api-2.json +0 -2150
  204. data/apis/backup/2018-11-15/examples-1.json +0 -5
  205. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  206. data/apis/batch/2016-08-10/api-2.json +0 -1137
  207. data/apis/batch/2016-08-10/examples-1.json +0 -589
  208. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  209. data/apis/batch/2016-08-10/smoke.json +0 -11
  210. data/apis/budgets/2016-10-20/api-2.json +0 -830
  211. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  212. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  213. data/apis/ce/2017-10-25/api-2.json +0 -1633
  214. data/apis/ce/2017-10-25/examples-1.json +0 -5
  215. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  216. data/apis/chime/2018-05-01/api-2.json +0 -4483
  217. data/apis/chime/2018-05-01/examples-1.json +0 -5
  218. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  219. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  220. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  221. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  222. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  223. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  224. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  225. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  226. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  227. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  228. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  229. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  230. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  231. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  232. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  233. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  234. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  235. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  239. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  243. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  244. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  245. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  246. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  247. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  250. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  254. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  257. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  258. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  259. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  262. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  263. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  265. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  266. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  267. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  268. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  269. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  270. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  271. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  272. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  273. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  274. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  275. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  276. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  277. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  278. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  279. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  280. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  281. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  282. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  283. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  284. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  285. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  286. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  287. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  288. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  289. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  290. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  291. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  292. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  293. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  295. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  296. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  297. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  298. data/apis/codebuild/2016-10-06/api-2.json +0 -1738
  299. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  300. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  301. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  302. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  303. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  304. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  305. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  306. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  307. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  308. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  309. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  311. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  312. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  313. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  314. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  315. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  316. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  317. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  318. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  319. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  320. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  321. data/apis/codestar/2017-04-19/smoke.json +0 -11
  322. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  323. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  324. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  325. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  326. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  327. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  328. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  329. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  330. data/apis/comprehend/2017-11-27/api-2.json +0 -2632
  331. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  332. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  333. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  334. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  335. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  336. data/apis/config/2014-11-12/api-2.json +0 -4340
  337. data/apis/config/2014-11-12/examples-1.json +0 -5
  338. data/apis/config/2014-11-12/paginators-1.json +0 -21
  339. data/apis/config/2014-11-12/smoke.json +0 -19
  340. data/apis/connect/2017-08-08/api-2.json +0 -2139
  341. data/apis/connect/2017-08-08/examples-1.json +0 -5
  342. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  343. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  344. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  345. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  346. data/apis/cur/2017-01-06/api-2.json +0 -277
  347. data/apis/cur/2017-01-06/examples-1.json +0 -102
  348. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  349. data/apis/cur/2017-01-06/smoke.json +0 -11
  350. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  351. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  352. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  353. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  354. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  355. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  356. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  357. data/apis/dax/2017-04-19/api-2.json +0 -1140
  358. data/apis/dax/2017-04-19/examples-1.json +0 -5
  359. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  360. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  361. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  362. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  363. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  364. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  365. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  366. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  367. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  368. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  369. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  370. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  371. data/apis/discovery/2015-11-01/smoke.json +0 -11
  372. data/apis/dlm/2018-01-12/api-2.json +0 -642
  373. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  374. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  375. data/apis/dms/2016-01-01/api-2.json +0 -2296
  376. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  377. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  378. data/apis/dms/2016-01-01/smoke.json +0 -18
  379. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  380. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  381. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  382. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  383. data/apis/docdb/2014-10-31/smoke.json +0 -18
  384. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  385. data/apis/ds/2015-04-16/api-2.json +0 -3012
  386. data/apis/ds/2015-04-16/examples-1.json +0 -5
  387. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  388. data/apis/ds/2015-04-16/smoke.json +0 -20
  389. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  390. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  391. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  392. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  393. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  394. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  395. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  396. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  397. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  398. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  399. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  400. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  401. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  402. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  403. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  404. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  405. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  406. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  407. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  408. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  409. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  410. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  411. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  412. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  413. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  414. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  415. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  416. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  417. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  418. data/apis/ec2/2016-11-15/api-2.json +0 -26878
  419. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  420. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  421. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  422. data/apis/ec2/2016-11-15/smoke.json +0 -20
  423. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  424. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  425. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  426. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  427. data/apis/ecr/2015-09-21/smoke.json +0 -18
  428. data/apis/ecs/2014-11-13/api-2.json +0 -2910
  429. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  430. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  431. data/apis/ecs/2014-11-13/smoke.json +0 -18
  432. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  433. data/apis/eks/2017-11-01/api-2.json +0 -1211
  434. data/apis/eks/2017-11-01/examples-1.json +0 -135
  435. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  436. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  437. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  438. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  439. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  440. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  441. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  442. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  443. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  444. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  445. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  446. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  447. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  448. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  449. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  450. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  451. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  452. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  453. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  454. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  455. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  456. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  457. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  458. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  459. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  460. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  461. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  462. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  463. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  464. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  465. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  466. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  467. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  468. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  469. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  470. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  471. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  472. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  473. data/apis/email/2010-12-01/api-2.json +0 -3182
  474. data/apis/email/2010-12-01/examples-1.json +0 -1021
  475. data/apis/email/2010-12-01/paginators-1.json +0 -18
  476. data/apis/email/2010-12-01/smoke.json +0 -18
  477. data/apis/email/2010-12-01/waiters-2.json +0 -18
  478. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  479. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  480. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  481. data/apis/es/2015-01-01/api-2.json +0 -1572
  482. data/apis/es/2015-01-01/examples-1.json +0 -5
  483. data/apis/es/2015-01-01/paginators-1.json +0 -29
  484. data/apis/es/2015-01-01/smoke.json +0 -18
  485. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  486. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  487. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  488. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  489. data/apis/events/2015-10-07/api-2.json +0 -1462
  490. data/apis/events/2015-10-07/examples-1.json +0 -5
  491. data/apis/events/2015-10-07/paginators-1.json +0 -4
  492. data/apis/events/2015-10-07/smoke.json +0 -18
  493. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  494. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  495. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  496. data/apis/firehose/2015-08-04/smoke.json +0 -18
  497. data/apis/fms/2018-01-01/api-2.json +0 -701
  498. data/apis/fms/2018-01-01/examples-1.json +0 -5
  499. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  500. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  501. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  502. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  503. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  504. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  505. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  506. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  507. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  508. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  509. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  510. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  511. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  512. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  513. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  514. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  515. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  516. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  517. data/apis/glacier/2012-06-01/smoke.json +0 -18
  518. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  519. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  520. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  521. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  522. data/apis/glue/2017-03-31/api-2.json +0 -6302
  523. data/apis/glue/2017-03-31/examples-1.json +0 -5
  524. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  525. data/apis/glue/2017-03-31/smoke.json +0 -11
  526. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  527. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  528. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  529. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  530. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  531. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  532. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  533. data/apis/health/2016-08-04/api-2.json +0 -554
  534. data/apis/health/2016-08-04/examples-1.json +0 -5
  535. data/apis/health/2016-08-04/paginators-1.json +0 -31
  536. data/apis/health/2016-08-04/smoke.json +0 -11
  537. data/apis/iam/2010-05-08/api-2.json +0 -5787
  538. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  539. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  540. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  541. data/apis/iam/2010-05-08/smoke.json +0 -18
  542. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  543. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  544. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  545. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  546. data/apis/importexport/2010-06-01/api-2.json +0 -667
  547. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  548. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  549. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  550. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  551. data/apis/inspector/2016-02-16/smoke.json +0 -18
  552. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  553. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  554. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  555. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  556. data/apis/iot/2015-05-28/api-2.json +0 -11037
  557. data/apis/iot/2015-05-28/examples-1.json +0 -5
  558. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  559. data/apis/iot/2015-05-28/smoke.json +0 -18
  560. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  561. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  562. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  563. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  564. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  565. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  566. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  567. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  568. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  569. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  570. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  571. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  572. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  573. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  574. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  575. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  576. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  577. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  578. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  579. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  580. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  581. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  582. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  583. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  584. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  585. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  586. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  587. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  588. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  589. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  590. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  591. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  592. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  593. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  594. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  595. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2265
  596. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  597. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  598. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  599. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  600. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  601. data/apis/kms/2014-11-01/api-2.json +0 -2141
  602. data/apis/kms/2014-11-01/examples-1.json +0 -906
  603. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  604. data/apis/kms/2014-11-01/smoke.json +0 -19
  605. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  606. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  607. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  608. data/apis/lambda/2014-11-11/api-2.json +0 -668
  609. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  610. data/apis/lambda/2015-03-31/api-2.json +0 -2682
  611. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  612. data/apis/lambda/2015-03-31/paginators-1.json +0 -46
  613. data/apis/lambda/2015-03-31/smoke.json +0 -18
  614. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  615. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  616. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  617. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  618. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  619. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  620. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  621. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  622. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  623. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  624. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  625. data/apis/logs/2014-03-28/api-2.json +0 -1701
  626. data/apis/logs/2014-03-28/examples-1.json +0 -5
  627. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  628. data/apis/logs/2014-03-28/smoke.json +0 -19
  629. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  630. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  631. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  632. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  633. data/apis/macie/2017-12-19/api-2.json +0 -365
  634. data/apis/macie/2017-12-19/examples-1.json +0 -5
  635. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  636. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  637. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  638. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  639. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  640. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  641. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  642. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  643. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  644. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  645. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  646. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  647. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  648. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
  649. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  650. data/apis/medialive/2017-10-14/api-2.json +0 -10613
  651. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  652. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  653. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  654. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  655. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  656. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  657. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  658. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  659. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  660. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  661. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  662. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  663. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  664. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  665. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  666. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  667. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  668. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  669. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  670. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  671. data/apis/mobile/2017-07-01/api-2.json +0 -551
  672. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  673. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  674. data/apis/monitoring/2010-08-01/api-2.json +0 -1867
  675. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  676. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  677. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  678. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  679. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  680. data/apis/mq/2017-11-27/api-2.json +0 -2538
  681. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  682. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  683. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  684. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  685. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  686. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  687. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  688. data/apis/neptune/2014-10-31/smoke.json +0 -18
  689. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  690. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  691. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  692. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  693. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  694. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  695. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  696. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  697. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  698. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  699. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  700. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  701. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  702. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  703. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  704. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  705. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  706. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  707. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  708. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  709. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  710. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  711. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  712. data/apis/pi/2018-02-27/api-2.json +0 -253
  713. data/apis/pi/2018-02-27/examples-1.json +0 -5
  714. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  715. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  716. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  717. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  718. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  719. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  720. data/apis/polly/2016-06-10/api-2.json +0 -832
  721. data/apis/polly/2016-06-10/examples-1.json +0 -171
  722. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  723. data/apis/polly/2016-06-10/smoke.json +0 -11
  724. data/apis/pricing/2017-10-15/api-2.json +0 -227
  725. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  726. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  727. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  728. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  729. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  730. data/apis/qldb/2019-01-02/api-2.json +0 -776
  731. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  732. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  733. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  734. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  735. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  736. data/apis/ram/2018-01-04/api-2.json +0 -1272
  737. data/apis/ram/2018-01-04/examples-1.json +0 -5
  738. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  739. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  740. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  741. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  742. data/apis/rds/2013-01-10/api-2.json +0 -2903
  743. data/apis/rds/2013-01-10/examples-1.json +0 -5
  744. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  745. data/apis/rds/2013-01-10/smoke.json +0 -18
  746. data/apis/rds/2013-02-12/api-2.json +0 -3059
  747. data/apis/rds/2013-02-12/examples-1.json +0 -5
  748. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  749. data/apis/rds/2013-02-12/smoke.json +0 -18
  750. data/apis/rds/2013-09-09/api-2.json +0 -3160
  751. data/apis/rds/2013-09-09/examples-1.json +0 -5
  752. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  753. data/apis/rds/2013-09-09/smoke.json +0 -18
  754. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  755. data/apis/rds/2014-09-01/api-2.json +0 -3273
  756. data/apis/rds/2014-09-01/examples-1.json +0 -5
  757. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  758. data/apis/rds/2014-09-01/smoke.json +0 -18
  759. data/apis/rds/2014-10-31/api-2.json +0 -6881
  760. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  761. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  762. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  763. data/apis/rds/2014-10-31/smoke.json +0 -18
  764. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  765. data/apis/rds/2015-11-12/api-2.json +0 -5509
  766. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  767. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  768. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  769. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  770. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  771. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  772. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  773. data/apis/redshift/2012-12-01/smoke.json +0 -18
  774. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  775. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  776. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  777. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  778. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  779. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  780. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  781. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  782. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  783. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  784. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  785. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  786. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  787. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  788. data/apis/route53/2013-04-01/api-2.json +0 -3780
  789. data/apis/route53/2013-04-01/examples-1.json +0 -762
  790. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  791. data/apis/route53/2013-04-01/smoke.json +0 -18
  792. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  793. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  794. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  795. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  796. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  797. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  798. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  799. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  800. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  801. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  802. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  803. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  804. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  805. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  806. data/apis/s3/2006-03-01/api-2.json +0 -6653
  807. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  808. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  809. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  810. data/apis/s3/2006-03-01/smoke.json +0 -11
  811. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  812. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  813. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  814. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  815. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  816. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  817. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  818. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  819. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  820. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  821. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  822. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  823. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  824. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  825. data/apis/sdb/2009-04-15/api-2.json +0 -955
  826. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  827. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  828. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  829. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  830. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  831. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  832. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  833. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  834. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  835. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  836. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  837. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  838. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  839. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  840. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  841. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  842. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  843. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  844. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  845. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  846. data/apis/sesv2/2019-09-27/api-2.json +0 -2362
  847. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  848. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  849. data/apis/shield/2016-06-02/api-2.json +0 -893
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -817
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  858. data/apis/sms/2016-10-24/api-2.json +0 -1366
  859. data/apis/sms/2016-10-24/examples-1.json +0 -5
  860. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  861. data/apis/sms/2016-10-24/smoke.json +0 -18
  862. data/apis/snowball/2016-06-30/api-2.json +0 -955
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1468
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -9150
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  881. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  882. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  883. data/apis/sso/2019-06-10/api-2.json +0 -281
  884. data/apis/sso/2019-06-10/examples-1.json +0 -5
  885. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  886. data/apis/states/2016-11-23/api-2.json +0 -1409
  887. data/apis/states/2016-11-23/examples-1.json +0 -5
  888. data/apis/states/2016-11-23/paginators-1.json +0 -28
  889. data/apis/states/2016-11-23/smoke.json +0 -11
  890. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  891. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  892. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  893. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  894. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  895. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  896. data/apis/sts/2011-06-15/api-2.json +0 -598
  897. data/apis/sts/2011-06-15/examples-1.json +0 -234
  898. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  899. data/apis/sts/2011-06-15/smoke.json +0 -19
  900. data/apis/support/2013-04-15/api-2.json +0 -773
  901. data/apis/support/2013-04-15/examples-1.json +0 -5
  902. data/apis/support/2013-04-15/paginators-1.json +0 -25
  903. data/apis/support/2013-04-15/smoke.json +0 -22
  904. data/apis/swf/2012-01-25/api-2.json +0 -2792
  905. data/apis/swf/2012-01-25/examples-1.json +0 -5
  906. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  907. data/apis/textract/2018-06-27/api-2.json +0 -572
  908. data/apis/textract/2018-06-27/examples-1.json +0 -5
  909. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  910. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  911. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  912. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  913. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  914. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  915. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  916. data/apis/transfer/2018-11-05/api-2.json +0 -940
  917. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  918. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  919. data/apis/translate/2017-07-01/api-2.json +0 -408
  920. data/apis/translate/2017-07-01/examples-1.json +0 -5
  921. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  922. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  923. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  924. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  925. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  926. data/apis/waf/2015-08-24/api-2.json +0 -3857
  927. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  928. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  929. data/apis/waf/2015-08-24/smoke.json +0 -21
  930. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  931. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  932. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  933. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  934. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  935. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  936. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  937. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  938. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  939. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  940. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  941. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  942. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  943. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  944. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  945. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  946. data/apis/workspaces/2015-04-08/api-2.json +0 -1994
  947. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  948. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  949. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  950. data/apis/xray/2016-04-12/api-2.json +0 -1352
  951. data/apis/xray/2016-04-12/examples-1.json +0 -5
  952. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  953. data/bin/aws.rb +0 -180
  954. data/endpoints.json +0 -5692
  955. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  956. data/lib/aws-sdk-core/acm.rb +0 -7
  957. data/lib/aws-sdk-core/acmpca.rb +0 -7
  958. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  959. data/lib/aws-sdk-core/amplify.rb +0 -6
  960. data/lib/aws-sdk-core/api/builder.rb +0 -129
  961. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  962. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  963. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  964. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  965. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  966. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  967. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  968. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  969. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  970. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  971. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  972. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  973. data/lib/aws-sdk-core/apigateway.rb +0 -6
  974. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  975. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  976. data/lib/aws-sdk-core/appconfig.rb +0 -6
  977. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  978. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  979. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  980. data/lib/aws-sdk-core/appmesh.rb +0 -6
  981. data/lib/aws-sdk-core/appstream.rb +0 -7
  982. data/lib/aws-sdk-core/appsync.rb +0 -6
  983. data/lib/aws-sdk-core/athena.rb +0 -6
  984. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  985. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  986. data/lib/aws-sdk-core/backup.rb +0 -6
  987. data/lib/aws-sdk-core/batch.rb +0 -6
  988. data/lib/aws-sdk-core/budgets.rb +0 -6
  989. data/lib/aws-sdk-core/checksums.rb +0 -51
  990. data/lib/aws-sdk-core/chime.rb +0 -6
  991. data/lib/aws-sdk-core/client.rb +0 -62
  992. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  993. data/lib/aws-sdk-core/cloud9.rb +0 -6
  994. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  995. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  996. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  997. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  998. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  999. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1000. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1001. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1002. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1003. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1004. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1005. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1006. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1007. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1008. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1009. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1010. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1011. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1012. data/lib/aws-sdk-core/codestar.rb +0 -6
  1013. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1014. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1015. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1016. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1017. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1018. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1019. data/lib/aws-sdk-core/configservice.rb +0 -6
  1020. data/lib/aws-sdk-core/connect.rb +0 -6
  1021. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1022. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1023. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1024. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1025. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1026. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1027. data/lib/aws-sdk-core/datasync.rb +0 -6
  1028. data/lib/aws-sdk-core/dax.rb +0 -6
  1029. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1030. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1031. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1032. data/lib/aws-sdk-core/dlm.rb +0 -6
  1033. data/lib/aws-sdk-core/docdb.rb +0 -7
  1034. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1035. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1036. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1037. data/lib/aws-sdk-core/ec2.rb +0 -8
  1038. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1039. data/lib/aws-sdk-core/ecr.rb +0 -6
  1040. data/lib/aws-sdk-core/ecs.rb +0 -7
  1041. data/lib/aws-sdk-core/efs.rb +0 -6
  1042. data/lib/aws-sdk-core/eks.rb +0 -7
  1043. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1044. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1045. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1046. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1047. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1048. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1049. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1050. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1051. data/lib/aws-sdk-core/emr.rb +0 -7
  1052. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1053. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1054. data/lib/aws-sdk-core/firehose.rb +0 -6
  1055. data/lib/aws-sdk-core/fms.rb +0 -6
  1056. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1057. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1058. data/lib/aws-sdk-core/fsx.rb +0 -6
  1059. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1060. data/lib/aws-sdk-core/glacier.rb +0 -8
  1061. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1062. data/lib/aws-sdk-core/glue.rb +0 -6
  1063. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1064. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1065. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1066. data/lib/aws-sdk-core/health.rb +0 -6
  1067. data/lib/aws-sdk-core/iam.rb +0 -8
  1068. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1069. data/lib/aws-sdk-core/importexport.rb +0 -5
  1070. data/lib/aws-sdk-core/inspector.rb +0 -6
  1071. data/lib/aws-sdk-core/iot.rb +0 -6
  1072. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1073. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1074. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1075. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1076. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1077. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1078. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1079. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1080. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1081. data/lib/aws-sdk-core/kafka.rb +0 -5
  1082. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1083. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1084. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1085. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1086. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1087. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1088. data/lib/aws-sdk-core/kms.rb +0 -6
  1089. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1090. data/lib/aws-sdk-core/lambda.rb +0 -7
  1091. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1092. data/lib/aws-sdk-core/lex.rb +0 -6
  1093. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1094. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1095. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1096. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1097. data/lib/aws-sdk-core/macie.rb +0 -6
  1098. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1099. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1100. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1101. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1102. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1103. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1104. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1105. data/lib/aws-sdk-core/medialive.rb +0 -6
  1106. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1107. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1108. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1109. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1110. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1111. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1112. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1113. data/lib/aws-sdk-core/mobile.rb +0 -6
  1114. data/lib/aws-sdk-core/mq.rb +0 -5
  1115. data/lib/aws-sdk-core/mturk.rb +0 -6
  1116. data/lib/aws-sdk-core/neptune.rb +0 -7
  1117. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1118. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1119. data/lib/aws-sdk-core/organizations.rb +0 -6
  1120. data/lib/aws-sdk-core/partitions.rb +0 -174
  1121. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1122. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1123. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1124. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1125. data/lib/aws-sdk-core/personalize.rb +0 -6
  1126. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1127. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1128. data/lib/aws-sdk-core/pi.rb +0 -6
  1129. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1130. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1131. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1132. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1133. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1134. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1135. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1136. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1137. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1138. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1139. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1140. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1141. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1142. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1143. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1144. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1145. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1146. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1147. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1148. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1149. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1150. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1151. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1152. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1153. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1154. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1155. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1156. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1157. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1158. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1159. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1160. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1161. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1162. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1163. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1164. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1165. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1166. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1167. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1168. data/lib/aws-sdk-core/polly.rb +0 -14
  1169. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1170. data/lib/aws-sdk-core/pricing.rb +0 -6
  1171. data/lib/aws-sdk-core/qldb.rb +0 -6
  1172. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1173. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1174. data/lib/aws-sdk-core/ram.rb +0 -6
  1175. data/lib/aws-sdk-core/rds.rb +0 -16
  1176. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1177. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1178. data/lib/aws-sdk-core/redshift.rb +0 -7
  1179. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1180. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1181. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1182. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1183. data/lib/aws-sdk-core/route53.rb +0 -7
  1184. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1185. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1186. data/lib/aws-sdk-core/s3.rb +0 -26
  1187. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1188. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1189. data/lib/aws-sdk-core/s3control.rb +0 -6
  1190. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1191. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1192. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1193. data/lib/aws-sdk-core/schemas.rb +0 -6
  1194. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1195. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1196. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1197. data/lib/aws-sdk-core/service.rb +0 -4
  1198. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1199. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1200. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1201. data/lib/aws-sdk-core/ses.rb +0 -7
  1202. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1203. data/lib/aws-sdk-core/shield.rb +0 -6
  1204. data/lib/aws-sdk-core/signer.rb +0 -7
  1205. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1206. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1207. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1208. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1209. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1210. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1211. data/lib/aws-sdk-core/sms.rb +0 -6
  1212. data/lib/aws-sdk-core/snowball.rb +0 -6
  1213. data/lib/aws-sdk-core/sns.rb +0 -7
  1214. data/lib/aws-sdk-core/sqs.rb +0 -7
  1215. data/lib/aws-sdk-core/ssm.rb +0 -6
  1216. data/lib/aws-sdk-core/sso.rb +0 -6
  1217. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1218. data/lib/aws-sdk-core/states.rb +0 -6
  1219. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1220. data/lib/aws-sdk-core/sts.rb +0 -6
  1221. data/lib/aws-sdk-core/support.rb +0 -6
  1222. data/lib/aws-sdk-core/swf.rb +0 -6
  1223. data/lib/aws-sdk-core/textract.rb +0 -6
  1224. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1225. data/lib/aws-sdk-core/transfer.rb +0 -6
  1226. data/lib/aws-sdk-core/translate.rb +0 -6
  1227. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1228. data/lib/aws-sdk-core/version.rb +0 -3
  1229. data/lib/aws-sdk-core/waf.rb +0 -6
  1230. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1231. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1232. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1233. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1234. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1235. data/lib/aws-sdk-core/worklink.rb +0 -6
  1236. data/lib/aws-sdk-core/workmail.rb +0 -6
  1237. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1238. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1239. data/lib/aws-sdk-core/xray.rb +0 -6
  1240. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1241. data/service-models.json +0 -833
@@ -1,18 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-east-1",
4
- "testCases": [
5
- {
6
- "operationName": "ListUsers",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- },
10
- {
11
- "operationName": "GetUser",
12
- "input": {
13
- "UserName": "fake_user"
14
- },
15
- "errorExpectedFromService": true
16
- }
17
- ]
18
- }
@@ -1,73 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "InstanceProfileExists": {
5
- "delay": 1,
6
- "operation": "GetInstanceProfile",
7
- "maxAttempts": 40,
8
- "acceptors": [
9
- {
10
- "expected": 200,
11
- "matcher": "status",
12
- "state": "success"
13
- },
14
- {
15
- "state": "retry",
16
- "matcher": "status",
17
- "expected": 404
18
- }
19
- ]
20
- },
21
- "UserExists": {
22
- "delay": 1,
23
- "operation": "GetUser",
24
- "maxAttempts": 20,
25
- "acceptors": [
26
- {
27
- "state": "success",
28
- "matcher": "status",
29
- "expected": 200
30
- },
31
- {
32
- "state": "retry",
33
- "matcher": "error",
34
- "expected": "NoSuchEntity"
35
- }
36
- ]
37
- },
38
- "RoleExists": {
39
- "delay": 1,
40
- "operation": "GetRole",
41
- "maxAttempts": 20,
42
- "acceptors": [
43
- {
44
- "state": "success",
45
- "matcher": "status",
46
- "expected": 200
47
- },
48
- {
49
- "state": "retry",
50
- "matcher": "error",
51
- "expected": "NoSuchEntity"
52
- }
53
- ]
54
- },
55
- "PolicyExists": {
56
- "delay": 1,
57
- "operation": "GetPolicy",
58
- "maxAttempts": 20,
59
- "acceptors": [
60
- {
61
- "state": "success",
62
- "matcher": "status",
63
- "expected": 200
64
- },
65
- {
66
- "state": "retry",
67
- "matcher": "error",
68
- "expected": "NoSuchEntity"
69
- }
70
- ]
71
- }
72
- }
73
- }
@@ -1,2387 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-12-02",
5
- "endpointPrefix":"imagebuilder",
6
- "jsonVersion":"1.1",
7
- "protocol":"rest-json",
8
- "serviceAbbreviation":"imagebuilder",
9
- "serviceFullName":"EC2 Image Builder",
10
- "serviceId":"imagebuilder",
11
- "signatureVersion":"v4",
12
- "signingName":"imagebuilder",
13
- "uid":"imagebuilder-2019-12-02"
14
- },
15
- "operations":{
16
- "CancelImageCreation":{
17
- "name":"CancelImageCreation",
18
- "http":{
19
- "method":"PUT",
20
- "requestUri":"/CancelImageCreation"
21
- },
22
- "input":{"shape":"CancelImageCreationRequest"},
23
- "output":{"shape":"CancelImageCreationResponse"},
24
- "errors":[
25
- {"shape":"ServiceException"},
26
- {"shape":"ClientException"},
27
- {"shape":"ServiceUnavailableException"},
28
- {"shape":"InvalidRequestException"},
29
- {"shape":"IdempotentParameterMismatchException"},
30
- {"shape":"ForbiddenException"},
31
- {"shape":"CallRateLimitExceededException"},
32
- {"shape":"ResourceInUseException"}
33
- ]
34
- },
35
- "CreateComponent":{
36
- "name":"CreateComponent",
37
- "http":{
38
- "method":"PUT",
39
- "requestUri":"/CreateComponent"
40
- },
41
- "input":{"shape":"CreateComponentRequest"},
42
- "output":{"shape":"CreateComponentResponse"},
43
- "errors":[
44
- {"shape":"ServiceException"},
45
- {"shape":"ClientException"},
46
- {"shape":"ServiceUnavailableException"},
47
- {"shape":"InvalidRequestException"},
48
- {"shape":"IdempotentParameterMismatchException"},
49
- {"shape":"ForbiddenException"},
50
- {"shape":"CallRateLimitExceededException"},
51
- {"shape":"InvalidVersionNumberException"},
52
- {"shape":"ResourceInUseException"},
53
- {"shape":"InvalidParameterCombinationException"}
54
- ]
55
- },
56
- "CreateDistributionConfiguration":{
57
- "name":"CreateDistributionConfiguration",
58
- "http":{
59
- "method":"PUT",
60
- "requestUri":"/CreateDistributionConfiguration"
61
- },
62
- "input":{"shape":"CreateDistributionConfigurationRequest"},
63
- "output":{"shape":"CreateDistributionConfigurationResponse"},
64
- "errors":[
65
- {"shape":"ServiceException"},
66
- {"shape":"ClientException"},
67
- {"shape":"ServiceUnavailableException"},
68
- {"shape":"InvalidRequestException"},
69
- {"shape":"IdempotentParameterMismatchException"},
70
- {"shape":"ForbiddenException"},
71
- {"shape":"CallRateLimitExceededException"},
72
- {"shape":"ResourceInUseException"},
73
- {"shape":"ResourceAlreadyExistsException"},
74
- {"shape":"InvalidParameterCombinationException"}
75
- ]
76
- },
77
- "CreateImage":{
78
- "name":"CreateImage",
79
- "http":{
80
- "method":"PUT",
81
- "requestUri":"/CreateImage"
82
- },
83
- "input":{"shape":"CreateImageRequest"},
84
- "output":{"shape":"CreateImageResponse"},
85
- "errors":[
86
- {"shape":"ServiceException"},
87
- {"shape":"ClientException"},
88
- {"shape":"ServiceUnavailableException"},
89
- {"shape":"InvalidRequestException"},
90
- {"shape":"IdempotentParameterMismatchException"},
91
- {"shape":"ForbiddenException"},
92
- {"shape":"CallRateLimitExceededException"},
93
- {"shape":"ResourceInUseException"}
94
- ]
95
- },
96
- "CreateImagePipeline":{
97
- "name":"CreateImagePipeline",
98
- "http":{
99
- "method":"PUT",
100
- "requestUri":"/CreateImagePipeline"
101
- },
102
- "input":{"shape":"CreateImagePipelineRequest"},
103
- "output":{"shape":"CreateImagePipelineResponse"},
104
- "errors":[
105
- {"shape":"ServiceException"},
106
- {"shape":"ClientException"},
107
- {"shape":"ServiceUnavailableException"},
108
- {"shape":"InvalidRequestException"},
109
- {"shape":"IdempotentParameterMismatchException"},
110
- {"shape":"ForbiddenException"},
111
- {"shape":"CallRateLimitExceededException"},
112
- {"shape":"ResourceInUseException"},
113
- {"shape":"ResourceAlreadyExistsException"}
114
- ]
115
- },
116
- "CreateImageRecipe":{
117
- "name":"CreateImageRecipe",
118
- "http":{
119
- "method":"PUT",
120
- "requestUri":"/CreateImageRecipe"
121
- },
122
- "input":{"shape":"CreateImageRecipeRequest"},
123
- "output":{"shape":"CreateImageRecipeResponse"},
124
- "errors":[
125
- {"shape":"ServiceException"},
126
- {"shape":"ClientException"},
127
- {"shape":"ServiceUnavailableException"},
128
- {"shape":"InvalidRequestException"},
129
- {"shape":"IdempotentParameterMismatchException"},
130
- {"shape":"ForbiddenException"},
131
- {"shape":"CallRateLimitExceededException"},
132
- {"shape":"InvalidVersionNumberException"},
133
- {"shape":"ResourceInUseException"},
134
- {"shape":"ResourceAlreadyExistsException"}
135
- ]
136
- },
137
- "CreateInfrastructureConfiguration":{
138
- "name":"CreateInfrastructureConfiguration",
139
- "http":{
140
- "method":"PUT",
141
- "requestUri":"/CreateInfrastructureConfiguration"
142
- },
143
- "input":{"shape":"CreateInfrastructureConfigurationRequest"},
144
- "output":{"shape":"CreateInfrastructureConfigurationResponse"},
145
- "errors":[
146
- {"shape":"ServiceException"},
147
- {"shape":"ClientException"},
148
- {"shape":"ServiceUnavailableException"},
149
- {"shape":"InvalidRequestException"},
150
- {"shape":"IdempotentParameterMismatchException"},
151
- {"shape":"ForbiddenException"},
152
- {"shape":"CallRateLimitExceededException"},
153
- {"shape":"ResourceInUseException"},
154
- {"shape":"ResourceAlreadyExistsException"}
155
- ]
156
- },
157
- "DeleteComponent":{
158
- "name":"DeleteComponent",
159
- "http":{
160
- "method":"DELETE",
161
- "requestUri":"/DeleteComponent"
162
- },
163
- "input":{"shape":"DeleteComponentRequest"},
164
- "output":{"shape":"DeleteComponentResponse"},
165
- "errors":[
166
- {"shape":"ServiceException"},
167
- {"shape":"ClientException"},
168
- {"shape":"ServiceUnavailableException"},
169
- {"shape":"InvalidRequestException"},
170
- {"shape":"ForbiddenException"},
171
- {"shape":"CallRateLimitExceededException"},
172
- {"shape":"ResourceDependencyException"}
173
- ]
174
- },
175
- "DeleteDistributionConfiguration":{
176
- "name":"DeleteDistributionConfiguration",
177
- "http":{
178
- "method":"DELETE",
179
- "requestUri":"/DeleteDistributionConfiguration"
180
- },
181
- "input":{"shape":"DeleteDistributionConfigurationRequest"},
182
- "output":{"shape":"DeleteDistributionConfigurationResponse"},
183
- "errors":[
184
- {"shape":"ServiceException"},
185
- {"shape":"ClientException"},
186
- {"shape":"InvalidRequestException"},
187
- {"shape":"ServiceUnavailableException"},
188
- {"shape":"ForbiddenException"},
189
- {"shape":"CallRateLimitExceededException"},
190
- {"shape":"ResourceDependencyException"}
191
- ]
192
- },
193
- "DeleteImage":{
194
- "name":"DeleteImage",
195
- "http":{
196
- "method":"DELETE",
197
- "requestUri":"/DeleteImage"
198
- },
199
- "input":{"shape":"DeleteImageRequest"},
200
- "output":{"shape":"DeleteImageResponse"},
201
- "errors":[
202
- {"shape":"ServiceException"},
203
- {"shape":"ClientException"},
204
- {"shape":"InvalidRequestException"},
205
- {"shape":"ServiceUnavailableException"},
206
- {"shape":"ForbiddenException"},
207
- {"shape":"CallRateLimitExceededException"},
208
- {"shape":"ResourceDependencyException"}
209
- ]
210
- },
211
- "DeleteImagePipeline":{
212
- "name":"DeleteImagePipeline",
213
- "http":{
214
- "method":"DELETE",
215
- "requestUri":"/DeleteImagePipeline"
216
- },
217
- "input":{"shape":"DeleteImagePipelineRequest"},
218
- "output":{"shape":"DeleteImagePipelineResponse"},
219
- "errors":[
220
- {"shape":"ServiceException"},
221
- {"shape":"ClientException"},
222
- {"shape":"ServiceUnavailableException"},
223
- {"shape":"InvalidRequestException"},
224
- {"shape":"ForbiddenException"},
225
- {"shape":"CallRateLimitExceededException"},
226
- {"shape":"ResourceDependencyException"}
227
- ]
228
- },
229
- "DeleteImageRecipe":{
230
- "name":"DeleteImageRecipe",
231
- "http":{
232
- "method":"DELETE",
233
- "requestUri":"/DeleteImageRecipe"
234
- },
235
- "input":{"shape":"DeleteImageRecipeRequest"},
236
- "output":{"shape":"DeleteImageRecipeResponse"},
237
- "errors":[
238
- {"shape":"ServiceException"},
239
- {"shape":"ClientException"},
240
- {"shape":"ServiceUnavailableException"},
241
- {"shape":"InvalidRequestException"},
242
- {"shape":"ForbiddenException"},
243
- {"shape":"CallRateLimitExceededException"},
244
- {"shape":"ResourceDependencyException"}
245
- ]
246
- },
247
- "DeleteInfrastructureConfiguration":{
248
- "name":"DeleteInfrastructureConfiguration",
249
- "http":{
250
- "method":"DELETE",
251
- "requestUri":"/DeleteInfrastructureConfiguration"
252
- },
253
- "input":{"shape":"DeleteInfrastructureConfigurationRequest"},
254
- "output":{"shape":"DeleteInfrastructureConfigurationResponse"},
255
- "errors":[
256
- {"shape":"ServiceException"},
257
- {"shape":"ClientException"},
258
- {"shape":"ServiceUnavailableException"},
259
- {"shape":"InvalidRequestException"},
260
- {"shape":"ForbiddenException"},
261
- {"shape":"CallRateLimitExceededException"},
262
- {"shape":"ResourceDependencyException"}
263
- ]
264
- },
265
- "GetComponent":{
266
- "name":"GetComponent",
267
- "http":{
268
- "method":"GET",
269
- "requestUri":"/GetComponent"
270
- },
271
- "input":{"shape":"GetComponentRequest"},
272
- "output":{"shape":"GetComponentResponse"},
273
- "errors":[
274
- {"shape":"ServiceException"},
275
- {"shape":"ClientException"},
276
- {"shape":"ServiceUnavailableException"},
277
- {"shape":"InvalidRequestException"},
278
- {"shape":"ForbiddenException"},
279
- {"shape":"CallRateLimitExceededException"}
280
- ]
281
- },
282
- "GetComponentPolicy":{
283
- "name":"GetComponentPolicy",
284
- "http":{
285
- "method":"GET",
286
- "requestUri":"/GetComponentPolicy"
287
- },
288
- "input":{"shape":"GetComponentPolicyRequest"},
289
- "output":{"shape":"GetComponentPolicyResponse"},
290
- "errors":[
291
- {"shape":"ServiceException"},
292
- {"shape":"ServiceUnavailableException"},
293
- {"shape":"ResourceNotFoundException"},
294
- {"shape":"InvalidRequestException"},
295
- {"shape":"ForbiddenException"},
296
- {"shape":"CallRateLimitExceededException"}
297
- ]
298
- },
299
- "GetDistributionConfiguration":{
300
- "name":"GetDistributionConfiguration",
301
- "http":{
302
- "method":"GET",
303
- "requestUri":"/GetDistributionConfiguration"
304
- },
305
- "input":{"shape":"GetDistributionConfigurationRequest"},
306
- "output":{"shape":"GetDistributionConfigurationResponse"},
307
- "errors":[
308
- {"shape":"ServiceException"},
309
- {"shape":"ClientException"},
310
- {"shape":"ServiceUnavailableException"},
311
- {"shape":"InvalidRequestException"},
312
- {"shape":"ForbiddenException"},
313
- {"shape":"CallRateLimitExceededException"}
314
- ]
315
- },
316
- "GetImage":{
317
- "name":"GetImage",
318
- "http":{
319
- "method":"GET",
320
- "requestUri":"/GetImage"
321
- },
322
- "input":{"shape":"GetImageRequest"},
323
- "output":{"shape":"GetImageResponse"},
324
- "errors":[
325
- {"shape":"ServiceException"},
326
- {"shape":"ClientException"},
327
- {"shape":"ServiceUnavailableException"},
328
- {"shape":"InvalidRequestException"},
329
- {"shape":"ForbiddenException"},
330
- {"shape":"CallRateLimitExceededException"}
331
- ]
332
- },
333
- "GetImagePipeline":{
334
- "name":"GetImagePipeline",
335
- "http":{
336
- "method":"GET",
337
- "requestUri":"/GetImagePipeline"
338
- },
339
- "input":{"shape":"GetImagePipelineRequest"},
340
- "output":{"shape":"GetImagePipelineResponse"},
341
- "errors":[
342
- {"shape":"ServiceException"},
343
- {"shape":"ClientException"},
344
- {"shape":"ServiceUnavailableException"},
345
- {"shape":"InvalidRequestException"},
346
- {"shape":"ForbiddenException"},
347
- {"shape":"CallRateLimitExceededException"}
348
- ]
349
- },
350
- "GetImagePolicy":{
351
- "name":"GetImagePolicy",
352
- "http":{
353
- "method":"GET",
354
- "requestUri":"/GetImagePolicy"
355
- },
356
- "input":{"shape":"GetImagePolicyRequest"},
357
- "output":{"shape":"GetImagePolicyResponse"},
358
- "errors":[
359
- {"shape":"ServiceException"},
360
- {"shape":"ServiceUnavailableException"},
361
- {"shape":"ResourceNotFoundException"},
362
- {"shape":"InvalidRequestException"},
363
- {"shape":"ForbiddenException"},
364
- {"shape":"CallRateLimitExceededException"}
365
- ]
366
- },
367
- "GetImageRecipe":{
368
- "name":"GetImageRecipe",
369
- "http":{
370
- "method":"GET",
371
- "requestUri":"/GetImageRecipe"
372
- },
373
- "input":{"shape":"GetImageRecipeRequest"},
374
- "output":{"shape":"GetImageRecipeResponse"},
375
- "errors":[
376
- {"shape":"ServiceException"},
377
- {"shape":"ClientException"},
378
- {"shape":"ServiceUnavailableException"},
379
- {"shape":"InvalidRequestException"},
380
- {"shape":"ForbiddenException"},
381
- {"shape":"CallRateLimitExceededException"}
382
- ]
383
- },
384
- "GetImageRecipePolicy":{
385
- "name":"GetImageRecipePolicy",
386
- "http":{
387
- "method":"GET",
388
- "requestUri":"/GetImageRecipePolicy"
389
- },
390
- "input":{"shape":"GetImageRecipePolicyRequest"},
391
- "output":{"shape":"GetImageRecipePolicyResponse"},
392
- "errors":[
393
- {"shape":"ServiceException"},
394
- {"shape":"ServiceUnavailableException"},
395
- {"shape":"InvalidRequestException"},
396
- {"shape":"ResourceNotFoundException"},
397
- {"shape":"ForbiddenException"},
398
- {"shape":"CallRateLimitExceededException"}
399
- ]
400
- },
401
- "GetInfrastructureConfiguration":{
402
- "name":"GetInfrastructureConfiguration",
403
- "http":{
404
- "method":"GET",
405
- "requestUri":"/GetInfrastructureConfiguration"
406
- },
407
- "input":{"shape":"GetInfrastructureConfigurationRequest"},
408
- "output":{"shape":"GetInfrastructureConfigurationResponse"},
409
- "errors":[
410
- {"shape":"ServiceException"},
411
- {"shape":"ClientException"},
412
- {"shape":"ServiceUnavailableException"},
413
- {"shape":"InvalidRequestException"},
414
- {"shape":"ForbiddenException"},
415
- {"shape":"CallRateLimitExceededException"}
416
- ]
417
- },
418
- "ImportComponent":{
419
- "name":"ImportComponent",
420
- "http":{
421
- "method":"PUT",
422
- "requestUri":"/ImportComponent"
423
- },
424
- "input":{"shape":"ImportComponentRequest"},
425
- "output":{"shape":"ImportComponentResponse"},
426
- "errors":[
427
- {"shape":"ServiceException"},
428
- {"shape":"ClientException"},
429
- {"shape":"ServiceUnavailableException"},
430
- {"shape":"InvalidRequestException"},
431
- {"shape":"IdempotentParameterMismatchException"},
432
- {"shape":"ForbiddenException"},
433
- {"shape":"CallRateLimitExceededException"},
434
- {"shape":"InvalidVersionNumberException"},
435
- {"shape":"ResourceInUseException"},
436
- {"shape":"InvalidParameterCombinationException"}
437
- ]
438
- },
439
- "ListComponentBuildVersions":{
440
- "name":"ListComponentBuildVersions",
441
- "http":{
442
- "method":"POST",
443
- "requestUri":"/ListComponentBuildVersions"
444
- },
445
- "input":{"shape":"ListComponentBuildVersionsRequest"},
446
- "output":{"shape":"ListComponentBuildVersionsResponse"},
447
- "errors":[
448
- {"shape":"ServiceException"},
449
- {"shape":"ClientException"},
450
- {"shape":"ServiceUnavailableException"},
451
- {"shape":"InvalidRequestException"},
452
- {"shape":"InvalidPaginationTokenException"},
453
- {"shape":"ForbiddenException"},
454
- {"shape":"CallRateLimitExceededException"}
455
- ]
456
- },
457
- "ListComponents":{
458
- "name":"ListComponents",
459
- "http":{
460
- "method":"POST",
461
- "requestUri":"/ListComponents"
462
- },
463
- "input":{"shape":"ListComponentsRequest"},
464
- "output":{"shape":"ListComponentsResponse"},
465
- "errors":[
466
- {"shape":"ServiceException"},
467
- {"shape":"ClientException"},
468
- {"shape":"ServiceUnavailableException"},
469
- {"shape":"InvalidRequestException"},
470
- {"shape":"InvalidPaginationTokenException"},
471
- {"shape":"ForbiddenException"},
472
- {"shape":"CallRateLimitExceededException"}
473
- ]
474
- },
475
- "ListDistributionConfigurations":{
476
- "name":"ListDistributionConfigurations",
477
- "http":{
478
- "method":"POST",
479
- "requestUri":"/ListDistributionConfigurations"
480
- },
481
- "input":{"shape":"ListDistributionConfigurationsRequest"},
482
- "output":{"shape":"ListDistributionConfigurationsResponse"},
483
- "errors":[
484
- {"shape":"ServiceException"},
485
- {"shape":"ClientException"},
486
- {"shape":"ServiceUnavailableException"},
487
- {"shape":"InvalidRequestException"},
488
- {"shape":"InvalidPaginationTokenException"},
489
- {"shape":"ForbiddenException"},
490
- {"shape":"CallRateLimitExceededException"}
491
- ]
492
- },
493
- "ListImageBuildVersions":{
494
- "name":"ListImageBuildVersions",
495
- "http":{
496
- "method":"POST",
497
- "requestUri":"/ListImageBuildVersions"
498
- },
499
- "input":{"shape":"ListImageBuildVersionsRequest"},
500
- "output":{"shape":"ListImageBuildVersionsResponse"},
501
- "errors":[
502
- {"shape":"ServiceException"},
503
- {"shape":"ClientException"},
504
- {"shape":"ServiceUnavailableException"},
505
- {"shape":"InvalidRequestException"},
506
- {"shape":"InvalidPaginationTokenException"},
507
- {"shape":"ForbiddenException"},
508
- {"shape":"CallRateLimitExceededException"}
509
- ]
510
- },
511
- "ListImagePipelineImages":{
512
- "name":"ListImagePipelineImages",
513
- "http":{
514
- "method":"POST",
515
- "requestUri":"/ListImagePipelineImages"
516
- },
517
- "input":{"shape":"ListImagePipelineImagesRequest"},
518
- "output":{"shape":"ListImagePipelineImagesResponse"},
519
- "errors":[
520
- {"shape":"ServiceException"},
521
- {"shape":"ClientException"},
522
- {"shape":"ServiceUnavailableException"},
523
- {"shape":"InvalidRequestException"},
524
- {"shape":"InvalidPaginationTokenException"},
525
- {"shape":"ResourceNotFoundException"},
526
- {"shape":"ForbiddenException"},
527
- {"shape":"CallRateLimitExceededException"}
528
- ]
529
- },
530
- "ListImagePipelines":{
531
- "name":"ListImagePipelines",
532
- "http":{
533
- "method":"POST",
534
- "requestUri":"/ListImagePipelines"
535
- },
536
- "input":{"shape":"ListImagePipelinesRequest"},
537
- "output":{"shape":"ListImagePipelinesResponse"},
538
- "errors":[
539
- {"shape":"ServiceException"},
540
- {"shape":"ClientException"},
541
- {"shape":"ServiceUnavailableException"},
542
- {"shape":"InvalidRequestException"},
543
- {"shape":"InvalidPaginationTokenException"},
544
- {"shape":"ForbiddenException"},
545
- {"shape":"CallRateLimitExceededException"}
546
- ]
547
- },
548
- "ListImageRecipes":{
549
- "name":"ListImageRecipes",
550
- "http":{
551
- "method":"POST",
552
- "requestUri":"/ListImageRecipes"
553
- },
554
- "input":{"shape":"ListImageRecipesRequest"},
555
- "output":{"shape":"ListImageRecipesResponse"},
556
- "errors":[
557
- {"shape":"ServiceException"},
558
- {"shape":"ClientException"},
559
- {"shape":"ServiceUnavailableException"},
560
- {"shape":"InvalidRequestException"},
561
- {"shape":"InvalidPaginationTokenException"},
562
- {"shape":"ForbiddenException"},
563
- {"shape":"CallRateLimitExceededException"}
564
- ]
565
- },
566
- "ListImages":{
567
- "name":"ListImages",
568
- "http":{
569
- "method":"POST",
570
- "requestUri":"/ListImages"
571
- },
572
- "input":{"shape":"ListImagesRequest"},
573
- "output":{"shape":"ListImagesResponse"},
574
- "errors":[
575
- {"shape":"ServiceException"},
576
- {"shape":"ClientException"},
577
- {"shape":"ServiceUnavailableException"},
578
- {"shape":"InvalidRequestException"},
579
- {"shape":"InvalidPaginationTokenException"},
580
- {"shape":"ForbiddenException"},
581
- {"shape":"CallRateLimitExceededException"}
582
- ]
583
- },
584
- "ListInfrastructureConfigurations":{
585
- "name":"ListInfrastructureConfigurations",
586
- "http":{
587
- "method":"POST",
588
- "requestUri":"/ListInfrastructureConfigurations"
589
- },
590
- "input":{"shape":"ListInfrastructureConfigurationsRequest"},
591
- "output":{"shape":"ListInfrastructureConfigurationsResponse"},
592
- "errors":[
593
- {"shape":"ServiceException"},
594
- {"shape":"ClientException"},
595
- {"shape":"ServiceUnavailableException"},
596
- {"shape":"InvalidRequestException"},
597
- {"shape":"InvalidPaginationTokenException"},
598
- {"shape":"ForbiddenException"},
599
- {"shape":"CallRateLimitExceededException"}
600
- ]
601
- },
602
- "ListTagsForResource":{
603
- "name":"ListTagsForResource",
604
- "http":{
605
- "method":"GET",
606
- "requestUri":"/tags/{resourceArn}"
607
- },
608
- "input":{"shape":"ListTagsForResourceRequest"},
609
- "output":{"shape":"ListTagsForResourceResponse"},
610
- "errors":[
611
- {"shape":"ServiceException"},
612
- {"shape":"InvalidParameterException"},
613
- {"shape":"ResourceNotFoundException"}
614
- ]
615
- },
616
- "PutComponentPolicy":{
617
- "name":"PutComponentPolicy",
618
- "http":{
619
- "method":"PUT",
620
- "requestUri":"/PutComponentPolicy"
621
- },
622
- "input":{"shape":"PutComponentPolicyRequest"},
623
- "output":{"shape":"PutComponentPolicyResponse"},
624
- "errors":[
625
- {"shape":"ServiceException"},
626
- {"shape":"ClientException"},
627
- {"shape":"ServiceUnavailableException"},
628
- {"shape":"InvalidRequestException"},
629
- {"shape":"InvalidParameterValueException"},
630
- {"shape":"ResourceNotFoundException"},
631
- {"shape":"ForbiddenException"},
632
- {"shape":"CallRateLimitExceededException"}
633
- ]
634
- },
635
- "PutImagePolicy":{
636
- "name":"PutImagePolicy",
637
- "http":{
638
- "method":"PUT",
639
- "requestUri":"/PutImagePolicy"
640
- },
641
- "input":{"shape":"PutImagePolicyRequest"},
642
- "output":{"shape":"PutImagePolicyResponse"},
643
- "errors":[
644
- {"shape":"ServiceException"},
645
- {"shape":"ClientException"},
646
- {"shape":"ServiceUnavailableException"},
647
- {"shape":"InvalidRequestException"},
648
- {"shape":"InvalidParameterValueException"},
649
- {"shape":"ResourceNotFoundException"},
650
- {"shape":"ForbiddenException"},
651
- {"shape":"CallRateLimitExceededException"}
652
- ]
653
- },
654
- "PutImageRecipePolicy":{
655
- "name":"PutImageRecipePolicy",
656
- "http":{
657
- "method":"PUT",
658
- "requestUri":"/PutImageRecipePolicy"
659
- },
660
- "input":{"shape":"PutImageRecipePolicyRequest"},
661
- "output":{"shape":"PutImageRecipePolicyResponse"},
662
- "errors":[
663
- {"shape":"ServiceException"},
664
- {"shape":"ClientException"},
665
- {"shape":"ServiceUnavailableException"},
666
- {"shape":"InvalidRequestException"},
667
- {"shape":"InvalidParameterValueException"},
668
- {"shape":"ResourceNotFoundException"},
669
- {"shape":"ForbiddenException"},
670
- {"shape":"CallRateLimitExceededException"}
671
- ]
672
- },
673
- "StartImagePipelineExecution":{
674
- "name":"StartImagePipelineExecution",
675
- "http":{
676
- "method":"PUT",
677
- "requestUri":"/StartImagePipelineExecution"
678
- },
679
- "input":{"shape":"StartImagePipelineExecutionRequest"},
680
- "output":{"shape":"StartImagePipelineExecutionResponse"},
681
- "errors":[
682
- {"shape":"ServiceException"},
683
- {"shape":"ClientException"},
684
- {"shape":"ServiceUnavailableException"},
685
- {"shape":"InvalidRequestException"},
686
- {"shape":"ResourceNotFoundException"},
687
- {"shape":"IdempotentParameterMismatchException"},
688
- {"shape":"ForbiddenException"},
689
- {"shape":"CallRateLimitExceededException"},
690
- {"shape":"ResourceInUseException"}
691
- ]
692
- },
693
- "TagResource":{
694
- "name":"TagResource",
695
- "http":{
696
- "method":"POST",
697
- "requestUri":"/tags/{resourceArn}"
698
- },
699
- "input":{"shape":"TagResourceRequest"},
700
- "output":{"shape":"TagResourceResponse"},
701
- "errors":[
702
- {"shape":"ServiceException"},
703
- {"shape":"InvalidParameterException"},
704
- {"shape":"ResourceNotFoundException"}
705
- ]
706
- },
707
- "UntagResource":{
708
- "name":"UntagResource",
709
- "http":{
710
- "method":"DELETE",
711
- "requestUri":"/tags/{resourceArn}"
712
- },
713
- "input":{"shape":"UntagResourceRequest"},
714
- "output":{"shape":"UntagResourceResponse"},
715
- "errors":[
716
- {"shape":"ServiceException"},
717
- {"shape":"InvalidParameterException"},
718
- {"shape":"ResourceNotFoundException"}
719
- ]
720
- },
721
- "UpdateDistributionConfiguration":{
722
- "name":"UpdateDistributionConfiguration",
723
- "http":{
724
- "method":"PUT",
725
- "requestUri":"/UpdateDistributionConfiguration"
726
- },
727
- "input":{"shape":"UpdateDistributionConfigurationRequest"},
728
- "output":{"shape":"UpdateDistributionConfigurationResponse"},
729
- "errors":[
730
- {"shape":"ServiceException"},
731
- {"shape":"ClientException"},
732
- {"shape":"ServiceUnavailableException"},
733
- {"shape":"InvalidRequestException"},
734
- {"shape":"IdempotentParameterMismatchException"},
735
- {"shape":"ForbiddenException"},
736
- {"shape":"CallRateLimitExceededException"},
737
- {"shape":"ResourceInUseException"},
738
- {"shape":"InvalidParameterCombinationException"}
739
- ]
740
- },
741
- "UpdateImagePipeline":{
742
- "name":"UpdateImagePipeline",
743
- "http":{
744
- "method":"PUT",
745
- "requestUri":"/UpdateImagePipeline"
746
- },
747
- "input":{"shape":"UpdateImagePipelineRequest"},
748
- "output":{"shape":"UpdateImagePipelineResponse"},
749
- "errors":[
750
- {"shape":"ServiceException"},
751
- {"shape":"ClientException"},
752
- {"shape":"ServiceUnavailableException"},
753
- {"shape":"InvalidRequestException"},
754
- {"shape":"IdempotentParameterMismatchException"},
755
- {"shape":"ForbiddenException"},
756
- {"shape":"CallRateLimitExceededException"},
757
- {"shape":"ResourceInUseException"}
758
- ]
759
- },
760
- "UpdateInfrastructureConfiguration":{
761
- "name":"UpdateInfrastructureConfiguration",
762
- "http":{
763
- "method":"PUT",
764
- "requestUri":"/UpdateInfrastructureConfiguration"
765
- },
766
- "input":{"shape":"UpdateInfrastructureConfigurationRequest"},
767
- "output":{"shape":"UpdateInfrastructureConfigurationResponse"},
768
- "errors":[
769
- {"shape":"ServiceException"},
770
- {"shape":"ClientException"},
771
- {"shape":"ServiceUnavailableException"},
772
- {"shape":"InvalidRequestException"},
773
- {"shape":"IdempotentParameterMismatchException"},
774
- {"shape":"ForbiddenException"},
775
- {"shape":"CallRateLimitExceededException"},
776
- {"shape":"ResourceInUseException"}
777
- ]
778
- }
779
- },
780
- "shapes":{
781
- "AccountList":{
782
- "type":"list",
783
- "member":{"shape":"NonEmptyString"}
784
- },
785
- "Ami":{
786
- "type":"structure",
787
- "members":{
788
- "region":{"shape":"NonEmptyString"},
789
- "image":{"shape":"NonEmptyString"},
790
- "name":{"shape":"NonEmptyString"},
791
- "description":{"shape":"NonEmptyString"},
792
- "state":{"shape":"ImageState"}
793
- }
794
- },
795
- "AmiDistributionConfiguration":{
796
- "type":"structure",
797
- "members":{
798
- "name":{"shape":"NonEmptyString"},
799
- "description":{"shape":"NonEmptyString"},
800
- "amiTags":{"shape":"TagMap"},
801
- "launchPermission":{"shape":"LaunchPermissionConfiguration"}
802
- }
803
- },
804
- "AmiList":{
805
- "type":"list",
806
- "member":{"shape":"Ami"}
807
- },
808
- "Arn":{"type":"string"},
809
- "ArnList":{
810
- "type":"list",
811
- "member":{"shape":"Arn"}
812
- },
813
- "CallRateLimitExceededException":{
814
- "type":"structure",
815
- "members":{
816
- "message":{"shape":"ErrorMessage"}
817
- },
818
- "error":{"httpStatusCode":429},
819
- "exception":true
820
- },
821
- "CancelImageCreationRequest":{
822
- "type":"structure",
823
- "required":[
824
- "imageBuildVersionArn",
825
- "clientToken"
826
- ],
827
- "members":{
828
- "imageBuildVersionArn":{"shape":"ImageBuildVersionArn"},
829
- "clientToken":{"shape":"ClientToken"}
830
- }
831
- },
832
- "CancelImageCreationResponse":{
833
- "type":"structure",
834
- "members":{
835
- "requestId":{"shape":"NonEmptyString"},
836
- "clientToken":{"shape":"ClientToken"},
837
- "imageBuildVersionArn":{"shape":"ImageBuildVersionArn"}
838
- }
839
- },
840
- "ClientException":{
841
- "type":"structure",
842
- "members":{
843
- "message":{"shape":"ErrorMessage"}
844
- },
845
- "error":{"httpStatusCode":400},
846
- "exception":true
847
- },
848
- "ClientToken":{
849
- "type":"string",
850
- "max":36,
851
- "min":1
852
- },
853
- "Component":{
854
- "type":"structure",
855
- "members":{
856
- "arn":{"shape":"ImageBuilderArn"},
857
- "name":{"shape":"ResourceName"},
858
- "version":{"shape":"VersionNumber"},
859
- "description":{"shape":"NonEmptyString"},
860
- "changeDescription":{"shape":"NonEmptyString"},
861
- "type":{"shape":"ComponentType"},
862
- "platform":{"shape":"Platform"},
863
- "owner":{"shape":"NonEmptyString"},
864
- "data":{"shape":"ComponentData"},
865
- "kmsKeyId":{"shape":"NonEmptyString"},
866
- "encrypted":{"shape":"NullableBoolean"},
867
- "dateCreated":{"shape":"DateTime"},
868
- "tags":{"shape":"TagMap"}
869
- }
870
- },
871
- "ComponentBuildVersionArn":{
872
- "type":"string",
873
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):component/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+/\\d+$"
874
- },
875
- "ComponentConfiguration":{
876
- "type":"structure",
877
- "required":["componentArn"],
878
- "members":{
879
- "componentArn":{"shape":"ComponentBuildVersionArn"}
880
- }
881
- },
882
- "ComponentConfigurationList":{
883
- "type":"list",
884
- "member":{"shape":"ComponentConfiguration"},
885
- "min":1
886
- },
887
- "ComponentData":{"type":"string"},
888
- "ComponentFormat":{
889
- "type":"string",
890
- "enum":["SHELL"]
891
- },
892
- "ComponentSummary":{
893
- "type":"structure",
894
- "members":{
895
- "arn":{"shape":"ImageBuilderArn"},
896
- "name":{"shape":"ResourceName"},
897
- "version":{"shape":"VersionNumber"},
898
- "platform":{"shape":"Platform"},
899
- "type":{"shape":"ComponentType"},
900
- "owner":{"shape":"NonEmptyString"},
901
- "description":{"shape":"NonEmptyString"},
902
- "changeDescription":{"shape":"NonEmptyString"},
903
- "dateCreated":{"shape":"DateTime"},
904
- "tags":{"shape":"TagMap"}
905
- }
906
- },
907
- "ComponentSummaryList":{
908
- "type":"list",
909
- "member":{"shape":"ComponentSummary"}
910
- },
911
- "ComponentType":{
912
- "type":"string",
913
- "enum":[
914
- "BUILD",
915
- "TEST"
916
- ]
917
- },
918
- "ComponentVersion":{
919
- "type":"structure",
920
- "members":{
921
- "arn":{"shape":"ImageBuilderArn"},
922
- "name":{"shape":"ResourceName"},
923
- "version":{"shape":"VersionNumber"},
924
- "description":{"shape":"NonEmptyString"},
925
- "platform":{"shape":"Platform"},
926
- "type":{"shape":"ComponentType"},
927
- "owner":{"shape":"NonEmptyString"},
928
- "dateCreated":{"shape":"DateTime"}
929
- }
930
- },
931
- "ComponentVersionArn":{
932
- "type":"string",
933
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):component/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+$"
934
- },
935
- "ComponentVersionList":{
936
- "type":"list",
937
- "member":{"shape":"ComponentVersion"}
938
- },
939
- "CreateComponentRequest":{
940
- "type":"structure",
941
- "required":[
942
- "name",
943
- "semanticVersion",
944
- "platform",
945
- "clientToken"
946
- ],
947
- "members":{
948
- "name":{"shape":"ResourceName"},
949
- "semanticVersion":{"shape":"VersionNumber"},
950
- "description":{"shape":"NonEmptyString"},
951
- "changeDescription":{"shape":"NonEmptyString"},
952
- "platform":{"shape":"Platform"},
953
- "data":{"shape":"InlineComponentData"},
954
- "uri":{"shape":"Uri"},
955
- "kmsKeyId":{"shape":"NonEmptyString"},
956
- "tags":{"shape":"TagMap"},
957
- "clientToken":{
958
- "shape":"ClientToken",
959
- "idempotencyToken":true
960
- }
961
- }
962
- },
963
- "CreateComponentResponse":{
964
- "type":"structure",
965
- "members":{
966
- "requestId":{"shape":"NonEmptyString"},
967
- "clientToken":{"shape":"ClientToken"},
968
- "componentBuildVersionArn":{"shape":"ComponentBuildVersionArn"}
969
- }
970
- },
971
- "CreateDistributionConfigurationRequest":{
972
- "type":"structure",
973
- "required":[
974
- "name",
975
- "distributions",
976
- "clientToken"
977
- ],
978
- "members":{
979
- "name":{"shape":"ResourceName"},
980
- "description":{"shape":"NonEmptyString"},
981
- "distributions":{"shape":"DistributionList"},
982
- "tags":{"shape":"TagMap"},
983
- "clientToken":{
984
- "shape":"ClientToken",
985
- "idempotencyToken":true
986
- }
987
- }
988
- },
989
- "CreateDistributionConfigurationResponse":{
990
- "type":"structure",
991
- "members":{
992
- "requestId":{"shape":"NonEmptyString"},
993
- "clientToken":{"shape":"ClientToken"},
994
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"}
995
- }
996
- },
997
- "CreateImagePipelineRequest":{
998
- "type":"structure",
999
- "required":[
1000
- "name",
1001
- "imageRecipeArn",
1002
- "infrastructureConfigurationArn",
1003
- "clientToken"
1004
- ],
1005
- "members":{
1006
- "name":{"shape":"ResourceName"},
1007
- "description":{"shape":"NonEmptyString"},
1008
- "imageRecipeArn":{"shape":"ImageRecipeArn"},
1009
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"},
1010
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"},
1011
- "imageTestsConfiguration":{"shape":"ImageTestsConfiguration"},
1012
- "schedule":{"shape":"Schedule"},
1013
- "status":{"shape":"PipelineStatus"},
1014
- "tags":{"shape":"TagMap"},
1015
- "clientToken":{
1016
- "shape":"ClientToken",
1017
- "idempotencyToken":true
1018
- }
1019
- }
1020
- },
1021
- "CreateImagePipelineResponse":{
1022
- "type":"structure",
1023
- "members":{
1024
- "requestId":{"shape":"NonEmptyString"},
1025
- "clientToken":{"shape":"ClientToken"},
1026
- "imagePipelineArn":{"shape":"ImagePipelineArn"}
1027
- }
1028
- },
1029
- "CreateImageRecipeRequest":{
1030
- "type":"structure",
1031
- "required":[
1032
- "name",
1033
- "semanticVersion",
1034
- "components",
1035
- "parentImage",
1036
- "clientToken"
1037
- ],
1038
- "members":{
1039
- "name":{"shape":"ResourceName"},
1040
- "description":{"shape":"NonEmptyString"},
1041
- "semanticVersion":{"shape":"VersionNumber"},
1042
- "components":{"shape":"ComponentConfigurationList"},
1043
- "parentImage":{"shape":"NonEmptyString"},
1044
- "blockDeviceMappings":{"shape":"InstanceBlockDeviceMappings"},
1045
- "tags":{"shape":"TagMap"},
1046
- "clientToken":{
1047
- "shape":"ClientToken",
1048
- "idempotencyToken":true
1049
- }
1050
- }
1051
- },
1052
- "CreateImageRecipeResponse":{
1053
- "type":"structure",
1054
- "members":{
1055
- "requestId":{"shape":"NonEmptyString"},
1056
- "clientToken":{"shape":"ClientToken"},
1057
- "imageRecipeArn":{"shape":"ImageRecipeArn"}
1058
- }
1059
- },
1060
- "CreateImageRequest":{
1061
- "type":"structure",
1062
- "required":[
1063
- "imageRecipeArn",
1064
- "infrastructureConfigurationArn",
1065
- "clientToken"
1066
- ],
1067
- "members":{
1068
- "imageRecipeArn":{"shape":"ImageRecipeArn"},
1069
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"},
1070
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"},
1071
- "imageTestsConfiguration":{"shape":"ImageTestsConfiguration"},
1072
- "tags":{"shape":"TagMap"},
1073
- "clientToken":{
1074
- "shape":"ClientToken",
1075
- "idempotencyToken":true
1076
- }
1077
- }
1078
- },
1079
- "CreateImageResponse":{
1080
- "type":"structure",
1081
- "members":{
1082
- "requestId":{"shape":"NonEmptyString"},
1083
- "clientToken":{"shape":"ClientToken"},
1084
- "imageBuildVersionArn":{"shape":"ImageBuildVersionArn"}
1085
- }
1086
- },
1087
- "CreateInfrastructureConfigurationRequest":{
1088
- "type":"structure",
1089
- "required":[
1090
- "name",
1091
- "instanceProfileName",
1092
- "clientToken"
1093
- ],
1094
- "members":{
1095
- "name":{"shape":"ResourceName"},
1096
- "description":{"shape":"NonEmptyString"},
1097
- "instanceTypes":{"shape":"InstanceTypeList"},
1098
- "instanceProfileName":{"shape":"NonEmptyString"},
1099
- "securityGroupIds":{"shape":"SecurityGroupIds"},
1100
- "subnetId":{"shape":"NonEmptyString"},
1101
- "logging":{"shape":"Logging"},
1102
- "keyPair":{"shape":"NonEmptyString"},
1103
- "terminateInstanceOnFailure":{"shape":"NullableBoolean"},
1104
- "snsTopicArn":{"shape":"NonEmptyString"},
1105
- "tags":{"shape":"TagMap"},
1106
- "clientToken":{
1107
- "shape":"ClientToken",
1108
- "idempotencyToken":true
1109
- }
1110
- }
1111
- },
1112
- "CreateInfrastructureConfigurationResponse":{
1113
- "type":"structure",
1114
- "members":{
1115
- "requestId":{"shape":"NonEmptyString"},
1116
- "clientToken":{"shape":"ClientToken"},
1117
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"}
1118
- }
1119
- },
1120
- "DateTime":{"type":"string"},
1121
- "DeleteComponentRequest":{
1122
- "type":"structure",
1123
- "required":["componentBuildVersionArn"],
1124
- "members":{
1125
- "componentBuildVersionArn":{
1126
- "shape":"ComponentBuildVersionArn",
1127
- "location":"querystring",
1128
- "locationName":"componentBuildVersionArn"
1129
- }
1130
- }
1131
- },
1132
- "DeleteComponentResponse":{
1133
- "type":"structure",
1134
- "members":{
1135
- "requestId":{"shape":"NonEmptyString"},
1136
- "componentBuildVersionArn":{"shape":"ComponentBuildVersionArn"}
1137
- }
1138
- },
1139
- "DeleteDistributionConfigurationRequest":{
1140
- "type":"structure",
1141
- "required":["distributionConfigurationArn"],
1142
- "members":{
1143
- "distributionConfigurationArn":{
1144
- "shape":"DistributionConfigurationArn",
1145
- "location":"querystring",
1146
- "locationName":"distributionConfigurationArn"
1147
- }
1148
- }
1149
- },
1150
- "DeleteDistributionConfigurationResponse":{
1151
- "type":"structure",
1152
- "members":{
1153
- "requestId":{"shape":"NonEmptyString"},
1154
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"}
1155
- }
1156
- },
1157
- "DeleteImagePipelineRequest":{
1158
- "type":"structure",
1159
- "required":["imagePipelineArn"],
1160
- "members":{
1161
- "imagePipelineArn":{
1162
- "shape":"ImagePipelineArn",
1163
- "location":"querystring",
1164
- "locationName":"imagePipelineArn"
1165
- }
1166
- }
1167
- },
1168
- "DeleteImagePipelineResponse":{
1169
- "type":"structure",
1170
- "members":{
1171
- "requestId":{"shape":"NonEmptyString"},
1172
- "imagePipelineArn":{"shape":"ImagePipelineArn"}
1173
- }
1174
- },
1175
- "DeleteImageRecipeRequest":{
1176
- "type":"structure",
1177
- "required":["imageRecipeArn"],
1178
- "members":{
1179
- "imageRecipeArn":{
1180
- "shape":"ImageRecipeArn",
1181
- "location":"querystring",
1182
- "locationName":"imageRecipeArn"
1183
- }
1184
- }
1185
- },
1186
- "DeleteImageRecipeResponse":{
1187
- "type":"structure",
1188
- "members":{
1189
- "requestId":{"shape":"NonEmptyString"},
1190
- "imageRecipeArn":{"shape":"ImageRecipeArn"}
1191
- }
1192
- },
1193
- "DeleteImageRequest":{
1194
- "type":"structure",
1195
- "required":["imageBuildVersionArn"],
1196
- "members":{
1197
- "imageBuildVersionArn":{
1198
- "shape":"ImageBuildVersionArn",
1199
- "location":"querystring",
1200
- "locationName":"imageBuildVersionArn"
1201
- }
1202
- }
1203
- },
1204
- "DeleteImageResponse":{
1205
- "type":"structure",
1206
- "members":{
1207
- "requestId":{"shape":"NonEmptyString"},
1208
- "imageBuildVersionArn":{"shape":"ImageBuildVersionArn"}
1209
- }
1210
- },
1211
- "DeleteInfrastructureConfigurationRequest":{
1212
- "type":"structure",
1213
- "required":["infrastructureConfigurationArn"],
1214
- "members":{
1215
- "infrastructureConfigurationArn":{
1216
- "shape":"InfrastructureConfigurationArn",
1217
- "location":"querystring",
1218
- "locationName":"infrastructureConfigurationArn"
1219
- }
1220
- }
1221
- },
1222
- "DeleteInfrastructureConfigurationResponse":{
1223
- "type":"structure",
1224
- "members":{
1225
- "requestId":{"shape":"NonEmptyString"},
1226
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"}
1227
- }
1228
- },
1229
- "Distribution":{
1230
- "type":"structure",
1231
- "required":["region"],
1232
- "members":{
1233
- "region":{"shape":"NonEmptyString"},
1234
- "amiDistributionConfiguration":{"shape":"AmiDistributionConfiguration"},
1235
- "licenseConfigurationArns":{"shape":"ArnList"}
1236
- }
1237
- },
1238
- "DistributionConfiguration":{
1239
- "type":"structure",
1240
- "required":["timeoutMinutes"],
1241
- "members":{
1242
- "arn":{"shape":"ImageBuilderArn"},
1243
- "name":{"shape":"ResourceName"},
1244
- "description":{"shape":"NonEmptyString"},
1245
- "distributions":{"shape":"DistributionList"},
1246
- "timeoutMinutes":{"shape":"DistributionTimeoutMinutes"},
1247
- "dateCreated":{"shape":"DateTime"},
1248
- "dateUpdated":{"shape":"DateTime"},
1249
- "tags":{"shape":"TagMap"}
1250
- }
1251
- },
1252
- "DistributionConfigurationArn":{
1253
- "type":"string",
1254
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):distribution-configuration/[a-z0-9-_]+$"
1255
- },
1256
- "DistributionConfigurationSummary":{
1257
- "type":"structure",
1258
- "members":{
1259
- "arn":{"shape":"ImageBuilderArn"},
1260
- "name":{"shape":"ResourceName"},
1261
- "description":{"shape":"NonEmptyString"},
1262
- "dateCreated":{"shape":"DateTime"},
1263
- "dateUpdated":{"shape":"DateTime"},
1264
- "tags":{"shape":"TagMap"}
1265
- }
1266
- },
1267
- "DistributionConfigurationSummaryList":{
1268
- "type":"list",
1269
- "member":{"shape":"DistributionConfigurationSummary"}
1270
- },
1271
- "DistributionList":{
1272
- "type":"list",
1273
- "member":{"shape":"Distribution"}
1274
- },
1275
- "DistributionTimeoutMinutes":{
1276
- "type":"integer",
1277
- "max":720,
1278
- "min":30
1279
- },
1280
- "EbsInstanceBlockDeviceSpecification":{
1281
- "type":"structure",
1282
- "members":{
1283
- "encrypted":{"shape":"NullableBoolean"},
1284
- "deleteOnTermination":{"shape":"NullableBoolean"},
1285
- "iops":{"shape":"EbsIopsInteger"},
1286
- "kmsKeyId":{"shape":"NonEmptyString"},
1287
- "snapshotId":{"shape":"NonEmptyString"},
1288
- "volumeSize":{"shape":"EbsVolumeSizeInteger"},
1289
- "volumeType":{"shape":"EbsVolumeType"}
1290
- }
1291
- },
1292
- "EbsIopsInteger":{
1293
- "type":"integer",
1294
- "max":10000,
1295
- "min":100
1296
- },
1297
- "EbsVolumeSizeInteger":{
1298
- "type":"integer",
1299
- "max":16000,
1300
- "min":1
1301
- },
1302
- "EbsVolumeType":{
1303
- "type":"string",
1304
- "enum":[
1305
- "standard",
1306
- "io1",
1307
- "gp2",
1308
- "sc1",
1309
- "st1"
1310
- ]
1311
- },
1312
- "ErrorMessage":{"type":"string"},
1313
- "Filter":{
1314
- "type":"structure",
1315
- "members":{
1316
- "name":{"shape":"FilterName"},
1317
- "values":{"shape":"FilterValues"}
1318
- }
1319
- },
1320
- "FilterList":{
1321
- "type":"list",
1322
- "member":{"shape":"Filter"},
1323
- "max":10,
1324
- "min":1
1325
- },
1326
- "FilterName":{
1327
- "type":"string",
1328
- "pattern":"^[a-zA-Z]{1,1024}$"
1329
- },
1330
- "FilterValue":{
1331
- "type":"string",
1332
- "pattern":"^[0-9a-zA-Z./_ :-]{1,1024}$"
1333
- },
1334
- "FilterValues":{
1335
- "type":"list",
1336
- "member":{"shape":"FilterValue"},
1337
- "max":10,
1338
- "min":1
1339
- },
1340
- "ForbiddenException":{
1341
- "type":"structure",
1342
- "members":{
1343
- "message":{"shape":"ErrorMessage"}
1344
- },
1345
- "error":{"httpStatusCode":403},
1346
- "exception":true
1347
- },
1348
- "GetComponentPolicyRequest":{
1349
- "type":"structure",
1350
- "required":["componentArn"],
1351
- "members":{
1352
- "componentArn":{
1353
- "shape":"ComponentBuildVersionArn",
1354
- "location":"querystring",
1355
- "locationName":"componentArn"
1356
- }
1357
- }
1358
- },
1359
- "GetComponentPolicyResponse":{
1360
- "type":"structure",
1361
- "members":{
1362
- "requestId":{"shape":"NonEmptyString"},
1363
- "policy":{"shape":"NonEmptyString"}
1364
- }
1365
- },
1366
- "GetComponentRequest":{
1367
- "type":"structure",
1368
- "required":["componentBuildVersionArn"],
1369
- "members":{
1370
- "componentBuildVersionArn":{
1371
- "shape":"ComponentBuildVersionArn",
1372
- "location":"querystring",
1373
- "locationName":"componentBuildVersionArn"
1374
- }
1375
- }
1376
- },
1377
- "GetComponentResponse":{
1378
- "type":"structure",
1379
- "members":{
1380
- "requestId":{"shape":"NonEmptyString"},
1381
- "component":{"shape":"Component"}
1382
- }
1383
- },
1384
- "GetDistributionConfigurationRequest":{
1385
- "type":"structure",
1386
- "required":["distributionConfigurationArn"],
1387
- "members":{
1388
- "distributionConfigurationArn":{
1389
- "shape":"DistributionConfigurationArn",
1390
- "location":"querystring",
1391
- "locationName":"distributionConfigurationArn"
1392
- }
1393
- }
1394
- },
1395
- "GetDistributionConfigurationResponse":{
1396
- "type":"structure",
1397
- "members":{
1398
- "requestId":{"shape":"NonEmptyString"},
1399
- "distributionConfiguration":{"shape":"DistributionConfiguration"}
1400
- }
1401
- },
1402
- "GetImagePipelineRequest":{
1403
- "type":"structure",
1404
- "required":["imagePipelineArn"],
1405
- "members":{
1406
- "imagePipelineArn":{
1407
- "shape":"ImagePipelineArn",
1408
- "location":"querystring",
1409
- "locationName":"imagePipelineArn"
1410
- }
1411
- }
1412
- },
1413
- "GetImagePipelineResponse":{
1414
- "type":"structure",
1415
- "members":{
1416
- "requestId":{"shape":"NonEmptyString"},
1417
- "imagePipeline":{"shape":"ImagePipeline"}
1418
- }
1419
- },
1420
- "GetImagePolicyRequest":{
1421
- "type":"structure",
1422
- "required":["imageArn"],
1423
- "members":{
1424
- "imageArn":{
1425
- "shape":"ImageBuildVersionArn",
1426
- "location":"querystring",
1427
- "locationName":"imageArn"
1428
- }
1429
- }
1430
- },
1431
- "GetImagePolicyResponse":{
1432
- "type":"structure",
1433
- "members":{
1434
- "requestId":{"shape":"NonEmptyString"},
1435
- "policy":{"shape":"NonEmptyString"}
1436
- }
1437
- },
1438
- "GetImageRecipePolicyRequest":{
1439
- "type":"structure",
1440
- "required":["imageRecipeArn"],
1441
- "members":{
1442
- "imageRecipeArn":{
1443
- "shape":"ImageRecipeArn",
1444
- "location":"querystring",
1445
- "locationName":"imageRecipeArn"
1446
- }
1447
- }
1448
- },
1449
- "GetImageRecipePolicyResponse":{
1450
- "type":"structure",
1451
- "members":{
1452
- "requestId":{"shape":"NonEmptyString"},
1453
- "policy":{"shape":"NonEmptyString"}
1454
- }
1455
- },
1456
- "GetImageRecipeRequest":{
1457
- "type":"structure",
1458
- "required":["imageRecipeArn"],
1459
- "members":{
1460
- "imageRecipeArn":{
1461
- "shape":"ImageRecipeArn",
1462
- "location":"querystring",
1463
- "locationName":"imageRecipeArn"
1464
- }
1465
- }
1466
- },
1467
- "GetImageRecipeResponse":{
1468
- "type":"structure",
1469
- "members":{
1470
- "requestId":{"shape":"NonEmptyString"},
1471
- "imageRecipe":{"shape":"ImageRecipe"}
1472
- }
1473
- },
1474
- "GetImageRequest":{
1475
- "type":"structure",
1476
- "required":["imageBuildVersionArn"],
1477
- "members":{
1478
- "imageBuildVersionArn":{
1479
- "shape":"ImageBuildVersionArn",
1480
- "location":"querystring",
1481
- "locationName":"imageBuildVersionArn"
1482
- }
1483
- }
1484
- },
1485
- "GetImageResponse":{
1486
- "type":"structure",
1487
- "members":{
1488
- "requestId":{"shape":"NonEmptyString"},
1489
- "image":{"shape":"Image"}
1490
- }
1491
- },
1492
- "GetInfrastructureConfigurationRequest":{
1493
- "type":"structure",
1494
- "required":["infrastructureConfigurationArn"],
1495
- "members":{
1496
- "infrastructureConfigurationArn":{
1497
- "shape":"InfrastructureConfigurationArn",
1498
- "location":"querystring",
1499
- "locationName":"infrastructureConfigurationArn"
1500
- }
1501
- }
1502
- },
1503
- "GetInfrastructureConfigurationResponse":{
1504
- "type":"structure",
1505
- "members":{
1506
- "requestId":{"shape":"NonEmptyString"},
1507
- "infrastructureConfiguration":{"shape":"InfrastructureConfiguration"}
1508
- }
1509
- },
1510
- "IdempotentParameterMismatchException":{
1511
- "type":"structure",
1512
- "members":{
1513
- "message":{"shape":"ErrorMessage"}
1514
- },
1515
- "error":{"httpStatusCode":400},
1516
- "exception":true
1517
- },
1518
- "Image":{
1519
- "type":"structure",
1520
- "members":{
1521
- "arn":{"shape":"ImageBuilderArn"},
1522
- "name":{"shape":"ResourceName"},
1523
- "version":{"shape":"VersionNumber"},
1524
- "platform":{"shape":"Platform"},
1525
- "state":{"shape":"ImageState"},
1526
- "imageRecipe":{"shape":"ImageRecipe"},
1527
- "sourcePipelineName":{"shape":"ResourceName"},
1528
- "sourcePipelineArn":{"shape":"Arn"},
1529
- "infrastructureConfiguration":{"shape":"InfrastructureConfiguration"},
1530
- "distributionConfiguration":{"shape":"DistributionConfiguration"},
1531
- "imageTestsConfiguration":{"shape":"ImageTestsConfiguration"},
1532
- "dateCreated":{"shape":"DateTime"},
1533
- "outputResources":{"shape":"OutputResources"},
1534
- "tags":{"shape":"TagMap"}
1535
- }
1536
- },
1537
- "ImageBuildVersionArn":{
1538
- "type":"string",
1539
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):image/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+/\\d+$"
1540
- },
1541
- "ImageBuilderArn":{
1542
- "type":"string",
1543
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):(?:image-recipe|infrastructure-configuration|distribution-configuration|component|image|image-pipeline)/[a-z0-9-_]+(?:/(?:(?:x|\\d+)\\.(?:x|\\d+)\\.(?:x|\\d+))(?:/\\d+)?)?$"
1544
- },
1545
- "ImagePipeline":{
1546
- "type":"structure",
1547
- "members":{
1548
- "arn":{"shape":"ImageBuilderArn"},
1549
- "name":{"shape":"ResourceName"},
1550
- "description":{"shape":"NonEmptyString"},
1551
- "platform":{"shape":"Platform"},
1552
- "imageRecipeArn":{"shape":"Arn"},
1553
- "infrastructureConfigurationArn":{"shape":"Arn"},
1554
- "distributionConfigurationArn":{"shape":"Arn"},
1555
- "imageTestsConfiguration":{"shape":"ImageTestsConfiguration"},
1556
- "schedule":{"shape":"Schedule"},
1557
- "status":{"shape":"PipelineStatus"},
1558
- "dateCreated":{"shape":"DateTime"},
1559
- "dateUpdated":{"shape":"DateTime"},
1560
- "dateLastRun":{"shape":"DateTime"},
1561
- "dateNextRun":{"shape":"DateTime"},
1562
- "tags":{"shape":"TagMap"}
1563
- }
1564
- },
1565
- "ImagePipelineArn":{
1566
- "type":"string",
1567
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):image-pipeline/[a-z0-9-_]+$"
1568
- },
1569
- "ImagePipelineList":{
1570
- "type":"list",
1571
- "member":{"shape":"ImagePipeline"}
1572
- },
1573
- "ImageRecipe":{
1574
- "type":"structure",
1575
- "members":{
1576
- "arn":{"shape":"ImageBuilderArn"},
1577
- "name":{"shape":"ResourceName"},
1578
- "description":{"shape":"NonEmptyString"},
1579
- "platform":{"shape":"Platform"},
1580
- "owner":{"shape":"NonEmptyString"},
1581
- "version":{"shape":"VersionNumber"},
1582
- "components":{"shape":"ComponentConfigurationList"},
1583
- "parentImage":{"shape":"NonEmptyString"},
1584
- "blockDeviceMappings":{"shape":"InstanceBlockDeviceMappings"},
1585
- "dateCreated":{"shape":"DateTime"},
1586
- "tags":{"shape":"TagMap"}
1587
- }
1588
- },
1589
- "ImageRecipeArn":{
1590
- "type":"string",
1591
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):image-recipe/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+$"
1592
- },
1593
- "ImageRecipeSummary":{
1594
- "type":"structure",
1595
- "members":{
1596
- "arn":{"shape":"ImageBuilderArn"},
1597
- "name":{"shape":"ResourceName"},
1598
- "platform":{"shape":"Platform"},
1599
- "owner":{"shape":"NonEmptyString"},
1600
- "parentImage":{"shape":"NonEmptyString"},
1601
- "dateCreated":{"shape":"DateTime"},
1602
- "tags":{"shape":"TagMap"}
1603
- }
1604
- },
1605
- "ImageRecipeSummaryList":{
1606
- "type":"list",
1607
- "member":{"shape":"ImageRecipeSummary"}
1608
- },
1609
- "ImageState":{
1610
- "type":"structure",
1611
- "members":{
1612
- "status":{"shape":"ImageStatus"},
1613
- "reason":{"shape":"NonEmptyString"}
1614
- }
1615
- },
1616
- "ImageStatus":{
1617
- "type":"string",
1618
- "enum":[
1619
- "PENDING",
1620
- "CREATING",
1621
- "BUILDING",
1622
- "TESTING",
1623
- "DISTRIBUTING",
1624
- "INTEGRATING",
1625
- "AVAILABLE",
1626
- "CANCELLED",
1627
- "FAILED",
1628
- "DEPRECATED",
1629
- "DELETED"
1630
- ]
1631
- },
1632
- "ImageSummary":{
1633
- "type":"structure",
1634
- "members":{
1635
- "arn":{"shape":"ImageBuilderArn"},
1636
- "name":{"shape":"ResourceName"},
1637
- "version":{"shape":"VersionNumber"},
1638
- "platform":{"shape":"Platform"},
1639
- "state":{"shape":"ImageState"},
1640
- "owner":{"shape":"NonEmptyString"},
1641
- "dateCreated":{"shape":"DateTime"},
1642
- "outputResources":{"shape":"OutputResources"},
1643
- "tags":{"shape":"TagMap"}
1644
- }
1645
- },
1646
- "ImageSummaryList":{
1647
- "type":"list",
1648
- "member":{"shape":"ImageSummary"}
1649
- },
1650
- "ImageTestsConfiguration":{
1651
- "type":"structure",
1652
- "members":{
1653
- "imageTestsEnabled":{"shape":"NullableBoolean"},
1654
- "timeoutMinutes":{"shape":"ImageTestsTimeoutMinutes"}
1655
- }
1656
- },
1657
- "ImageTestsTimeoutMinutes":{
1658
- "type":"integer",
1659
- "max":1440,
1660
- "min":60
1661
- },
1662
- "ImageVersion":{
1663
- "type":"structure",
1664
- "members":{
1665
- "arn":{"shape":"ImageBuilderArn"},
1666
- "name":{"shape":"ResourceName"},
1667
- "version":{"shape":"VersionNumber"},
1668
- "platform":{"shape":"Platform"},
1669
- "owner":{"shape":"NonEmptyString"},
1670
- "dateCreated":{"shape":"DateTime"}
1671
- }
1672
- },
1673
- "ImageVersionArn":{
1674
- "type":"string",
1675
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):image/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+$"
1676
- },
1677
- "ImageVersionList":{
1678
- "type":"list",
1679
- "member":{"shape":"ImageVersion"}
1680
- },
1681
- "ImportComponentRequest":{
1682
- "type":"structure",
1683
- "required":[
1684
- "name",
1685
- "semanticVersion",
1686
- "type",
1687
- "format",
1688
- "platform",
1689
- "clientToken"
1690
- ],
1691
- "members":{
1692
- "name":{"shape":"ResourceName"},
1693
- "semanticVersion":{"shape":"VersionNumber"},
1694
- "description":{"shape":"NonEmptyString"},
1695
- "changeDescription":{"shape":"NonEmptyString"},
1696
- "type":{"shape":"ComponentType"},
1697
- "format":{"shape":"ComponentFormat"},
1698
- "platform":{"shape":"Platform"},
1699
- "data":{"shape":"NonEmptyString"},
1700
- "uri":{"shape":"Uri"},
1701
- "kmsKeyId":{"shape":"NonEmptyString"},
1702
- "tags":{"shape":"TagMap"},
1703
- "clientToken":{
1704
- "shape":"ClientToken",
1705
- "idempotencyToken":true
1706
- }
1707
- }
1708
- },
1709
- "ImportComponentResponse":{
1710
- "type":"structure",
1711
- "members":{
1712
- "requestId":{"shape":"NonEmptyString"},
1713
- "clientToken":{"shape":"ClientToken"},
1714
- "componentBuildVersionArn":{"shape":"ComponentBuildVersionArn"}
1715
- }
1716
- },
1717
- "InfrastructureConfiguration":{
1718
- "type":"structure",
1719
- "members":{
1720
- "arn":{"shape":"ImageBuilderArn"},
1721
- "name":{"shape":"ResourceName"},
1722
- "description":{"shape":"NonEmptyString"},
1723
- "instanceTypes":{"shape":"InstanceTypeList"},
1724
- "instanceProfileName":{"shape":"NonEmptyString"},
1725
- "securityGroupIds":{"shape":"SecurityGroupIds"},
1726
- "subnetId":{"shape":"NonEmptyString"},
1727
- "logging":{"shape":"Logging"},
1728
- "keyPair":{"shape":"NonEmptyString"},
1729
- "terminateInstanceOnFailure":{"shape":"NullableBoolean"},
1730
- "snsTopicArn":{"shape":"NonEmptyString"},
1731
- "dateCreated":{"shape":"DateTime"},
1732
- "dateUpdated":{"shape":"DateTime"},
1733
- "tags":{"shape":"TagMap"}
1734
- }
1735
- },
1736
- "InfrastructureConfigurationArn":{
1737
- "type":"string",
1738
- "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):infrastructure-configuration/[a-z0-9-_]+$"
1739
- },
1740
- "InfrastructureConfigurationSummary":{
1741
- "type":"structure",
1742
- "members":{
1743
- "arn":{"shape":"ImageBuilderArn"},
1744
- "name":{"shape":"ResourceName"},
1745
- "description":{"shape":"NonEmptyString"},
1746
- "dateCreated":{"shape":"DateTime"},
1747
- "dateUpdated":{"shape":"DateTime"},
1748
- "tags":{"shape":"TagMap"}
1749
- }
1750
- },
1751
- "InfrastructureConfigurationSummaryList":{
1752
- "type":"list",
1753
- "member":{"shape":"InfrastructureConfigurationSummary"}
1754
- },
1755
- "InlineComponentData":{
1756
- "type":"string",
1757
- "max":16000,
1758
- "min":1
1759
- },
1760
- "InstanceBlockDeviceMapping":{
1761
- "type":"structure",
1762
- "members":{
1763
- "deviceName":{"shape":"NonEmptyString"},
1764
- "ebs":{"shape":"EbsInstanceBlockDeviceSpecification"},
1765
- "virtualName":{"shape":"NonEmptyString"},
1766
- "noDevice":{"shape":"NonEmptyString"}
1767
- }
1768
- },
1769
- "InstanceBlockDeviceMappings":{
1770
- "type":"list",
1771
- "member":{"shape":"InstanceBlockDeviceMapping"}
1772
- },
1773
- "InstanceType":{"type":"string"},
1774
- "InstanceTypeList":{
1775
- "type":"list",
1776
- "member":{"shape":"InstanceType"}
1777
- },
1778
- "InvalidPaginationTokenException":{
1779
- "type":"structure",
1780
- "members":{
1781
- "message":{"shape":"ErrorMessage"}
1782
- },
1783
- "error":{"httpStatusCode":400},
1784
- "exception":true
1785
- },
1786
- "InvalidParameterCombinationException":{
1787
- "type":"structure",
1788
- "members":{
1789
- "message":{"shape":"ErrorMessage"}
1790
- },
1791
- "error":{"httpStatusCode":400},
1792
- "exception":true
1793
- },
1794
- "InvalidParameterException":{
1795
- "type":"structure",
1796
- "members":{
1797
- "message":{"shape":"ErrorMessage"}
1798
- },
1799
- "error":{"httpStatusCode":400},
1800
- "exception":true
1801
- },
1802
- "InvalidParameterValueException":{
1803
- "type":"structure",
1804
- "members":{
1805
- "message":{"shape":"ErrorMessage"}
1806
- },
1807
- "error":{"httpStatusCode":400},
1808
- "exception":true
1809
- },
1810
- "InvalidRequestException":{
1811
- "type":"structure",
1812
- "members":{
1813
- "message":{"shape":"ErrorMessage"}
1814
- },
1815
- "error":{"httpStatusCode":400},
1816
- "exception":true
1817
- },
1818
- "InvalidVersionNumberException":{
1819
- "type":"structure",
1820
- "members":{
1821
- "message":{"shape":"ErrorMessage"}
1822
- },
1823
- "error":{"httpStatusCode":400},
1824
- "exception":true
1825
- },
1826
- "LaunchPermissionConfiguration":{
1827
- "type":"structure",
1828
- "members":{
1829
- "userIds":{"shape":"AccountList"},
1830
- "userGroups":{"shape":"StringList"}
1831
- }
1832
- },
1833
- "ListComponentBuildVersionsRequest":{
1834
- "type":"structure",
1835
- "required":["componentVersionArn"],
1836
- "members":{
1837
- "componentVersionArn":{"shape":"ComponentVersionArn"},
1838
- "maxResults":{
1839
- "shape":"RestrictedInteger",
1840
- "box":true
1841
- },
1842
- "nextToken":{"shape":"NonEmptyString"}
1843
- }
1844
- },
1845
- "ListComponentBuildVersionsResponse":{
1846
- "type":"structure",
1847
- "members":{
1848
- "requestId":{"shape":"NonEmptyString"},
1849
- "componentSummaryList":{"shape":"ComponentSummaryList"},
1850
- "nextToken":{"shape":"NonEmptyString"}
1851
- }
1852
- },
1853
- "ListComponentsRequest":{
1854
- "type":"structure",
1855
- "members":{
1856
- "owner":{"shape":"Ownership"},
1857
- "filters":{"shape":"FilterList"},
1858
- "maxResults":{
1859
- "shape":"RestrictedInteger",
1860
- "box":true
1861
- },
1862
- "nextToken":{"shape":"NonEmptyString"}
1863
- }
1864
- },
1865
- "ListComponentsResponse":{
1866
- "type":"structure",
1867
- "members":{
1868
- "requestId":{"shape":"NonEmptyString"},
1869
- "componentVersionList":{"shape":"ComponentVersionList"},
1870
- "nextToken":{"shape":"NonEmptyString"}
1871
- }
1872
- },
1873
- "ListDistributionConfigurationsRequest":{
1874
- "type":"structure",
1875
- "members":{
1876
- "filters":{"shape":"FilterList"},
1877
- "maxResults":{
1878
- "shape":"RestrictedInteger",
1879
- "box":true
1880
- },
1881
- "nextToken":{"shape":"NonEmptyString"}
1882
- }
1883
- },
1884
- "ListDistributionConfigurationsResponse":{
1885
- "type":"structure",
1886
- "members":{
1887
- "requestId":{"shape":"NonEmptyString"},
1888
- "distributionConfigurationSummaryList":{"shape":"DistributionConfigurationSummaryList"},
1889
- "nextToken":{"shape":"NonEmptyString"}
1890
- }
1891
- },
1892
- "ListImageBuildVersionsRequest":{
1893
- "type":"structure",
1894
- "required":["imageVersionArn"],
1895
- "members":{
1896
- "imageVersionArn":{"shape":"ImageVersionArn"},
1897
- "filters":{"shape":"FilterList"},
1898
- "maxResults":{
1899
- "shape":"RestrictedInteger",
1900
- "box":true
1901
- },
1902
- "nextToken":{"shape":"NonEmptyString"}
1903
- }
1904
- },
1905
- "ListImageBuildVersionsResponse":{
1906
- "type":"structure",
1907
- "members":{
1908
- "requestId":{"shape":"NonEmptyString"},
1909
- "imageSummaryList":{"shape":"ImageSummaryList"},
1910
- "nextToken":{"shape":"NonEmptyString"}
1911
- }
1912
- },
1913
- "ListImagePipelineImagesRequest":{
1914
- "type":"structure",
1915
- "members":{
1916
- "imagePipelineArn":{"shape":"ImagePipelineArn"},
1917
- "filters":{"shape":"FilterList"},
1918
- "maxResults":{
1919
- "shape":"RestrictedInteger",
1920
- "box":true
1921
- },
1922
- "nextToken":{"shape":"NonEmptyString"}
1923
- }
1924
- },
1925
- "ListImagePipelineImagesResponse":{
1926
- "type":"structure",
1927
- "members":{
1928
- "requestId":{"shape":"NonEmptyString"},
1929
- "imageSummaryList":{"shape":"ImageSummaryList"},
1930
- "nextToken":{"shape":"NonEmptyString"}
1931
- }
1932
- },
1933
- "ListImagePipelinesRequest":{
1934
- "type":"structure",
1935
- "members":{
1936
- "filters":{"shape":"FilterList"},
1937
- "maxResults":{
1938
- "shape":"RestrictedInteger",
1939
- "box":true
1940
- },
1941
- "nextToken":{"shape":"NonEmptyString"}
1942
- }
1943
- },
1944
- "ListImagePipelinesResponse":{
1945
- "type":"structure",
1946
- "members":{
1947
- "requestId":{"shape":"NonEmptyString"},
1948
- "imagePipelineList":{"shape":"ImagePipelineList"},
1949
- "nextToken":{"shape":"NonEmptyString"}
1950
- }
1951
- },
1952
- "ListImageRecipesRequest":{
1953
- "type":"structure",
1954
- "members":{
1955
- "owner":{"shape":"Ownership"},
1956
- "filters":{"shape":"FilterList"},
1957
- "maxResults":{
1958
- "shape":"RestrictedInteger",
1959
- "box":true
1960
- },
1961
- "nextToken":{"shape":"NonEmptyString"}
1962
- }
1963
- },
1964
- "ListImageRecipesResponse":{
1965
- "type":"structure",
1966
- "members":{
1967
- "requestId":{"shape":"NonEmptyString"},
1968
- "imageRecipeSummaryList":{"shape":"ImageRecipeSummaryList"},
1969
- "nextToken":{"shape":"NonEmptyString"}
1970
- }
1971
- },
1972
- "ListImagesRequest":{
1973
- "type":"structure",
1974
- "members":{
1975
- "owner":{"shape":"Ownership"},
1976
- "filters":{"shape":"FilterList"},
1977
- "maxResults":{
1978
- "shape":"RestrictedInteger",
1979
- "box":true
1980
- },
1981
- "nextToken":{"shape":"NonEmptyString"}
1982
- }
1983
- },
1984
- "ListImagesResponse":{
1985
- "type":"structure",
1986
- "members":{
1987
- "requestId":{"shape":"NonEmptyString"},
1988
- "imageVersionList":{"shape":"ImageVersionList"},
1989
- "nextToken":{"shape":"NonEmptyString"}
1990
- }
1991
- },
1992
- "ListInfrastructureConfigurationsRequest":{
1993
- "type":"structure",
1994
- "members":{
1995
- "filters":{"shape":"FilterList"},
1996
- "maxResults":{
1997
- "shape":"RestrictedInteger",
1998
- "box":true
1999
- },
2000
- "nextToken":{"shape":"NonEmptyString"}
2001
- }
2002
- },
2003
- "ListInfrastructureConfigurationsResponse":{
2004
- "type":"structure",
2005
- "members":{
2006
- "requestId":{"shape":"NonEmptyString"},
2007
- "infrastructureConfigurationSummaryList":{"shape":"InfrastructureConfigurationSummaryList"},
2008
- "nextToken":{"shape":"NonEmptyString"}
2009
- }
2010
- },
2011
- "ListTagsForResourceRequest":{
2012
- "type":"structure",
2013
- "required":["resourceArn"],
2014
- "members":{
2015
- "resourceArn":{
2016
- "shape":"ImageBuilderArn",
2017
- "location":"uri",
2018
- "locationName":"resourceArn"
2019
- }
2020
- }
2021
- },
2022
- "ListTagsForResourceResponse":{
2023
- "type":"structure",
2024
- "members":{
2025
- "tags":{"shape":"TagMap"}
2026
- }
2027
- },
2028
- "Logging":{
2029
- "type":"structure",
2030
- "members":{
2031
- "s3Logs":{"shape":"S3Logs"}
2032
- }
2033
- },
2034
- "NonEmptyString":{
2035
- "type":"string",
2036
- "max":1024,
2037
- "min":1
2038
- },
2039
- "NullableBoolean":{"type":"boolean"},
2040
- "OutputResources":{
2041
- "type":"structure",
2042
- "members":{
2043
- "amis":{"shape":"AmiList"}
2044
- }
2045
- },
2046
- "Ownership":{
2047
- "type":"string",
2048
- "enum":[
2049
- "Self",
2050
- "Shared",
2051
- "Amazon"
2052
- ]
2053
- },
2054
- "PipelineExecutionStartCondition":{
2055
- "type":"string",
2056
- "enum":[
2057
- "EXPRESSION_MATCH_ONLY",
2058
- "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"
2059
- ]
2060
- },
2061
- "PipelineStatus":{
2062
- "type":"string",
2063
- "enum":[
2064
- "DISABLED",
2065
- "ENABLED"
2066
- ]
2067
- },
2068
- "Platform":{
2069
- "type":"string",
2070
- "enum":[
2071
- "Windows",
2072
- "Linux"
2073
- ]
2074
- },
2075
- "PutComponentPolicyRequest":{
2076
- "type":"structure",
2077
- "required":[
2078
- "componentArn",
2079
- "policy"
2080
- ],
2081
- "members":{
2082
- "componentArn":{"shape":"ComponentBuildVersionArn"},
2083
- "policy":{"shape":"NonEmptyString"}
2084
- }
2085
- },
2086
- "PutComponentPolicyResponse":{
2087
- "type":"structure",
2088
- "members":{
2089
- "requestId":{"shape":"NonEmptyString"},
2090
- "componentArn":{"shape":"ComponentBuildVersionArn"}
2091
- }
2092
- },
2093
- "PutImagePolicyRequest":{
2094
- "type":"structure",
2095
- "required":[
2096
- "imageArn",
2097
- "policy"
2098
- ],
2099
- "members":{
2100
- "imageArn":{"shape":"ImageBuildVersionArn"},
2101
- "policy":{"shape":"NonEmptyString"}
2102
- }
2103
- },
2104
- "PutImagePolicyResponse":{
2105
- "type":"structure",
2106
- "members":{
2107
- "requestId":{"shape":"NonEmptyString"},
2108
- "imageArn":{"shape":"ImageBuildVersionArn"}
2109
- }
2110
- },
2111
- "PutImageRecipePolicyRequest":{
2112
- "type":"structure",
2113
- "required":[
2114
- "imageRecipeArn",
2115
- "policy"
2116
- ],
2117
- "members":{
2118
- "imageRecipeArn":{"shape":"ImageRecipeArn"},
2119
- "policy":{"shape":"NonEmptyString"}
2120
- }
2121
- },
2122
- "PutImageRecipePolicyResponse":{
2123
- "type":"structure",
2124
- "members":{
2125
- "requestId":{"shape":"NonEmptyString"},
2126
- "imageRecipeArn":{"shape":"ImageRecipeArn"}
2127
- }
2128
- },
2129
- "ResourceAlreadyExistsException":{
2130
- "type":"structure",
2131
- "members":{
2132
- "message":{"shape":"ErrorMessage"}
2133
- },
2134
- "error":{"httpStatusCode":400},
2135
- "exception":true
2136
- },
2137
- "ResourceDependencyException":{
2138
- "type":"structure",
2139
- "members":{
2140
- "message":{"shape":"ErrorMessage"}
2141
- },
2142
- "error":{"httpStatusCode":400},
2143
- "exception":true
2144
- },
2145
- "ResourceInUseException":{
2146
- "type":"structure",
2147
- "members":{
2148
- "message":{"shape":"ErrorMessage"}
2149
- },
2150
- "error":{"httpStatusCode":400},
2151
- "exception":true
2152
- },
2153
- "ResourceName":{
2154
- "type":"string",
2155
- "pattern":"^[-_A-Za-z-0-9][-_A-Za-z0-9 ]{1,126}[-_A-Za-z-0-9]$"
2156
- },
2157
- "ResourceNotFoundException":{
2158
- "type":"structure",
2159
- "members":{
2160
- "message":{"shape":"ErrorMessage"}
2161
- },
2162
- "error":{"httpStatusCode":404},
2163
- "exception":true
2164
- },
2165
- "RestrictedInteger":{
2166
- "type":"integer",
2167
- "max":25,
2168
- "min":1
2169
- },
2170
- "S3Logs":{
2171
- "type":"structure",
2172
- "members":{
2173
- "s3BucketName":{"shape":"NonEmptyString"},
2174
- "s3KeyPrefix":{"shape":"NonEmptyString"}
2175
- }
2176
- },
2177
- "Schedule":{
2178
- "type":"structure",
2179
- "members":{
2180
- "scheduleExpression":{"shape":"NonEmptyString"},
2181
- "pipelineExecutionStartCondition":{"shape":"PipelineExecutionStartCondition"}
2182
- }
2183
- },
2184
- "SecurityGroupIds":{
2185
- "type":"list",
2186
- "member":{"shape":"NonEmptyString"}
2187
- },
2188
- "ServiceException":{
2189
- "type":"structure",
2190
- "members":{
2191
- "message":{"shape":"ErrorMessage"}
2192
- },
2193
- "error":{"httpStatusCode":500},
2194
- "exception":true
2195
- },
2196
- "ServiceUnavailableException":{
2197
- "type":"structure",
2198
- "members":{
2199
- "message":{"shape":"ErrorMessage"}
2200
- },
2201
- "error":{"httpStatusCode":503},
2202
- "exception":true
2203
- },
2204
- "StartImagePipelineExecutionRequest":{
2205
- "type":"structure",
2206
- "required":[
2207
- "imagePipelineArn",
2208
- "clientToken"
2209
- ],
2210
- "members":{
2211
- "imagePipelineArn":{"shape":"ImagePipelineArn"},
2212
- "clientToken":{
2213
- "shape":"ClientToken",
2214
- "idempotencyToken":true
2215
- }
2216
- }
2217
- },
2218
- "StartImagePipelineExecutionResponse":{
2219
- "type":"structure",
2220
- "members":{
2221
- "requestId":{"shape":"NonEmptyString"},
2222
- "clientToken":{"shape":"ClientToken"},
2223
- "imageBuildVersionArn":{"shape":"ImageBuildVersionArn"}
2224
- }
2225
- },
2226
- "StringList":{
2227
- "type":"list",
2228
- "member":{"shape":"NonEmptyString"}
2229
- },
2230
- "TagKey":{
2231
- "type":"string",
2232
- "max":128,
2233
- "min":1,
2234
- "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
2235
- },
2236
- "TagKeyList":{
2237
- "type":"list",
2238
- "member":{"shape":"TagKey"},
2239
- "max":50,
2240
- "min":1
2241
- },
2242
- "TagMap":{
2243
- "type":"map",
2244
- "key":{"shape":"TagKey"},
2245
- "value":{"shape":"TagValue"},
2246
- "max":50,
2247
- "min":1
2248
- },
2249
- "TagResourceRequest":{
2250
- "type":"structure",
2251
- "required":[
2252
- "resourceArn",
2253
- "tags"
2254
- ],
2255
- "members":{
2256
- "resourceArn":{
2257
- "shape":"ImageBuilderArn",
2258
- "location":"uri",
2259
- "locationName":"resourceArn"
2260
- },
2261
- "tags":{"shape":"TagMap"}
2262
- }
2263
- },
2264
- "TagResourceResponse":{
2265
- "type":"structure",
2266
- "members":{
2267
- }
2268
- },
2269
- "TagValue":{
2270
- "type":"string",
2271
- "max":256
2272
- },
2273
- "UntagResourceRequest":{
2274
- "type":"structure",
2275
- "required":[
2276
- "resourceArn",
2277
- "tagKeys"
2278
- ],
2279
- "members":{
2280
- "resourceArn":{
2281
- "shape":"ImageBuilderArn",
2282
- "location":"uri",
2283
- "locationName":"resourceArn"
2284
- },
2285
- "tagKeys":{
2286
- "shape":"TagKeyList",
2287
- "location":"querystring",
2288
- "locationName":"tagKeys"
2289
- }
2290
- }
2291
- },
2292
- "UntagResourceResponse":{
2293
- "type":"structure",
2294
- "members":{
2295
- }
2296
- },
2297
- "UpdateDistributionConfigurationRequest":{
2298
- "type":"structure",
2299
- "required":[
2300
- "distributionConfigurationArn",
2301
- "clientToken"
2302
- ],
2303
- "members":{
2304
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"},
2305
- "description":{"shape":"NonEmptyString"},
2306
- "distributions":{"shape":"DistributionList"},
2307
- "clientToken":{
2308
- "shape":"ClientToken",
2309
- "idempotencyToken":true
2310
- }
2311
- }
2312
- },
2313
- "UpdateDistributionConfigurationResponse":{
2314
- "type":"structure",
2315
- "members":{
2316
- "requestId":{"shape":"NonEmptyString"},
2317
- "clientToken":{"shape":"ClientToken"},
2318
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"}
2319
- }
2320
- },
2321
- "UpdateImagePipelineRequest":{
2322
- "type":"structure",
2323
- "required":[
2324
- "imagePipelineArn",
2325
- "clientToken"
2326
- ],
2327
- "members":{
2328
- "imagePipelineArn":{"shape":"ImagePipelineArn"},
2329
- "description":{"shape":"NonEmptyString"},
2330
- "imageRecipeArn":{"shape":"ImageRecipeArn"},
2331
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"},
2332
- "distributionConfigurationArn":{"shape":"DistributionConfigurationArn"},
2333
- "imageTestsConfiguration":{"shape":"ImageTestsConfiguration"},
2334
- "schedule":{"shape":"Schedule"},
2335
- "status":{"shape":"PipelineStatus"},
2336
- "clientToken":{
2337
- "shape":"ClientToken",
2338
- "idempotencyToken":true
2339
- }
2340
- }
2341
- },
2342
- "UpdateImagePipelineResponse":{
2343
- "type":"structure",
2344
- "members":{
2345
- "requestId":{"shape":"NonEmptyString"},
2346
- "clientToken":{"shape":"ClientToken"},
2347
- "imagePipelineArn":{"shape":"ImagePipelineArn"}
2348
- }
2349
- },
2350
- "UpdateInfrastructureConfigurationRequest":{
2351
- "type":"structure",
2352
- "required":[
2353
- "infrastructureConfigurationArn",
2354
- "clientToken"
2355
- ],
2356
- "members":{
2357
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"},
2358
- "description":{"shape":"NonEmptyString"},
2359
- "instanceTypes":{"shape":"InstanceTypeList"},
2360
- "instanceProfileName":{"shape":"NonEmptyString"},
2361
- "securityGroupIds":{"shape":"SecurityGroupIds"},
2362
- "subnetId":{"shape":"NonEmptyString"},
2363
- "logging":{"shape":"Logging"},
2364
- "keyPair":{"shape":"NonEmptyString"},
2365
- "terminateInstanceOnFailure":{"shape":"NullableBoolean"},
2366
- "snsTopicArn":{"shape":"NonEmptyString"},
2367
- "clientToken":{
2368
- "shape":"ClientToken",
2369
- "idempotencyToken":true
2370
- }
2371
- }
2372
- },
2373
- "UpdateInfrastructureConfigurationResponse":{
2374
- "type":"structure",
2375
- "members":{
2376
- "requestId":{"shape":"NonEmptyString"},
2377
- "clientToken":{"shape":"ClientToken"},
2378
- "infrastructureConfigurationArn":{"shape":"InfrastructureConfigurationArn"}
2379
- }
2380
- },
2381
- "Uri":{"type":"string"},
2382
- "VersionNumber":{
2383
- "type":"string",
2384
- "pattern":"^[0-9]+\\.[0-9]+\\.[0-9]+$"
2385
- }
2386
- }
2387
- }