aws-sdk-core 2.11.502 → 3.94.0

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