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,3134 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2010-12-01",
5
- "endpointPrefix":"email",
6
- "protocol":"query",
7
- "serviceAbbreviation":"Amazon SES",
8
- "serviceFullName":"Amazon Simple Email Service",
9
- "serviceId":"SES",
10
- "signatureVersion":"v4",
11
- "signingName":"ses",
12
- "uid":"email-2010-12-01",
13
- "xmlNamespace":"http://ses.amazonaws.com/doc/2010-12-01/"
14
- },
15
- "operations":{
16
- "CloneReceiptRuleSet":{
17
- "name":"CloneReceiptRuleSet",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CloneReceiptRuleSetRequest"},
23
- "output":{
24
- "shape":"CloneReceiptRuleSetResponse",
25
- "resultWrapper":"CloneReceiptRuleSetResult"
26
- },
27
- "errors":[
28
- {"shape":"RuleSetDoesNotExistException"},
29
- {"shape":"AlreadyExistsException"},
30
- {"shape":"LimitExceededException"}
31
- ]
32
- },
33
- "CreateConfigurationSet":{
34
- "name":"CreateConfigurationSet",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/"
38
- },
39
- "input":{"shape":"CreateConfigurationSetRequest"},
40
- "output":{
41
- "shape":"CreateConfigurationSetResponse",
42
- "resultWrapper":"CreateConfigurationSetResult"
43
- },
44
- "errors":[
45
- {"shape":"ConfigurationSetAlreadyExistsException"},
46
- {"shape":"InvalidConfigurationSetException"},
47
- {"shape":"LimitExceededException"}
48
- ]
49
- },
50
- "CreateConfigurationSetEventDestination":{
51
- "name":"CreateConfigurationSetEventDestination",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"CreateConfigurationSetEventDestinationRequest"},
57
- "output":{
58
- "shape":"CreateConfigurationSetEventDestinationResponse",
59
- "resultWrapper":"CreateConfigurationSetEventDestinationResult"
60
- },
61
- "errors":[
62
- {"shape":"ConfigurationSetDoesNotExistException"},
63
- {"shape":"EventDestinationAlreadyExistsException"},
64
- {"shape":"InvalidCloudWatchDestinationException"},
65
- {"shape":"InvalidFirehoseDestinationException"},
66
- {"shape":"InvalidSNSDestinationException"},
67
- {"shape":"LimitExceededException"}
68
- ]
69
- },
70
- "CreateConfigurationSetTrackingOptions":{
71
- "name":"CreateConfigurationSetTrackingOptions",
72
- "http":{
73
- "method":"POST",
74
- "requestUri":"/"
75
- },
76
- "input":{"shape":"CreateConfigurationSetTrackingOptionsRequest"},
77
- "output":{
78
- "shape":"CreateConfigurationSetTrackingOptionsResponse",
79
- "resultWrapper":"CreateConfigurationSetTrackingOptionsResult"
80
- },
81
- "errors":[
82
- {"shape":"ConfigurationSetDoesNotExistException"},
83
- {"shape":"TrackingOptionsAlreadyExistsException"},
84
- {"shape":"InvalidTrackingOptionsException"}
85
- ]
86
- },
87
- "CreateCustomVerificationEmailTemplate":{
88
- "name":"CreateCustomVerificationEmailTemplate",
89
- "http":{
90
- "method":"POST",
91
- "requestUri":"/"
92
- },
93
- "input":{"shape":"CreateCustomVerificationEmailTemplateRequest"},
94
- "errors":[
95
- {"shape":"CustomVerificationEmailTemplateAlreadyExistsException"},
96
- {"shape":"FromEmailAddressNotVerifiedException"},
97
- {"shape":"CustomVerificationEmailInvalidContentException"},
98
- {"shape":"LimitExceededException"}
99
- ]
100
- },
101
- "CreateReceiptFilter":{
102
- "name":"CreateReceiptFilter",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/"
106
- },
107
- "input":{"shape":"CreateReceiptFilterRequest"},
108
- "output":{
109
- "shape":"CreateReceiptFilterResponse",
110
- "resultWrapper":"CreateReceiptFilterResult"
111
- },
112
- "errors":[
113
- {"shape":"LimitExceededException"},
114
- {"shape":"AlreadyExistsException"}
115
- ]
116
- },
117
- "CreateReceiptRule":{
118
- "name":"CreateReceiptRule",
119
- "http":{
120
- "method":"POST",
121
- "requestUri":"/"
122
- },
123
- "input":{"shape":"CreateReceiptRuleRequest"},
124
- "output":{
125
- "shape":"CreateReceiptRuleResponse",
126
- "resultWrapper":"CreateReceiptRuleResult"
127
- },
128
- "errors":[
129
- {"shape":"InvalidSnsTopicException"},
130
- {"shape":"InvalidS3ConfigurationException"},
131
- {"shape":"InvalidLambdaFunctionException"},
132
- {"shape":"AlreadyExistsException"},
133
- {"shape":"RuleDoesNotExistException"},
134
- {"shape":"RuleSetDoesNotExistException"},
135
- {"shape":"LimitExceededException"}
136
- ]
137
- },
138
- "CreateReceiptRuleSet":{
139
- "name":"CreateReceiptRuleSet",
140
- "http":{
141
- "method":"POST",
142
- "requestUri":"/"
143
- },
144
- "input":{"shape":"CreateReceiptRuleSetRequest"},
145
- "output":{
146
- "shape":"CreateReceiptRuleSetResponse",
147
- "resultWrapper":"CreateReceiptRuleSetResult"
148
- },
149
- "errors":[
150
- {"shape":"AlreadyExistsException"},
151
- {"shape":"LimitExceededException"}
152
- ]
153
- },
154
- "CreateTemplate":{
155
- "name":"CreateTemplate",
156
- "http":{
157
- "method":"POST",
158
- "requestUri":"/"
159
- },
160
- "input":{"shape":"CreateTemplateRequest"},
161
- "output":{
162
- "shape":"CreateTemplateResponse",
163
- "resultWrapper":"CreateTemplateResult"
164
- },
165
- "errors":[
166
- {"shape":"AlreadyExistsException"},
167
- {"shape":"InvalidTemplateException"},
168
- {"shape":"LimitExceededException"}
169
- ]
170
- },
171
- "DeleteConfigurationSet":{
172
- "name":"DeleteConfigurationSet",
173
- "http":{
174
- "method":"POST",
175
- "requestUri":"/"
176
- },
177
- "input":{"shape":"DeleteConfigurationSetRequest"},
178
- "output":{
179
- "shape":"DeleteConfigurationSetResponse",
180
- "resultWrapper":"DeleteConfigurationSetResult"
181
- },
182
- "errors":[
183
- {"shape":"ConfigurationSetDoesNotExistException"}
184
- ]
185
- },
186
- "DeleteConfigurationSetEventDestination":{
187
- "name":"DeleteConfigurationSetEventDestination",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/"
191
- },
192
- "input":{"shape":"DeleteConfigurationSetEventDestinationRequest"},
193
- "output":{
194
- "shape":"DeleteConfigurationSetEventDestinationResponse",
195
- "resultWrapper":"DeleteConfigurationSetEventDestinationResult"
196
- },
197
- "errors":[
198
- {"shape":"ConfigurationSetDoesNotExistException"},
199
- {"shape":"EventDestinationDoesNotExistException"}
200
- ]
201
- },
202
- "DeleteConfigurationSetTrackingOptions":{
203
- "name":"DeleteConfigurationSetTrackingOptions",
204
- "http":{
205
- "method":"POST",
206
- "requestUri":"/"
207
- },
208
- "input":{"shape":"DeleteConfigurationSetTrackingOptionsRequest"},
209
- "output":{
210
- "shape":"DeleteConfigurationSetTrackingOptionsResponse",
211
- "resultWrapper":"DeleteConfigurationSetTrackingOptionsResult"
212
- },
213
- "errors":[
214
- {"shape":"ConfigurationSetDoesNotExistException"},
215
- {"shape":"TrackingOptionsDoesNotExistException"}
216
- ]
217
- },
218
- "DeleteCustomVerificationEmailTemplate":{
219
- "name":"DeleteCustomVerificationEmailTemplate",
220
- "http":{
221
- "method":"POST",
222
- "requestUri":"/"
223
- },
224
- "input":{"shape":"DeleteCustomVerificationEmailTemplateRequest"}
225
- },
226
- "DeleteIdentity":{
227
- "name":"DeleteIdentity",
228
- "http":{
229
- "method":"POST",
230
- "requestUri":"/"
231
- },
232
- "input":{"shape":"DeleteIdentityRequest"},
233
- "output":{
234
- "shape":"DeleteIdentityResponse",
235
- "resultWrapper":"DeleteIdentityResult"
236
- }
237
- },
238
- "DeleteIdentityPolicy":{
239
- "name":"DeleteIdentityPolicy",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"DeleteIdentityPolicyRequest"},
245
- "output":{
246
- "shape":"DeleteIdentityPolicyResponse",
247
- "resultWrapper":"DeleteIdentityPolicyResult"
248
- }
249
- },
250
- "DeleteReceiptFilter":{
251
- "name":"DeleteReceiptFilter",
252
- "http":{
253
- "method":"POST",
254
- "requestUri":"/"
255
- },
256
- "input":{"shape":"DeleteReceiptFilterRequest"},
257
- "output":{
258
- "shape":"DeleteReceiptFilterResponse",
259
- "resultWrapper":"DeleteReceiptFilterResult"
260
- }
261
- },
262
- "DeleteReceiptRule":{
263
- "name":"DeleteReceiptRule",
264
- "http":{
265
- "method":"POST",
266
- "requestUri":"/"
267
- },
268
- "input":{"shape":"DeleteReceiptRuleRequest"},
269
- "output":{
270
- "shape":"DeleteReceiptRuleResponse",
271
- "resultWrapper":"DeleteReceiptRuleResult"
272
- },
273
- "errors":[
274
- {"shape":"RuleSetDoesNotExistException"}
275
- ]
276
- },
277
- "DeleteReceiptRuleSet":{
278
- "name":"DeleteReceiptRuleSet",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"DeleteReceiptRuleSetRequest"},
284
- "output":{
285
- "shape":"DeleteReceiptRuleSetResponse",
286
- "resultWrapper":"DeleteReceiptRuleSetResult"
287
- },
288
- "errors":[
289
- {"shape":"CannotDeleteException"}
290
- ]
291
- },
292
- "DeleteTemplate":{
293
- "name":"DeleteTemplate",
294
- "http":{
295
- "method":"POST",
296
- "requestUri":"/"
297
- },
298
- "input":{"shape":"DeleteTemplateRequest"},
299
- "output":{
300
- "shape":"DeleteTemplateResponse",
301
- "resultWrapper":"DeleteTemplateResult"
302
- }
303
- },
304
- "DeleteVerifiedEmailAddress":{
305
- "name":"DeleteVerifiedEmailAddress",
306
- "http":{
307
- "method":"POST",
308
- "requestUri":"/"
309
- },
310
- "input":{"shape":"DeleteVerifiedEmailAddressRequest"}
311
- },
312
- "DescribeActiveReceiptRuleSet":{
313
- "name":"DescribeActiveReceiptRuleSet",
314
- "http":{
315
- "method":"POST",
316
- "requestUri":"/"
317
- },
318
- "input":{"shape":"DescribeActiveReceiptRuleSetRequest"},
319
- "output":{
320
- "shape":"DescribeActiveReceiptRuleSetResponse",
321
- "resultWrapper":"DescribeActiveReceiptRuleSetResult"
322
- }
323
- },
324
- "DescribeConfigurationSet":{
325
- "name":"DescribeConfigurationSet",
326
- "http":{
327
- "method":"POST",
328
- "requestUri":"/"
329
- },
330
- "input":{"shape":"DescribeConfigurationSetRequest"},
331
- "output":{
332
- "shape":"DescribeConfigurationSetResponse",
333
- "resultWrapper":"DescribeConfigurationSetResult"
334
- },
335
- "errors":[
336
- {"shape":"ConfigurationSetDoesNotExistException"}
337
- ]
338
- },
339
- "DescribeReceiptRule":{
340
- "name":"DescribeReceiptRule",
341
- "http":{
342
- "method":"POST",
343
- "requestUri":"/"
344
- },
345
- "input":{"shape":"DescribeReceiptRuleRequest"},
346
- "output":{
347
- "shape":"DescribeReceiptRuleResponse",
348
- "resultWrapper":"DescribeReceiptRuleResult"
349
- },
350
- "errors":[
351
- {"shape":"RuleDoesNotExistException"},
352
- {"shape":"RuleSetDoesNotExistException"}
353
- ]
354
- },
355
- "DescribeReceiptRuleSet":{
356
- "name":"DescribeReceiptRuleSet",
357
- "http":{
358
- "method":"POST",
359
- "requestUri":"/"
360
- },
361
- "input":{"shape":"DescribeReceiptRuleSetRequest"},
362
- "output":{
363
- "shape":"DescribeReceiptRuleSetResponse",
364
- "resultWrapper":"DescribeReceiptRuleSetResult"
365
- },
366
- "errors":[
367
- {"shape":"RuleSetDoesNotExistException"}
368
- ]
369
- },
370
- "GetAccountSendingEnabled":{
371
- "name":"GetAccountSendingEnabled",
372
- "http":{
373
- "method":"POST",
374
- "requestUri":"/"
375
- },
376
- "output":{
377
- "shape":"GetAccountSendingEnabledResponse",
378
- "resultWrapper":"GetAccountSendingEnabledResult"
379
- }
380
- },
381
- "GetCustomVerificationEmailTemplate":{
382
- "name":"GetCustomVerificationEmailTemplate",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"GetCustomVerificationEmailTemplateRequest"},
388
- "output":{
389
- "shape":"GetCustomVerificationEmailTemplateResponse",
390
- "resultWrapper":"GetCustomVerificationEmailTemplateResult"
391
- },
392
- "errors":[
393
- {"shape":"CustomVerificationEmailTemplateDoesNotExistException"}
394
- ]
395
- },
396
- "GetIdentityDkimAttributes":{
397
- "name":"GetIdentityDkimAttributes",
398
- "http":{
399
- "method":"POST",
400
- "requestUri":"/"
401
- },
402
- "input":{"shape":"GetIdentityDkimAttributesRequest"},
403
- "output":{
404
- "shape":"GetIdentityDkimAttributesResponse",
405
- "resultWrapper":"GetIdentityDkimAttributesResult"
406
- }
407
- },
408
- "GetIdentityMailFromDomainAttributes":{
409
- "name":"GetIdentityMailFromDomainAttributes",
410
- "http":{
411
- "method":"POST",
412
- "requestUri":"/"
413
- },
414
- "input":{"shape":"GetIdentityMailFromDomainAttributesRequest"},
415
- "output":{
416
- "shape":"GetIdentityMailFromDomainAttributesResponse",
417
- "resultWrapper":"GetIdentityMailFromDomainAttributesResult"
418
- }
419
- },
420
- "GetIdentityNotificationAttributes":{
421
- "name":"GetIdentityNotificationAttributes",
422
- "http":{
423
- "method":"POST",
424
- "requestUri":"/"
425
- },
426
- "input":{"shape":"GetIdentityNotificationAttributesRequest"},
427
- "output":{
428
- "shape":"GetIdentityNotificationAttributesResponse",
429
- "resultWrapper":"GetIdentityNotificationAttributesResult"
430
- }
431
- },
432
- "GetIdentityPolicies":{
433
- "name":"GetIdentityPolicies",
434
- "http":{
435
- "method":"POST",
436
- "requestUri":"/"
437
- },
438
- "input":{"shape":"GetIdentityPoliciesRequest"},
439
- "output":{
440
- "shape":"GetIdentityPoliciesResponse",
441
- "resultWrapper":"GetIdentityPoliciesResult"
442
- }
443
- },
444
- "GetIdentityVerificationAttributes":{
445
- "name":"GetIdentityVerificationAttributes",
446
- "http":{
447
- "method":"POST",
448
- "requestUri":"/"
449
- },
450
- "input":{"shape":"GetIdentityVerificationAttributesRequest"},
451
- "output":{
452
- "shape":"GetIdentityVerificationAttributesResponse",
453
- "resultWrapper":"GetIdentityVerificationAttributesResult"
454
- }
455
- },
456
- "GetSendQuota":{
457
- "name":"GetSendQuota",
458
- "http":{
459
- "method":"POST",
460
- "requestUri":"/"
461
- },
462
- "output":{
463
- "shape":"GetSendQuotaResponse",
464
- "resultWrapper":"GetSendQuotaResult"
465
- }
466
- },
467
- "GetSendStatistics":{
468
- "name":"GetSendStatistics",
469
- "http":{
470
- "method":"POST",
471
- "requestUri":"/"
472
- },
473
- "output":{
474
- "shape":"GetSendStatisticsResponse",
475
- "resultWrapper":"GetSendStatisticsResult"
476
- }
477
- },
478
- "GetTemplate":{
479
- "name":"GetTemplate",
480
- "http":{
481
- "method":"POST",
482
- "requestUri":"/"
483
- },
484
- "input":{"shape":"GetTemplateRequest"},
485
- "output":{
486
- "shape":"GetTemplateResponse",
487
- "resultWrapper":"GetTemplateResult"
488
- },
489
- "errors":[
490
- {"shape":"TemplateDoesNotExistException"}
491
- ]
492
- },
493
- "ListConfigurationSets":{
494
- "name":"ListConfigurationSets",
495
- "http":{
496
- "method":"POST",
497
- "requestUri":"/"
498
- },
499
- "input":{"shape":"ListConfigurationSetsRequest"},
500
- "output":{
501
- "shape":"ListConfigurationSetsResponse",
502
- "resultWrapper":"ListConfigurationSetsResult"
503
- }
504
- },
505
- "ListCustomVerificationEmailTemplates":{
506
- "name":"ListCustomVerificationEmailTemplates",
507
- "http":{
508
- "method":"POST",
509
- "requestUri":"/"
510
- },
511
- "input":{"shape":"ListCustomVerificationEmailTemplatesRequest"},
512
- "output":{
513
- "shape":"ListCustomVerificationEmailTemplatesResponse",
514
- "resultWrapper":"ListCustomVerificationEmailTemplatesResult"
515
- }
516
- },
517
- "ListIdentities":{
518
- "name":"ListIdentities",
519
- "http":{
520
- "method":"POST",
521
- "requestUri":"/"
522
- },
523
- "input":{"shape":"ListIdentitiesRequest"},
524
- "output":{
525
- "shape":"ListIdentitiesResponse",
526
- "resultWrapper":"ListIdentitiesResult"
527
- }
528
- },
529
- "ListIdentityPolicies":{
530
- "name":"ListIdentityPolicies",
531
- "http":{
532
- "method":"POST",
533
- "requestUri":"/"
534
- },
535
- "input":{"shape":"ListIdentityPoliciesRequest"},
536
- "output":{
537
- "shape":"ListIdentityPoliciesResponse",
538
- "resultWrapper":"ListIdentityPoliciesResult"
539
- }
540
- },
541
- "ListReceiptFilters":{
542
- "name":"ListReceiptFilters",
543
- "http":{
544
- "method":"POST",
545
- "requestUri":"/"
546
- },
547
- "input":{"shape":"ListReceiptFiltersRequest"},
548
- "output":{
549
- "shape":"ListReceiptFiltersResponse",
550
- "resultWrapper":"ListReceiptFiltersResult"
551
- }
552
- },
553
- "ListReceiptRuleSets":{
554
- "name":"ListReceiptRuleSets",
555
- "http":{
556
- "method":"POST",
557
- "requestUri":"/"
558
- },
559
- "input":{"shape":"ListReceiptRuleSetsRequest"},
560
- "output":{
561
- "shape":"ListReceiptRuleSetsResponse",
562
- "resultWrapper":"ListReceiptRuleSetsResult"
563
- }
564
- },
565
- "ListTemplates":{
566
- "name":"ListTemplates",
567
- "http":{
568
- "method":"POST",
569
- "requestUri":"/"
570
- },
571
- "input":{"shape":"ListTemplatesRequest"},
572
- "output":{
573
- "shape":"ListTemplatesResponse",
574
- "resultWrapper":"ListTemplatesResult"
575
- }
576
- },
577
- "ListVerifiedEmailAddresses":{
578
- "name":"ListVerifiedEmailAddresses",
579
- "http":{
580
- "method":"POST",
581
- "requestUri":"/"
582
- },
583
- "output":{
584
- "shape":"ListVerifiedEmailAddressesResponse",
585
- "resultWrapper":"ListVerifiedEmailAddressesResult"
586
- }
587
- },
588
- "PutIdentityPolicy":{
589
- "name":"PutIdentityPolicy",
590
- "http":{
591
- "method":"POST",
592
- "requestUri":"/"
593
- },
594
- "input":{"shape":"PutIdentityPolicyRequest"},
595
- "output":{
596
- "shape":"PutIdentityPolicyResponse",
597
- "resultWrapper":"PutIdentityPolicyResult"
598
- },
599
- "errors":[
600
- {"shape":"InvalidPolicyException"}
601
- ]
602
- },
603
- "ReorderReceiptRuleSet":{
604
- "name":"ReorderReceiptRuleSet",
605
- "http":{
606
- "method":"POST",
607
- "requestUri":"/"
608
- },
609
- "input":{"shape":"ReorderReceiptRuleSetRequest"},
610
- "output":{
611
- "shape":"ReorderReceiptRuleSetResponse",
612
- "resultWrapper":"ReorderReceiptRuleSetResult"
613
- },
614
- "errors":[
615
- {"shape":"RuleSetDoesNotExistException"},
616
- {"shape":"RuleDoesNotExistException"}
617
- ]
618
- },
619
- "SendBounce":{
620
- "name":"SendBounce",
621
- "http":{
622
- "method":"POST",
623
- "requestUri":"/"
624
- },
625
- "input":{"shape":"SendBounceRequest"},
626
- "output":{
627
- "shape":"SendBounceResponse",
628
- "resultWrapper":"SendBounceResult"
629
- },
630
- "errors":[
631
- {"shape":"MessageRejected"}
632
- ]
633
- },
634
- "SendBulkTemplatedEmail":{
635
- "name":"SendBulkTemplatedEmail",
636
- "http":{
637
- "method":"POST",
638
- "requestUri":"/"
639
- },
640
- "input":{"shape":"SendBulkTemplatedEmailRequest"},
641
- "output":{
642
- "shape":"SendBulkTemplatedEmailResponse",
643
- "resultWrapper":"SendBulkTemplatedEmailResult"
644
- },
645
- "errors":[
646
- {"shape":"MessageRejected"},
647
- {"shape":"MailFromDomainNotVerifiedException"},
648
- {"shape":"ConfigurationSetDoesNotExistException"},
649
- {"shape":"TemplateDoesNotExistException"},
650
- {"shape":"ConfigurationSetSendingPausedException"},
651
- {"shape":"AccountSendingPausedException"}
652
- ]
653
- },
654
- "SendCustomVerificationEmail":{
655
- "name":"SendCustomVerificationEmail",
656
- "http":{
657
- "method":"POST",
658
- "requestUri":"/"
659
- },
660
- "input":{"shape":"SendCustomVerificationEmailRequest"},
661
- "output":{
662
- "shape":"SendCustomVerificationEmailResponse",
663
- "resultWrapper":"SendCustomVerificationEmailResult"
664
- },
665
- "errors":[
666
- {"shape":"MessageRejected"},
667
- {"shape":"ConfigurationSetDoesNotExistException"},
668
- {"shape":"CustomVerificationEmailTemplateDoesNotExistException"},
669
- {"shape":"FromEmailAddressNotVerifiedException"},
670
- {"shape":"ProductionAccessNotGrantedException"}
671
- ]
672
- },
673
- "SendEmail":{
674
- "name":"SendEmail",
675
- "http":{
676
- "method":"POST",
677
- "requestUri":"/"
678
- },
679
- "input":{"shape":"SendEmailRequest"},
680
- "output":{
681
- "shape":"SendEmailResponse",
682
- "resultWrapper":"SendEmailResult"
683
- },
684
- "errors":[
685
- {"shape":"MessageRejected"},
686
- {"shape":"MailFromDomainNotVerifiedException"},
687
- {"shape":"ConfigurationSetDoesNotExistException"},
688
- {"shape":"ConfigurationSetSendingPausedException"},
689
- {"shape":"AccountSendingPausedException"}
690
- ]
691
- },
692
- "SendRawEmail":{
693
- "name":"SendRawEmail",
694
- "http":{
695
- "method":"POST",
696
- "requestUri":"/"
697
- },
698
- "input":{"shape":"SendRawEmailRequest"},
699
- "output":{
700
- "shape":"SendRawEmailResponse",
701
- "resultWrapper":"SendRawEmailResult"
702
- },
703
- "errors":[
704
- {"shape":"MessageRejected"},
705
- {"shape":"MailFromDomainNotVerifiedException"},
706
- {"shape":"ConfigurationSetDoesNotExistException"},
707
- {"shape":"ConfigurationSetSendingPausedException"},
708
- {"shape":"AccountSendingPausedException"}
709
- ]
710
- },
711
- "SendTemplatedEmail":{
712
- "name":"SendTemplatedEmail",
713
- "http":{
714
- "method":"POST",
715
- "requestUri":"/"
716
- },
717
- "input":{"shape":"SendTemplatedEmailRequest"},
718
- "output":{
719
- "shape":"SendTemplatedEmailResponse",
720
- "resultWrapper":"SendTemplatedEmailResult"
721
- },
722
- "errors":[
723
- {"shape":"MessageRejected"},
724
- {"shape":"MailFromDomainNotVerifiedException"},
725
- {"shape":"ConfigurationSetDoesNotExistException"},
726
- {"shape":"TemplateDoesNotExistException"},
727
- {"shape":"ConfigurationSetSendingPausedException"},
728
- {"shape":"AccountSendingPausedException"}
729
- ]
730
- },
731
- "SetActiveReceiptRuleSet":{
732
- "name":"SetActiveReceiptRuleSet",
733
- "http":{
734
- "method":"POST",
735
- "requestUri":"/"
736
- },
737
- "input":{"shape":"SetActiveReceiptRuleSetRequest"},
738
- "output":{
739
- "shape":"SetActiveReceiptRuleSetResponse",
740
- "resultWrapper":"SetActiveReceiptRuleSetResult"
741
- },
742
- "errors":[
743
- {"shape":"RuleSetDoesNotExistException"}
744
- ]
745
- },
746
- "SetIdentityDkimEnabled":{
747
- "name":"SetIdentityDkimEnabled",
748
- "http":{
749
- "method":"POST",
750
- "requestUri":"/"
751
- },
752
- "input":{"shape":"SetIdentityDkimEnabledRequest"},
753
- "output":{
754
- "shape":"SetIdentityDkimEnabledResponse",
755
- "resultWrapper":"SetIdentityDkimEnabledResult"
756
- }
757
- },
758
- "SetIdentityFeedbackForwardingEnabled":{
759
- "name":"SetIdentityFeedbackForwardingEnabled",
760
- "http":{
761
- "method":"POST",
762
- "requestUri":"/"
763
- },
764
- "input":{"shape":"SetIdentityFeedbackForwardingEnabledRequest"},
765
- "output":{
766
- "shape":"SetIdentityFeedbackForwardingEnabledResponse",
767
- "resultWrapper":"SetIdentityFeedbackForwardingEnabledResult"
768
- }
769
- },
770
- "SetIdentityHeadersInNotificationsEnabled":{
771
- "name":"SetIdentityHeadersInNotificationsEnabled",
772
- "http":{
773
- "method":"POST",
774
- "requestUri":"/"
775
- },
776
- "input":{"shape":"SetIdentityHeadersInNotificationsEnabledRequest"},
777
- "output":{
778
- "shape":"SetIdentityHeadersInNotificationsEnabledResponse",
779
- "resultWrapper":"SetIdentityHeadersInNotificationsEnabledResult"
780
- }
781
- },
782
- "SetIdentityMailFromDomain":{
783
- "name":"SetIdentityMailFromDomain",
784
- "http":{
785
- "method":"POST",
786
- "requestUri":"/"
787
- },
788
- "input":{"shape":"SetIdentityMailFromDomainRequest"},
789
- "output":{
790
- "shape":"SetIdentityMailFromDomainResponse",
791
- "resultWrapper":"SetIdentityMailFromDomainResult"
792
- }
793
- },
794
- "SetIdentityNotificationTopic":{
795
- "name":"SetIdentityNotificationTopic",
796
- "http":{
797
- "method":"POST",
798
- "requestUri":"/"
799
- },
800
- "input":{"shape":"SetIdentityNotificationTopicRequest"},
801
- "output":{
802
- "shape":"SetIdentityNotificationTopicResponse",
803
- "resultWrapper":"SetIdentityNotificationTopicResult"
804
- }
805
- },
806
- "SetReceiptRulePosition":{
807
- "name":"SetReceiptRulePosition",
808
- "http":{
809
- "method":"POST",
810
- "requestUri":"/"
811
- },
812
- "input":{"shape":"SetReceiptRulePositionRequest"},
813
- "output":{
814
- "shape":"SetReceiptRulePositionResponse",
815
- "resultWrapper":"SetReceiptRulePositionResult"
816
- },
817
- "errors":[
818
- {"shape":"RuleSetDoesNotExistException"},
819
- {"shape":"RuleDoesNotExistException"}
820
- ]
821
- },
822
- "TestRenderTemplate":{
823
- "name":"TestRenderTemplate",
824
- "http":{
825
- "method":"POST",
826
- "requestUri":"/"
827
- },
828
- "input":{"shape":"TestRenderTemplateRequest"},
829
- "output":{
830
- "shape":"TestRenderTemplateResponse",
831
- "resultWrapper":"TestRenderTemplateResult"
832
- },
833
- "errors":[
834
- {"shape":"TemplateDoesNotExistException"},
835
- {"shape":"InvalidRenderingParameterException"},
836
- {"shape":"MissingRenderingAttributeException"}
837
- ]
838
- },
839
- "UpdateAccountSendingEnabled":{
840
- "name":"UpdateAccountSendingEnabled",
841
- "http":{
842
- "method":"POST",
843
- "requestUri":"/"
844
- },
845
- "input":{"shape":"UpdateAccountSendingEnabledRequest"}
846
- },
847
- "UpdateConfigurationSetEventDestination":{
848
- "name":"UpdateConfigurationSetEventDestination",
849
- "http":{
850
- "method":"POST",
851
- "requestUri":"/"
852
- },
853
- "input":{"shape":"UpdateConfigurationSetEventDestinationRequest"},
854
- "output":{
855
- "shape":"UpdateConfigurationSetEventDestinationResponse",
856
- "resultWrapper":"UpdateConfigurationSetEventDestinationResult"
857
- },
858
- "errors":[
859
- {"shape":"ConfigurationSetDoesNotExistException"},
860
- {"shape":"EventDestinationDoesNotExistException"},
861
- {"shape":"InvalidCloudWatchDestinationException"},
862
- {"shape":"InvalidFirehoseDestinationException"},
863
- {"shape":"InvalidSNSDestinationException"}
864
- ]
865
- },
866
- "UpdateConfigurationSetReputationMetricsEnabled":{
867
- "name":"UpdateConfigurationSetReputationMetricsEnabled",
868
- "http":{
869
- "method":"POST",
870
- "requestUri":"/"
871
- },
872
- "input":{"shape":"UpdateConfigurationSetReputationMetricsEnabledRequest"},
873
- "errors":[
874
- {"shape":"ConfigurationSetDoesNotExistException"}
875
- ]
876
- },
877
- "UpdateConfigurationSetSendingEnabled":{
878
- "name":"UpdateConfigurationSetSendingEnabled",
879
- "http":{
880
- "method":"POST",
881
- "requestUri":"/"
882
- },
883
- "input":{"shape":"UpdateConfigurationSetSendingEnabledRequest"},
884
- "errors":[
885
- {"shape":"ConfigurationSetDoesNotExistException"}
886
- ]
887
- },
888
- "UpdateConfigurationSetTrackingOptions":{
889
- "name":"UpdateConfigurationSetTrackingOptions",
890
- "http":{
891
- "method":"POST",
892
- "requestUri":"/"
893
- },
894
- "input":{"shape":"UpdateConfigurationSetTrackingOptionsRequest"},
895
- "output":{
896
- "shape":"UpdateConfigurationSetTrackingOptionsResponse",
897
- "resultWrapper":"UpdateConfigurationSetTrackingOptionsResult"
898
- },
899
- "errors":[
900
- {"shape":"ConfigurationSetDoesNotExistException"},
901
- {"shape":"TrackingOptionsDoesNotExistException"},
902
- {"shape":"InvalidTrackingOptionsException"}
903
- ]
904
- },
905
- "UpdateCustomVerificationEmailTemplate":{
906
- "name":"UpdateCustomVerificationEmailTemplate",
907
- "http":{
908
- "method":"POST",
909
- "requestUri":"/"
910
- },
911
- "input":{"shape":"UpdateCustomVerificationEmailTemplateRequest"},
912
- "errors":[
913
- {"shape":"CustomVerificationEmailTemplateDoesNotExistException"},
914
- {"shape":"FromEmailAddressNotVerifiedException"},
915
- {"shape":"CustomVerificationEmailInvalidContentException"}
916
- ]
917
- },
918
- "UpdateReceiptRule":{
919
- "name":"UpdateReceiptRule",
920
- "http":{
921
- "method":"POST",
922
- "requestUri":"/"
923
- },
924
- "input":{"shape":"UpdateReceiptRuleRequest"},
925
- "output":{
926
- "shape":"UpdateReceiptRuleResponse",
927
- "resultWrapper":"UpdateReceiptRuleResult"
928
- },
929
- "errors":[
930
- {"shape":"InvalidSnsTopicException"},
931
- {"shape":"InvalidS3ConfigurationException"},
932
- {"shape":"InvalidLambdaFunctionException"},
933
- {"shape":"RuleSetDoesNotExistException"},
934
- {"shape":"RuleDoesNotExistException"},
935
- {"shape":"LimitExceededException"}
936
- ]
937
- },
938
- "UpdateTemplate":{
939
- "name":"UpdateTemplate",
940
- "http":{
941
- "method":"POST",
942
- "requestUri":"/"
943
- },
944
- "input":{"shape":"UpdateTemplateRequest"},
945
- "output":{
946
- "shape":"UpdateTemplateResponse",
947
- "resultWrapper":"UpdateTemplateResult"
948
- },
949
- "errors":[
950
- {"shape":"TemplateDoesNotExistException"},
951
- {"shape":"InvalidTemplateException"}
952
- ]
953
- },
954
- "VerifyDomainDkim":{
955
- "name":"VerifyDomainDkim",
956
- "http":{
957
- "method":"POST",
958
- "requestUri":"/"
959
- },
960
- "input":{"shape":"VerifyDomainDkimRequest"},
961
- "output":{
962
- "shape":"VerifyDomainDkimResponse",
963
- "resultWrapper":"VerifyDomainDkimResult"
964
- }
965
- },
966
- "VerifyDomainIdentity":{
967
- "name":"VerifyDomainIdentity",
968
- "http":{
969
- "method":"POST",
970
- "requestUri":"/"
971
- },
972
- "input":{"shape":"VerifyDomainIdentityRequest"},
973
- "output":{
974
- "shape":"VerifyDomainIdentityResponse",
975
- "resultWrapper":"VerifyDomainIdentityResult"
976
- }
977
- },
978
- "VerifyEmailAddress":{
979
- "name":"VerifyEmailAddress",
980
- "http":{
981
- "method":"POST",
982
- "requestUri":"/"
983
- },
984
- "input":{"shape":"VerifyEmailAddressRequest"}
985
- },
986
- "VerifyEmailIdentity":{
987
- "name":"VerifyEmailIdentity",
988
- "http":{
989
- "method":"POST",
990
- "requestUri":"/"
991
- },
992
- "input":{"shape":"VerifyEmailIdentityRequest"},
993
- "output":{
994
- "shape":"VerifyEmailIdentityResponse",
995
- "resultWrapper":"VerifyEmailIdentityResult"
996
- }
997
- }
998
- },
999
- "shapes":{
1000
- "AccountSendingPausedException":{
1001
- "type":"structure",
1002
- "members":{
1003
- },
1004
- "error":{
1005
- "code":"AccountSendingPausedException",
1006
- "httpStatusCode":400,
1007
- "senderFault":true
1008
- },
1009
- "exception":true
1010
- },
1011
- "AddHeaderAction":{
1012
- "type":"structure",
1013
- "required":[
1014
- "HeaderName",
1015
- "HeaderValue"
1016
- ],
1017
- "members":{
1018
- "HeaderName":{"shape":"HeaderName"},
1019
- "HeaderValue":{"shape":"HeaderValue"}
1020
- }
1021
- },
1022
- "Address":{"type":"string"},
1023
- "AddressList":{
1024
- "type":"list",
1025
- "member":{"shape":"Address"}
1026
- },
1027
- "AlreadyExistsException":{
1028
- "type":"structure",
1029
- "members":{
1030
- "Name":{"shape":"RuleOrRuleSetName"}
1031
- },
1032
- "error":{
1033
- "code":"AlreadyExists",
1034
- "httpStatusCode":400,
1035
- "senderFault":true
1036
- },
1037
- "exception":true
1038
- },
1039
- "AmazonResourceName":{"type":"string"},
1040
- "ArrivalDate":{"type":"timestamp"},
1041
- "BehaviorOnMXFailure":{
1042
- "type":"string",
1043
- "enum":[
1044
- "UseDefaultValue",
1045
- "RejectMessage"
1046
- ]
1047
- },
1048
- "Body":{
1049
- "type":"structure",
1050
- "members":{
1051
- "Text":{"shape":"Content"},
1052
- "Html":{"shape":"Content"}
1053
- }
1054
- },
1055
- "BounceAction":{
1056
- "type":"structure",
1057
- "required":[
1058
- "SmtpReplyCode",
1059
- "Message",
1060
- "Sender"
1061
- ],
1062
- "members":{
1063
- "TopicArn":{"shape":"AmazonResourceName"},
1064
- "SmtpReplyCode":{"shape":"BounceSmtpReplyCode"},
1065
- "StatusCode":{"shape":"BounceStatusCode"},
1066
- "Message":{"shape":"BounceMessage"},
1067
- "Sender":{"shape":"Address"}
1068
- }
1069
- },
1070
- "BounceMessage":{"type":"string"},
1071
- "BounceSmtpReplyCode":{"type":"string"},
1072
- "BounceStatusCode":{"type":"string"},
1073
- "BounceType":{
1074
- "type":"string",
1075
- "enum":[
1076
- "DoesNotExist",
1077
- "MessageTooLarge",
1078
- "ExceededQuota",
1079
- "ContentRejected",
1080
- "Undefined",
1081
- "TemporaryFailure"
1082
- ]
1083
- },
1084
- "BouncedRecipientInfo":{
1085
- "type":"structure",
1086
- "required":["Recipient"],
1087
- "members":{
1088
- "Recipient":{"shape":"Address"},
1089
- "RecipientArn":{"shape":"AmazonResourceName"},
1090
- "BounceType":{"shape":"BounceType"},
1091
- "RecipientDsnFields":{"shape":"RecipientDsnFields"}
1092
- }
1093
- },
1094
- "BouncedRecipientInfoList":{
1095
- "type":"list",
1096
- "member":{"shape":"BouncedRecipientInfo"}
1097
- },
1098
- "BulkEmailDestination":{
1099
- "type":"structure",
1100
- "required":["Destination"],
1101
- "members":{
1102
- "Destination":{"shape":"Destination"},
1103
- "ReplacementTags":{"shape":"MessageTagList"},
1104
- "ReplacementTemplateData":{"shape":"TemplateData"}
1105
- }
1106
- },
1107
- "BulkEmailDestinationList":{
1108
- "type":"list",
1109
- "member":{"shape":"BulkEmailDestination"}
1110
- },
1111
- "BulkEmailDestinationStatus":{
1112
- "type":"structure",
1113
- "members":{
1114
- "Status":{"shape":"BulkEmailStatus"},
1115
- "Error":{"shape":"Error"},
1116
- "MessageId":{"shape":"MessageId"}
1117
- }
1118
- },
1119
- "BulkEmailDestinationStatusList":{
1120
- "type":"list",
1121
- "member":{"shape":"BulkEmailDestinationStatus"}
1122
- },
1123
- "BulkEmailStatus":{
1124
- "type":"string",
1125
- "enum":[
1126
- "Success",
1127
- "MessageRejected",
1128
- "MailFromDomainNotVerified",
1129
- "ConfigurationSetDoesNotExist",
1130
- "TemplateDoesNotExist",
1131
- "AccountSuspended",
1132
- "AccountThrottled",
1133
- "AccountDailyQuotaExceeded",
1134
- "InvalidSendingPoolName",
1135
- "AccountSendingPaused",
1136
- "ConfigurationSetSendingPaused",
1137
- "InvalidParameterValue",
1138
- "TransientFailure",
1139
- "Failed"
1140
- ]
1141
- },
1142
- "CannotDeleteException":{
1143
- "type":"structure",
1144
- "members":{
1145
- "Name":{"shape":"RuleOrRuleSetName"}
1146
- },
1147
- "error":{
1148
- "code":"CannotDelete",
1149
- "httpStatusCode":400,
1150
- "senderFault":true
1151
- },
1152
- "exception":true
1153
- },
1154
- "Charset":{"type":"string"},
1155
- "Cidr":{"type":"string"},
1156
- "CloneReceiptRuleSetRequest":{
1157
- "type":"structure",
1158
- "required":[
1159
- "RuleSetName",
1160
- "OriginalRuleSetName"
1161
- ],
1162
- "members":{
1163
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1164
- "OriginalRuleSetName":{"shape":"ReceiptRuleSetName"}
1165
- }
1166
- },
1167
- "CloneReceiptRuleSetResponse":{
1168
- "type":"structure",
1169
- "members":{
1170
- }
1171
- },
1172
- "CloudWatchDestination":{
1173
- "type":"structure",
1174
- "required":["DimensionConfigurations"],
1175
- "members":{
1176
- "DimensionConfigurations":{"shape":"CloudWatchDimensionConfigurations"}
1177
- }
1178
- },
1179
- "CloudWatchDimensionConfiguration":{
1180
- "type":"structure",
1181
- "required":[
1182
- "DimensionName",
1183
- "DimensionValueSource",
1184
- "DefaultDimensionValue"
1185
- ],
1186
- "members":{
1187
- "DimensionName":{"shape":"DimensionName"},
1188
- "DimensionValueSource":{"shape":"DimensionValueSource"},
1189
- "DefaultDimensionValue":{"shape":"DefaultDimensionValue"}
1190
- }
1191
- },
1192
- "CloudWatchDimensionConfigurations":{
1193
- "type":"list",
1194
- "member":{"shape":"CloudWatchDimensionConfiguration"}
1195
- },
1196
- "ConfigurationSet":{
1197
- "type":"structure",
1198
- "required":["Name"],
1199
- "members":{
1200
- "Name":{"shape":"ConfigurationSetName"}
1201
- }
1202
- },
1203
- "ConfigurationSetAlreadyExistsException":{
1204
- "type":"structure",
1205
- "members":{
1206
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
1207
- },
1208
- "error":{
1209
- "code":"ConfigurationSetAlreadyExists",
1210
- "httpStatusCode":400,
1211
- "senderFault":true
1212
- },
1213
- "exception":true
1214
- },
1215
- "ConfigurationSetAttribute":{
1216
- "type":"string",
1217
- "enum":[
1218
- "eventDestinations",
1219
- "trackingOptions",
1220
- "reputationOptions"
1221
- ]
1222
- },
1223
- "ConfigurationSetAttributeList":{
1224
- "type":"list",
1225
- "member":{"shape":"ConfigurationSetAttribute"}
1226
- },
1227
- "ConfigurationSetDoesNotExistException":{
1228
- "type":"structure",
1229
- "members":{
1230
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
1231
- },
1232
- "error":{
1233
- "code":"ConfigurationSetDoesNotExist",
1234
- "httpStatusCode":400,
1235
- "senderFault":true
1236
- },
1237
- "exception":true
1238
- },
1239
- "ConfigurationSetName":{"type":"string"},
1240
- "ConfigurationSetSendingPausedException":{
1241
- "type":"structure",
1242
- "members":{
1243
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
1244
- },
1245
- "error":{
1246
- "code":"ConfigurationSetSendingPausedException",
1247
- "httpStatusCode":400,
1248
- "senderFault":true
1249
- },
1250
- "exception":true
1251
- },
1252
- "ConfigurationSets":{
1253
- "type":"list",
1254
- "member":{"shape":"ConfigurationSet"}
1255
- },
1256
- "Content":{
1257
- "type":"structure",
1258
- "required":["Data"],
1259
- "members":{
1260
- "Data":{"shape":"MessageData"},
1261
- "Charset":{"shape":"Charset"}
1262
- }
1263
- },
1264
- "Counter":{"type":"long"},
1265
- "CreateConfigurationSetEventDestinationRequest":{
1266
- "type":"structure",
1267
- "required":[
1268
- "ConfigurationSetName",
1269
- "EventDestination"
1270
- ],
1271
- "members":{
1272
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1273
- "EventDestination":{"shape":"EventDestination"}
1274
- }
1275
- },
1276
- "CreateConfigurationSetEventDestinationResponse":{
1277
- "type":"structure",
1278
- "members":{
1279
- }
1280
- },
1281
- "CreateConfigurationSetRequest":{
1282
- "type":"structure",
1283
- "required":["ConfigurationSet"],
1284
- "members":{
1285
- "ConfigurationSet":{"shape":"ConfigurationSet"}
1286
- }
1287
- },
1288
- "CreateConfigurationSetResponse":{
1289
- "type":"structure",
1290
- "members":{
1291
- }
1292
- },
1293
- "CreateConfigurationSetTrackingOptionsRequest":{
1294
- "type":"structure",
1295
- "required":[
1296
- "ConfigurationSetName",
1297
- "TrackingOptions"
1298
- ],
1299
- "members":{
1300
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1301
- "TrackingOptions":{"shape":"TrackingOptions"}
1302
- }
1303
- },
1304
- "CreateConfigurationSetTrackingOptionsResponse":{
1305
- "type":"structure",
1306
- "members":{
1307
- }
1308
- },
1309
- "CreateCustomVerificationEmailTemplateRequest":{
1310
- "type":"structure",
1311
- "required":[
1312
- "TemplateName",
1313
- "FromEmailAddress",
1314
- "TemplateSubject",
1315
- "TemplateContent",
1316
- "SuccessRedirectionURL",
1317
- "FailureRedirectionURL"
1318
- ],
1319
- "members":{
1320
- "TemplateName":{"shape":"TemplateName"},
1321
- "FromEmailAddress":{"shape":"FromAddress"},
1322
- "TemplateSubject":{"shape":"Subject"},
1323
- "TemplateContent":{"shape":"TemplateContent"},
1324
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
1325
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
1326
- }
1327
- },
1328
- "CreateReceiptFilterRequest":{
1329
- "type":"structure",
1330
- "required":["Filter"],
1331
- "members":{
1332
- "Filter":{"shape":"ReceiptFilter"}
1333
- }
1334
- },
1335
- "CreateReceiptFilterResponse":{
1336
- "type":"structure",
1337
- "members":{
1338
- }
1339
- },
1340
- "CreateReceiptRuleRequest":{
1341
- "type":"structure",
1342
- "required":[
1343
- "RuleSetName",
1344
- "Rule"
1345
- ],
1346
- "members":{
1347
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1348
- "After":{"shape":"ReceiptRuleName"},
1349
- "Rule":{"shape":"ReceiptRule"}
1350
- }
1351
- },
1352
- "CreateReceiptRuleResponse":{
1353
- "type":"structure",
1354
- "members":{
1355
- }
1356
- },
1357
- "CreateReceiptRuleSetRequest":{
1358
- "type":"structure",
1359
- "required":["RuleSetName"],
1360
- "members":{
1361
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
1362
- }
1363
- },
1364
- "CreateReceiptRuleSetResponse":{
1365
- "type":"structure",
1366
- "members":{
1367
- }
1368
- },
1369
- "CreateTemplateRequest":{
1370
- "type":"structure",
1371
- "required":["Template"],
1372
- "members":{
1373
- "Template":{"shape":"Template"}
1374
- }
1375
- },
1376
- "CreateTemplateResponse":{
1377
- "type":"structure",
1378
- "members":{
1379
- }
1380
- },
1381
- "CustomMailFromStatus":{
1382
- "type":"string",
1383
- "enum":[
1384
- "Pending",
1385
- "Success",
1386
- "Failed",
1387
- "TemporaryFailure"
1388
- ]
1389
- },
1390
- "CustomRedirectDomain":{"type":"string"},
1391
- "CustomVerificationEmailInvalidContentException":{
1392
- "type":"structure",
1393
- "members":{
1394
- },
1395
- "error":{
1396
- "code":"CustomVerificationEmailInvalidContent",
1397
- "httpStatusCode":400,
1398
- "senderFault":true
1399
- },
1400
- "exception":true
1401
- },
1402
- "CustomVerificationEmailTemplate":{
1403
- "type":"structure",
1404
- "members":{
1405
- "TemplateName":{"shape":"TemplateName"},
1406
- "FromEmailAddress":{"shape":"FromAddress"},
1407
- "TemplateSubject":{"shape":"Subject"},
1408
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
1409
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
1410
- }
1411
- },
1412
- "CustomVerificationEmailTemplateAlreadyExistsException":{
1413
- "type":"structure",
1414
- "members":{
1415
- "CustomVerificationEmailTemplateName":{"shape":"TemplateName"}
1416
- },
1417
- "error":{
1418
- "code":"CustomVerificationEmailTemplateAlreadyExists",
1419
- "httpStatusCode":400,
1420
- "senderFault":true
1421
- },
1422
- "exception":true
1423
- },
1424
- "CustomVerificationEmailTemplateDoesNotExistException":{
1425
- "type":"structure",
1426
- "members":{
1427
- "CustomVerificationEmailTemplateName":{"shape":"TemplateName"}
1428
- },
1429
- "error":{
1430
- "code":"CustomVerificationEmailTemplateDoesNotExist",
1431
- "httpStatusCode":400,
1432
- "senderFault":true
1433
- },
1434
- "exception":true
1435
- },
1436
- "CustomVerificationEmailTemplates":{
1437
- "type":"list",
1438
- "member":{"shape":"CustomVerificationEmailTemplate"}
1439
- },
1440
- "DefaultDimensionValue":{"type":"string"},
1441
- "DeleteConfigurationSetEventDestinationRequest":{
1442
- "type":"structure",
1443
- "required":[
1444
- "ConfigurationSetName",
1445
- "EventDestinationName"
1446
- ],
1447
- "members":{
1448
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1449
- "EventDestinationName":{"shape":"EventDestinationName"}
1450
- }
1451
- },
1452
- "DeleteConfigurationSetEventDestinationResponse":{
1453
- "type":"structure",
1454
- "members":{
1455
- }
1456
- },
1457
- "DeleteConfigurationSetRequest":{
1458
- "type":"structure",
1459
- "required":["ConfigurationSetName"],
1460
- "members":{
1461
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
1462
- }
1463
- },
1464
- "DeleteConfigurationSetResponse":{
1465
- "type":"structure",
1466
- "members":{
1467
- }
1468
- },
1469
- "DeleteConfigurationSetTrackingOptionsRequest":{
1470
- "type":"structure",
1471
- "required":["ConfigurationSetName"],
1472
- "members":{
1473
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
1474
- }
1475
- },
1476
- "DeleteConfigurationSetTrackingOptionsResponse":{
1477
- "type":"structure",
1478
- "members":{
1479
- }
1480
- },
1481
- "DeleteCustomVerificationEmailTemplateRequest":{
1482
- "type":"structure",
1483
- "required":["TemplateName"],
1484
- "members":{
1485
- "TemplateName":{"shape":"TemplateName"}
1486
- }
1487
- },
1488
- "DeleteIdentityPolicyRequest":{
1489
- "type":"structure",
1490
- "required":[
1491
- "Identity",
1492
- "PolicyName"
1493
- ],
1494
- "members":{
1495
- "Identity":{"shape":"Identity"},
1496
- "PolicyName":{"shape":"PolicyName"}
1497
- }
1498
- },
1499
- "DeleteIdentityPolicyResponse":{
1500
- "type":"structure",
1501
- "members":{
1502
- }
1503
- },
1504
- "DeleteIdentityRequest":{
1505
- "type":"structure",
1506
- "required":["Identity"],
1507
- "members":{
1508
- "Identity":{"shape":"Identity"}
1509
- }
1510
- },
1511
- "DeleteIdentityResponse":{
1512
- "type":"structure",
1513
- "members":{
1514
- }
1515
- },
1516
- "DeleteReceiptFilterRequest":{
1517
- "type":"structure",
1518
- "required":["FilterName"],
1519
- "members":{
1520
- "FilterName":{"shape":"ReceiptFilterName"}
1521
- }
1522
- },
1523
- "DeleteReceiptFilterResponse":{
1524
- "type":"structure",
1525
- "members":{
1526
- }
1527
- },
1528
- "DeleteReceiptRuleRequest":{
1529
- "type":"structure",
1530
- "required":[
1531
- "RuleSetName",
1532
- "RuleName"
1533
- ],
1534
- "members":{
1535
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1536
- "RuleName":{"shape":"ReceiptRuleName"}
1537
- }
1538
- },
1539
- "DeleteReceiptRuleResponse":{
1540
- "type":"structure",
1541
- "members":{
1542
- }
1543
- },
1544
- "DeleteReceiptRuleSetRequest":{
1545
- "type":"structure",
1546
- "required":["RuleSetName"],
1547
- "members":{
1548
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
1549
- }
1550
- },
1551
- "DeleteReceiptRuleSetResponse":{
1552
- "type":"structure",
1553
- "members":{
1554
- }
1555
- },
1556
- "DeleteTemplateRequest":{
1557
- "type":"structure",
1558
- "required":["TemplateName"],
1559
- "members":{
1560
- "TemplateName":{"shape":"TemplateName"}
1561
- }
1562
- },
1563
- "DeleteTemplateResponse":{
1564
- "type":"structure",
1565
- "members":{
1566
- }
1567
- },
1568
- "DeleteVerifiedEmailAddressRequest":{
1569
- "type":"structure",
1570
- "required":["EmailAddress"],
1571
- "members":{
1572
- "EmailAddress":{"shape":"Address"}
1573
- }
1574
- },
1575
- "DescribeActiveReceiptRuleSetRequest":{
1576
- "type":"structure",
1577
- "members":{
1578
- }
1579
- },
1580
- "DescribeActiveReceiptRuleSetResponse":{
1581
- "type":"structure",
1582
- "members":{
1583
- "Metadata":{"shape":"ReceiptRuleSetMetadata"},
1584
- "Rules":{"shape":"ReceiptRulesList"}
1585
- }
1586
- },
1587
- "DescribeConfigurationSetRequest":{
1588
- "type":"structure",
1589
- "required":["ConfigurationSetName"],
1590
- "members":{
1591
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1592
- "ConfigurationSetAttributeNames":{"shape":"ConfigurationSetAttributeList"}
1593
- }
1594
- },
1595
- "DescribeConfigurationSetResponse":{
1596
- "type":"structure",
1597
- "members":{
1598
- "ConfigurationSet":{"shape":"ConfigurationSet"},
1599
- "EventDestinations":{"shape":"EventDestinations"},
1600
- "TrackingOptions":{"shape":"TrackingOptions"},
1601
- "ReputationOptions":{"shape":"ReputationOptions"}
1602
- }
1603
- },
1604
- "DescribeReceiptRuleRequest":{
1605
- "type":"structure",
1606
- "required":[
1607
- "RuleSetName",
1608
- "RuleName"
1609
- ],
1610
- "members":{
1611
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1612
- "RuleName":{"shape":"ReceiptRuleName"}
1613
- }
1614
- },
1615
- "DescribeReceiptRuleResponse":{
1616
- "type":"structure",
1617
- "members":{
1618
- "Rule":{"shape":"ReceiptRule"}
1619
- }
1620
- },
1621
- "DescribeReceiptRuleSetRequest":{
1622
- "type":"structure",
1623
- "required":["RuleSetName"],
1624
- "members":{
1625
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
1626
- }
1627
- },
1628
- "DescribeReceiptRuleSetResponse":{
1629
- "type":"structure",
1630
- "members":{
1631
- "Metadata":{"shape":"ReceiptRuleSetMetadata"},
1632
- "Rules":{"shape":"ReceiptRulesList"}
1633
- }
1634
- },
1635
- "Destination":{
1636
- "type":"structure",
1637
- "members":{
1638
- "ToAddresses":{"shape":"AddressList"},
1639
- "CcAddresses":{"shape":"AddressList"},
1640
- "BccAddresses":{"shape":"AddressList"}
1641
- }
1642
- },
1643
- "DiagnosticCode":{"type":"string"},
1644
- "DimensionName":{"type":"string"},
1645
- "DimensionValueSource":{
1646
- "type":"string",
1647
- "enum":[
1648
- "messageTag",
1649
- "emailHeader",
1650
- "linkTag"
1651
- ]
1652
- },
1653
- "DkimAttributes":{
1654
- "type":"map",
1655
- "key":{"shape":"Identity"},
1656
- "value":{"shape":"IdentityDkimAttributes"}
1657
- },
1658
- "Domain":{"type":"string"},
1659
- "DsnAction":{
1660
- "type":"string",
1661
- "enum":[
1662
- "failed",
1663
- "delayed",
1664
- "delivered",
1665
- "relayed",
1666
- "expanded"
1667
- ]
1668
- },
1669
- "DsnStatus":{"type":"string"},
1670
- "Enabled":{"type":"boolean"},
1671
- "Error":{"type":"string"},
1672
- "EventDestination":{
1673
- "type":"structure",
1674
- "required":[
1675
- "Name",
1676
- "MatchingEventTypes"
1677
- ],
1678
- "members":{
1679
- "Name":{"shape":"EventDestinationName"},
1680
- "Enabled":{"shape":"Enabled"},
1681
- "MatchingEventTypes":{"shape":"EventTypes"},
1682
- "KinesisFirehoseDestination":{"shape":"KinesisFirehoseDestination"},
1683
- "CloudWatchDestination":{"shape":"CloudWatchDestination"},
1684
- "SNSDestination":{"shape":"SNSDestination"}
1685
- }
1686
- },
1687
- "EventDestinationAlreadyExistsException":{
1688
- "type":"structure",
1689
- "members":{
1690
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1691
- "EventDestinationName":{"shape":"EventDestinationName"}
1692
- },
1693
- "error":{
1694
- "code":"EventDestinationAlreadyExists",
1695
- "httpStatusCode":400,
1696
- "senderFault":true
1697
- },
1698
- "exception":true
1699
- },
1700
- "EventDestinationDoesNotExistException":{
1701
- "type":"structure",
1702
- "members":{
1703
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1704
- "EventDestinationName":{"shape":"EventDestinationName"}
1705
- },
1706
- "error":{
1707
- "code":"EventDestinationDoesNotExist",
1708
- "httpStatusCode":400,
1709
- "senderFault":true
1710
- },
1711
- "exception":true
1712
- },
1713
- "EventDestinationName":{"type":"string"},
1714
- "EventDestinations":{
1715
- "type":"list",
1716
- "member":{"shape":"EventDestination"}
1717
- },
1718
- "EventType":{
1719
- "type":"string",
1720
- "enum":[
1721
- "send",
1722
- "reject",
1723
- "bounce",
1724
- "complaint",
1725
- "delivery",
1726
- "open",
1727
- "click",
1728
- "renderingFailure"
1729
- ]
1730
- },
1731
- "EventTypes":{
1732
- "type":"list",
1733
- "member":{"shape":"EventType"}
1734
- },
1735
- "Explanation":{"type":"string"},
1736
- "ExtensionField":{
1737
- "type":"structure",
1738
- "required":[
1739
- "Name",
1740
- "Value"
1741
- ],
1742
- "members":{
1743
- "Name":{"shape":"ExtensionFieldName"},
1744
- "Value":{"shape":"ExtensionFieldValue"}
1745
- }
1746
- },
1747
- "ExtensionFieldList":{
1748
- "type":"list",
1749
- "member":{"shape":"ExtensionField"}
1750
- },
1751
- "ExtensionFieldName":{"type":"string"},
1752
- "ExtensionFieldValue":{"type":"string"},
1753
- "FailureRedirectionURL":{"type":"string"},
1754
- "FromAddress":{"type":"string"},
1755
- "FromEmailAddressNotVerifiedException":{
1756
- "type":"structure",
1757
- "members":{
1758
- "FromEmailAddress":{"shape":"FromAddress"}
1759
- },
1760
- "error":{
1761
- "code":"FromEmailAddressNotVerified",
1762
- "httpStatusCode":400,
1763
- "senderFault":true
1764
- },
1765
- "exception":true
1766
- },
1767
- "GetAccountSendingEnabledResponse":{
1768
- "type":"structure",
1769
- "members":{
1770
- "Enabled":{"shape":"Enabled"}
1771
- }
1772
- },
1773
- "GetCustomVerificationEmailTemplateRequest":{
1774
- "type":"structure",
1775
- "required":["TemplateName"],
1776
- "members":{
1777
- "TemplateName":{"shape":"TemplateName"}
1778
- }
1779
- },
1780
- "GetCustomVerificationEmailTemplateResponse":{
1781
- "type":"structure",
1782
- "members":{
1783
- "TemplateName":{"shape":"TemplateName"},
1784
- "FromEmailAddress":{"shape":"FromAddress"},
1785
- "TemplateSubject":{"shape":"Subject"},
1786
- "TemplateContent":{"shape":"TemplateContent"},
1787
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
1788
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
1789
- }
1790
- },
1791
- "GetIdentityDkimAttributesRequest":{
1792
- "type":"structure",
1793
- "required":["Identities"],
1794
- "members":{
1795
- "Identities":{"shape":"IdentityList"}
1796
- }
1797
- },
1798
- "GetIdentityDkimAttributesResponse":{
1799
- "type":"structure",
1800
- "required":["DkimAttributes"],
1801
- "members":{
1802
- "DkimAttributes":{"shape":"DkimAttributes"}
1803
- }
1804
- },
1805
- "GetIdentityMailFromDomainAttributesRequest":{
1806
- "type":"structure",
1807
- "required":["Identities"],
1808
- "members":{
1809
- "Identities":{"shape":"IdentityList"}
1810
- }
1811
- },
1812
- "GetIdentityMailFromDomainAttributesResponse":{
1813
- "type":"structure",
1814
- "required":["MailFromDomainAttributes"],
1815
- "members":{
1816
- "MailFromDomainAttributes":{"shape":"MailFromDomainAttributes"}
1817
- }
1818
- },
1819
- "GetIdentityNotificationAttributesRequest":{
1820
- "type":"structure",
1821
- "required":["Identities"],
1822
- "members":{
1823
- "Identities":{"shape":"IdentityList"}
1824
- }
1825
- },
1826
- "GetIdentityNotificationAttributesResponse":{
1827
- "type":"structure",
1828
- "required":["NotificationAttributes"],
1829
- "members":{
1830
- "NotificationAttributes":{"shape":"NotificationAttributes"}
1831
- }
1832
- },
1833
- "GetIdentityPoliciesRequest":{
1834
- "type":"structure",
1835
- "required":[
1836
- "Identity",
1837
- "PolicyNames"
1838
- ],
1839
- "members":{
1840
- "Identity":{"shape":"Identity"},
1841
- "PolicyNames":{"shape":"PolicyNameList"}
1842
- }
1843
- },
1844
- "GetIdentityPoliciesResponse":{
1845
- "type":"structure",
1846
- "required":["Policies"],
1847
- "members":{
1848
- "Policies":{"shape":"PolicyMap"}
1849
- }
1850
- },
1851
- "GetIdentityVerificationAttributesRequest":{
1852
- "type":"structure",
1853
- "required":["Identities"],
1854
- "members":{
1855
- "Identities":{"shape":"IdentityList"}
1856
- }
1857
- },
1858
- "GetIdentityVerificationAttributesResponse":{
1859
- "type":"structure",
1860
- "required":["VerificationAttributes"],
1861
- "members":{
1862
- "VerificationAttributes":{"shape":"VerificationAttributes"}
1863
- }
1864
- },
1865
- "GetSendQuotaResponse":{
1866
- "type":"structure",
1867
- "members":{
1868
- "Max24HourSend":{"shape":"Max24HourSend"},
1869
- "MaxSendRate":{"shape":"MaxSendRate"},
1870
- "SentLast24Hours":{"shape":"SentLast24Hours"}
1871
- }
1872
- },
1873
- "GetSendStatisticsResponse":{
1874
- "type":"structure",
1875
- "members":{
1876
- "SendDataPoints":{"shape":"SendDataPointList"}
1877
- }
1878
- },
1879
- "GetTemplateRequest":{
1880
- "type":"structure",
1881
- "required":["TemplateName"],
1882
- "members":{
1883
- "TemplateName":{"shape":"TemplateName"}
1884
- }
1885
- },
1886
- "GetTemplateResponse":{
1887
- "type":"structure",
1888
- "members":{
1889
- "Template":{"shape":"Template"}
1890
- }
1891
- },
1892
- "HeaderName":{"type":"string"},
1893
- "HeaderValue":{"type":"string"},
1894
- "HtmlPart":{"type":"string"},
1895
- "Identity":{"type":"string"},
1896
- "IdentityDkimAttributes":{
1897
- "type":"structure",
1898
- "required":[
1899
- "DkimEnabled",
1900
- "DkimVerificationStatus"
1901
- ],
1902
- "members":{
1903
- "DkimEnabled":{"shape":"Enabled"},
1904
- "DkimVerificationStatus":{"shape":"VerificationStatus"},
1905
- "DkimTokens":{"shape":"VerificationTokenList"}
1906
- }
1907
- },
1908
- "IdentityList":{
1909
- "type":"list",
1910
- "member":{"shape":"Identity"}
1911
- },
1912
- "IdentityMailFromDomainAttributes":{
1913
- "type":"structure",
1914
- "required":[
1915
- "MailFromDomain",
1916
- "MailFromDomainStatus",
1917
- "BehaviorOnMXFailure"
1918
- ],
1919
- "members":{
1920
- "MailFromDomain":{"shape":"MailFromDomainName"},
1921
- "MailFromDomainStatus":{"shape":"CustomMailFromStatus"},
1922
- "BehaviorOnMXFailure":{"shape":"BehaviorOnMXFailure"}
1923
- }
1924
- },
1925
- "IdentityNotificationAttributes":{
1926
- "type":"structure",
1927
- "required":[
1928
- "BounceTopic",
1929
- "ComplaintTopic",
1930
- "DeliveryTopic",
1931
- "ForwardingEnabled"
1932
- ],
1933
- "members":{
1934
- "BounceTopic":{"shape":"NotificationTopic"},
1935
- "ComplaintTopic":{"shape":"NotificationTopic"},
1936
- "DeliveryTopic":{"shape":"NotificationTopic"},
1937
- "ForwardingEnabled":{"shape":"Enabled"},
1938
- "HeadersInBounceNotificationsEnabled":{"shape":"Enabled"},
1939
- "HeadersInComplaintNotificationsEnabled":{"shape":"Enabled"},
1940
- "HeadersInDeliveryNotificationsEnabled":{"shape":"Enabled"}
1941
- }
1942
- },
1943
- "IdentityType":{
1944
- "type":"string",
1945
- "enum":[
1946
- "EmailAddress",
1947
- "Domain"
1948
- ]
1949
- },
1950
- "IdentityVerificationAttributes":{
1951
- "type":"structure",
1952
- "required":["VerificationStatus"],
1953
- "members":{
1954
- "VerificationStatus":{"shape":"VerificationStatus"},
1955
- "VerificationToken":{"shape":"VerificationToken"}
1956
- }
1957
- },
1958
- "InvalidCloudWatchDestinationException":{
1959
- "type":"structure",
1960
- "members":{
1961
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1962
- "EventDestinationName":{"shape":"EventDestinationName"}
1963
- },
1964
- "error":{
1965
- "code":"InvalidCloudWatchDestination",
1966
- "httpStatusCode":400,
1967
- "senderFault":true
1968
- },
1969
- "exception":true
1970
- },
1971
- "InvalidConfigurationSetException":{
1972
- "type":"structure",
1973
- "members":{
1974
- },
1975
- "error":{
1976
- "code":"InvalidConfigurationSet",
1977
- "httpStatusCode":400,
1978
- "senderFault":true
1979
- },
1980
- "exception":true
1981
- },
1982
- "InvalidFirehoseDestinationException":{
1983
- "type":"structure",
1984
- "members":{
1985
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1986
- "EventDestinationName":{"shape":"EventDestinationName"}
1987
- },
1988
- "error":{
1989
- "code":"InvalidFirehoseDestination",
1990
- "httpStatusCode":400,
1991
- "senderFault":true
1992
- },
1993
- "exception":true
1994
- },
1995
- "InvalidLambdaFunctionException":{
1996
- "type":"structure",
1997
- "members":{
1998
- "FunctionArn":{"shape":"AmazonResourceName"}
1999
- },
2000
- "error":{
2001
- "code":"InvalidLambdaFunction",
2002
- "httpStatusCode":400,
2003
- "senderFault":true
2004
- },
2005
- "exception":true
2006
- },
2007
- "InvalidPolicyException":{
2008
- "type":"structure",
2009
- "members":{
2010
- },
2011
- "error":{
2012
- "code":"InvalidPolicy",
2013
- "httpStatusCode":400,
2014
- "senderFault":true
2015
- },
2016
- "exception":true
2017
- },
2018
- "InvalidRenderingParameterException":{
2019
- "type":"structure",
2020
- "members":{
2021
- "TemplateName":{"shape":"TemplateName"}
2022
- },
2023
- "error":{
2024
- "code":"InvalidRenderingParameter",
2025
- "httpStatusCode":400,
2026
- "senderFault":true
2027
- },
2028
- "exception":true
2029
- },
2030
- "InvalidS3ConfigurationException":{
2031
- "type":"structure",
2032
- "members":{
2033
- "Bucket":{"shape":"S3BucketName"}
2034
- },
2035
- "error":{
2036
- "code":"InvalidS3Configuration",
2037
- "httpStatusCode":400,
2038
- "senderFault":true
2039
- },
2040
- "exception":true
2041
- },
2042
- "InvalidSNSDestinationException":{
2043
- "type":"structure",
2044
- "members":{
2045
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2046
- "EventDestinationName":{"shape":"EventDestinationName"}
2047
- },
2048
- "error":{
2049
- "code":"InvalidSNSDestination",
2050
- "httpStatusCode":400,
2051
- "senderFault":true
2052
- },
2053
- "exception":true
2054
- },
2055
- "InvalidSnsTopicException":{
2056
- "type":"structure",
2057
- "members":{
2058
- "Topic":{"shape":"AmazonResourceName"}
2059
- },
2060
- "error":{
2061
- "code":"InvalidSnsTopic",
2062
- "httpStatusCode":400,
2063
- "senderFault":true
2064
- },
2065
- "exception":true
2066
- },
2067
- "InvalidTemplateException":{
2068
- "type":"structure",
2069
- "members":{
2070
- "TemplateName":{"shape":"TemplateName"}
2071
- },
2072
- "error":{
2073
- "code":"InvalidTemplate",
2074
- "httpStatusCode":400,
2075
- "senderFault":true
2076
- },
2077
- "exception":true
2078
- },
2079
- "InvalidTrackingOptionsException":{
2080
- "type":"structure",
2081
- "members":{
2082
- },
2083
- "error":{
2084
- "code":"InvalidTrackingOptions",
2085
- "httpStatusCode":400,
2086
- "senderFault":true
2087
- },
2088
- "exception":true
2089
- },
2090
- "InvocationType":{
2091
- "type":"string",
2092
- "enum":[
2093
- "Event",
2094
- "RequestResponse"
2095
- ]
2096
- },
2097
- "KinesisFirehoseDestination":{
2098
- "type":"structure",
2099
- "required":[
2100
- "IAMRoleARN",
2101
- "DeliveryStreamARN"
2102
- ],
2103
- "members":{
2104
- "IAMRoleARN":{"shape":"AmazonResourceName"},
2105
- "DeliveryStreamARN":{"shape":"AmazonResourceName"}
2106
- }
2107
- },
2108
- "LambdaAction":{
2109
- "type":"structure",
2110
- "required":["FunctionArn"],
2111
- "members":{
2112
- "TopicArn":{"shape":"AmazonResourceName"},
2113
- "FunctionArn":{"shape":"AmazonResourceName"},
2114
- "InvocationType":{"shape":"InvocationType"}
2115
- }
2116
- },
2117
- "LastAttemptDate":{"type":"timestamp"},
2118
- "LastFreshStart":{"type":"timestamp"},
2119
- "LimitExceededException":{
2120
- "type":"structure",
2121
- "members":{
2122
- },
2123
- "error":{
2124
- "code":"LimitExceeded",
2125
- "httpStatusCode":400,
2126
- "senderFault":true
2127
- },
2128
- "exception":true
2129
- },
2130
- "ListConfigurationSetsRequest":{
2131
- "type":"structure",
2132
- "members":{
2133
- "NextToken":{"shape":"NextToken"},
2134
- "MaxItems":{"shape":"MaxItems"}
2135
- }
2136
- },
2137
- "ListConfigurationSetsResponse":{
2138
- "type":"structure",
2139
- "members":{
2140
- "ConfigurationSets":{"shape":"ConfigurationSets"},
2141
- "NextToken":{"shape":"NextToken"}
2142
- }
2143
- },
2144
- "ListCustomVerificationEmailTemplatesRequest":{
2145
- "type":"structure",
2146
- "members":{
2147
- "NextToken":{"shape":"NextToken"},
2148
- "MaxResults":{"shape":"MaxResults"}
2149
- }
2150
- },
2151
- "ListCustomVerificationEmailTemplatesResponse":{
2152
- "type":"structure",
2153
- "members":{
2154
- "CustomVerificationEmailTemplates":{"shape":"CustomVerificationEmailTemplates"},
2155
- "NextToken":{"shape":"NextToken"}
2156
- }
2157
- },
2158
- "ListIdentitiesRequest":{
2159
- "type":"structure",
2160
- "members":{
2161
- "IdentityType":{"shape":"IdentityType"},
2162
- "NextToken":{"shape":"NextToken"},
2163
- "MaxItems":{"shape":"MaxItems"}
2164
- }
2165
- },
2166
- "ListIdentitiesResponse":{
2167
- "type":"structure",
2168
- "required":["Identities"],
2169
- "members":{
2170
- "Identities":{"shape":"IdentityList"},
2171
- "NextToken":{"shape":"NextToken"}
2172
- }
2173
- },
2174
- "ListIdentityPoliciesRequest":{
2175
- "type":"structure",
2176
- "required":["Identity"],
2177
- "members":{
2178
- "Identity":{"shape":"Identity"}
2179
- }
2180
- },
2181
- "ListIdentityPoliciesResponse":{
2182
- "type":"structure",
2183
- "required":["PolicyNames"],
2184
- "members":{
2185
- "PolicyNames":{"shape":"PolicyNameList"}
2186
- }
2187
- },
2188
- "ListReceiptFiltersRequest":{
2189
- "type":"structure",
2190
- "members":{
2191
- }
2192
- },
2193
- "ListReceiptFiltersResponse":{
2194
- "type":"structure",
2195
- "members":{
2196
- "Filters":{"shape":"ReceiptFilterList"}
2197
- }
2198
- },
2199
- "ListReceiptRuleSetsRequest":{
2200
- "type":"structure",
2201
- "members":{
2202
- "NextToken":{"shape":"NextToken"}
2203
- }
2204
- },
2205
- "ListReceiptRuleSetsResponse":{
2206
- "type":"structure",
2207
- "members":{
2208
- "RuleSets":{"shape":"ReceiptRuleSetsLists"},
2209
- "NextToken":{"shape":"NextToken"}
2210
- }
2211
- },
2212
- "ListTemplatesRequest":{
2213
- "type":"structure",
2214
- "members":{
2215
- "NextToken":{"shape":"NextToken"},
2216
- "MaxItems":{"shape":"MaxItems"}
2217
- }
2218
- },
2219
- "ListTemplatesResponse":{
2220
- "type":"structure",
2221
- "members":{
2222
- "TemplatesMetadata":{"shape":"TemplateMetadataList"},
2223
- "NextToken":{"shape":"NextToken"}
2224
- }
2225
- },
2226
- "ListVerifiedEmailAddressesResponse":{
2227
- "type":"structure",
2228
- "members":{
2229
- "VerifiedEmailAddresses":{"shape":"AddressList"}
2230
- }
2231
- },
2232
- "MailFromDomainAttributes":{
2233
- "type":"map",
2234
- "key":{"shape":"Identity"},
2235
- "value":{"shape":"IdentityMailFromDomainAttributes"}
2236
- },
2237
- "MailFromDomainName":{"type":"string"},
2238
- "MailFromDomainNotVerifiedException":{
2239
- "type":"structure",
2240
- "members":{
2241
- },
2242
- "error":{
2243
- "code":"MailFromDomainNotVerifiedException",
2244
- "httpStatusCode":400,
2245
- "senderFault":true
2246
- },
2247
- "exception":true
2248
- },
2249
- "Max24HourSend":{"type":"double"},
2250
- "MaxItems":{"type":"integer"},
2251
- "MaxResults":{
2252
- "type":"integer",
2253
- "box":true,
2254
- "max":50,
2255
- "min":1
2256
- },
2257
- "MaxSendRate":{"type":"double"},
2258
- "Message":{
2259
- "type":"structure",
2260
- "required":[
2261
- "Subject",
2262
- "Body"
2263
- ],
2264
- "members":{
2265
- "Subject":{"shape":"Content"},
2266
- "Body":{"shape":"Body"}
2267
- }
2268
- },
2269
- "MessageData":{"type":"string"},
2270
- "MessageDsn":{
2271
- "type":"structure",
2272
- "required":["ReportingMta"],
2273
- "members":{
2274
- "ReportingMta":{"shape":"ReportingMta"},
2275
- "ArrivalDate":{"shape":"ArrivalDate"},
2276
- "ExtensionFields":{"shape":"ExtensionFieldList"}
2277
- }
2278
- },
2279
- "MessageId":{"type":"string"},
2280
- "MessageRejected":{
2281
- "type":"structure",
2282
- "members":{
2283
- },
2284
- "error":{
2285
- "code":"MessageRejected",
2286
- "httpStatusCode":400,
2287
- "senderFault":true
2288
- },
2289
- "exception":true
2290
- },
2291
- "MessageTag":{
2292
- "type":"structure",
2293
- "required":[
2294
- "Name",
2295
- "Value"
2296
- ],
2297
- "members":{
2298
- "Name":{"shape":"MessageTagName"},
2299
- "Value":{"shape":"MessageTagValue"}
2300
- }
2301
- },
2302
- "MessageTagList":{
2303
- "type":"list",
2304
- "member":{"shape":"MessageTag"}
2305
- },
2306
- "MessageTagName":{"type":"string"},
2307
- "MessageTagValue":{"type":"string"},
2308
- "MissingRenderingAttributeException":{
2309
- "type":"structure",
2310
- "members":{
2311
- "TemplateName":{"shape":"TemplateName"}
2312
- },
2313
- "error":{
2314
- "code":"MissingRenderingAttribute",
2315
- "httpStatusCode":400,
2316
- "senderFault":true
2317
- },
2318
- "exception":true
2319
- },
2320
- "NextToken":{"type":"string"},
2321
- "NotificationAttributes":{
2322
- "type":"map",
2323
- "key":{"shape":"Identity"},
2324
- "value":{"shape":"IdentityNotificationAttributes"}
2325
- },
2326
- "NotificationTopic":{"type":"string"},
2327
- "NotificationType":{
2328
- "type":"string",
2329
- "enum":[
2330
- "Bounce",
2331
- "Complaint",
2332
- "Delivery"
2333
- ]
2334
- },
2335
- "Policy":{
2336
- "type":"string",
2337
- "min":1
2338
- },
2339
- "PolicyMap":{
2340
- "type":"map",
2341
- "key":{"shape":"PolicyName"},
2342
- "value":{"shape":"Policy"}
2343
- },
2344
- "PolicyName":{
2345
- "type":"string",
2346
- "max":64,
2347
- "min":1
2348
- },
2349
- "PolicyNameList":{
2350
- "type":"list",
2351
- "member":{"shape":"PolicyName"}
2352
- },
2353
- "ProductionAccessNotGrantedException":{
2354
- "type":"structure",
2355
- "members":{
2356
- },
2357
- "error":{
2358
- "code":"ProductionAccessNotGranted",
2359
- "httpStatusCode":400,
2360
- "senderFault":true
2361
- },
2362
- "exception":true
2363
- },
2364
- "PutIdentityPolicyRequest":{
2365
- "type":"structure",
2366
- "required":[
2367
- "Identity",
2368
- "PolicyName",
2369
- "Policy"
2370
- ],
2371
- "members":{
2372
- "Identity":{"shape":"Identity"},
2373
- "PolicyName":{"shape":"PolicyName"},
2374
- "Policy":{"shape":"Policy"}
2375
- }
2376
- },
2377
- "PutIdentityPolicyResponse":{
2378
- "type":"structure",
2379
- "members":{
2380
- }
2381
- },
2382
- "RawMessage":{
2383
- "type":"structure",
2384
- "required":["Data"],
2385
- "members":{
2386
- "Data":{"shape":"RawMessageData"}
2387
- }
2388
- },
2389
- "RawMessageData":{"type":"blob"},
2390
- "ReceiptAction":{
2391
- "type":"structure",
2392
- "members":{
2393
- "S3Action":{"shape":"S3Action"},
2394
- "BounceAction":{"shape":"BounceAction"},
2395
- "WorkmailAction":{"shape":"WorkmailAction"},
2396
- "LambdaAction":{"shape":"LambdaAction"},
2397
- "StopAction":{"shape":"StopAction"},
2398
- "AddHeaderAction":{"shape":"AddHeaderAction"},
2399
- "SNSAction":{"shape":"SNSAction"}
2400
- }
2401
- },
2402
- "ReceiptActionsList":{
2403
- "type":"list",
2404
- "member":{"shape":"ReceiptAction"}
2405
- },
2406
- "ReceiptFilter":{
2407
- "type":"structure",
2408
- "required":[
2409
- "Name",
2410
- "IpFilter"
2411
- ],
2412
- "members":{
2413
- "Name":{"shape":"ReceiptFilterName"},
2414
- "IpFilter":{"shape":"ReceiptIpFilter"}
2415
- }
2416
- },
2417
- "ReceiptFilterList":{
2418
- "type":"list",
2419
- "member":{"shape":"ReceiptFilter"}
2420
- },
2421
- "ReceiptFilterName":{"type":"string"},
2422
- "ReceiptFilterPolicy":{
2423
- "type":"string",
2424
- "enum":[
2425
- "Block",
2426
- "Allow"
2427
- ]
2428
- },
2429
- "ReceiptIpFilter":{
2430
- "type":"structure",
2431
- "required":[
2432
- "Policy",
2433
- "Cidr"
2434
- ],
2435
- "members":{
2436
- "Policy":{"shape":"ReceiptFilterPolicy"},
2437
- "Cidr":{"shape":"Cidr"}
2438
- }
2439
- },
2440
- "ReceiptRule":{
2441
- "type":"structure",
2442
- "required":["Name"],
2443
- "members":{
2444
- "Name":{"shape":"ReceiptRuleName"},
2445
- "Enabled":{"shape":"Enabled"},
2446
- "TlsPolicy":{"shape":"TlsPolicy"},
2447
- "Recipients":{"shape":"RecipientsList"},
2448
- "Actions":{"shape":"ReceiptActionsList"},
2449
- "ScanEnabled":{"shape":"Enabled"}
2450
- }
2451
- },
2452
- "ReceiptRuleName":{"type":"string"},
2453
- "ReceiptRuleNamesList":{
2454
- "type":"list",
2455
- "member":{"shape":"ReceiptRuleName"}
2456
- },
2457
- "ReceiptRuleSetMetadata":{
2458
- "type":"structure",
2459
- "members":{
2460
- "Name":{"shape":"ReceiptRuleSetName"},
2461
- "CreatedTimestamp":{"shape":"Timestamp"}
2462
- }
2463
- },
2464
- "ReceiptRuleSetName":{"type":"string"},
2465
- "ReceiptRuleSetsLists":{
2466
- "type":"list",
2467
- "member":{"shape":"ReceiptRuleSetMetadata"}
2468
- },
2469
- "ReceiptRulesList":{
2470
- "type":"list",
2471
- "member":{"shape":"ReceiptRule"}
2472
- },
2473
- "Recipient":{"type":"string"},
2474
- "RecipientDsnFields":{
2475
- "type":"structure",
2476
- "required":[
2477
- "Action",
2478
- "Status"
2479
- ],
2480
- "members":{
2481
- "FinalRecipient":{"shape":"Address"},
2482
- "Action":{"shape":"DsnAction"},
2483
- "RemoteMta":{"shape":"RemoteMta"},
2484
- "Status":{"shape":"DsnStatus"},
2485
- "DiagnosticCode":{"shape":"DiagnosticCode"},
2486
- "LastAttemptDate":{"shape":"LastAttemptDate"},
2487
- "ExtensionFields":{"shape":"ExtensionFieldList"}
2488
- }
2489
- },
2490
- "RecipientsList":{
2491
- "type":"list",
2492
- "member":{"shape":"Recipient"}
2493
- },
2494
- "RemoteMta":{"type":"string"},
2495
- "RenderedTemplate":{"type":"string"},
2496
- "ReorderReceiptRuleSetRequest":{
2497
- "type":"structure",
2498
- "required":[
2499
- "RuleSetName",
2500
- "RuleNames"
2501
- ],
2502
- "members":{
2503
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
2504
- "RuleNames":{"shape":"ReceiptRuleNamesList"}
2505
- }
2506
- },
2507
- "ReorderReceiptRuleSetResponse":{
2508
- "type":"structure",
2509
- "members":{
2510
- }
2511
- },
2512
- "ReportingMta":{"type":"string"},
2513
- "ReputationOptions":{
2514
- "type":"structure",
2515
- "members":{
2516
- "SendingEnabled":{"shape":"Enabled"},
2517
- "ReputationMetricsEnabled":{"shape":"Enabled"},
2518
- "LastFreshStart":{"shape":"LastFreshStart"}
2519
- }
2520
- },
2521
- "RuleDoesNotExistException":{
2522
- "type":"structure",
2523
- "members":{
2524
- "Name":{"shape":"RuleOrRuleSetName"}
2525
- },
2526
- "error":{
2527
- "code":"RuleDoesNotExist",
2528
- "httpStatusCode":400,
2529
- "senderFault":true
2530
- },
2531
- "exception":true
2532
- },
2533
- "RuleOrRuleSetName":{"type":"string"},
2534
- "RuleSetDoesNotExistException":{
2535
- "type":"structure",
2536
- "members":{
2537
- "Name":{"shape":"RuleOrRuleSetName"}
2538
- },
2539
- "error":{
2540
- "code":"RuleSetDoesNotExist",
2541
- "httpStatusCode":400,
2542
- "senderFault":true
2543
- },
2544
- "exception":true
2545
- },
2546
- "S3Action":{
2547
- "type":"structure",
2548
- "required":["BucketName"],
2549
- "members":{
2550
- "TopicArn":{"shape":"AmazonResourceName"},
2551
- "BucketName":{"shape":"S3BucketName"},
2552
- "ObjectKeyPrefix":{"shape":"S3KeyPrefix"},
2553
- "KmsKeyArn":{"shape":"AmazonResourceName"}
2554
- }
2555
- },
2556
- "S3BucketName":{"type":"string"},
2557
- "S3KeyPrefix":{"type":"string"},
2558
- "SNSAction":{
2559
- "type":"structure",
2560
- "required":["TopicArn"],
2561
- "members":{
2562
- "TopicArn":{"shape":"AmazonResourceName"},
2563
- "Encoding":{"shape":"SNSActionEncoding"}
2564
- }
2565
- },
2566
- "SNSActionEncoding":{
2567
- "type":"string",
2568
- "enum":[
2569
- "UTF-8",
2570
- "Base64"
2571
- ]
2572
- },
2573
- "SNSDestination":{
2574
- "type":"structure",
2575
- "required":["TopicARN"],
2576
- "members":{
2577
- "TopicARN":{"shape":"AmazonResourceName"}
2578
- }
2579
- },
2580
- "SendBounceRequest":{
2581
- "type":"structure",
2582
- "required":[
2583
- "OriginalMessageId",
2584
- "BounceSender",
2585
- "BouncedRecipientInfoList"
2586
- ],
2587
- "members":{
2588
- "OriginalMessageId":{"shape":"MessageId"},
2589
- "BounceSender":{"shape":"Address"},
2590
- "Explanation":{"shape":"Explanation"},
2591
- "MessageDsn":{"shape":"MessageDsn"},
2592
- "BouncedRecipientInfoList":{"shape":"BouncedRecipientInfoList"},
2593
- "BounceSenderArn":{"shape":"AmazonResourceName"}
2594
- }
2595
- },
2596
- "SendBounceResponse":{
2597
- "type":"structure",
2598
- "members":{
2599
- "MessageId":{"shape":"MessageId"}
2600
- }
2601
- },
2602
- "SendBulkTemplatedEmailRequest":{
2603
- "type":"structure",
2604
- "required":[
2605
- "Source",
2606
- "Template",
2607
- "Destinations"
2608
- ],
2609
- "members":{
2610
- "Source":{"shape":"Address"},
2611
- "SourceArn":{"shape":"AmazonResourceName"},
2612
- "ReplyToAddresses":{"shape":"AddressList"},
2613
- "ReturnPath":{"shape":"Address"},
2614
- "ReturnPathArn":{"shape":"AmazonResourceName"},
2615
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2616
- "DefaultTags":{"shape":"MessageTagList"},
2617
- "Template":{"shape":"TemplateName"},
2618
- "TemplateArn":{"shape":"AmazonResourceName"},
2619
- "DefaultTemplateData":{"shape":"TemplateData"},
2620
- "Destinations":{"shape":"BulkEmailDestinationList"}
2621
- }
2622
- },
2623
- "SendBulkTemplatedEmailResponse":{
2624
- "type":"structure",
2625
- "required":["Status"],
2626
- "members":{
2627
- "Status":{"shape":"BulkEmailDestinationStatusList"}
2628
- }
2629
- },
2630
- "SendCustomVerificationEmailRequest":{
2631
- "type":"structure",
2632
- "required":[
2633
- "EmailAddress",
2634
- "TemplateName"
2635
- ],
2636
- "members":{
2637
- "EmailAddress":{"shape":"Address"},
2638
- "TemplateName":{"shape":"TemplateName"},
2639
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
2640
- }
2641
- },
2642
- "SendCustomVerificationEmailResponse":{
2643
- "type":"structure",
2644
- "members":{
2645
- "MessageId":{"shape":"MessageId"}
2646
- }
2647
- },
2648
- "SendDataPoint":{
2649
- "type":"structure",
2650
- "members":{
2651
- "Timestamp":{"shape":"Timestamp"},
2652
- "DeliveryAttempts":{"shape":"Counter"},
2653
- "Bounces":{"shape":"Counter"},
2654
- "Complaints":{"shape":"Counter"},
2655
- "Rejects":{"shape":"Counter"}
2656
- }
2657
- },
2658
- "SendDataPointList":{
2659
- "type":"list",
2660
- "member":{"shape":"SendDataPoint"}
2661
- },
2662
- "SendEmailRequest":{
2663
- "type":"structure",
2664
- "required":[
2665
- "Source",
2666
- "Destination",
2667
- "Message"
2668
- ],
2669
- "members":{
2670
- "Source":{"shape":"Address"},
2671
- "Destination":{"shape":"Destination"},
2672
- "Message":{"shape":"Message"},
2673
- "ReplyToAddresses":{"shape":"AddressList"},
2674
- "ReturnPath":{"shape":"Address"},
2675
- "SourceArn":{"shape":"AmazonResourceName"},
2676
- "ReturnPathArn":{"shape":"AmazonResourceName"},
2677
- "Tags":{"shape":"MessageTagList"},
2678
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
2679
- }
2680
- },
2681
- "SendEmailResponse":{
2682
- "type":"structure",
2683
- "required":["MessageId"],
2684
- "members":{
2685
- "MessageId":{"shape":"MessageId"}
2686
- }
2687
- },
2688
- "SendRawEmailRequest":{
2689
- "type":"structure",
2690
- "required":["RawMessage"],
2691
- "members":{
2692
- "Source":{"shape":"Address"},
2693
- "Destinations":{"shape":"AddressList"},
2694
- "RawMessage":{"shape":"RawMessage"},
2695
- "FromArn":{"shape":"AmazonResourceName"},
2696
- "SourceArn":{"shape":"AmazonResourceName"},
2697
- "ReturnPathArn":{"shape":"AmazonResourceName"},
2698
- "Tags":{"shape":"MessageTagList"},
2699
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
2700
- }
2701
- },
2702
- "SendRawEmailResponse":{
2703
- "type":"structure",
2704
- "required":["MessageId"],
2705
- "members":{
2706
- "MessageId":{"shape":"MessageId"}
2707
- }
2708
- },
2709
- "SendTemplatedEmailRequest":{
2710
- "type":"structure",
2711
- "required":[
2712
- "Source",
2713
- "Destination",
2714
- "Template",
2715
- "TemplateData"
2716
- ],
2717
- "members":{
2718
- "Source":{"shape":"Address"},
2719
- "Destination":{"shape":"Destination"},
2720
- "ReplyToAddresses":{"shape":"AddressList"},
2721
- "ReturnPath":{"shape":"Address"},
2722
- "SourceArn":{"shape":"AmazonResourceName"},
2723
- "ReturnPathArn":{"shape":"AmazonResourceName"},
2724
- "Tags":{"shape":"MessageTagList"},
2725
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2726
- "Template":{"shape":"TemplateName"},
2727
- "TemplateArn":{"shape":"AmazonResourceName"},
2728
- "TemplateData":{"shape":"TemplateData"}
2729
- }
2730
- },
2731
- "SendTemplatedEmailResponse":{
2732
- "type":"structure",
2733
- "required":["MessageId"],
2734
- "members":{
2735
- "MessageId":{"shape":"MessageId"}
2736
- }
2737
- },
2738
- "SentLast24Hours":{"type":"double"},
2739
- "SetActiveReceiptRuleSetRequest":{
2740
- "type":"structure",
2741
- "members":{
2742
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
2743
- }
2744
- },
2745
- "SetActiveReceiptRuleSetResponse":{
2746
- "type":"structure",
2747
- "members":{
2748
- }
2749
- },
2750
- "SetIdentityDkimEnabledRequest":{
2751
- "type":"structure",
2752
- "required":[
2753
- "Identity",
2754
- "DkimEnabled"
2755
- ],
2756
- "members":{
2757
- "Identity":{"shape":"Identity"},
2758
- "DkimEnabled":{"shape":"Enabled"}
2759
- }
2760
- },
2761
- "SetIdentityDkimEnabledResponse":{
2762
- "type":"structure",
2763
- "members":{
2764
- }
2765
- },
2766
- "SetIdentityFeedbackForwardingEnabledRequest":{
2767
- "type":"structure",
2768
- "required":[
2769
- "Identity",
2770
- "ForwardingEnabled"
2771
- ],
2772
- "members":{
2773
- "Identity":{"shape":"Identity"},
2774
- "ForwardingEnabled":{"shape":"Enabled"}
2775
- }
2776
- },
2777
- "SetIdentityFeedbackForwardingEnabledResponse":{
2778
- "type":"structure",
2779
- "members":{
2780
- }
2781
- },
2782
- "SetIdentityHeadersInNotificationsEnabledRequest":{
2783
- "type":"structure",
2784
- "required":[
2785
- "Identity",
2786
- "NotificationType",
2787
- "Enabled"
2788
- ],
2789
- "members":{
2790
- "Identity":{"shape":"Identity"},
2791
- "NotificationType":{"shape":"NotificationType"},
2792
- "Enabled":{"shape":"Enabled"}
2793
- }
2794
- },
2795
- "SetIdentityHeadersInNotificationsEnabledResponse":{
2796
- "type":"structure",
2797
- "members":{
2798
- }
2799
- },
2800
- "SetIdentityMailFromDomainRequest":{
2801
- "type":"structure",
2802
- "required":["Identity"],
2803
- "members":{
2804
- "Identity":{"shape":"Identity"},
2805
- "MailFromDomain":{"shape":"MailFromDomainName"},
2806
- "BehaviorOnMXFailure":{"shape":"BehaviorOnMXFailure"}
2807
- }
2808
- },
2809
- "SetIdentityMailFromDomainResponse":{
2810
- "type":"structure",
2811
- "members":{
2812
- }
2813
- },
2814
- "SetIdentityNotificationTopicRequest":{
2815
- "type":"structure",
2816
- "required":[
2817
- "Identity",
2818
- "NotificationType"
2819
- ],
2820
- "members":{
2821
- "Identity":{"shape":"Identity"},
2822
- "NotificationType":{"shape":"NotificationType"},
2823
- "SnsTopic":{"shape":"NotificationTopic"}
2824
- }
2825
- },
2826
- "SetIdentityNotificationTopicResponse":{
2827
- "type":"structure",
2828
- "members":{
2829
- }
2830
- },
2831
- "SetReceiptRulePositionRequest":{
2832
- "type":"structure",
2833
- "required":[
2834
- "RuleSetName",
2835
- "RuleName"
2836
- ],
2837
- "members":{
2838
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
2839
- "RuleName":{"shape":"ReceiptRuleName"},
2840
- "After":{"shape":"ReceiptRuleName"}
2841
- }
2842
- },
2843
- "SetReceiptRulePositionResponse":{
2844
- "type":"structure",
2845
- "members":{
2846
- }
2847
- },
2848
- "StopAction":{
2849
- "type":"structure",
2850
- "required":["Scope"],
2851
- "members":{
2852
- "Scope":{"shape":"StopScope"},
2853
- "TopicArn":{"shape":"AmazonResourceName"}
2854
- }
2855
- },
2856
- "StopScope":{
2857
- "type":"string",
2858
- "enum":["RuleSet"]
2859
- },
2860
- "Subject":{"type":"string"},
2861
- "SubjectPart":{"type":"string"},
2862
- "SuccessRedirectionURL":{"type":"string"},
2863
- "Template":{
2864
- "type":"structure",
2865
- "required":["TemplateName"],
2866
- "members":{
2867
- "TemplateName":{"shape":"TemplateName"},
2868
- "SubjectPart":{"shape":"SubjectPart"},
2869
- "TextPart":{"shape":"TextPart"},
2870
- "HtmlPart":{"shape":"HtmlPart"}
2871
- }
2872
- },
2873
- "TemplateContent":{"type":"string"},
2874
- "TemplateData":{
2875
- "type":"string",
2876
- "max":262144
2877
- },
2878
- "TemplateDoesNotExistException":{
2879
- "type":"structure",
2880
- "members":{
2881
- "TemplateName":{"shape":"TemplateName"}
2882
- },
2883
- "error":{
2884
- "code":"TemplateDoesNotExist",
2885
- "httpStatusCode":400,
2886
- "senderFault":true
2887
- },
2888
- "exception":true
2889
- },
2890
- "TemplateMetadata":{
2891
- "type":"structure",
2892
- "members":{
2893
- "Name":{"shape":"TemplateName"},
2894
- "CreatedTimestamp":{"shape":"Timestamp"}
2895
- }
2896
- },
2897
- "TemplateMetadataList":{
2898
- "type":"list",
2899
- "member":{"shape":"TemplateMetadata"}
2900
- },
2901
- "TemplateName":{"type":"string"},
2902
- "TestRenderTemplateRequest":{
2903
- "type":"structure",
2904
- "required":[
2905
- "TemplateName",
2906
- "TemplateData"
2907
- ],
2908
- "members":{
2909
- "TemplateName":{"shape":"TemplateName"},
2910
- "TemplateData":{"shape":"TemplateData"}
2911
- }
2912
- },
2913
- "TestRenderTemplateResponse":{
2914
- "type":"structure",
2915
- "members":{
2916
- "RenderedTemplate":{"shape":"RenderedTemplate"}
2917
- }
2918
- },
2919
- "TextPart":{"type":"string"},
2920
- "Timestamp":{"type":"timestamp"},
2921
- "TlsPolicy":{
2922
- "type":"string",
2923
- "enum":[
2924
- "Require",
2925
- "Optional"
2926
- ]
2927
- },
2928
- "TrackingOptions":{
2929
- "type":"structure",
2930
- "members":{
2931
- "CustomRedirectDomain":{"shape":"CustomRedirectDomain"}
2932
- }
2933
- },
2934
- "TrackingOptionsAlreadyExistsException":{
2935
- "type":"structure",
2936
- "members":{
2937
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
2938
- },
2939
- "error":{
2940
- "code":"TrackingOptionsAlreadyExistsException",
2941
- "httpStatusCode":400,
2942
- "senderFault":true
2943
- },
2944
- "exception":true
2945
- },
2946
- "TrackingOptionsDoesNotExistException":{
2947
- "type":"structure",
2948
- "members":{
2949
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
2950
- },
2951
- "error":{
2952
- "code":"TrackingOptionsDoesNotExistException",
2953
- "httpStatusCode":400,
2954
- "senderFault":true
2955
- },
2956
- "exception":true
2957
- },
2958
- "UpdateAccountSendingEnabledRequest":{
2959
- "type":"structure",
2960
- "members":{
2961
- "Enabled":{"shape":"Enabled"}
2962
- }
2963
- },
2964
- "UpdateConfigurationSetEventDestinationRequest":{
2965
- "type":"structure",
2966
- "required":[
2967
- "ConfigurationSetName",
2968
- "EventDestination"
2969
- ],
2970
- "members":{
2971
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2972
- "EventDestination":{"shape":"EventDestination"}
2973
- }
2974
- },
2975
- "UpdateConfigurationSetEventDestinationResponse":{
2976
- "type":"structure",
2977
- "members":{
2978
- }
2979
- },
2980
- "UpdateConfigurationSetReputationMetricsEnabledRequest":{
2981
- "type":"structure",
2982
- "required":[
2983
- "ConfigurationSetName",
2984
- "Enabled"
2985
- ],
2986
- "members":{
2987
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2988
- "Enabled":{"shape":"Enabled"}
2989
- }
2990
- },
2991
- "UpdateConfigurationSetSendingEnabledRequest":{
2992
- "type":"structure",
2993
- "required":[
2994
- "ConfigurationSetName",
2995
- "Enabled"
2996
- ],
2997
- "members":{
2998
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2999
- "Enabled":{"shape":"Enabled"}
3000
- }
3001
- },
3002
- "UpdateConfigurationSetTrackingOptionsRequest":{
3003
- "type":"structure",
3004
- "required":[
3005
- "ConfigurationSetName",
3006
- "TrackingOptions"
3007
- ],
3008
- "members":{
3009
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
3010
- "TrackingOptions":{"shape":"TrackingOptions"}
3011
- }
3012
- },
3013
- "UpdateConfigurationSetTrackingOptionsResponse":{
3014
- "type":"structure",
3015
- "members":{
3016
- }
3017
- },
3018
- "UpdateCustomVerificationEmailTemplateRequest":{
3019
- "type":"structure",
3020
- "required":["TemplateName"],
3021
- "members":{
3022
- "TemplateName":{"shape":"TemplateName"},
3023
- "FromEmailAddress":{"shape":"FromAddress"},
3024
- "TemplateSubject":{"shape":"Subject"},
3025
- "TemplateContent":{"shape":"TemplateContent"},
3026
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
3027
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
3028
- }
3029
- },
3030
- "UpdateReceiptRuleRequest":{
3031
- "type":"structure",
3032
- "required":[
3033
- "RuleSetName",
3034
- "Rule"
3035
- ],
3036
- "members":{
3037
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
3038
- "Rule":{"shape":"ReceiptRule"}
3039
- }
3040
- },
3041
- "UpdateReceiptRuleResponse":{
3042
- "type":"structure",
3043
- "members":{
3044
- }
3045
- },
3046
- "UpdateTemplateRequest":{
3047
- "type":"structure",
3048
- "required":["Template"],
3049
- "members":{
3050
- "Template":{"shape":"Template"}
3051
- }
3052
- },
3053
- "UpdateTemplateResponse":{
3054
- "type":"structure",
3055
- "members":{
3056
- }
3057
- },
3058
- "VerificationAttributes":{
3059
- "type":"map",
3060
- "key":{"shape":"Identity"},
3061
- "value":{"shape":"IdentityVerificationAttributes"}
3062
- },
3063
- "VerificationStatus":{
3064
- "type":"string",
3065
- "enum":[
3066
- "Pending",
3067
- "Success",
3068
- "Failed",
3069
- "TemporaryFailure",
3070
- "NotStarted"
3071
- ]
3072
- },
3073
- "VerificationToken":{"type":"string"},
3074
- "VerificationTokenList":{
3075
- "type":"list",
3076
- "member":{"shape":"VerificationToken"}
3077
- },
3078
- "VerifyDomainDkimRequest":{
3079
- "type":"structure",
3080
- "required":["Domain"],
3081
- "members":{
3082
- "Domain":{"shape":"Domain"}
3083
- }
3084
- },
3085
- "VerifyDomainDkimResponse":{
3086
- "type":"structure",
3087
- "required":["DkimTokens"],
3088
- "members":{
3089
- "DkimTokens":{"shape":"VerificationTokenList"}
3090
- }
3091
- },
3092
- "VerifyDomainIdentityRequest":{
3093
- "type":"structure",
3094
- "required":["Domain"],
3095
- "members":{
3096
- "Domain":{"shape":"Domain"}
3097
- }
3098
- },
3099
- "VerifyDomainIdentityResponse":{
3100
- "type":"structure",
3101
- "required":["VerificationToken"],
3102
- "members":{
3103
- "VerificationToken":{"shape":"VerificationToken"}
3104
- }
3105
- },
3106
- "VerifyEmailAddressRequest":{
3107
- "type":"structure",
3108
- "required":["EmailAddress"],
3109
- "members":{
3110
- "EmailAddress":{"shape":"Address"}
3111
- }
3112
- },
3113
- "VerifyEmailIdentityRequest":{
3114
- "type":"structure",
3115
- "required":["EmailAddress"],
3116
- "members":{
3117
- "EmailAddress":{"shape":"Address"}
3118
- }
3119
- },
3120
- "VerifyEmailIdentityResponse":{
3121
- "type":"structure",
3122
- "members":{
3123
- }
3124
- },
3125
- "WorkmailAction":{
3126
- "type":"structure",
3127
- "required":["OrganizationArn"],
3128
- "members":{
3129
- "TopicArn":{"shape":"AmazonResourceName"},
3130
- "OrganizationArn":{"shape":"AmazonResourceName"}
3131
- }
3132
- }
3133
- }
3134
- }