aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,1833 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-11-01",
5
- "endpointPrefix":"kms",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"KMS",
9
- "serviceFullName":"AWS Key Management Service",
10
- "serviceId":"KMS",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"TrentService",
13
- "uid":"kms-2014-11-01"
14
- },
15
- "operations":{
16
- "CancelKeyDeletion":{
17
- "name":"CancelKeyDeletion",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CancelKeyDeletionRequest"},
23
- "output":{"shape":"CancelKeyDeletionResponse"},
24
- "errors":[
25
- {"shape":"NotFoundException"},
26
- {"shape":"InvalidArnException"},
27
- {"shape":"DependencyTimeoutException"},
28
- {"shape":"KMSInternalException"},
29
- {"shape":"KMSInvalidStateException"}
30
- ]
31
- },
32
- "ConnectCustomKeyStore":{
33
- "name":"ConnectCustomKeyStore",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"ConnectCustomKeyStoreRequest"},
39
- "output":{"shape":"ConnectCustomKeyStoreResponse"},
40
- "errors":[
41
- {"shape":"CloudHsmClusterNotActiveException"},
42
- {"shape":"CustomKeyStoreInvalidStateException"},
43
- {"shape":"CustomKeyStoreNotFoundException"},
44
- {"shape":"KMSInternalException"},
45
- {"shape":"CloudHsmClusterInvalidConfigurationException"}
46
- ]
47
- },
48
- "CreateAlias":{
49
- "name":"CreateAlias",
50
- "http":{
51
- "method":"POST",
52
- "requestUri":"/"
53
- },
54
- "input":{"shape":"CreateAliasRequest"},
55
- "errors":[
56
- {"shape":"DependencyTimeoutException"},
57
- {"shape":"AlreadyExistsException"},
58
- {"shape":"NotFoundException"},
59
- {"shape":"InvalidAliasNameException"},
60
- {"shape":"KMSInternalException"},
61
- {"shape":"LimitExceededException"},
62
- {"shape":"KMSInvalidStateException"}
63
- ]
64
- },
65
- "CreateCustomKeyStore":{
66
- "name":"CreateCustomKeyStore",
67
- "http":{
68
- "method":"POST",
69
- "requestUri":"/"
70
- },
71
- "input":{"shape":"CreateCustomKeyStoreRequest"},
72
- "output":{"shape":"CreateCustomKeyStoreResponse"},
73
- "errors":[
74
- {"shape":"CloudHsmClusterInUseException"},
75
- {"shape":"CustomKeyStoreNameInUseException"},
76
- {"shape":"CloudHsmClusterNotFoundException"},
77
- {"shape":"KMSInternalException"},
78
- {"shape":"CloudHsmClusterNotActiveException"},
79
- {"shape":"IncorrectTrustAnchorException"},
80
- {"shape":"CloudHsmClusterInvalidConfigurationException"}
81
- ]
82
- },
83
- "CreateGrant":{
84
- "name":"CreateGrant",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/"
88
- },
89
- "input":{"shape":"CreateGrantRequest"},
90
- "output":{"shape":"CreateGrantResponse"},
91
- "errors":[
92
- {"shape":"NotFoundException"},
93
- {"shape":"DisabledException"},
94
- {"shape":"DependencyTimeoutException"},
95
- {"shape":"InvalidArnException"},
96
- {"shape":"KMSInternalException"},
97
- {"shape":"InvalidGrantTokenException"},
98
- {"shape":"LimitExceededException"},
99
- {"shape":"KMSInvalidStateException"}
100
- ]
101
- },
102
- "CreateKey":{
103
- "name":"CreateKey",
104
- "http":{
105
- "method":"POST",
106
- "requestUri":"/"
107
- },
108
- "input":{"shape":"CreateKeyRequest"},
109
- "output":{"shape":"CreateKeyResponse"},
110
- "errors":[
111
- {"shape":"MalformedPolicyDocumentException"},
112
- {"shape":"DependencyTimeoutException"},
113
- {"shape":"InvalidArnException"},
114
- {"shape":"UnsupportedOperationException"},
115
- {"shape":"KMSInternalException"},
116
- {"shape":"LimitExceededException"},
117
- {"shape":"TagException"},
118
- {"shape":"CustomKeyStoreNotFoundException"},
119
- {"shape":"CustomKeyStoreInvalidStateException"},
120
- {"shape":"CloudHsmClusterInvalidConfigurationException"}
121
- ]
122
- },
123
- "Decrypt":{
124
- "name":"Decrypt",
125
- "http":{
126
- "method":"POST",
127
- "requestUri":"/"
128
- },
129
- "input":{"shape":"DecryptRequest"},
130
- "output":{"shape":"DecryptResponse"},
131
- "errors":[
132
- {"shape":"NotFoundException"},
133
- {"shape":"DisabledException"},
134
- {"shape":"InvalidCiphertextException"},
135
- {"shape":"KeyUnavailableException"},
136
- {"shape":"DependencyTimeoutException"},
137
- {"shape":"InvalidGrantTokenException"},
138
- {"shape":"KMSInternalException"},
139
- {"shape":"KMSInvalidStateException"}
140
- ]
141
- },
142
- "DeleteAlias":{
143
- "name":"DeleteAlias",
144
- "http":{
145
- "method":"POST",
146
- "requestUri":"/"
147
- },
148
- "input":{"shape":"DeleteAliasRequest"},
149
- "errors":[
150
- {"shape":"DependencyTimeoutException"},
151
- {"shape":"NotFoundException"},
152
- {"shape":"KMSInternalException"},
153
- {"shape":"KMSInvalidStateException"}
154
- ]
155
- },
156
- "DeleteCustomKeyStore":{
157
- "name":"DeleteCustomKeyStore",
158
- "http":{
159
- "method":"POST",
160
- "requestUri":"/"
161
- },
162
- "input":{"shape":"DeleteCustomKeyStoreRequest"},
163
- "output":{"shape":"DeleteCustomKeyStoreResponse"},
164
- "errors":[
165
- {"shape":"CustomKeyStoreHasCMKsException"},
166
- {"shape":"CustomKeyStoreInvalidStateException"},
167
- {"shape":"CustomKeyStoreNotFoundException"},
168
- {"shape":"KMSInternalException"}
169
- ]
170
- },
171
- "DeleteImportedKeyMaterial":{
172
- "name":"DeleteImportedKeyMaterial",
173
- "http":{
174
- "method":"POST",
175
- "requestUri":"/"
176
- },
177
- "input":{"shape":"DeleteImportedKeyMaterialRequest"},
178
- "errors":[
179
- {"shape":"InvalidArnException"},
180
- {"shape":"UnsupportedOperationException"},
181
- {"shape":"DependencyTimeoutException"},
182
- {"shape":"NotFoundException"},
183
- {"shape":"KMSInternalException"},
184
- {"shape":"KMSInvalidStateException"}
185
- ]
186
- },
187
- "DescribeCustomKeyStores":{
188
- "name":"DescribeCustomKeyStores",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"DescribeCustomKeyStoresRequest"},
194
- "output":{"shape":"DescribeCustomKeyStoresResponse"},
195
- "errors":[
196
- {"shape":"CustomKeyStoreNotFoundException"},
197
- {"shape":"KMSInternalException"}
198
- ]
199
- },
200
- "DescribeKey":{
201
- "name":"DescribeKey",
202
- "http":{
203
- "method":"POST",
204
- "requestUri":"/"
205
- },
206
- "input":{"shape":"DescribeKeyRequest"},
207
- "output":{"shape":"DescribeKeyResponse"},
208
- "errors":[
209
- {"shape":"NotFoundException"},
210
- {"shape":"InvalidArnException"},
211
- {"shape":"DependencyTimeoutException"},
212
- {"shape":"KMSInternalException"}
213
- ]
214
- },
215
- "DisableKey":{
216
- "name":"DisableKey",
217
- "http":{
218
- "method":"POST",
219
- "requestUri":"/"
220
- },
221
- "input":{"shape":"DisableKeyRequest"},
222
- "errors":[
223
- {"shape":"NotFoundException"},
224
- {"shape":"InvalidArnException"},
225
- {"shape":"DependencyTimeoutException"},
226
- {"shape":"KMSInternalException"},
227
- {"shape":"KMSInvalidStateException"}
228
- ]
229
- },
230
- "DisableKeyRotation":{
231
- "name":"DisableKeyRotation",
232
- "http":{
233
- "method":"POST",
234
- "requestUri":"/"
235
- },
236
- "input":{"shape":"DisableKeyRotationRequest"},
237
- "errors":[
238
- {"shape":"NotFoundException"},
239
- {"shape":"DisabledException"},
240
- {"shape":"InvalidArnException"},
241
- {"shape":"DependencyTimeoutException"},
242
- {"shape":"KMSInternalException"},
243
- {"shape":"KMSInvalidStateException"},
244
- {"shape":"UnsupportedOperationException"}
245
- ]
246
- },
247
- "DisconnectCustomKeyStore":{
248
- "name":"DisconnectCustomKeyStore",
249
- "http":{
250
- "method":"POST",
251
- "requestUri":"/"
252
- },
253
- "input":{"shape":"DisconnectCustomKeyStoreRequest"},
254
- "output":{"shape":"DisconnectCustomKeyStoreResponse"},
255
- "errors":[
256
- {"shape":"CustomKeyStoreInvalidStateException"},
257
- {"shape":"CustomKeyStoreNotFoundException"},
258
- {"shape":"KMSInternalException"}
259
- ]
260
- },
261
- "EnableKey":{
262
- "name":"EnableKey",
263
- "http":{
264
- "method":"POST",
265
- "requestUri":"/"
266
- },
267
- "input":{"shape":"EnableKeyRequest"},
268
- "errors":[
269
- {"shape":"NotFoundException"},
270
- {"shape":"InvalidArnException"},
271
- {"shape":"DependencyTimeoutException"},
272
- {"shape":"KMSInternalException"},
273
- {"shape":"LimitExceededException"},
274
- {"shape":"KMSInvalidStateException"}
275
- ]
276
- },
277
- "EnableKeyRotation":{
278
- "name":"EnableKeyRotation",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"EnableKeyRotationRequest"},
284
- "errors":[
285
- {"shape":"NotFoundException"},
286
- {"shape":"DisabledException"},
287
- {"shape":"InvalidArnException"},
288
- {"shape":"DependencyTimeoutException"},
289
- {"shape":"KMSInternalException"},
290
- {"shape":"KMSInvalidStateException"},
291
- {"shape":"UnsupportedOperationException"}
292
- ]
293
- },
294
- "Encrypt":{
295
- "name":"Encrypt",
296
- "http":{
297
- "method":"POST",
298
- "requestUri":"/"
299
- },
300
- "input":{"shape":"EncryptRequest"},
301
- "output":{"shape":"EncryptResponse"},
302
- "errors":[
303
- {"shape":"NotFoundException"},
304
- {"shape":"DisabledException"},
305
- {"shape":"KeyUnavailableException"},
306
- {"shape":"DependencyTimeoutException"},
307
- {"shape":"InvalidKeyUsageException"},
308
- {"shape":"InvalidGrantTokenException"},
309
- {"shape":"KMSInternalException"},
310
- {"shape":"KMSInvalidStateException"}
311
- ]
312
- },
313
- "GenerateDataKey":{
314
- "name":"GenerateDataKey",
315
- "http":{
316
- "method":"POST",
317
- "requestUri":"/"
318
- },
319
- "input":{"shape":"GenerateDataKeyRequest"},
320
- "output":{"shape":"GenerateDataKeyResponse"},
321
- "errors":[
322
- {"shape":"NotFoundException"},
323
- {"shape":"DisabledException"},
324
- {"shape":"KeyUnavailableException"},
325
- {"shape":"DependencyTimeoutException"},
326
- {"shape":"InvalidKeyUsageException"},
327
- {"shape":"InvalidGrantTokenException"},
328
- {"shape":"KMSInternalException"},
329
- {"shape":"KMSInvalidStateException"}
330
- ]
331
- },
332
- "GenerateDataKeyWithoutPlaintext":{
333
- "name":"GenerateDataKeyWithoutPlaintext",
334
- "http":{
335
- "method":"POST",
336
- "requestUri":"/"
337
- },
338
- "input":{"shape":"GenerateDataKeyWithoutPlaintextRequest"},
339
- "output":{"shape":"GenerateDataKeyWithoutPlaintextResponse"},
340
- "errors":[
341
- {"shape":"NotFoundException"},
342
- {"shape":"DisabledException"},
343
- {"shape":"KeyUnavailableException"},
344
- {"shape":"DependencyTimeoutException"},
345
- {"shape":"InvalidKeyUsageException"},
346
- {"shape":"InvalidGrantTokenException"},
347
- {"shape":"KMSInternalException"},
348
- {"shape":"KMSInvalidStateException"}
349
- ]
350
- },
351
- "GenerateRandom":{
352
- "name":"GenerateRandom",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/"
356
- },
357
- "input":{"shape":"GenerateRandomRequest"},
358
- "output":{"shape":"GenerateRandomResponse"},
359
- "errors":[
360
- {"shape":"DependencyTimeoutException"},
361
- {"shape":"KMSInternalException"},
362
- {"shape":"CustomKeyStoreNotFoundException"},
363
- {"shape":"CustomKeyStoreInvalidStateException"}
364
- ]
365
- },
366
- "GetKeyPolicy":{
367
- "name":"GetKeyPolicy",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"GetKeyPolicyRequest"},
373
- "output":{"shape":"GetKeyPolicyResponse"},
374
- "errors":[
375
- {"shape":"NotFoundException"},
376
- {"shape":"InvalidArnException"},
377
- {"shape":"DependencyTimeoutException"},
378
- {"shape":"KMSInternalException"},
379
- {"shape":"KMSInvalidStateException"}
380
- ]
381
- },
382
- "GetKeyRotationStatus":{
383
- "name":"GetKeyRotationStatus",
384
- "http":{
385
- "method":"POST",
386
- "requestUri":"/"
387
- },
388
- "input":{"shape":"GetKeyRotationStatusRequest"},
389
- "output":{"shape":"GetKeyRotationStatusResponse"},
390
- "errors":[
391
- {"shape":"NotFoundException"},
392
- {"shape":"InvalidArnException"},
393
- {"shape":"DependencyTimeoutException"},
394
- {"shape":"KMSInternalException"},
395
- {"shape":"KMSInvalidStateException"},
396
- {"shape":"UnsupportedOperationException"}
397
- ]
398
- },
399
- "GetParametersForImport":{
400
- "name":"GetParametersForImport",
401
- "http":{
402
- "method":"POST",
403
- "requestUri":"/"
404
- },
405
- "input":{"shape":"GetParametersForImportRequest"},
406
- "output":{"shape":"GetParametersForImportResponse"},
407
- "errors":[
408
- {"shape":"InvalidArnException"},
409
- {"shape":"UnsupportedOperationException"},
410
- {"shape":"DependencyTimeoutException"},
411
- {"shape":"NotFoundException"},
412
- {"shape":"KMSInternalException"},
413
- {"shape":"KMSInvalidStateException"}
414
- ]
415
- },
416
- "ImportKeyMaterial":{
417
- "name":"ImportKeyMaterial",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/"
421
- },
422
- "input":{"shape":"ImportKeyMaterialRequest"},
423
- "output":{"shape":"ImportKeyMaterialResponse"},
424
- "errors":[
425
- {"shape":"InvalidArnException"},
426
- {"shape":"UnsupportedOperationException"},
427
- {"shape":"DependencyTimeoutException"},
428
- {"shape":"NotFoundException"},
429
- {"shape":"KMSInternalException"},
430
- {"shape":"KMSInvalidStateException"},
431
- {"shape":"InvalidCiphertextException"},
432
- {"shape":"IncorrectKeyMaterialException"},
433
- {"shape":"ExpiredImportTokenException"},
434
- {"shape":"InvalidImportTokenException"}
435
- ]
436
- },
437
- "ListAliases":{
438
- "name":"ListAliases",
439
- "http":{
440
- "method":"POST",
441
- "requestUri":"/"
442
- },
443
- "input":{"shape":"ListAliasesRequest"},
444
- "output":{"shape":"ListAliasesResponse"},
445
- "errors":[
446
- {"shape":"DependencyTimeoutException"},
447
- {"shape":"InvalidMarkerException"},
448
- {"shape":"KMSInternalException"},
449
- {"shape":"InvalidArnException"},
450
- {"shape":"NotFoundException"}
451
- ]
452
- },
453
- "ListGrants":{
454
- "name":"ListGrants",
455
- "http":{
456
- "method":"POST",
457
- "requestUri":"/"
458
- },
459
- "input":{"shape":"ListGrantsRequest"},
460
- "output":{"shape":"ListGrantsResponse"},
461
- "errors":[
462
- {"shape":"NotFoundException"},
463
- {"shape":"DependencyTimeoutException"},
464
- {"shape":"InvalidMarkerException"},
465
- {"shape":"InvalidArnException"},
466
- {"shape":"KMSInternalException"},
467
- {"shape":"KMSInvalidStateException"}
468
- ]
469
- },
470
- "ListKeyPolicies":{
471
- "name":"ListKeyPolicies",
472
- "http":{
473
- "method":"POST",
474
- "requestUri":"/"
475
- },
476
- "input":{"shape":"ListKeyPoliciesRequest"},
477
- "output":{"shape":"ListKeyPoliciesResponse"},
478
- "errors":[
479
- {"shape":"NotFoundException"},
480
- {"shape":"InvalidArnException"},
481
- {"shape":"DependencyTimeoutException"},
482
- {"shape":"KMSInternalException"},
483
- {"shape":"KMSInvalidStateException"}
484
- ]
485
- },
486
- "ListKeys":{
487
- "name":"ListKeys",
488
- "http":{
489
- "method":"POST",
490
- "requestUri":"/"
491
- },
492
- "input":{"shape":"ListKeysRequest"},
493
- "output":{"shape":"ListKeysResponse"},
494
- "errors":[
495
- {"shape":"DependencyTimeoutException"},
496
- {"shape":"KMSInternalException"},
497
- {"shape":"InvalidMarkerException"}
498
- ]
499
- },
500
- "ListResourceTags":{
501
- "name":"ListResourceTags",
502
- "http":{
503
- "method":"POST",
504
- "requestUri":"/"
505
- },
506
- "input":{"shape":"ListResourceTagsRequest"},
507
- "output":{"shape":"ListResourceTagsResponse"},
508
- "errors":[
509
- {"shape":"KMSInternalException"},
510
- {"shape":"NotFoundException"},
511
- {"shape":"InvalidArnException"},
512
- {"shape":"InvalidMarkerException"}
513
- ]
514
- },
515
- "ListRetirableGrants":{
516
- "name":"ListRetirableGrants",
517
- "http":{
518
- "method":"POST",
519
- "requestUri":"/"
520
- },
521
- "input":{"shape":"ListRetirableGrantsRequest"},
522
- "output":{"shape":"ListGrantsResponse"},
523
- "errors":[
524
- {"shape":"DependencyTimeoutException"},
525
- {"shape":"InvalidMarkerException"},
526
- {"shape":"InvalidArnException"},
527
- {"shape":"NotFoundException"},
528
- {"shape":"KMSInternalException"}
529
- ]
530
- },
531
- "PutKeyPolicy":{
532
- "name":"PutKeyPolicy",
533
- "http":{
534
- "method":"POST",
535
- "requestUri":"/"
536
- },
537
- "input":{"shape":"PutKeyPolicyRequest"},
538
- "errors":[
539
- {"shape":"NotFoundException"},
540
- {"shape":"InvalidArnException"},
541
- {"shape":"MalformedPolicyDocumentException"},
542
- {"shape":"DependencyTimeoutException"},
543
- {"shape":"UnsupportedOperationException"},
544
- {"shape":"KMSInternalException"},
545
- {"shape":"LimitExceededException"},
546
- {"shape":"KMSInvalidStateException"}
547
- ]
548
- },
549
- "ReEncrypt":{
550
- "name":"ReEncrypt",
551
- "http":{
552
- "method":"POST",
553
- "requestUri":"/"
554
- },
555
- "input":{"shape":"ReEncryptRequest"},
556
- "output":{"shape":"ReEncryptResponse"},
557
- "errors":[
558
- {"shape":"NotFoundException"},
559
- {"shape":"DisabledException"},
560
- {"shape":"InvalidCiphertextException"},
561
- {"shape":"KeyUnavailableException"},
562
- {"shape":"DependencyTimeoutException"},
563
- {"shape":"InvalidKeyUsageException"},
564
- {"shape":"InvalidGrantTokenException"},
565
- {"shape":"KMSInternalException"},
566
- {"shape":"KMSInvalidStateException"}
567
- ]
568
- },
569
- "RetireGrant":{
570
- "name":"RetireGrant",
571
- "http":{
572
- "method":"POST",
573
- "requestUri":"/"
574
- },
575
- "input":{"shape":"RetireGrantRequest"},
576
- "errors":[
577
- {"shape":"InvalidArnException"},
578
- {"shape":"InvalidGrantTokenException"},
579
- {"shape":"InvalidGrantIdException"},
580
- {"shape":"NotFoundException"},
581
- {"shape":"DependencyTimeoutException"},
582
- {"shape":"KMSInternalException"},
583
- {"shape":"KMSInvalidStateException"}
584
- ]
585
- },
586
- "RevokeGrant":{
587
- "name":"RevokeGrant",
588
- "http":{
589
- "method":"POST",
590
- "requestUri":"/"
591
- },
592
- "input":{"shape":"RevokeGrantRequest"},
593
- "errors":[
594
- {"shape":"NotFoundException"},
595
- {"shape":"DependencyTimeoutException"},
596
- {"shape":"InvalidArnException"},
597
- {"shape":"InvalidGrantIdException"},
598
- {"shape":"KMSInternalException"},
599
- {"shape":"KMSInvalidStateException"}
600
- ]
601
- },
602
- "ScheduleKeyDeletion":{
603
- "name":"ScheduleKeyDeletion",
604
- "http":{
605
- "method":"POST",
606
- "requestUri":"/"
607
- },
608
- "input":{"shape":"ScheduleKeyDeletionRequest"},
609
- "output":{"shape":"ScheduleKeyDeletionResponse"},
610
- "errors":[
611
- {"shape":"NotFoundException"},
612
- {"shape":"InvalidArnException"},
613
- {"shape":"DependencyTimeoutException"},
614
- {"shape":"KMSInternalException"},
615
- {"shape":"KMSInvalidStateException"}
616
- ]
617
- },
618
- "TagResource":{
619
- "name":"TagResource",
620
- "http":{
621
- "method":"POST",
622
- "requestUri":"/"
623
- },
624
- "input":{"shape":"TagResourceRequest"},
625
- "errors":[
626
- {"shape":"KMSInternalException"},
627
- {"shape":"NotFoundException"},
628
- {"shape":"InvalidArnException"},
629
- {"shape":"KMSInvalidStateException"},
630
- {"shape":"LimitExceededException"},
631
- {"shape":"TagException"}
632
- ]
633
- },
634
- "UntagResource":{
635
- "name":"UntagResource",
636
- "http":{
637
- "method":"POST",
638
- "requestUri":"/"
639
- },
640
- "input":{"shape":"UntagResourceRequest"},
641
- "errors":[
642
- {"shape":"KMSInternalException"},
643
- {"shape":"NotFoundException"},
644
- {"shape":"InvalidArnException"},
645
- {"shape":"KMSInvalidStateException"},
646
- {"shape":"TagException"}
647
- ]
648
- },
649
- "UpdateAlias":{
650
- "name":"UpdateAlias",
651
- "http":{
652
- "method":"POST",
653
- "requestUri":"/"
654
- },
655
- "input":{"shape":"UpdateAliasRequest"},
656
- "errors":[
657
- {"shape":"DependencyTimeoutException"},
658
- {"shape":"NotFoundException"},
659
- {"shape":"KMSInternalException"},
660
- {"shape":"KMSInvalidStateException"}
661
- ]
662
- },
663
- "UpdateCustomKeyStore":{
664
- "name":"UpdateCustomKeyStore",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/"
668
- },
669
- "input":{"shape":"UpdateCustomKeyStoreRequest"},
670
- "output":{"shape":"UpdateCustomKeyStoreResponse"},
671
- "errors":[
672
- {"shape":"CustomKeyStoreNotFoundException"},
673
- {"shape":"CloudHsmClusterNotFoundException"},
674
- {"shape":"CloudHsmClusterNotRelatedException"},
675
- {"shape":"CustomKeyStoreInvalidStateException"},
676
- {"shape":"KMSInternalException"},
677
- {"shape":"CloudHsmClusterNotActiveException"},
678
- {"shape":"CloudHsmClusterInvalidConfigurationException"}
679
- ]
680
- },
681
- "UpdateKeyDescription":{
682
- "name":"UpdateKeyDescription",
683
- "http":{
684
- "method":"POST",
685
- "requestUri":"/"
686
- },
687
- "input":{"shape":"UpdateKeyDescriptionRequest"},
688
- "errors":[
689
- {"shape":"NotFoundException"},
690
- {"shape":"InvalidArnException"},
691
- {"shape":"DependencyTimeoutException"},
692
- {"shape":"KMSInternalException"},
693
- {"shape":"KMSInvalidStateException"}
694
- ]
695
- }
696
- },
697
- "shapes":{
698
- "AWSAccountIdType":{"type":"string"},
699
- "AlgorithmSpec":{
700
- "type":"string",
701
- "enum":[
702
- "RSAES_PKCS1_V1_5",
703
- "RSAES_OAEP_SHA_1",
704
- "RSAES_OAEP_SHA_256"
705
- ]
706
- },
707
- "AliasList":{
708
- "type":"list",
709
- "member":{"shape":"AliasListEntry"}
710
- },
711
- "AliasListEntry":{
712
- "type":"structure",
713
- "members":{
714
- "AliasName":{"shape":"AliasNameType"},
715
- "AliasArn":{"shape":"ArnType"},
716
- "TargetKeyId":{"shape":"KeyIdType"}
717
- }
718
- },
719
- "AliasNameType":{
720
- "type":"string",
721
- "max":256,
722
- "min":1,
723
- "pattern":"^[a-zA-Z0-9:/_-]+$"
724
- },
725
- "AlreadyExistsException":{
726
- "type":"structure",
727
- "members":{
728
- "message":{"shape":"ErrorMessageType"}
729
- },
730
- "exception":true
731
- },
732
- "ArnType":{
733
- "type":"string",
734
- "max":2048,
735
- "min":20
736
- },
737
- "BooleanType":{"type":"boolean"},
738
- "CancelKeyDeletionRequest":{
739
- "type":"structure",
740
- "required":["KeyId"],
741
- "members":{
742
- "KeyId":{"shape":"KeyIdType"}
743
- }
744
- },
745
- "CancelKeyDeletionResponse":{
746
- "type":"structure",
747
- "members":{
748
- "KeyId":{"shape":"KeyIdType"}
749
- }
750
- },
751
- "CiphertextType":{
752
- "type":"blob",
753
- "max":6144,
754
- "min":1
755
- },
756
- "CloudHsmClusterIdType":{
757
- "type":"string",
758
- "max":24,
759
- "min":19
760
- },
761
- "CloudHsmClusterInUseException":{
762
- "type":"structure",
763
- "members":{
764
- "message":{"shape":"ErrorMessageType"}
765
- },
766
- "exception":true
767
- },
768
- "CloudHsmClusterInvalidConfigurationException":{
769
- "type":"structure",
770
- "members":{
771
- "message":{"shape":"ErrorMessageType"}
772
- },
773
- "exception":true
774
- },
775
- "CloudHsmClusterNotActiveException":{
776
- "type":"structure",
777
- "members":{
778
- "message":{"shape":"ErrorMessageType"}
779
- },
780
- "exception":true
781
- },
782
- "CloudHsmClusterNotFoundException":{
783
- "type":"structure",
784
- "members":{
785
- "message":{"shape":"ErrorMessageType"}
786
- },
787
- "exception":true
788
- },
789
- "CloudHsmClusterNotRelatedException":{
790
- "type":"structure",
791
- "members":{
792
- "message":{"shape":"ErrorMessageType"}
793
- },
794
- "exception":true
795
- },
796
- "ConnectCustomKeyStoreRequest":{
797
- "type":"structure",
798
- "required":["CustomKeyStoreId"],
799
- "members":{
800
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
801
- }
802
- },
803
- "ConnectCustomKeyStoreResponse":{
804
- "type":"structure",
805
- "members":{
806
- }
807
- },
808
- "ConnectionErrorCodeType":{
809
- "type":"string",
810
- "enum":[
811
- "INVALID_CREDENTIALS",
812
- "CLUSTER_NOT_FOUND",
813
- "NETWORK_ERRORS",
814
- "INSUFFICIENT_CLOUDHSM_HSMS",
815
- "USER_LOCKED_OUT"
816
- ]
817
- },
818
- "ConnectionStateType":{
819
- "type":"string",
820
- "enum":[
821
- "CONNECTED",
822
- "CONNECTING",
823
- "FAILED",
824
- "DISCONNECTED",
825
- "DISCONNECTING"
826
- ]
827
- },
828
- "CreateAliasRequest":{
829
- "type":"structure",
830
- "required":[
831
- "AliasName",
832
- "TargetKeyId"
833
- ],
834
- "members":{
835
- "AliasName":{"shape":"AliasNameType"},
836
- "TargetKeyId":{"shape":"KeyIdType"}
837
- }
838
- },
839
- "CreateCustomKeyStoreRequest":{
840
- "type":"structure",
841
- "required":[
842
- "CustomKeyStoreName",
843
- "CloudHsmClusterId",
844
- "TrustAnchorCertificate",
845
- "KeyStorePassword"
846
- ],
847
- "members":{
848
- "CustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
849
- "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"},
850
- "TrustAnchorCertificate":{"shape":"TrustAnchorCertificateType"},
851
- "KeyStorePassword":{"shape":"KeyStorePasswordType"}
852
- }
853
- },
854
- "CreateCustomKeyStoreResponse":{
855
- "type":"structure",
856
- "members":{
857
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
858
- }
859
- },
860
- "CreateGrantRequest":{
861
- "type":"structure",
862
- "required":[
863
- "KeyId",
864
- "GranteePrincipal",
865
- "Operations"
866
- ],
867
- "members":{
868
- "KeyId":{"shape":"KeyIdType"},
869
- "GranteePrincipal":{"shape":"PrincipalIdType"},
870
- "RetiringPrincipal":{"shape":"PrincipalIdType"},
871
- "Operations":{"shape":"GrantOperationList"},
872
- "Constraints":{"shape":"GrantConstraints"},
873
- "GrantTokens":{"shape":"GrantTokenList"},
874
- "Name":{"shape":"GrantNameType"}
875
- }
876
- },
877
- "CreateGrantResponse":{
878
- "type":"structure",
879
- "members":{
880
- "GrantToken":{"shape":"GrantTokenType"},
881
- "GrantId":{"shape":"GrantIdType"}
882
- }
883
- },
884
- "CreateKeyRequest":{
885
- "type":"structure",
886
- "members":{
887
- "Policy":{"shape":"PolicyType"},
888
- "Description":{"shape":"DescriptionType"},
889
- "KeyUsage":{"shape":"KeyUsageType"},
890
- "Origin":{"shape":"OriginType"},
891
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
892
- "BypassPolicyLockoutSafetyCheck":{"shape":"BooleanType"},
893
- "Tags":{"shape":"TagList"}
894
- }
895
- },
896
- "CreateKeyResponse":{
897
- "type":"structure",
898
- "members":{
899
- "KeyMetadata":{"shape":"KeyMetadata"}
900
- }
901
- },
902
- "CustomKeyStoreHasCMKsException":{
903
- "type":"structure",
904
- "members":{
905
- "message":{"shape":"ErrorMessageType"}
906
- },
907
- "exception":true
908
- },
909
- "CustomKeyStoreIdType":{
910
- "type":"string",
911
- "max":64,
912
- "min":1
913
- },
914
- "CustomKeyStoreInvalidStateException":{
915
- "type":"structure",
916
- "members":{
917
- "message":{"shape":"ErrorMessageType"}
918
- },
919
- "exception":true
920
- },
921
- "CustomKeyStoreNameInUseException":{
922
- "type":"structure",
923
- "members":{
924
- "message":{"shape":"ErrorMessageType"}
925
- },
926
- "exception":true
927
- },
928
- "CustomKeyStoreNameType":{
929
- "type":"string",
930
- "max":256,
931
- "min":1
932
- },
933
- "CustomKeyStoreNotFoundException":{
934
- "type":"structure",
935
- "members":{
936
- "message":{"shape":"ErrorMessageType"}
937
- },
938
- "exception":true
939
- },
940
- "CustomKeyStoresList":{
941
- "type":"list",
942
- "member":{"shape":"CustomKeyStoresListEntry"}
943
- },
944
- "CustomKeyStoresListEntry":{
945
- "type":"structure",
946
- "members":{
947
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
948
- "CustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
949
- "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"},
950
- "TrustAnchorCertificate":{"shape":"TrustAnchorCertificateType"},
951
- "ConnectionState":{"shape":"ConnectionStateType"},
952
- "ConnectionErrorCode":{"shape":"ConnectionErrorCodeType"},
953
- "CreationDate":{"shape":"DateType"}
954
- }
955
- },
956
- "DataKeySpec":{
957
- "type":"string",
958
- "enum":[
959
- "AES_256",
960
- "AES_128"
961
- ]
962
- },
963
- "DateType":{"type":"timestamp"},
964
- "DecryptRequest":{
965
- "type":"structure",
966
- "required":["CiphertextBlob"],
967
- "members":{
968
- "CiphertextBlob":{"shape":"CiphertextType"},
969
- "EncryptionContext":{"shape":"EncryptionContextType"},
970
- "GrantTokens":{"shape":"GrantTokenList"}
971
- }
972
- },
973
- "DecryptResponse":{
974
- "type":"structure",
975
- "members":{
976
- "KeyId":{"shape":"KeyIdType"},
977
- "Plaintext":{"shape":"PlaintextType"}
978
- }
979
- },
980
- "DeleteAliasRequest":{
981
- "type":"structure",
982
- "required":["AliasName"],
983
- "members":{
984
- "AliasName":{"shape":"AliasNameType"}
985
- }
986
- },
987
- "DeleteCustomKeyStoreRequest":{
988
- "type":"structure",
989
- "required":["CustomKeyStoreId"],
990
- "members":{
991
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
992
- }
993
- },
994
- "DeleteCustomKeyStoreResponse":{
995
- "type":"structure",
996
- "members":{
997
- }
998
- },
999
- "DeleteImportedKeyMaterialRequest":{
1000
- "type":"structure",
1001
- "required":["KeyId"],
1002
- "members":{
1003
- "KeyId":{"shape":"KeyIdType"}
1004
- }
1005
- },
1006
- "DependencyTimeoutException":{
1007
- "type":"structure",
1008
- "members":{
1009
- "message":{"shape":"ErrorMessageType"}
1010
- },
1011
- "exception":true,
1012
- "fault":true
1013
- },
1014
- "DescribeCustomKeyStoresRequest":{
1015
- "type":"structure",
1016
- "members":{
1017
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
1018
- "CustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
1019
- "Limit":{"shape":"LimitType"},
1020
- "Marker":{"shape":"MarkerType"}
1021
- }
1022
- },
1023
- "DescribeCustomKeyStoresResponse":{
1024
- "type":"structure",
1025
- "members":{
1026
- "CustomKeyStores":{"shape":"CustomKeyStoresList"},
1027
- "NextMarker":{"shape":"MarkerType"},
1028
- "Truncated":{"shape":"BooleanType"}
1029
- }
1030
- },
1031
- "DescribeKeyRequest":{
1032
- "type":"structure",
1033
- "required":["KeyId"],
1034
- "members":{
1035
- "KeyId":{"shape":"KeyIdType"},
1036
- "GrantTokens":{"shape":"GrantTokenList"}
1037
- }
1038
- },
1039
- "DescribeKeyResponse":{
1040
- "type":"structure",
1041
- "members":{
1042
- "KeyMetadata":{"shape":"KeyMetadata"}
1043
- }
1044
- },
1045
- "DescriptionType":{
1046
- "type":"string",
1047
- "max":8192,
1048
- "min":0
1049
- },
1050
- "DisableKeyRequest":{
1051
- "type":"structure",
1052
- "required":["KeyId"],
1053
- "members":{
1054
- "KeyId":{"shape":"KeyIdType"}
1055
- }
1056
- },
1057
- "DisableKeyRotationRequest":{
1058
- "type":"structure",
1059
- "required":["KeyId"],
1060
- "members":{
1061
- "KeyId":{"shape":"KeyIdType"}
1062
- }
1063
- },
1064
- "DisabledException":{
1065
- "type":"structure",
1066
- "members":{
1067
- "message":{"shape":"ErrorMessageType"}
1068
- },
1069
- "exception":true
1070
- },
1071
- "DisconnectCustomKeyStoreRequest":{
1072
- "type":"structure",
1073
- "required":["CustomKeyStoreId"],
1074
- "members":{
1075
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
1076
- }
1077
- },
1078
- "DisconnectCustomKeyStoreResponse":{
1079
- "type":"structure",
1080
- "members":{
1081
- }
1082
- },
1083
- "EnableKeyRequest":{
1084
- "type":"structure",
1085
- "required":["KeyId"],
1086
- "members":{
1087
- "KeyId":{"shape":"KeyIdType"}
1088
- }
1089
- },
1090
- "EnableKeyRotationRequest":{
1091
- "type":"structure",
1092
- "required":["KeyId"],
1093
- "members":{
1094
- "KeyId":{"shape":"KeyIdType"}
1095
- }
1096
- },
1097
- "EncryptRequest":{
1098
- "type":"structure",
1099
- "required":[
1100
- "KeyId",
1101
- "Plaintext"
1102
- ],
1103
- "members":{
1104
- "KeyId":{"shape":"KeyIdType"},
1105
- "Plaintext":{"shape":"PlaintextType"},
1106
- "EncryptionContext":{"shape":"EncryptionContextType"},
1107
- "GrantTokens":{"shape":"GrantTokenList"}
1108
- }
1109
- },
1110
- "EncryptResponse":{
1111
- "type":"structure",
1112
- "members":{
1113
- "CiphertextBlob":{"shape":"CiphertextType"},
1114
- "KeyId":{"shape":"KeyIdType"}
1115
- }
1116
- },
1117
- "EncryptionContextKey":{"type":"string"},
1118
- "EncryptionContextType":{
1119
- "type":"map",
1120
- "key":{"shape":"EncryptionContextKey"},
1121
- "value":{"shape":"EncryptionContextValue"}
1122
- },
1123
- "EncryptionContextValue":{"type":"string"},
1124
- "ErrorMessageType":{"type":"string"},
1125
- "ExpirationModelType":{
1126
- "type":"string",
1127
- "enum":[
1128
- "KEY_MATERIAL_EXPIRES",
1129
- "KEY_MATERIAL_DOES_NOT_EXPIRE"
1130
- ]
1131
- },
1132
- "ExpiredImportTokenException":{
1133
- "type":"structure",
1134
- "members":{
1135
- "message":{"shape":"ErrorMessageType"}
1136
- },
1137
- "exception":true
1138
- },
1139
- "GenerateDataKeyRequest":{
1140
- "type":"structure",
1141
- "required":["KeyId"],
1142
- "members":{
1143
- "KeyId":{"shape":"KeyIdType"},
1144
- "EncryptionContext":{"shape":"EncryptionContextType"},
1145
- "NumberOfBytes":{"shape":"NumberOfBytesType"},
1146
- "KeySpec":{"shape":"DataKeySpec"},
1147
- "GrantTokens":{"shape":"GrantTokenList"}
1148
- }
1149
- },
1150
- "GenerateDataKeyResponse":{
1151
- "type":"structure",
1152
- "members":{
1153
- "CiphertextBlob":{"shape":"CiphertextType"},
1154
- "Plaintext":{"shape":"PlaintextType"},
1155
- "KeyId":{"shape":"KeyIdType"}
1156
- }
1157
- },
1158
- "GenerateDataKeyWithoutPlaintextRequest":{
1159
- "type":"structure",
1160
- "required":["KeyId"],
1161
- "members":{
1162
- "KeyId":{"shape":"KeyIdType"},
1163
- "EncryptionContext":{"shape":"EncryptionContextType"},
1164
- "KeySpec":{"shape":"DataKeySpec"},
1165
- "NumberOfBytes":{"shape":"NumberOfBytesType"},
1166
- "GrantTokens":{"shape":"GrantTokenList"}
1167
- }
1168
- },
1169
- "GenerateDataKeyWithoutPlaintextResponse":{
1170
- "type":"structure",
1171
- "members":{
1172
- "CiphertextBlob":{"shape":"CiphertextType"},
1173
- "KeyId":{"shape":"KeyIdType"}
1174
- }
1175
- },
1176
- "GenerateRandomRequest":{
1177
- "type":"structure",
1178
- "members":{
1179
- "NumberOfBytes":{"shape":"NumberOfBytesType"},
1180
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
1181
- }
1182
- },
1183
- "GenerateRandomResponse":{
1184
- "type":"structure",
1185
- "members":{
1186
- "Plaintext":{"shape":"PlaintextType"}
1187
- }
1188
- },
1189
- "GetKeyPolicyRequest":{
1190
- "type":"structure",
1191
- "required":[
1192
- "KeyId",
1193
- "PolicyName"
1194
- ],
1195
- "members":{
1196
- "KeyId":{"shape":"KeyIdType"},
1197
- "PolicyName":{"shape":"PolicyNameType"}
1198
- }
1199
- },
1200
- "GetKeyPolicyResponse":{
1201
- "type":"structure",
1202
- "members":{
1203
- "Policy":{"shape":"PolicyType"}
1204
- }
1205
- },
1206
- "GetKeyRotationStatusRequest":{
1207
- "type":"structure",
1208
- "required":["KeyId"],
1209
- "members":{
1210
- "KeyId":{"shape":"KeyIdType"}
1211
- }
1212
- },
1213
- "GetKeyRotationStatusResponse":{
1214
- "type":"structure",
1215
- "members":{
1216
- "KeyRotationEnabled":{"shape":"BooleanType"}
1217
- }
1218
- },
1219
- "GetParametersForImportRequest":{
1220
- "type":"structure",
1221
- "required":[
1222
- "KeyId",
1223
- "WrappingAlgorithm",
1224
- "WrappingKeySpec"
1225
- ],
1226
- "members":{
1227
- "KeyId":{"shape":"KeyIdType"},
1228
- "WrappingAlgorithm":{"shape":"AlgorithmSpec"},
1229
- "WrappingKeySpec":{"shape":"WrappingKeySpec"}
1230
- }
1231
- },
1232
- "GetParametersForImportResponse":{
1233
- "type":"structure",
1234
- "members":{
1235
- "KeyId":{"shape":"KeyIdType"},
1236
- "ImportToken":{"shape":"CiphertextType"},
1237
- "PublicKey":{"shape":"PlaintextType"},
1238
- "ParametersValidTo":{"shape":"DateType"}
1239
- }
1240
- },
1241
- "GrantConstraints":{
1242
- "type":"structure",
1243
- "members":{
1244
- "EncryptionContextSubset":{"shape":"EncryptionContextType"},
1245
- "EncryptionContextEquals":{"shape":"EncryptionContextType"}
1246
- }
1247
- },
1248
- "GrantIdType":{
1249
- "type":"string",
1250
- "max":128,
1251
- "min":1
1252
- },
1253
- "GrantList":{
1254
- "type":"list",
1255
- "member":{"shape":"GrantListEntry"}
1256
- },
1257
- "GrantListEntry":{
1258
- "type":"structure",
1259
- "members":{
1260
- "KeyId":{"shape":"KeyIdType"},
1261
- "GrantId":{"shape":"GrantIdType"},
1262
- "Name":{"shape":"GrantNameType"},
1263
- "CreationDate":{"shape":"DateType"},
1264
- "GranteePrincipal":{"shape":"PrincipalIdType"},
1265
- "RetiringPrincipal":{"shape":"PrincipalIdType"},
1266
- "IssuingAccount":{"shape":"PrincipalIdType"},
1267
- "Operations":{"shape":"GrantOperationList"},
1268
- "Constraints":{"shape":"GrantConstraints"}
1269
- }
1270
- },
1271
- "GrantNameType":{
1272
- "type":"string",
1273
- "max":256,
1274
- "min":1,
1275
- "pattern":"^[a-zA-Z0-9:/_-]+$"
1276
- },
1277
- "GrantOperation":{
1278
- "type":"string",
1279
- "enum":[
1280
- "Decrypt",
1281
- "Encrypt",
1282
- "GenerateDataKey",
1283
- "GenerateDataKeyWithoutPlaintext",
1284
- "ReEncryptFrom",
1285
- "ReEncryptTo",
1286
- "CreateGrant",
1287
- "RetireGrant",
1288
- "DescribeKey"
1289
- ]
1290
- },
1291
- "GrantOperationList":{
1292
- "type":"list",
1293
- "member":{"shape":"GrantOperation"}
1294
- },
1295
- "GrantTokenList":{
1296
- "type":"list",
1297
- "member":{"shape":"GrantTokenType"},
1298
- "max":10,
1299
- "min":0
1300
- },
1301
- "GrantTokenType":{
1302
- "type":"string",
1303
- "max":8192,
1304
- "min":1
1305
- },
1306
- "ImportKeyMaterialRequest":{
1307
- "type":"structure",
1308
- "required":[
1309
- "KeyId",
1310
- "ImportToken",
1311
- "EncryptedKeyMaterial"
1312
- ],
1313
- "members":{
1314
- "KeyId":{"shape":"KeyIdType"},
1315
- "ImportToken":{"shape":"CiphertextType"},
1316
- "EncryptedKeyMaterial":{"shape":"CiphertextType"},
1317
- "ValidTo":{"shape":"DateType"},
1318
- "ExpirationModel":{"shape":"ExpirationModelType"}
1319
- }
1320
- },
1321
- "ImportKeyMaterialResponse":{
1322
- "type":"structure",
1323
- "members":{
1324
- }
1325
- },
1326
- "IncorrectKeyMaterialException":{
1327
- "type":"structure",
1328
- "members":{
1329
- "message":{"shape":"ErrorMessageType"}
1330
- },
1331
- "exception":true
1332
- },
1333
- "IncorrectTrustAnchorException":{
1334
- "type":"structure",
1335
- "members":{
1336
- "message":{"shape":"ErrorMessageType"}
1337
- },
1338
- "exception":true
1339
- },
1340
- "InvalidAliasNameException":{
1341
- "type":"structure",
1342
- "members":{
1343
- "message":{"shape":"ErrorMessageType"}
1344
- },
1345
- "exception":true
1346
- },
1347
- "InvalidArnException":{
1348
- "type":"structure",
1349
- "members":{
1350
- "message":{"shape":"ErrorMessageType"}
1351
- },
1352
- "exception":true
1353
- },
1354
- "InvalidCiphertextException":{
1355
- "type":"structure",
1356
- "members":{
1357
- "message":{"shape":"ErrorMessageType"}
1358
- },
1359
- "exception":true
1360
- },
1361
- "InvalidGrantIdException":{
1362
- "type":"structure",
1363
- "members":{
1364
- "message":{"shape":"ErrorMessageType"}
1365
- },
1366
- "exception":true
1367
- },
1368
- "InvalidGrantTokenException":{
1369
- "type":"structure",
1370
- "members":{
1371
- "message":{"shape":"ErrorMessageType"}
1372
- },
1373
- "exception":true
1374
- },
1375
- "InvalidImportTokenException":{
1376
- "type":"structure",
1377
- "members":{
1378
- "message":{"shape":"ErrorMessageType"}
1379
- },
1380
- "exception":true
1381
- },
1382
- "InvalidKeyUsageException":{
1383
- "type":"structure",
1384
- "members":{
1385
- "message":{"shape":"ErrorMessageType"}
1386
- },
1387
- "exception":true
1388
- },
1389
- "InvalidMarkerException":{
1390
- "type":"structure",
1391
- "members":{
1392
- "message":{"shape":"ErrorMessageType"}
1393
- },
1394
- "exception":true
1395
- },
1396
- "KMSInternalException":{
1397
- "type":"structure",
1398
- "members":{
1399
- "message":{"shape":"ErrorMessageType"}
1400
- },
1401
- "exception":true,
1402
- "fault":true
1403
- },
1404
- "KMSInvalidStateException":{
1405
- "type":"structure",
1406
- "members":{
1407
- "message":{"shape":"ErrorMessageType"}
1408
- },
1409
- "exception":true
1410
- },
1411
- "KeyIdType":{
1412
- "type":"string",
1413
- "max":2048,
1414
- "min":1
1415
- },
1416
- "KeyList":{
1417
- "type":"list",
1418
- "member":{"shape":"KeyListEntry"}
1419
- },
1420
- "KeyListEntry":{
1421
- "type":"structure",
1422
- "members":{
1423
- "KeyId":{"shape":"KeyIdType"},
1424
- "KeyArn":{"shape":"ArnType"}
1425
- }
1426
- },
1427
- "KeyManagerType":{
1428
- "type":"string",
1429
- "enum":[
1430
- "AWS",
1431
- "CUSTOMER"
1432
- ]
1433
- },
1434
- "KeyMetadata":{
1435
- "type":"structure",
1436
- "required":["KeyId"],
1437
- "members":{
1438
- "AWSAccountId":{"shape":"AWSAccountIdType"},
1439
- "KeyId":{"shape":"KeyIdType"},
1440
- "Arn":{"shape":"ArnType"},
1441
- "CreationDate":{"shape":"DateType"},
1442
- "Enabled":{"shape":"BooleanType"},
1443
- "Description":{"shape":"DescriptionType"},
1444
- "KeyUsage":{"shape":"KeyUsageType"},
1445
- "KeyState":{"shape":"KeyState"},
1446
- "DeletionDate":{"shape":"DateType"},
1447
- "ValidTo":{"shape":"DateType"},
1448
- "Origin":{"shape":"OriginType"},
1449
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
1450
- "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"},
1451
- "ExpirationModel":{"shape":"ExpirationModelType"},
1452
- "KeyManager":{"shape":"KeyManagerType"}
1453
- }
1454
- },
1455
- "KeyState":{
1456
- "type":"string",
1457
- "enum":[
1458
- "Enabled",
1459
- "Disabled",
1460
- "PendingDeletion",
1461
- "PendingImport",
1462
- "Unavailable"
1463
- ]
1464
- },
1465
- "KeyStorePasswordType":{
1466
- "type":"string",
1467
- "min":1,
1468
- "sensitive":true
1469
- },
1470
- "KeyUnavailableException":{
1471
- "type":"structure",
1472
- "members":{
1473
- "message":{"shape":"ErrorMessageType"}
1474
- },
1475
- "exception":true,
1476
- "fault":true
1477
- },
1478
- "KeyUsageType":{
1479
- "type":"string",
1480
- "enum":["ENCRYPT_DECRYPT"]
1481
- },
1482
- "LimitExceededException":{
1483
- "type":"structure",
1484
- "members":{
1485
- "message":{"shape":"ErrorMessageType"}
1486
- },
1487
- "exception":true
1488
- },
1489
- "LimitType":{
1490
- "type":"integer",
1491
- "max":1000,
1492
- "min":1
1493
- },
1494
- "ListAliasesRequest":{
1495
- "type":"structure",
1496
- "members":{
1497
- "KeyId":{"shape":"KeyIdType"},
1498
- "Limit":{"shape":"LimitType"},
1499
- "Marker":{"shape":"MarkerType"}
1500
- }
1501
- },
1502
- "ListAliasesResponse":{
1503
- "type":"structure",
1504
- "members":{
1505
- "Aliases":{"shape":"AliasList"},
1506
- "NextMarker":{"shape":"MarkerType"},
1507
- "Truncated":{"shape":"BooleanType"}
1508
- }
1509
- },
1510
- "ListGrantsRequest":{
1511
- "type":"structure",
1512
- "required":["KeyId"],
1513
- "members":{
1514
- "Limit":{"shape":"LimitType"},
1515
- "Marker":{"shape":"MarkerType"},
1516
- "KeyId":{"shape":"KeyIdType"}
1517
- }
1518
- },
1519
- "ListGrantsResponse":{
1520
- "type":"structure",
1521
- "members":{
1522
- "Grants":{"shape":"GrantList"},
1523
- "NextMarker":{"shape":"MarkerType"},
1524
- "Truncated":{"shape":"BooleanType"}
1525
- }
1526
- },
1527
- "ListKeyPoliciesRequest":{
1528
- "type":"structure",
1529
- "required":["KeyId"],
1530
- "members":{
1531
- "KeyId":{"shape":"KeyIdType"},
1532
- "Limit":{"shape":"LimitType"},
1533
- "Marker":{"shape":"MarkerType"}
1534
- }
1535
- },
1536
- "ListKeyPoliciesResponse":{
1537
- "type":"structure",
1538
- "members":{
1539
- "PolicyNames":{"shape":"PolicyNameList"},
1540
- "NextMarker":{"shape":"MarkerType"},
1541
- "Truncated":{"shape":"BooleanType"}
1542
- }
1543
- },
1544
- "ListKeysRequest":{
1545
- "type":"structure",
1546
- "members":{
1547
- "Limit":{"shape":"LimitType"},
1548
- "Marker":{"shape":"MarkerType"}
1549
- }
1550
- },
1551
- "ListKeysResponse":{
1552
- "type":"structure",
1553
- "members":{
1554
- "Keys":{"shape":"KeyList"},
1555
- "NextMarker":{"shape":"MarkerType"},
1556
- "Truncated":{"shape":"BooleanType"}
1557
- }
1558
- },
1559
- "ListResourceTagsRequest":{
1560
- "type":"structure",
1561
- "required":["KeyId"],
1562
- "members":{
1563
- "KeyId":{"shape":"KeyIdType"},
1564
- "Limit":{"shape":"LimitType"},
1565
- "Marker":{"shape":"MarkerType"}
1566
- }
1567
- },
1568
- "ListResourceTagsResponse":{
1569
- "type":"structure",
1570
- "members":{
1571
- "Tags":{"shape":"TagList"},
1572
- "NextMarker":{"shape":"MarkerType"},
1573
- "Truncated":{"shape":"BooleanType"}
1574
- }
1575
- },
1576
- "ListRetirableGrantsRequest":{
1577
- "type":"structure",
1578
- "required":["RetiringPrincipal"],
1579
- "members":{
1580
- "Limit":{"shape":"LimitType"},
1581
- "Marker":{"shape":"MarkerType"},
1582
- "RetiringPrincipal":{"shape":"PrincipalIdType"}
1583
- }
1584
- },
1585
- "MalformedPolicyDocumentException":{
1586
- "type":"structure",
1587
- "members":{
1588
- "message":{"shape":"ErrorMessageType"}
1589
- },
1590
- "exception":true
1591
- },
1592
- "MarkerType":{
1593
- "type":"string",
1594
- "max":1024,
1595
- "min":1,
1596
- "pattern":"[\\u0020-\\u00FF]*"
1597
- },
1598
- "NotFoundException":{
1599
- "type":"structure",
1600
- "members":{
1601
- "message":{"shape":"ErrorMessageType"}
1602
- },
1603
- "exception":true
1604
- },
1605
- "NumberOfBytesType":{
1606
- "type":"integer",
1607
- "max":1024,
1608
- "min":1
1609
- },
1610
- "OriginType":{
1611
- "type":"string",
1612
- "enum":[
1613
- "AWS_KMS",
1614
- "EXTERNAL",
1615
- "AWS_CLOUDHSM"
1616
- ]
1617
- },
1618
- "PendingWindowInDaysType":{
1619
- "type":"integer",
1620
- "max":365,
1621
- "min":1
1622
- },
1623
- "PlaintextType":{
1624
- "type":"blob",
1625
- "max":4096,
1626
- "min":1,
1627
- "sensitive":true
1628
- },
1629
- "PolicyNameList":{
1630
- "type":"list",
1631
- "member":{"shape":"PolicyNameType"}
1632
- },
1633
- "PolicyNameType":{
1634
- "type":"string",
1635
- "max":128,
1636
- "min":1,
1637
- "pattern":"[\\w]+"
1638
- },
1639
- "PolicyType":{
1640
- "type":"string",
1641
- "max":131072,
1642
- "min":1,
1643
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
1644
- },
1645
- "PrincipalIdType":{
1646
- "type":"string",
1647
- "max":256,
1648
- "min":1,
1649
- "pattern":"^[\\w+=,.@:/-]+$"
1650
- },
1651
- "PutKeyPolicyRequest":{
1652
- "type":"structure",
1653
- "required":[
1654
- "KeyId",
1655
- "PolicyName",
1656
- "Policy"
1657
- ],
1658
- "members":{
1659
- "KeyId":{"shape":"KeyIdType"},
1660
- "PolicyName":{"shape":"PolicyNameType"},
1661
- "Policy":{"shape":"PolicyType"},
1662
- "BypassPolicyLockoutSafetyCheck":{"shape":"BooleanType"}
1663
- }
1664
- },
1665
- "ReEncryptRequest":{
1666
- "type":"structure",
1667
- "required":[
1668
- "CiphertextBlob",
1669
- "DestinationKeyId"
1670
- ],
1671
- "members":{
1672
- "CiphertextBlob":{"shape":"CiphertextType"},
1673
- "SourceEncryptionContext":{"shape":"EncryptionContextType"},
1674
- "DestinationKeyId":{"shape":"KeyIdType"},
1675
- "DestinationEncryptionContext":{"shape":"EncryptionContextType"},
1676
- "GrantTokens":{"shape":"GrantTokenList"}
1677
- }
1678
- },
1679
- "ReEncryptResponse":{
1680
- "type":"structure",
1681
- "members":{
1682
- "CiphertextBlob":{"shape":"CiphertextType"},
1683
- "SourceKeyId":{"shape":"KeyIdType"},
1684
- "KeyId":{"shape":"KeyIdType"}
1685
- }
1686
- },
1687
- "RetireGrantRequest":{
1688
- "type":"structure",
1689
- "members":{
1690
- "GrantToken":{"shape":"GrantTokenType"},
1691
- "KeyId":{"shape":"KeyIdType"},
1692
- "GrantId":{"shape":"GrantIdType"}
1693
- }
1694
- },
1695
- "RevokeGrantRequest":{
1696
- "type":"structure",
1697
- "required":[
1698
- "KeyId",
1699
- "GrantId"
1700
- ],
1701
- "members":{
1702
- "KeyId":{"shape":"KeyIdType"},
1703
- "GrantId":{"shape":"GrantIdType"}
1704
- }
1705
- },
1706
- "ScheduleKeyDeletionRequest":{
1707
- "type":"structure",
1708
- "required":["KeyId"],
1709
- "members":{
1710
- "KeyId":{"shape":"KeyIdType"},
1711
- "PendingWindowInDays":{"shape":"PendingWindowInDaysType"}
1712
- }
1713
- },
1714
- "ScheduleKeyDeletionResponse":{
1715
- "type":"structure",
1716
- "members":{
1717
- "KeyId":{"shape":"KeyIdType"},
1718
- "DeletionDate":{"shape":"DateType"}
1719
- }
1720
- },
1721
- "Tag":{
1722
- "type":"structure",
1723
- "required":[
1724
- "TagKey",
1725
- "TagValue"
1726
- ],
1727
- "members":{
1728
- "TagKey":{"shape":"TagKeyType"},
1729
- "TagValue":{"shape":"TagValueType"}
1730
- }
1731
- },
1732
- "TagException":{
1733
- "type":"structure",
1734
- "members":{
1735
- "message":{"shape":"ErrorMessageType"}
1736
- },
1737
- "exception":true
1738
- },
1739
- "TagKeyList":{
1740
- "type":"list",
1741
- "member":{"shape":"TagKeyType"}
1742
- },
1743
- "TagKeyType":{
1744
- "type":"string",
1745
- "max":128,
1746
- "min":1
1747
- },
1748
- "TagList":{
1749
- "type":"list",
1750
- "member":{"shape":"Tag"}
1751
- },
1752
- "TagResourceRequest":{
1753
- "type":"structure",
1754
- "required":[
1755
- "KeyId",
1756
- "Tags"
1757
- ],
1758
- "members":{
1759
- "KeyId":{"shape":"KeyIdType"},
1760
- "Tags":{"shape":"TagList"}
1761
- }
1762
- },
1763
- "TagValueType":{
1764
- "type":"string",
1765
- "max":256,
1766
- "min":0
1767
- },
1768
- "TrustAnchorCertificateType":{
1769
- "type":"string",
1770
- "max":5000,
1771
- "min":1
1772
- },
1773
- "UnsupportedOperationException":{
1774
- "type":"structure",
1775
- "members":{
1776
- "message":{"shape":"ErrorMessageType"}
1777
- },
1778
- "exception":true
1779
- },
1780
- "UntagResourceRequest":{
1781
- "type":"structure",
1782
- "required":[
1783
- "KeyId",
1784
- "TagKeys"
1785
- ],
1786
- "members":{
1787
- "KeyId":{"shape":"KeyIdType"},
1788
- "TagKeys":{"shape":"TagKeyList"}
1789
- }
1790
- },
1791
- "UpdateAliasRequest":{
1792
- "type":"structure",
1793
- "required":[
1794
- "AliasName",
1795
- "TargetKeyId"
1796
- ],
1797
- "members":{
1798
- "AliasName":{"shape":"AliasNameType"},
1799
- "TargetKeyId":{"shape":"KeyIdType"}
1800
- }
1801
- },
1802
- "UpdateCustomKeyStoreRequest":{
1803
- "type":"structure",
1804
- "required":["CustomKeyStoreId"],
1805
- "members":{
1806
- "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
1807
- "NewCustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
1808
- "KeyStorePassword":{"shape":"KeyStorePasswordType"},
1809
- "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"}
1810
- }
1811
- },
1812
- "UpdateCustomKeyStoreResponse":{
1813
- "type":"structure",
1814
- "members":{
1815
- }
1816
- },
1817
- "UpdateKeyDescriptionRequest":{
1818
- "type":"structure",
1819
- "required":[
1820
- "KeyId",
1821
- "Description"
1822
- ],
1823
- "members":{
1824
- "KeyId":{"shape":"KeyIdType"},
1825
- "Description":{"shape":"DescriptionType"}
1826
- }
1827
- },
1828
- "WrappingKeySpec":{
1829
- "type":"string",
1830
- "enum":["RSA_2048"]
1831
- }
1832
- }
1833
- }