aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -696
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -3179
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,29 +0,0 @@
1
- {
2
- "pagination": {
3
- "GetInstancesHealthStatus": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults"
7
- },
8
- "ListInstances": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
- },
13
- "ListNamespaces": {
14
- "input_token": "NextToken",
15
- "output_token": "NextToken",
16
- "limit_key": "MaxResults"
17
- },
18
- "ListOperations": {
19
- "input_token": "NextToken",
20
- "output_token": "NextToken",
21
- "limit_key": "MaxResults"
22
- },
23
- "ListServices": {
24
- "input_token": "NextToken",
25
- "output_token": "NextToken",
26
- "limit_key": "MaxResults"
27
- }
28
- }
29
- }
@@ -1,3966 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-09-27",
5
- "endpointPrefix":"email",
6
- "jsonVersion":"1.1",
7
- "protocol":"rest-json",
8
- "serviceAbbreviation":"Amazon SES V2",
9
- "serviceFullName":"Amazon Simple Email Service",
10
- "serviceId":"SESv2",
11
- "signatureVersion":"v4",
12
- "signingName":"ses",
13
- "uid":"sesv2-2019-09-27"
14
- },
15
- "operations":{
16
- "CreateConfigurationSet":{
17
- "name":"CreateConfigurationSet",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/v2/email/configuration-sets"
21
- },
22
- "input":{"shape":"CreateConfigurationSetRequest"},
23
- "output":{"shape":"CreateConfigurationSetResponse"},
24
- "errors":[
25
- {"shape":"AlreadyExistsException"},
26
- {"shape":"NotFoundException"},
27
- {"shape":"TooManyRequestsException"},
28
- {"shape":"LimitExceededException"},
29
- {"shape":"BadRequestException"},
30
- {"shape":"ConcurrentModificationException"}
31
- ]
32
- },
33
- "CreateConfigurationSetEventDestination":{
34
- "name":"CreateConfigurationSetEventDestination",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations"
38
- },
39
- "input":{"shape":"CreateConfigurationSetEventDestinationRequest"},
40
- "output":{"shape":"CreateConfigurationSetEventDestinationResponse"},
41
- "errors":[
42
- {"shape":"NotFoundException"},
43
- {"shape":"AlreadyExistsException"},
44
- {"shape":"LimitExceededException"},
45
- {"shape":"TooManyRequestsException"},
46
- {"shape":"BadRequestException"}
47
- ]
48
- },
49
- "CreateContact":{
50
- "name":"CreateContact",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts"
54
- },
55
- "input":{"shape":"CreateContactRequest"},
56
- "output":{"shape":"CreateContactResponse"},
57
- "errors":[
58
- {"shape":"BadRequestException"},
59
- {"shape":"TooManyRequestsException"},
60
- {"shape":"NotFoundException"},
61
- {"shape":"AlreadyExistsException"}
62
- ]
63
- },
64
- "CreateContactList":{
65
- "name":"CreateContactList",
66
- "http":{
67
- "method":"POST",
68
- "requestUri":"/v2/email/contact-lists"
69
- },
70
- "input":{"shape":"CreateContactListRequest"},
71
- "output":{"shape":"CreateContactListResponse"},
72
- "errors":[
73
- {"shape":"BadRequestException"},
74
- {"shape":"TooManyRequestsException"},
75
- {"shape":"AlreadyExistsException"},
76
- {"shape":"LimitExceededException"}
77
- ]
78
- },
79
- "CreateCustomVerificationEmailTemplate":{
80
- "name":"CreateCustomVerificationEmailTemplate",
81
- "http":{
82
- "method":"POST",
83
- "requestUri":"/v2/email/custom-verification-email-templates"
84
- },
85
- "input":{"shape":"CreateCustomVerificationEmailTemplateRequest"},
86
- "output":{"shape":"CreateCustomVerificationEmailTemplateResponse"},
87
- "errors":[
88
- {"shape":"BadRequestException"},
89
- {"shape":"AlreadyExistsException"},
90
- {"shape":"NotFoundException"},
91
- {"shape":"TooManyRequestsException"},
92
- {"shape":"LimitExceededException"}
93
- ]
94
- },
95
- "CreateDedicatedIpPool":{
96
- "name":"CreateDedicatedIpPool",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/v2/email/dedicated-ip-pools"
100
- },
101
- "input":{"shape":"CreateDedicatedIpPoolRequest"},
102
- "output":{"shape":"CreateDedicatedIpPoolResponse"},
103
- "errors":[
104
- {"shape":"AlreadyExistsException"},
105
- {"shape":"LimitExceededException"},
106
- {"shape":"TooManyRequestsException"},
107
- {"shape":"BadRequestException"},
108
- {"shape":"ConcurrentModificationException"}
109
- ]
110
- },
111
- "CreateDeliverabilityTestReport":{
112
- "name":"CreateDeliverabilityTestReport",
113
- "http":{
114
- "method":"POST",
115
- "requestUri":"/v2/email/deliverability-dashboard/test"
116
- },
117
- "input":{"shape":"CreateDeliverabilityTestReportRequest"},
118
- "output":{"shape":"CreateDeliverabilityTestReportResponse"},
119
- "errors":[
120
- {"shape":"AccountSuspendedException"},
121
- {"shape":"SendingPausedException"},
122
- {"shape":"MessageRejected"},
123
- {"shape":"MailFromDomainNotVerifiedException"},
124
- {"shape":"NotFoundException"},
125
- {"shape":"TooManyRequestsException"},
126
- {"shape":"LimitExceededException"},
127
- {"shape":"BadRequestException"},
128
- {"shape":"ConcurrentModificationException"}
129
- ]
130
- },
131
- "CreateEmailIdentity":{
132
- "name":"CreateEmailIdentity",
133
- "http":{
134
- "method":"POST",
135
- "requestUri":"/v2/email/identities"
136
- },
137
- "input":{"shape":"CreateEmailIdentityRequest"},
138
- "output":{"shape":"CreateEmailIdentityResponse"},
139
- "errors":[
140
- {"shape":"AlreadyExistsException"},
141
- {"shape":"LimitExceededException"},
142
- {"shape":"TooManyRequestsException"},
143
- {"shape":"BadRequestException"},
144
- {"shape":"ConcurrentModificationException"}
145
- ]
146
- },
147
- "CreateEmailIdentityPolicy":{
148
- "name":"CreateEmailIdentityPolicy",
149
- "http":{
150
- "method":"POST",
151
- "requestUri":"/v2/email/identities/{EmailIdentity}/policies/{PolicyName}"
152
- },
153
- "input":{"shape":"CreateEmailIdentityPolicyRequest"},
154
- "output":{"shape":"CreateEmailIdentityPolicyResponse"},
155
- "errors":[
156
- {"shape":"NotFoundException"},
157
- {"shape":"AlreadyExistsException"},
158
- {"shape":"TooManyRequestsException"},
159
- {"shape":"LimitExceededException"},
160
- {"shape":"BadRequestException"}
161
- ]
162
- },
163
- "CreateEmailTemplate":{
164
- "name":"CreateEmailTemplate",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/v2/email/templates"
168
- },
169
- "input":{"shape":"CreateEmailTemplateRequest"},
170
- "output":{"shape":"CreateEmailTemplateResponse"},
171
- "errors":[
172
- {"shape":"AlreadyExistsException"},
173
- {"shape":"TooManyRequestsException"},
174
- {"shape":"BadRequestException"},
175
- {"shape":"LimitExceededException"}
176
- ]
177
- },
178
- "CreateImportJob":{
179
- "name":"CreateImportJob",
180
- "http":{
181
- "method":"POST",
182
- "requestUri":"/v2/email/import-jobs"
183
- },
184
- "input":{"shape":"CreateImportJobRequest"},
185
- "output":{"shape":"CreateImportJobResponse"},
186
- "errors":[
187
- {"shape":"BadRequestException"},
188
- {"shape":"LimitExceededException"},
189
- {"shape":"TooManyRequestsException"}
190
- ]
191
- },
192
- "DeleteConfigurationSet":{
193
- "name":"DeleteConfigurationSet",
194
- "http":{
195
- "method":"DELETE",
196
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}"
197
- },
198
- "input":{"shape":"DeleteConfigurationSetRequest"},
199
- "output":{"shape":"DeleteConfigurationSetResponse"},
200
- "errors":[
201
- {"shape":"NotFoundException"},
202
- {"shape":"TooManyRequestsException"},
203
- {"shape":"BadRequestException"},
204
- {"shape":"ConcurrentModificationException"}
205
- ]
206
- },
207
- "DeleteConfigurationSetEventDestination":{
208
- "name":"DeleteConfigurationSetEventDestination",
209
- "http":{
210
- "method":"DELETE",
211
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}"
212
- },
213
- "input":{"shape":"DeleteConfigurationSetEventDestinationRequest"},
214
- "output":{"shape":"DeleteConfigurationSetEventDestinationResponse"},
215
- "errors":[
216
- {"shape":"NotFoundException"},
217
- {"shape":"TooManyRequestsException"},
218
- {"shape":"BadRequestException"}
219
- ]
220
- },
221
- "DeleteContact":{
222
- "name":"DeleteContact",
223
- "http":{
224
- "method":"DELETE",
225
- "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}"
226
- },
227
- "input":{"shape":"DeleteContactRequest"},
228
- "output":{"shape":"DeleteContactResponse"},
229
- "errors":[
230
- {"shape":"BadRequestException"},
231
- {"shape":"TooManyRequestsException"},
232
- {"shape":"NotFoundException"}
233
- ]
234
- },
235
- "DeleteContactList":{
236
- "name":"DeleteContactList",
237
- "http":{
238
- "method":"DELETE",
239
- "requestUri":"/v2/email/contact-lists/{ContactListName}"
240
- },
241
- "input":{"shape":"DeleteContactListRequest"},
242
- "output":{"shape":"DeleteContactListResponse"},
243
- "errors":[
244
- {"shape":"TooManyRequestsException"},
245
- {"shape":"NotFoundException"},
246
- {"shape":"BadRequestException"},
247
- {"shape":"ConcurrentModificationException"}
248
- ]
249
- },
250
- "DeleteCustomVerificationEmailTemplate":{
251
- "name":"DeleteCustomVerificationEmailTemplate",
252
- "http":{
253
- "method":"DELETE",
254
- "requestUri":"/v2/email/custom-verification-email-templates/{TemplateName}"
255
- },
256
- "input":{"shape":"DeleteCustomVerificationEmailTemplateRequest"},
257
- "output":{"shape":"DeleteCustomVerificationEmailTemplateResponse"},
258
- "errors":[
259
- {"shape":"NotFoundException"},
260
- {"shape":"TooManyRequestsException"},
261
- {"shape":"BadRequestException"}
262
- ]
263
- },
264
- "DeleteDedicatedIpPool":{
265
- "name":"DeleteDedicatedIpPool",
266
- "http":{
267
- "method":"DELETE",
268
- "requestUri":"/v2/email/dedicated-ip-pools/{PoolName}"
269
- },
270
- "input":{"shape":"DeleteDedicatedIpPoolRequest"},
271
- "output":{"shape":"DeleteDedicatedIpPoolResponse"},
272
- "errors":[
273
- {"shape":"NotFoundException"},
274
- {"shape":"TooManyRequestsException"},
275
- {"shape":"BadRequestException"},
276
- {"shape":"ConcurrentModificationException"}
277
- ]
278
- },
279
- "DeleteEmailIdentity":{
280
- "name":"DeleteEmailIdentity",
281
- "http":{
282
- "method":"DELETE",
283
- "requestUri":"/v2/email/identities/{EmailIdentity}"
284
- },
285
- "input":{"shape":"DeleteEmailIdentityRequest"},
286
- "output":{"shape":"DeleteEmailIdentityResponse"},
287
- "errors":[
288
- {"shape":"NotFoundException"},
289
- {"shape":"TooManyRequestsException"},
290
- {"shape":"BadRequestException"},
291
- {"shape":"ConcurrentModificationException"}
292
- ]
293
- },
294
- "DeleteEmailIdentityPolicy":{
295
- "name":"DeleteEmailIdentityPolicy",
296
- "http":{
297
- "method":"DELETE",
298
- "requestUri":"/v2/email/identities/{EmailIdentity}/policies/{PolicyName}"
299
- },
300
- "input":{"shape":"DeleteEmailIdentityPolicyRequest"},
301
- "output":{"shape":"DeleteEmailIdentityPolicyResponse"},
302
- "errors":[
303
- {"shape":"NotFoundException"},
304
- {"shape":"TooManyRequestsException"},
305
- {"shape":"BadRequestException"}
306
- ]
307
- },
308
- "DeleteEmailTemplate":{
309
- "name":"DeleteEmailTemplate",
310
- "http":{
311
- "method":"DELETE",
312
- "requestUri":"/v2/email/templates/{TemplateName}"
313
- },
314
- "input":{"shape":"DeleteEmailTemplateRequest"},
315
- "output":{"shape":"DeleteEmailTemplateResponse"},
316
- "errors":[
317
- {"shape":"NotFoundException"},
318
- {"shape":"TooManyRequestsException"},
319
- {"shape":"BadRequestException"}
320
- ]
321
- },
322
- "DeleteSuppressedDestination":{
323
- "name":"DeleteSuppressedDestination",
324
- "http":{
325
- "method":"DELETE",
326
- "requestUri":"/v2/email/suppression/addresses/{EmailAddress}"
327
- },
328
- "input":{"shape":"DeleteSuppressedDestinationRequest"},
329
- "output":{"shape":"DeleteSuppressedDestinationResponse"},
330
- "errors":[
331
- {"shape":"NotFoundException"},
332
- {"shape":"BadRequestException"},
333
- {"shape":"TooManyRequestsException"}
334
- ]
335
- },
336
- "GetAccount":{
337
- "name":"GetAccount",
338
- "http":{
339
- "method":"GET",
340
- "requestUri":"/v2/email/account"
341
- },
342
- "input":{"shape":"GetAccountRequest"},
343
- "output":{"shape":"GetAccountResponse"},
344
- "errors":[
345
- {"shape":"TooManyRequestsException"},
346
- {"shape":"BadRequestException"}
347
- ]
348
- },
349
- "GetBlacklistReports":{
350
- "name":"GetBlacklistReports",
351
- "http":{
352
- "method":"GET",
353
- "requestUri":"/v2/email/deliverability-dashboard/blacklist-report"
354
- },
355
- "input":{"shape":"GetBlacklistReportsRequest"},
356
- "output":{"shape":"GetBlacklistReportsResponse"},
357
- "errors":[
358
- {"shape":"TooManyRequestsException"},
359
- {"shape":"NotFoundException"},
360
- {"shape":"BadRequestException"}
361
- ]
362
- },
363
- "GetConfigurationSet":{
364
- "name":"GetConfigurationSet",
365
- "http":{
366
- "method":"GET",
367
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}"
368
- },
369
- "input":{"shape":"GetConfigurationSetRequest"},
370
- "output":{"shape":"GetConfigurationSetResponse"},
371
- "errors":[
372
- {"shape":"NotFoundException"},
373
- {"shape":"TooManyRequestsException"},
374
- {"shape":"BadRequestException"}
375
- ]
376
- },
377
- "GetConfigurationSetEventDestinations":{
378
- "name":"GetConfigurationSetEventDestinations",
379
- "http":{
380
- "method":"GET",
381
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations"
382
- },
383
- "input":{"shape":"GetConfigurationSetEventDestinationsRequest"},
384
- "output":{"shape":"GetConfigurationSetEventDestinationsResponse"},
385
- "errors":[
386
- {"shape":"NotFoundException"},
387
- {"shape":"TooManyRequestsException"},
388
- {"shape":"BadRequestException"}
389
- ]
390
- },
391
- "GetContact":{
392
- "name":"GetContact",
393
- "http":{
394
- "method":"GET",
395
- "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}"
396
- },
397
- "input":{"shape":"GetContactRequest"},
398
- "output":{"shape":"GetContactResponse"},
399
- "errors":[
400
- {"shape":"BadRequestException"},
401
- {"shape":"TooManyRequestsException"},
402
- {"shape":"NotFoundException"}
403
- ]
404
- },
405
- "GetContactList":{
406
- "name":"GetContactList",
407
- "http":{
408
- "method":"GET",
409
- "requestUri":"/v2/email/contact-lists/{ContactListName}"
410
- },
411
- "input":{"shape":"GetContactListRequest"},
412
- "output":{"shape":"GetContactListResponse"},
413
- "errors":[
414
- {"shape":"TooManyRequestsException"},
415
- {"shape":"NotFoundException"},
416
- {"shape":"BadRequestException"}
417
- ]
418
- },
419
- "GetCustomVerificationEmailTemplate":{
420
- "name":"GetCustomVerificationEmailTemplate",
421
- "http":{
422
- "method":"GET",
423
- "requestUri":"/v2/email/custom-verification-email-templates/{TemplateName}"
424
- },
425
- "input":{"shape":"GetCustomVerificationEmailTemplateRequest"},
426
- "output":{"shape":"GetCustomVerificationEmailTemplateResponse"},
427
- "errors":[
428
- {"shape":"NotFoundException"},
429
- {"shape":"TooManyRequestsException"},
430
- {"shape":"BadRequestException"}
431
- ]
432
- },
433
- "GetDedicatedIp":{
434
- "name":"GetDedicatedIp",
435
- "http":{
436
- "method":"GET",
437
- "requestUri":"/v2/email/dedicated-ips/{IP}"
438
- },
439
- "input":{"shape":"GetDedicatedIpRequest"},
440
- "output":{"shape":"GetDedicatedIpResponse"},
441
- "errors":[
442
- {"shape":"TooManyRequestsException"},
443
- {"shape":"NotFoundException"},
444
- {"shape":"BadRequestException"}
445
- ]
446
- },
447
- "GetDedicatedIps":{
448
- "name":"GetDedicatedIps",
449
- "http":{
450
- "method":"GET",
451
- "requestUri":"/v2/email/dedicated-ips"
452
- },
453
- "input":{"shape":"GetDedicatedIpsRequest"},
454
- "output":{"shape":"GetDedicatedIpsResponse"},
455
- "errors":[
456
- {"shape":"TooManyRequestsException"},
457
- {"shape":"NotFoundException"},
458
- {"shape":"BadRequestException"}
459
- ]
460
- },
461
- "GetDeliverabilityDashboardOptions":{
462
- "name":"GetDeliverabilityDashboardOptions",
463
- "http":{
464
- "method":"GET",
465
- "requestUri":"/v2/email/deliverability-dashboard"
466
- },
467
- "input":{"shape":"GetDeliverabilityDashboardOptionsRequest"},
468
- "output":{"shape":"GetDeliverabilityDashboardOptionsResponse"},
469
- "errors":[
470
- {"shape":"TooManyRequestsException"},
471
- {"shape":"LimitExceededException"},
472
- {"shape":"BadRequestException"}
473
- ]
474
- },
475
- "GetDeliverabilityTestReport":{
476
- "name":"GetDeliverabilityTestReport",
477
- "http":{
478
- "method":"GET",
479
- "requestUri":"/v2/email/deliverability-dashboard/test-reports/{ReportId}"
480
- },
481
- "input":{"shape":"GetDeliverabilityTestReportRequest"},
482
- "output":{"shape":"GetDeliverabilityTestReportResponse"},
483
- "errors":[
484
- {"shape":"TooManyRequestsException"},
485
- {"shape":"NotFoundException"},
486
- {"shape":"BadRequestException"}
487
- ]
488
- },
489
- "GetDomainDeliverabilityCampaign":{
490
- "name":"GetDomainDeliverabilityCampaign",
491
- "http":{
492
- "method":"GET",
493
- "requestUri":"/v2/email/deliverability-dashboard/campaigns/{CampaignId}"
494
- },
495
- "input":{"shape":"GetDomainDeliverabilityCampaignRequest"},
496
- "output":{"shape":"GetDomainDeliverabilityCampaignResponse"},
497
- "errors":[
498
- {"shape":"TooManyRequestsException"},
499
- {"shape":"BadRequestException"},
500
- {"shape":"NotFoundException"}
501
- ]
502
- },
503
- "GetDomainStatisticsReport":{
504
- "name":"GetDomainStatisticsReport",
505
- "http":{
506
- "method":"GET",
507
- "requestUri":"/v2/email/deliverability-dashboard/statistics-report/{Domain}"
508
- },
509
- "input":{"shape":"GetDomainStatisticsReportRequest"},
510
- "output":{"shape":"GetDomainStatisticsReportResponse"},
511
- "errors":[
512
- {"shape":"TooManyRequestsException"},
513
- {"shape":"NotFoundException"},
514
- {"shape":"BadRequestException"}
515
- ]
516
- },
517
- "GetEmailIdentity":{
518
- "name":"GetEmailIdentity",
519
- "http":{
520
- "method":"GET",
521
- "requestUri":"/v2/email/identities/{EmailIdentity}"
522
- },
523
- "input":{"shape":"GetEmailIdentityRequest"},
524
- "output":{"shape":"GetEmailIdentityResponse"},
525
- "errors":[
526
- {"shape":"NotFoundException"},
527
- {"shape":"TooManyRequestsException"},
528
- {"shape":"BadRequestException"}
529
- ]
530
- },
531
- "GetEmailIdentityPolicies":{
532
- "name":"GetEmailIdentityPolicies",
533
- "http":{
534
- "method":"GET",
535
- "requestUri":"/v2/email/identities/{EmailIdentity}/policies"
536
- },
537
- "input":{"shape":"GetEmailIdentityPoliciesRequest"},
538
- "output":{"shape":"GetEmailIdentityPoliciesResponse"},
539
- "errors":[
540
- {"shape":"NotFoundException"},
541
- {"shape":"TooManyRequestsException"},
542
- {"shape":"BadRequestException"}
543
- ]
544
- },
545
- "GetEmailTemplate":{
546
- "name":"GetEmailTemplate",
547
- "http":{
548
- "method":"GET",
549
- "requestUri":"/v2/email/templates/{TemplateName}"
550
- },
551
- "input":{"shape":"GetEmailTemplateRequest"},
552
- "output":{"shape":"GetEmailTemplateResponse"},
553
- "errors":[
554
- {"shape":"NotFoundException"},
555
- {"shape":"TooManyRequestsException"},
556
- {"shape":"BadRequestException"}
557
- ]
558
- },
559
- "GetImportJob":{
560
- "name":"GetImportJob",
561
- "http":{
562
- "method":"GET",
563
- "requestUri":"/v2/email/import-jobs/{JobId}"
564
- },
565
- "input":{"shape":"GetImportJobRequest"},
566
- "output":{"shape":"GetImportJobResponse"},
567
- "errors":[
568
- {"shape":"BadRequestException"},
569
- {"shape":"NotFoundException"},
570
- {"shape":"TooManyRequestsException"}
571
- ]
572
- },
573
- "GetSuppressedDestination":{
574
- "name":"GetSuppressedDestination",
575
- "http":{
576
- "method":"GET",
577
- "requestUri":"/v2/email/suppression/addresses/{EmailAddress}"
578
- },
579
- "input":{"shape":"GetSuppressedDestinationRequest"},
580
- "output":{"shape":"GetSuppressedDestinationResponse"},
581
- "errors":[
582
- {"shape":"BadRequestException"},
583
- {"shape":"TooManyRequestsException"},
584
- {"shape":"NotFoundException"}
585
- ]
586
- },
587
- "ListConfigurationSets":{
588
- "name":"ListConfigurationSets",
589
- "http":{
590
- "method":"GET",
591
- "requestUri":"/v2/email/configuration-sets"
592
- },
593
- "input":{"shape":"ListConfigurationSetsRequest"},
594
- "output":{"shape":"ListConfigurationSetsResponse"},
595
- "errors":[
596
- {"shape":"TooManyRequestsException"},
597
- {"shape":"BadRequestException"}
598
- ]
599
- },
600
- "ListContactLists":{
601
- "name":"ListContactLists",
602
- "http":{
603
- "method":"GET",
604
- "requestUri":"/v2/email/contact-lists"
605
- },
606
- "input":{"shape":"ListContactListsRequest"},
607
- "output":{"shape":"ListContactListsResponse"},
608
- "errors":[
609
- {"shape":"BadRequestException"},
610
- {"shape":"TooManyRequestsException"}
611
- ]
612
- },
613
- "ListContacts":{
614
- "name":"ListContacts",
615
- "http":{
616
- "method":"GET",
617
- "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts"
618
- },
619
- "input":{"shape":"ListContactsRequest"},
620
- "output":{"shape":"ListContactsResponse"},
621
- "errors":[
622
- {"shape":"BadRequestException"},
623
- {"shape":"TooManyRequestsException"},
624
- {"shape":"NotFoundException"}
625
- ]
626
- },
627
- "ListCustomVerificationEmailTemplates":{
628
- "name":"ListCustomVerificationEmailTemplates",
629
- "http":{
630
- "method":"GET",
631
- "requestUri":"/v2/email/custom-verification-email-templates"
632
- },
633
- "input":{"shape":"ListCustomVerificationEmailTemplatesRequest"},
634
- "output":{"shape":"ListCustomVerificationEmailTemplatesResponse"},
635
- "errors":[
636
- {"shape":"TooManyRequestsException"},
637
- {"shape":"BadRequestException"}
638
- ]
639
- },
640
- "ListDedicatedIpPools":{
641
- "name":"ListDedicatedIpPools",
642
- "http":{
643
- "method":"GET",
644
- "requestUri":"/v2/email/dedicated-ip-pools"
645
- },
646
- "input":{"shape":"ListDedicatedIpPoolsRequest"},
647
- "output":{"shape":"ListDedicatedIpPoolsResponse"},
648
- "errors":[
649
- {"shape":"TooManyRequestsException"},
650
- {"shape":"BadRequestException"}
651
- ]
652
- },
653
- "ListDeliverabilityTestReports":{
654
- "name":"ListDeliverabilityTestReports",
655
- "http":{
656
- "method":"GET",
657
- "requestUri":"/v2/email/deliverability-dashboard/test-reports"
658
- },
659
- "input":{"shape":"ListDeliverabilityTestReportsRequest"},
660
- "output":{"shape":"ListDeliverabilityTestReportsResponse"},
661
- "errors":[
662
- {"shape":"TooManyRequestsException"},
663
- {"shape":"NotFoundException"},
664
- {"shape":"BadRequestException"}
665
- ]
666
- },
667
- "ListDomainDeliverabilityCampaigns":{
668
- "name":"ListDomainDeliverabilityCampaigns",
669
- "http":{
670
- "method":"GET",
671
- "requestUri":"/v2/email/deliverability-dashboard/domains/{SubscribedDomain}/campaigns"
672
- },
673
- "input":{"shape":"ListDomainDeliverabilityCampaignsRequest"},
674
- "output":{"shape":"ListDomainDeliverabilityCampaignsResponse"},
675
- "errors":[
676
- {"shape":"TooManyRequestsException"},
677
- {"shape":"BadRequestException"},
678
- {"shape":"NotFoundException"}
679
- ]
680
- },
681
- "ListEmailIdentities":{
682
- "name":"ListEmailIdentities",
683
- "http":{
684
- "method":"GET",
685
- "requestUri":"/v2/email/identities"
686
- },
687
- "input":{"shape":"ListEmailIdentitiesRequest"},
688
- "output":{"shape":"ListEmailIdentitiesResponse"},
689
- "errors":[
690
- {"shape":"TooManyRequestsException"},
691
- {"shape":"BadRequestException"}
692
- ]
693
- },
694
- "ListEmailTemplates":{
695
- "name":"ListEmailTemplates",
696
- "http":{
697
- "method":"GET",
698
- "requestUri":"/v2/email/templates"
699
- },
700
- "input":{"shape":"ListEmailTemplatesRequest"},
701
- "output":{"shape":"ListEmailTemplatesResponse"},
702
- "errors":[
703
- {"shape":"TooManyRequestsException"},
704
- {"shape":"BadRequestException"}
705
- ]
706
- },
707
- "ListImportJobs":{
708
- "name":"ListImportJobs",
709
- "http":{
710
- "method":"GET",
711
- "requestUri":"/v2/email/import-jobs"
712
- },
713
- "input":{"shape":"ListImportJobsRequest"},
714
- "output":{"shape":"ListImportJobsResponse"},
715
- "errors":[
716
- {"shape":"TooManyRequestsException"},
717
- {"shape":"BadRequestException"}
718
- ]
719
- },
720
- "ListSuppressedDestinations":{
721
- "name":"ListSuppressedDestinations",
722
- "http":{
723
- "method":"GET",
724
- "requestUri":"/v2/email/suppression/addresses"
725
- },
726
- "input":{"shape":"ListSuppressedDestinationsRequest"},
727
- "output":{"shape":"ListSuppressedDestinationsResponse"},
728
- "errors":[
729
- {"shape":"BadRequestException"},
730
- {"shape":"TooManyRequestsException"},
731
- {"shape":"InvalidNextTokenException"}
732
- ]
733
- },
734
- "ListTagsForResource":{
735
- "name":"ListTagsForResource",
736
- "http":{
737
- "method":"GET",
738
- "requestUri":"/v2/email/tags"
739
- },
740
- "input":{"shape":"ListTagsForResourceRequest"},
741
- "output":{"shape":"ListTagsForResourceResponse"},
742
- "errors":[
743
- {"shape":"BadRequestException"},
744
- {"shape":"NotFoundException"},
745
- {"shape":"TooManyRequestsException"}
746
- ]
747
- },
748
- "PutAccountDedicatedIpWarmupAttributes":{
749
- "name":"PutAccountDedicatedIpWarmupAttributes",
750
- "http":{
751
- "method":"PUT",
752
- "requestUri":"/v2/email/account/dedicated-ips/warmup"
753
- },
754
- "input":{"shape":"PutAccountDedicatedIpWarmupAttributesRequest"},
755
- "output":{"shape":"PutAccountDedicatedIpWarmupAttributesResponse"},
756
- "errors":[
757
- {"shape":"TooManyRequestsException"},
758
- {"shape":"BadRequestException"}
759
- ]
760
- },
761
- "PutAccountDetails":{
762
- "name":"PutAccountDetails",
763
- "http":{
764
- "method":"POST",
765
- "requestUri":"/v2/email/account/details"
766
- },
767
- "input":{"shape":"PutAccountDetailsRequest"},
768
- "output":{"shape":"PutAccountDetailsResponse"},
769
- "errors":[
770
- {"shape":"TooManyRequestsException"},
771
- {"shape":"BadRequestException"},
772
- {"shape":"ConflictException"}
773
- ]
774
- },
775
- "PutAccountSendingAttributes":{
776
- "name":"PutAccountSendingAttributes",
777
- "http":{
778
- "method":"PUT",
779
- "requestUri":"/v2/email/account/sending"
780
- },
781
- "input":{"shape":"PutAccountSendingAttributesRequest"},
782
- "output":{"shape":"PutAccountSendingAttributesResponse"},
783
- "errors":[
784
- {"shape":"TooManyRequestsException"},
785
- {"shape":"BadRequestException"}
786
- ]
787
- },
788
- "PutAccountSuppressionAttributes":{
789
- "name":"PutAccountSuppressionAttributes",
790
- "http":{
791
- "method":"PUT",
792
- "requestUri":"/v2/email/account/suppression"
793
- },
794
- "input":{"shape":"PutAccountSuppressionAttributesRequest"},
795
- "output":{"shape":"PutAccountSuppressionAttributesResponse"},
796
- "errors":[
797
- {"shape":"TooManyRequestsException"},
798
- {"shape":"BadRequestException"}
799
- ]
800
- },
801
- "PutConfigurationSetDeliveryOptions":{
802
- "name":"PutConfigurationSetDeliveryOptions",
803
- "http":{
804
- "method":"PUT",
805
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/delivery-options"
806
- },
807
- "input":{"shape":"PutConfigurationSetDeliveryOptionsRequest"},
808
- "output":{"shape":"PutConfigurationSetDeliveryOptionsResponse"},
809
- "errors":[
810
- {"shape":"NotFoundException"},
811
- {"shape":"TooManyRequestsException"},
812
- {"shape":"BadRequestException"}
813
- ]
814
- },
815
- "PutConfigurationSetReputationOptions":{
816
- "name":"PutConfigurationSetReputationOptions",
817
- "http":{
818
- "method":"PUT",
819
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/reputation-options"
820
- },
821
- "input":{"shape":"PutConfigurationSetReputationOptionsRequest"},
822
- "output":{"shape":"PutConfigurationSetReputationOptionsResponse"},
823
- "errors":[
824
- {"shape":"NotFoundException"},
825
- {"shape":"TooManyRequestsException"},
826
- {"shape":"BadRequestException"}
827
- ]
828
- },
829
- "PutConfigurationSetSendingOptions":{
830
- "name":"PutConfigurationSetSendingOptions",
831
- "http":{
832
- "method":"PUT",
833
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/sending"
834
- },
835
- "input":{"shape":"PutConfigurationSetSendingOptionsRequest"},
836
- "output":{"shape":"PutConfigurationSetSendingOptionsResponse"},
837
- "errors":[
838
- {"shape":"NotFoundException"},
839
- {"shape":"TooManyRequestsException"},
840
- {"shape":"BadRequestException"}
841
- ]
842
- },
843
- "PutConfigurationSetSuppressionOptions":{
844
- "name":"PutConfigurationSetSuppressionOptions",
845
- "http":{
846
- "method":"PUT",
847
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/suppression-options"
848
- },
849
- "input":{"shape":"PutConfigurationSetSuppressionOptionsRequest"},
850
- "output":{"shape":"PutConfigurationSetSuppressionOptionsResponse"},
851
- "errors":[
852
- {"shape":"NotFoundException"},
853
- {"shape":"TooManyRequestsException"},
854
- {"shape":"BadRequestException"}
855
- ]
856
- },
857
- "PutConfigurationSetTrackingOptions":{
858
- "name":"PutConfigurationSetTrackingOptions",
859
- "http":{
860
- "method":"PUT",
861
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/tracking-options"
862
- },
863
- "input":{"shape":"PutConfigurationSetTrackingOptionsRequest"},
864
- "output":{"shape":"PutConfigurationSetTrackingOptionsResponse"},
865
- "errors":[
866
- {"shape":"NotFoundException"},
867
- {"shape":"TooManyRequestsException"},
868
- {"shape":"BadRequestException"}
869
- ]
870
- },
871
- "PutDedicatedIpInPool":{
872
- "name":"PutDedicatedIpInPool",
873
- "http":{
874
- "method":"PUT",
875
- "requestUri":"/v2/email/dedicated-ips/{IP}/pool"
876
- },
877
- "input":{"shape":"PutDedicatedIpInPoolRequest"},
878
- "output":{"shape":"PutDedicatedIpInPoolResponse"},
879
- "errors":[
880
- {"shape":"NotFoundException"},
881
- {"shape":"TooManyRequestsException"},
882
- {"shape":"BadRequestException"}
883
- ]
884
- },
885
- "PutDedicatedIpWarmupAttributes":{
886
- "name":"PutDedicatedIpWarmupAttributes",
887
- "http":{
888
- "method":"PUT",
889
- "requestUri":"/v2/email/dedicated-ips/{IP}/warmup"
890
- },
891
- "input":{"shape":"PutDedicatedIpWarmupAttributesRequest"},
892
- "output":{"shape":"PutDedicatedIpWarmupAttributesResponse"},
893
- "errors":[
894
- {"shape":"NotFoundException"},
895
- {"shape":"TooManyRequestsException"},
896
- {"shape":"BadRequestException"}
897
- ]
898
- },
899
- "PutDeliverabilityDashboardOption":{
900
- "name":"PutDeliverabilityDashboardOption",
901
- "http":{
902
- "method":"PUT",
903
- "requestUri":"/v2/email/deliverability-dashboard"
904
- },
905
- "input":{"shape":"PutDeliverabilityDashboardOptionRequest"},
906
- "output":{"shape":"PutDeliverabilityDashboardOptionResponse"},
907
- "errors":[
908
- {"shape":"AlreadyExistsException"},
909
- {"shape":"NotFoundException"},
910
- {"shape":"TooManyRequestsException"},
911
- {"shape":"LimitExceededException"},
912
- {"shape":"BadRequestException"}
913
- ]
914
- },
915
- "PutEmailIdentityDkimAttributes":{
916
- "name":"PutEmailIdentityDkimAttributes",
917
- "http":{
918
- "method":"PUT",
919
- "requestUri":"/v2/email/identities/{EmailIdentity}/dkim"
920
- },
921
- "input":{"shape":"PutEmailIdentityDkimAttributesRequest"},
922
- "output":{"shape":"PutEmailIdentityDkimAttributesResponse"},
923
- "errors":[
924
- {"shape":"NotFoundException"},
925
- {"shape":"TooManyRequestsException"},
926
- {"shape":"BadRequestException"}
927
- ]
928
- },
929
- "PutEmailIdentityDkimSigningAttributes":{
930
- "name":"PutEmailIdentityDkimSigningAttributes",
931
- "http":{
932
- "method":"PUT",
933
- "requestUri":"/v1/email/identities/{EmailIdentity}/dkim/signing"
934
- },
935
- "input":{"shape":"PutEmailIdentityDkimSigningAttributesRequest"},
936
- "output":{"shape":"PutEmailIdentityDkimSigningAttributesResponse"},
937
- "errors":[
938
- {"shape":"NotFoundException"},
939
- {"shape":"TooManyRequestsException"},
940
- {"shape":"BadRequestException"}
941
- ]
942
- },
943
- "PutEmailIdentityFeedbackAttributes":{
944
- "name":"PutEmailIdentityFeedbackAttributes",
945
- "http":{
946
- "method":"PUT",
947
- "requestUri":"/v2/email/identities/{EmailIdentity}/feedback"
948
- },
949
- "input":{"shape":"PutEmailIdentityFeedbackAttributesRequest"},
950
- "output":{"shape":"PutEmailIdentityFeedbackAttributesResponse"},
951
- "errors":[
952
- {"shape":"NotFoundException"},
953
- {"shape":"TooManyRequestsException"},
954
- {"shape":"BadRequestException"}
955
- ]
956
- },
957
- "PutEmailIdentityMailFromAttributes":{
958
- "name":"PutEmailIdentityMailFromAttributes",
959
- "http":{
960
- "method":"PUT",
961
- "requestUri":"/v2/email/identities/{EmailIdentity}/mail-from"
962
- },
963
- "input":{"shape":"PutEmailIdentityMailFromAttributesRequest"},
964
- "output":{"shape":"PutEmailIdentityMailFromAttributesResponse"},
965
- "errors":[
966
- {"shape":"NotFoundException"},
967
- {"shape":"TooManyRequestsException"},
968
- {"shape":"BadRequestException"}
969
- ]
970
- },
971
- "PutSuppressedDestination":{
972
- "name":"PutSuppressedDestination",
973
- "http":{
974
- "method":"PUT",
975
- "requestUri":"/v2/email/suppression/addresses"
976
- },
977
- "input":{"shape":"PutSuppressedDestinationRequest"},
978
- "output":{"shape":"PutSuppressedDestinationResponse"},
979
- "errors":[
980
- {"shape":"BadRequestException"},
981
- {"shape":"TooManyRequestsException"}
982
- ]
983
- },
984
- "SendBulkEmail":{
985
- "name":"SendBulkEmail",
986
- "http":{
987
- "method":"POST",
988
- "requestUri":"/v2/email/outbound-bulk-emails"
989
- },
990
- "input":{"shape":"SendBulkEmailRequest"},
991
- "output":{"shape":"SendBulkEmailResponse"},
992
- "errors":[
993
- {"shape":"TooManyRequestsException"},
994
- {"shape":"LimitExceededException"},
995
- {"shape":"AccountSuspendedException"},
996
- {"shape":"SendingPausedException"},
997
- {"shape":"MessageRejected"},
998
- {"shape":"MailFromDomainNotVerifiedException"},
999
- {"shape":"NotFoundException"},
1000
- {"shape":"BadRequestException"}
1001
- ]
1002
- },
1003
- "SendCustomVerificationEmail":{
1004
- "name":"SendCustomVerificationEmail",
1005
- "http":{
1006
- "method":"POST",
1007
- "requestUri":"/v2/email/outbound-custom-verification-emails"
1008
- },
1009
- "input":{"shape":"SendCustomVerificationEmailRequest"},
1010
- "output":{"shape":"SendCustomVerificationEmailResponse"},
1011
- "errors":[
1012
- {"shape":"TooManyRequestsException"},
1013
- {"shape":"LimitExceededException"},
1014
- {"shape":"MessageRejected"},
1015
- {"shape":"SendingPausedException"},
1016
- {"shape":"MailFromDomainNotVerifiedException"},
1017
- {"shape":"NotFoundException"},
1018
- {"shape":"BadRequestException"}
1019
- ]
1020
- },
1021
- "SendEmail":{
1022
- "name":"SendEmail",
1023
- "http":{
1024
- "method":"POST",
1025
- "requestUri":"/v2/email/outbound-emails"
1026
- },
1027
- "input":{"shape":"SendEmailRequest"},
1028
- "output":{"shape":"SendEmailResponse"},
1029
- "errors":[
1030
- {"shape":"TooManyRequestsException"},
1031
- {"shape":"LimitExceededException"},
1032
- {"shape":"AccountSuspendedException"},
1033
- {"shape":"SendingPausedException"},
1034
- {"shape":"MessageRejected"},
1035
- {"shape":"MailFromDomainNotVerifiedException"},
1036
- {"shape":"NotFoundException"},
1037
- {"shape":"BadRequestException"}
1038
- ]
1039
- },
1040
- "TagResource":{
1041
- "name":"TagResource",
1042
- "http":{
1043
- "method":"POST",
1044
- "requestUri":"/v2/email/tags"
1045
- },
1046
- "input":{"shape":"TagResourceRequest"},
1047
- "output":{"shape":"TagResourceResponse"},
1048
- "errors":[
1049
- {"shape":"BadRequestException"},
1050
- {"shape":"ConcurrentModificationException"},
1051
- {"shape":"NotFoundException"},
1052
- {"shape":"TooManyRequestsException"}
1053
- ]
1054
- },
1055
- "TestRenderEmailTemplate":{
1056
- "name":"TestRenderEmailTemplate",
1057
- "http":{
1058
- "method":"POST",
1059
- "requestUri":"/v2/email/templates/{TemplateName}/render"
1060
- },
1061
- "input":{"shape":"TestRenderEmailTemplateRequest"},
1062
- "output":{"shape":"TestRenderEmailTemplateResponse"},
1063
- "errors":[
1064
- {"shape":"NotFoundException"},
1065
- {"shape":"TooManyRequestsException"},
1066
- {"shape":"BadRequestException"}
1067
- ]
1068
- },
1069
- "UntagResource":{
1070
- "name":"UntagResource",
1071
- "http":{
1072
- "method":"DELETE",
1073
- "requestUri":"/v2/email/tags"
1074
- },
1075
- "input":{"shape":"UntagResourceRequest"},
1076
- "output":{"shape":"UntagResourceResponse"},
1077
- "errors":[
1078
- {"shape":"BadRequestException"},
1079
- {"shape":"ConcurrentModificationException"},
1080
- {"shape":"NotFoundException"},
1081
- {"shape":"TooManyRequestsException"}
1082
- ]
1083
- },
1084
- "UpdateConfigurationSetEventDestination":{
1085
- "name":"UpdateConfigurationSetEventDestination",
1086
- "http":{
1087
- "method":"PUT",
1088
- "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations/{EventDestinationName}"
1089
- },
1090
- "input":{"shape":"UpdateConfigurationSetEventDestinationRequest"},
1091
- "output":{"shape":"UpdateConfigurationSetEventDestinationResponse"},
1092
- "errors":[
1093
- {"shape":"NotFoundException"},
1094
- {"shape":"TooManyRequestsException"},
1095
- {"shape":"BadRequestException"}
1096
- ]
1097
- },
1098
- "UpdateContact":{
1099
- "name":"UpdateContact",
1100
- "http":{
1101
- "method":"PUT",
1102
- "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}"
1103
- },
1104
- "input":{"shape":"UpdateContactRequest"},
1105
- "output":{"shape":"UpdateContactResponse"},
1106
- "errors":[
1107
- {"shape":"BadRequestException"},
1108
- {"shape":"TooManyRequestsException"},
1109
- {"shape":"NotFoundException"},
1110
- {"shape":"ConcurrentModificationException"}
1111
- ]
1112
- },
1113
- "UpdateContactList":{
1114
- "name":"UpdateContactList",
1115
- "http":{
1116
- "method":"PUT",
1117
- "requestUri":"/v2/email/contact-lists/{ContactListName}"
1118
- },
1119
- "input":{"shape":"UpdateContactListRequest"},
1120
- "output":{"shape":"UpdateContactListResponse"},
1121
- "errors":[
1122
- {"shape":"BadRequestException"},
1123
- {"shape":"TooManyRequestsException"},
1124
- {"shape":"NotFoundException"},
1125
- {"shape":"ConcurrentModificationException"}
1126
- ]
1127
- },
1128
- "UpdateCustomVerificationEmailTemplate":{
1129
- "name":"UpdateCustomVerificationEmailTemplate",
1130
- "http":{
1131
- "method":"PUT",
1132
- "requestUri":"/v2/email/custom-verification-email-templates/{TemplateName}"
1133
- },
1134
- "input":{"shape":"UpdateCustomVerificationEmailTemplateRequest"},
1135
- "output":{"shape":"UpdateCustomVerificationEmailTemplateResponse"},
1136
- "errors":[
1137
- {"shape":"NotFoundException"},
1138
- {"shape":"BadRequestException"},
1139
- {"shape":"TooManyRequestsException"}
1140
- ]
1141
- },
1142
- "UpdateEmailIdentityPolicy":{
1143
- "name":"UpdateEmailIdentityPolicy",
1144
- "http":{
1145
- "method":"PUT",
1146
- "requestUri":"/v2/email/identities/{EmailIdentity}/policies/{PolicyName}"
1147
- },
1148
- "input":{"shape":"UpdateEmailIdentityPolicyRequest"},
1149
- "output":{"shape":"UpdateEmailIdentityPolicyResponse"},
1150
- "errors":[
1151
- {"shape":"NotFoundException"},
1152
- {"shape":"TooManyRequestsException"},
1153
- {"shape":"BadRequestException"}
1154
- ]
1155
- },
1156
- "UpdateEmailTemplate":{
1157
- "name":"UpdateEmailTemplate",
1158
- "http":{
1159
- "method":"PUT",
1160
- "requestUri":"/v2/email/templates/{TemplateName}"
1161
- },
1162
- "input":{"shape":"UpdateEmailTemplateRequest"},
1163
- "output":{"shape":"UpdateEmailTemplateResponse"},
1164
- "errors":[
1165
- {"shape":"NotFoundException"},
1166
- {"shape":"TooManyRequestsException"},
1167
- {"shape":"BadRequestException"}
1168
- ]
1169
- }
1170
- },
1171
- "shapes":{
1172
- "AccountDetails":{
1173
- "type":"structure",
1174
- "members":{
1175
- "MailType":{"shape":"MailType"},
1176
- "WebsiteURL":{"shape":"WebsiteURL"},
1177
- "ContactLanguage":{"shape":"ContactLanguage"},
1178
- "UseCaseDescription":{"shape":"UseCaseDescription"},
1179
- "AdditionalContactEmailAddresses":{"shape":"AdditionalContactEmailAddresses"},
1180
- "ReviewDetails":{"shape":"ReviewDetails"}
1181
- }
1182
- },
1183
- "AccountSuspendedException":{
1184
- "type":"structure",
1185
- "members":{
1186
- },
1187
- "error":{"httpStatusCode":400},
1188
- "exception":true
1189
- },
1190
- "AdditionalContactEmailAddress":{
1191
- "type":"string",
1192
- "max":254,
1193
- "min":6,
1194
- "pattern":"^(.+)@(.+)$",
1195
- "sensitive":true
1196
- },
1197
- "AdditionalContactEmailAddresses":{
1198
- "type":"list",
1199
- "member":{"shape":"AdditionalContactEmailAddress"},
1200
- "max":4,
1201
- "min":1,
1202
- "sensitive":true
1203
- },
1204
- "AlreadyExistsException":{
1205
- "type":"structure",
1206
- "members":{
1207
- },
1208
- "error":{"httpStatusCode":400},
1209
- "exception":true
1210
- },
1211
- "AmazonResourceName":{"type":"string"},
1212
- "AttributesData":{"type":"string"},
1213
- "BadRequestException":{
1214
- "type":"structure",
1215
- "members":{
1216
- },
1217
- "error":{"httpStatusCode":400},
1218
- "exception":true
1219
- },
1220
- "BehaviorOnMxFailure":{
1221
- "type":"string",
1222
- "enum":[
1223
- "USE_DEFAULT_VALUE",
1224
- "REJECT_MESSAGE"
1225
- ]
1226
- },
1227
- "BlacklistEntries":{
1228
- "type":"list",
1229
- "member":{"shape":"BlacklistEntry"}
1230
- },
1231
- "BlacklistEntry":{
1232
- "type":"structure",
1233
- "members":{
1234
- "RblName":{"shape":"RblName"},
1235
- "ListingTime":{"shape":"Timestamp"},
1236
- "Description":{"shape":"BlacklistingDescription"}
1237
- }
1238
- },
1239
- "BlacklistItemName":{"type":"string"},
1240
- "BlacklistItemNames":{
1241
- "type":"list",
1242
- "member":{"shape":"BlacklistItemName"}
1243
- },
1244
- "BlacklistReport":{
1245
- "type":"map",
1246
- "key":{"shape":"BlacklistItemName"},
1247
- "value":{"shape":"BlacklistEntries"}
1248
- },
1249
- "BlacklistingDescription":{"type":"string"},
1250
- "Body":{
1251
- "type":"structure",
1252
- "members":{
1253
- "Text":{"shape":"Content"},
1254
- "Html":{"shape":"Content"}
1255
- }
1256
- },
1257
- "BulkEmailContent":{
1258
- "type":"structure",
1259
- "members":{
1260
- "Template":{"shape":"Template"}
1261
- }
1262
- },
1263
- "BulkEmailEntry":{
1264
- "type":"structure",
1265
- "required":["Destination"],
1266
- "members":{
1267
- "Destination":{"shape":"Destination"},
1268
- "ReplacementTags":{"shape":"MessageTagList"},
1269
- "ReplacementEmailContent":{"shape":"ReplacementEmailContent"}
1270
- }
1271
- },
1272
- "BulkEmailEntryList":{
1273
- "type":"list",
1274
- "member":{"shape":"BulkEmailEntry"}
1275
- },
1276
- "BulkEmailEntryResult":{
1277
- "type":"structure",
1278
- "members":{
1279
- "Status":{"shape":"BulkEmailStatus"},
1280
- "Error":{"shape":"ErrorMessage"},
1281
- "MessageId":{"shape":"OutboundMessageId"}
1282
- }
1283
- },
1284
- "BulkEmailEntryResultList":{
1285
- "type":"list",
1286
- "member":{"shape":"BulkEmailEntryResult"}
1287
- },
1288
- "BulkEmailStatus":{
1289
- "type":"string",
1290
- "enum":[
1291
- "SUCCESS",
1292
- "MESSAGE_REJECTED",
1293
- "MAIL_FROM_DOMAIN_NOT_VERIFIED",
1294
- "CONFIGURATION_SET_NOT_FOUND",
1295
- "TEMPLATE_NOT_FOUND",
1296
- "ACCOUNT_SUSPENDED",
1297
- "ACCOUNT_THROTTLED",
1298
- "ACCOUNT_DAILY_QUOTA_EXCEEDED",
1299
- "INVALID_SENDING_POOL_NAME",
1300
- "ACCOUNT_SENDING_PAUSED",
1301
- "CONFIGURATION_SET_SENDING_PAUSED",
1302
- "INVALID_PARAMETER",
1303
- "TRANSIENT_FAILURE",
1304
- "FAILED"
1305
- ]
1306
- },
1307
- "CampaignId":{"type":"string"},
1308
- "CaseId":{"type":"string"},
1309
- "Charset":{"type":"string"},
1310
- "CloudWatchDestination":{
1311
- "type":"structure",
1312
- "required":["DimensionConfigurations"],
1313
- "members":{
1314
- "DimensionConfigurations":{"shape":"CloudWatchDimensionConfigurations"}
1315
- }
1316
- },
1317
- "CloudWatchDimensionConfiguration":{
1318
- "type":"structure",
1319
- "required":[
1320
- "DimensionName",
1321
- "DimensionValueSource",
1322
- "DefaultDimensionValue"
1323
- ],
1324
- "members":{
1325
- "DimensionName":{"shape":"DimensionName"},
1326
- "DimensionValueSource":{"shape":"DimensionValueSource"},
1327
- "DefaultDimensionValue":{"shape":"DefaultDimensionValue"}
1328
- }
1329
- },
1330
- "CloudWatchDimensionConfigurations":{
1331
- "type":"list",
1332
- "member":{"shape":"CloudWatchDimensionConfiguration"}
1333
- },
1334
- "ConcurrentModificationException":{
1335
- "type":"structure",
1336
- "members":{
1337
- },
1338
- "error":{"httpStatusCode":500},
1339
- "exception":true,
1340
- "fault":true
1341
- },
1342
- "ConfigurationSetName":{"type":"string"},
1343
- "ConfigurationSetNameList":{
1344
- "type":"list",
1345
- "member":{"shape":"ConfigurationSetName"}
1346
- },
1347
- "ConflictException":{
1348
- "type":"structure",
1349
- "members":{
1350
- },
1351
- "error":{"httpStatusCode":409},
1352
- "exception":true
1353
- },
1354
- "Contact":{
1355
- "type":"structure",
1356
- "members":{
1357
- "EmailAddress":{"shape":"EmailAddress"},
1358
- "TopicPreferences":{"shape":"TopicPreferenceList"},
1359
- "TopicDefaultPreferences":{"shape":"TopicPreferenceList"},
1360
- "UnsubscribeAll":{"shape":"UnsubscribeAll"},
1361
- "LastUpdatedTimestamp":{"shape":"Timestamp"}
1362
- }
1363
- },
1364
- "ContactLanguage":{
1365
- "type":"string",
1366
- "enum":[
1367
- "EN",
1368
- "JA"
1369
- ]
1370
- },
1371
- "ContactList":{
1372
- "type":"structure",
1373
- "members":{
1374
- "ContactListName":{"shape":"ContactListName"},
1375
- "LastUpdatedTimestamp":{"shape":"Timestamp"}
1376
- }
1377
- },
1378
- "ContactListDestination":{
1379
- "type":"structure",
1380
- "required":[
1381
- "ContactListName",
1382
- "ContactListImportAction"
1383
- ],
1384
- "members":{
1385
- "ContactListName":{"shape":"ContactListName"},
1386
- "ContactListImportAction":{"shape":"ContactListImportAction"}
1387
- }
1388
- },
1389
- "ContactListImportAction":{
1390
- "type":"string",
1391
- "enum":[
1392
- "DELETE",
1393
- "PUT"
1394
- ]
1395
- },
1396
- "ContactListName":{"type":"string"},
1397
- "Content":{
1398
- "type":"structure",
1399
- "required":["Data"],
1400
- "members":{
1401
- "Data":{"shape":"MessageData"},
1402
- "Charset":{"shape":"Charset"}
1403
- }
1404
- },
1405
- "CreateConfigurationSetEventDestinationRequest":{
1406
- "type":"structure",
1407
- "required":[
1408
- "ConfigurationSetName",
1409
- "EventDestinationName",
1410
- "EventDestination"
1411
- ],
1412
- "members":{
1413
- "ConfigurationSetName":{
1414
- "shape":"ConfigurationSetName",
1415
- "location":"uri",
1416
- "locationName":"ConfigurationSetName"
1417
- },
1418
- "EventDestinationName":{"shape":"EventDestinationName"},
1419
- "EventDestination":{"shape":"EventDestinationDefinition"}
1420
- }
1421
- },
1422
- "CreateConfigurationSetEventDestinationResponse":{
1423
- "type":"structure",
1424
- "members":{
1425
- }
1426
- },
1427
- "CreateConfigurationSetRequest":{
1428
- "type":"structure",
1429
- "required":["ConfigurationSetName"],
1430
- "members":{
1431
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
1432
- "TrackingOptions":{"shape":"TrackingOptions"},
1433
- "DeliveryOptions":{"shape":"DeliveryOptions"},
1434
- "ReputationOptions":{"shape":"ReputationOptions"},
1435
- "SendingOptions":{"shape":"SendingOptions"},
1436
- "Tags":{"shape":"TagList"},
1437
- "SuppressionOptions":{"shape":"SuppressionOptions"}
1438
- }
1439
- },
1440
- "CreateConfigurationSetResponse":{
1441
- "type":"structure",
1442
- "members":{
1443
- }
1444
- },
1445
- "CreateContactListRequest":{
1446
- "type":"structure",
1447
- "required":["ContactListName"],
1448
- "members":{
1449
- "ContactListName":{"shape":"ContactListName"},
1450
- "Topics":{"shape":"Topics"},
1451
- "Description":{"shape":"Description"},
1452
- "Tags":{"shape":"TagList"}
1453
- }
1454
- },
1455
- "CreateContactListResponse":{
1456
- "type":"structure",
1457
- "members":{
1458
- }
1459
- },
1460
- "CreateContactRequest":{
1461
- "type":"structure",
1462
- "required":[
1463
- "ContactListName",
1464
- "EmailAddress"
1465
- ],
1466
- "members":{
1467
- "ContactListName":{
1468
- "shape":"ContactListName",
1469
- "location":"uri",
1470
- "locationName":"ContactListName"
1471
- },
1472
- "EmailAddress":{"shape":"EmailAddress"},
1473
- "TopicPreferences":{"shape":"TopicPreferenceList"},
1474
- "UnsubscribeAll":{"shape":"UnsubscribeAll"},
1475
- "AttributesData":{"shape":"AttributesData"}
1476
- }
1477
- },
1478
- "CreateContactResponse":{
1479
- "type":"structure",
1480
- "members":{
1481
- }
1482
- },
1483
- "CreateCustomVerificationEmailTemplateRequest":{
1484
- "type":"structure",
1485
- "required":[
1486
- "TemplateName",
1487
- "FromEmailAddress",
1488
- "TemplateSubject",
1489
- "TemplateContent",
1490
- "SuccessRedirectionURL",
1491
- "FailureRedirectionURL"
1492
- ],
1493
- "members":{
1494
- "TemplateName":{"shape":"EmailTemplateName"},
1495
- "FromEmailAddress":{"shape":"EmailAddress"},
1496
- "TemplateSubject":{"shape":"EmailTemplateSubject"},
1497
- "TemplateContent":{"shape":"TemplateContent"},
1498
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
1499
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
1500
- }
1501
- },
1502
- "CreateCustomVerificationEmailTemplateResponse":{
1503
- "type":"structure",
1504
- "members":{
1505
- }
1506
- },
1507
- "CreateDedicatedIpPoolRequest":{
1508
- "type":"structure",
1509
- "required":["PoolName"],
1510
- "members":{
1511
- "PoolName":{"shape":"PoolName"},
1512
- "Tags":{"shape":"TagList"}
1513
- }
1514
- },
1515
- "CreateDedicatedIpPoolResponse":{
1516
- "type":"structure",
1517
- "members":{
1518
- }
1519
- },
1520
- "CreateDeliverabilityTestReportRequest":{
1521
- "type":"structure",
1522
- "required":[
1523
- "FromEmailAddress",
1524
- "Content"
1525
- ],
1526
- "members":{
1527
- "ReportName":{"shape":"ReportName"},
1528
- "FromEmailAddress":{"shape":"EmailAddress"},
1529
- "Content":{"shape":"EmailContent"},
1530
- "Tags":{"shape":"TagList"}
1531
- }
1532
- },
1533
- "CreateDeliverabilityTestReportResponse":{
1534
- "type":"structure",
1535
- "required":[
1536
- "ReportId",
1537
- "DeliverabilityTestStatus"
1538
- ],
1539
- "members":{
1540
- "ReportId":{"shape":"ReportId"},
1541
- "DeliverabilityTestStatus":{"shape":"DeliverabilityTestStatus"}
1542
- }
1543
- },
1544
- "CreateEmailIdentityPolicyRequest":{
1545
- "type":"structure",
1546
- "required":[
1547
- "EmailIdentity",
1548
- "PolicyName",
1549
- "Policy"
1550
- ],
1551
- "members":{
1552
- "EmailIdentity":{
1553
- "shape":"Identity",
1554
- "location":"uri",
1555
- "locationName":"EmailIdentity"
1556
- },
1557
- "PolicyName":{
1558
- "shape":"PolicyName",
1559
- "location":"uri",
1560
- "locationName":"PolicyName"
1561
- },
1562
- "Policy":{"shape":"Policy"}
1563
- }
1564
- },
1565
- "CreateEmailIdentityPolicyResponse":{
1566
- "type":"structure",
1567
- "members":{
1568
- }
1569
- },
1570
- "CreateEmailIdentityRequest":{
1571
- "type":"structure",
1572
- "required":["EmailIdentity"],
1573
- "members":{
1574
- "EmailIdentity":{"shape":"Identity"},
1575
- "Tags":{"shape":"TagList"},
1576
- "DkimSigningAttributes":{"shape":"DkimSigningAttributes"}
1577
- }
1578
- },
1579
- "CreateEmailIdentityResponse":{
1580
- "type":"structure",
1581
- "members":{
1582
- "IdentityType":{"shape":"IdentityType"},
1583
- "VerifiedForSendingStatus":{"shape":"Enabled"},
1584
- "DkimAttributes":{"shape":"DkimAttributes"}
1585
- }
1586
- },
1587
- "CreateEmailTemplateRequest":{
1588
- "type":"structure",
1589
- "required":[
1590
- "TemplateName",
1591
- "TemplateContent"
1592
- ],
1593
- "members":{
1594
- "TemplateName":{"shape":"EmailTemplateName"},
1595
- "TemplateContent":{"shape":"EmailTemplateContent"}
1596
- }
1597
- },
1598
- "CreateEmailTemplateResponse":{
1599
- "type":"structure",
1600
- "members":{
1601
- }
1602
- },
1603
- "CreateImportJobRequest":{
1604
- "type":"structure",
1605
- "required":[
1606
- "ImportDestination",
1607
- "ImportDataSource"
1608
- ],
1609
- "members":{
1610
- "ImportDestination":{"shape":"ImportDestination"},
1611
- "ImportDataSource":{"shape":"ImportDataSource"}
1612
- }
1613
- },
1614
- "CreateImportJobResponse":{
1615
- "type":"structure",
1616
- "members":{
1617
- "JobId":{"shape":"JobId"}
1618
- }
1619
- },
1620
- "CustomRedirectDomain":{"type":"string"},
1621
- "CustomVerificationEmailTemplateMetadata":{
1622
- "type":"structure",
1623
- "members":{
1624
- "TemplateName":{"shape":"EmailTemplateName"},
1625
- "FromEmailAddress":{"shape":"EmailAddress"},
1626
- "TemplateSubject":{"shape":"EmailTemplateSubject"},
1627
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
1628
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
1629
- }
1630
- },
1631
- "CustomVerificationEmailTemplatesList":{
1632
- "type":"list",
1633
- "member":{"shape":"CustomVerificationEmailTemplateMetadata"}
1634
- },
1635
- "DailyVolume":{
1636
- "type":"structure",
1637
- "members":{
1638
- "StartDate":{"shape":"Timestamp"},
1639
- "VolumeStatistics":{"shape":"VolumeStatistics"},
1640
- "DomainIspPlacements":{"shape":"DomainIspPlacements"}
1641
- }
1642
- },
1643
- "DailyVolumes":{
1644
- "type":"list",
1645
- "member":{"shape":"DailyVolume"}
1646
- },
1647
- "DataFormat":{
1648
- "type":"string",
1649
- "enum":[
1650
- "CSV",
1651
- "JSON"
1652
- ]
1653
- },
1654
- "DedicatedIp":{
1655
- "type":"structure",
1656
- "required":[
1657
- "Ip",
1658
- "WarmupStatus",
1659
- "WarmupPercentage"
1660
- ],
1661
- "members":{
1662
- "Ip":{"shape":"Ip"},
1663
- "WarmupStatus":{"shape":"WarmupStatus"},
1664
- "WarmupPercentage":{"shape":"Percentage100Wrapper"},
1665
- "PoolName":{"shape":"PoolName"}
1666
- }
1667
- },
1668
- "DedicatedIpList":{
1669
- "type":"list",
1670
- "member":{"shape":"DedicatedIp"}
1671
- },
1672
- "DefaultDimensionValue":{"type":"string"},
1673
- "DeleteConfigurationSetEventDestinationRequest":{
1674
- "type":"structure",
1675
- "required":[
1676
- "ConfigurationSetName",
1677
- "EventDestinationName"
1678
- ],
1679
- "members":{
1680
- "ConfigurationSetName":{
1681
- "shape":"ConfigurationSetName",
1682
- "location":"uri",
1683
- "locationName":"ConfigurationSetName"
1684
- },
1685
- "EventDestinationName":{
1686
- "shape":"EventDestinationName",
1687
- "location":"uri",
1688
- "locationName":"EventDestinationName"
1689
- }
1690
- }
1691
- },
1692
- "DeleteConfigurationSetEventDestinationResponse":{
1693
- "type":"structure",
1694
- "members":{
1695
- }
1696
- },
1697
- "DeleteConfigurationSetRequest":{
1698
- "type":"structure",
1699
- "required":["ConfigurationSetName"],
1700
- "members":{
1701
- "ConfigurationSetName":{
1702
- "shape":"ConfigurationSetName",
1703
- "location":"uri",
1704
- "locationName":"ConfigurationSetName"
1705
- }
1706
- }
1707
- },
1708
- "DeleteConfigurationSetResponse":{
1709
- "type":"structure",
1710
- "members":{
1711
- }
1712
- },
1713
- "DeleteContactListRequest":{
1714
- "type":"structure",
1715
- "required":["ContactListName"],
1716
- "members":{
1717
- "ContactListName":{
1718
- "shape":"ContactListName",
1719
- "location":"uri",
1720
- "locationName":"ContactListName"
1721
- }
1722
- }
1723
- },
1724
- "DeleteContactListResponse":{
1725
- "type":"structure",
1726
- "members":{
1727
- }
1728
- },
1729
- "DeleteContactRequest":{
1730
- "type":"structure",
1731
- "required":[
1732
- "ContactListName",
1733
- "EmailAddress"
1734
- ],
1735
- "members":{
1736
- "ContactListName":{
1737
- "shape":"ContactListName",
1738
- "location":"uri",
1739
- "locationName":"ContactListName"
1740
- },
1741
- "EmailAddress":{
1742
- "shape":"EmailAddress",
1743
- "location":"uri",
1744
- "locationName":"EmailAddress"
1745
- }
1746
- }
1747
- },
1748
- "DeleteContactResponse":{
1749
- "type":"structure",
1750
- "members":{
1751
- }
1752
- },
1753
- "DeleteCustomVerificationEmailTemplateRequest":{
1754
- "type":"structure",
1755
- "required":["TemplateName"],
1756
- "members":{
1757
- "TemplateName":{
1758
- "shape":"EmailTemplateName",
1759
- "location":"uri",
1760
- "locationName":"TemplateName"
1761
- }
1762
- }
1763
- },
1764
- "DeleteCustomVerificationEmailTemplateResponse":{
1765
- "type":"structure",
1766
- "members":{
1767
- }
1768
- },
1769
- "DeleteDedicatedIpPoolRequest":{
1770
- "type":"structure",
1771
- "required":["PoolName"],
1772
- "members":{
1773
- "PoolName":{
1774
- "shape":"PoolName",
1775
- "location":"uri",
1776
- "locationName":"PoolName"
1777
- }
1778
- }
1779
- },
1780
- "DeleteDedicatedIpPoolResponse":{
1781
- "type":"structure",
1782
- "members":{
1783
- }
1784
- },
1785
- "DeleteEmailIdentityPolicyRequest":{
1786
- "type":"structure",
1787
- "required":[
1788
- "EmailIdentity",
1789
- "PolicyName"
1790
- ],
1791
- "members":{
1792
- "EmailIdentity":{
1793
- "shape":"Identity",
1794
- "location":"uri",
1795
- "locationName":"EmailIdentity"
1796
- },
1797
- "PolicyName":{
1798
- "shape":"PolicyName",
1799
- "location":"uri",
1800
- "locationName":"PolicyName"
1801
- }
1802
- }
1803
- },
1804
- "DeleteEmailIdentityPolicyResponse":{
1805
- "type":"structure",
1806
- "members":{
1807
- }
1808
- },
1809
- "DeleteEmailIdentityRequest":{
1810
- "type":"structure",
1811
- "required":["EmailIdentity"],
1812
- "members":{
1813
- "EmailIdentity":{
1814
- "shape":"Identity",
1815
- "location":"uri",
1816
- "locationName":"EmailIdentity"
1817
- }
1818
- }
1819
- },
1820
- "DeleteEmailIdentityResponse":{
1821
- "type":"structure",
1822
- "members":{
1823
- }
1824
- },
1825
- "DeleteEmailTemplateRequest":{
1826
- "type":"structure",
1827
- "required":["TemplateName"],
1828
- "members":{
1829
- "TemplateName":{
1830
- "shape":"EmailTemplateName",
1831
- "location":"uri",
1832
- "locationName":"TemplateName"
1833
- }
1834
- }
1835
- },
1836
- "DeleteEmailTemplateResponse":{
1837
- "type":"structure",
1838
- "members":{
1839
- }
1840
- },
1841
- "DeleteSuppressedDestinationRequest":{
1842
- "type":"structure",
1843
- "required":["EmailAddress"],
1844
- "members":{
1845
- "EmailAddress":{
1846
- "shape":"EmailAddress",
1847
- "location":"uri",
1848
- "locationName":"EmailAddress"
1849
- }
1850
- }
1851
- },
1852
- "DeleteSuppressedDestinationResponse":{
1853
- "type":"structure",
1854
- "members":{
1855
- }
1856
- },
1857
- "DeliverabilityDashboardAccountStatus":{
1858
- "type":"string",
1859
- "enum":[
1860
- "ACTIVE",
1861
- "PENDING_EXPIRATION",
1862
- "DISABLED"
1863
- ]
1864
- },
1865
- "DeliverabilityTestReport":{
1866
- "type":"structure",
1867
- "members":{
1868
- "ReportId":{"shape":"ReportId"},
1869
- "ReportName":{"shape":"ReportName"},
1870
- "Subject":{"shape":"DeliverabilityTestSubject"},
1871
- "FromEmailAddress":{"shape":"EmailAddress"},
1872
- "CreateDate":{"shape":"Timestamp"},
1873
- "DeliverabilityTestStatus":{"shape":"DeliverabilityTestStatus"}
1874
- }
1875
- },
1876
- "DeliverabilityTestReports":{
1877
- "type":"list",
1878
- "member":{"shape":"DeliverabilityTestReport"}
1879
- },
1880
- "DeliverabilityTestStatus":{
1881
- "type":"string",
1882
- "enum":[
1883
- "IN_PROGRESS",
1884
- "COMPLETED"
1885
- ]
1886
- },
1887
- "DeliverabilityTestSubject":{"type":"string"},
1888
- "DeliveryOptions":{
1889
- "type":"structure",
1890
- "members":{
1891
- "TlsPolicy":{"shape":"TlsPolicy"},
1892
- "SendingPoolName":{"shape":"PoolName"}
1893
- }
1894
- },
1895
- "Description":{"type":"string"},
1896
- "Destination":{
1897
- "type":"structure",
1898
- "members":{
1899
- "ToAddresses":{"shape":"EmailAddressList"},
1900
- "CcAddresses":{"shape":"EmailAddressList"},
1901
- "BccAddresses":{"shape":"EmailAddressList"}
1902
- }
1903
- },
1904
- "DimensionName":{"type":"string"},
1905
- "DimensionValueSource":{
1906
- "type":"string",
1907
- "enum":[
1908
- "MESSAGE_TAG",
1909
- "EMAIL_HEADER",
1910
- "LINK_TAG"
1911
- ]
1912
- },
1913
- "DisplayName":{"type":"string"},
1914
- "DkimAttributes":{
1915
- "type":"structure",
1916
- "members":{
1917
- "SigningEnabled":{"shape":"Enabled"},
1918
- "Status":{"shape":"DkimStatus"},
1919
- "Tokens":{"shape":"DnsTokenList"},
1920
- "SigningAttributesOrigin":{"shape":"DkimSigningAttributesOrigin"}
1921
- }
1922
- },
1923
- "DkimSigningAttributes":{
1924
- "type":"structure",
1925
- "required":[
1926
- "DomainSigningSelector",
1927
- "DomainSigningPrivateKey"
1928
- ],
1929
- "members":{
1930
- "DomainSigningSelector":{"shape":"Selector"},
1931
- "DomainSigningPrivateKey":{"shape":"PrivateKey"}
1932
- }
1933
- },
1934
- "DkimSigningAttributesOrigin":{
1935
- "type":"string",
1936
- "enum":[
1937
- "AWS_SES",
1938
- "EXTERNAL"
1939
- ]
1940
- },
1941
- "DkimStatus":{
1942
- "type":"string",
1943
- "enum":[
1944
- "PENDING",
1945
- "SUCCESS",
1946
- "FAILED",
1947
- "TEMPORARY_FAILURE",
1948
- "NOT_STARTED"
1949
- ]
1950
- },
1951
- "DnsToken":{"type":"string"},
1952
- "DnsTokenList":{
1953
- "type":"list",
1954
- "member":{"shape":"DnsToken"}
1955
- },
1956
- "Domain":{"type":"string"},
1957
- "DomainDeliverabilityCampaign":{
1958
- "type":"structure",
1959
- "members":{
1960
- "CampaignId":{"shape":"CampaignId"},
1961
- "ImageUrl":{"shape":"ImageUrl"},
1962
- "Subject":{"shape":"Subject"},
1963
- "FromAddress":{"shape":"Identity"},
1964
- "SendingIps":{"shape":"IpList"},
1965
- "FirstSeenDateTime":{"shape":"Timestamp"},
1966
- "LastSeenDateTime":{"shape":"Timestamp"},
1967
- "InboxCount":{"shape":"Volume"},
1968
- "SpamCount":{"shape":"Volume"},
1969
- "ReadRate":{"shape":"Percentage"},
1970
- "DeleteRate":{"shape":"Percentage"},
1971
- "ReadDeleteRate":{"shape":"Percentage"},
1972
- "ProjectedVolume":{"shape":"Volume"},
1973
- "Esps":{"shape":"Esps"}
1974
- }
1975
- },
1976
- "DomainDeliverabilityCampaignList":{
1977
- "type":"list",
1978
- "member":{"shape":"DomainDeliverabilityCampaign"}
1979
- },
1980
- "DomainDeliverabilityTrackingOption":{
1981
- "type":"structure",
1982
- "members":{
1983
- "Domain":{"shape":"Domain"},
1984
- "SubscriptionStartDate":{"shape":"Timestamp"},
1985
- "InboxPlacementTrackingOption":{"shape":"InboxPlacementTrackingOption"}
1986
- }
1987
- },
1988
- "DomainDeliverabilityTrackingOptions":{
1989
- "type":"list",
1990
- "member":{"shape":"DomainDeliverabilityTrackingOption"}
1991
- },
1992
- "DomainIspPlacement":{
1993
- "type":"structure",
1994
- "members":{
1995
- "IspName":{"shape":"IspName"},
1996
- "InboxRawCount":{"shape":"Volume"},
1997
- "SpamRawCount":{"shape":"Volume"},
1998
- "InboxPercentage":{"shape":"Percentage"},
1999
- "SpamPercentage":{"shape":"Percentage"}
2000
- }
2001
- },
2002
- "DomainIspPlacements":{
2003
- "type":"list",
2004
- "member":{"shape":"DomainIspPlacement"}
2005
- },
2006
- "EmailAddress":{"type":"string"},
2007
- "EmailAddressList":{
2008
- "type":"list",
2009
- "member":{"shape":"EmailAddress"}
2010
- },
2011
- "EmailContent":{
2012
- "type":"structure",
2013
- "members":{
2014
- "Simple":{"shape":"Message"},
2015
- "Raw":{"shape":"RawMessage"},
2016
- "Template":{"shape":"Template"}
2017
- }
2018
- },
2019
- "EmailTemplateContent":{
2020
- "type":"structure",
2021
- "members":{
2022
- "Subject":{"shape":"EmailTemplateSubject"},
2023
- "Text":{"shape":"EmailTemplateText"},
2024
- "Html":{"shape":"EmailTemplateHtml"}
2025
- }
2026
- },
2027
- "EmailTemplateData":{
2028
- "type":"string",
2029
- "max":262144
2030
- },
2031
- "EmailTemplateHtml":{"type":"string"},
2032
- "EmailTemplateMetadata":{
2033
- "type":"structure",
2034
- "members":{
2035
- "TemplateName":{"shape":"EmailTemplateName"},
2036
- "CreatedTimestamp":{"shape":"Timestamp"}
2037
- }
2038
- },
2039
- "EmailTemplateMetadataList":{
2040
- "type":"list",
2041
- "member":{"shape":"EmailTemplateMetadata"}
2042
- },
2043
- "EmailTemplateName":{
2044
- "type":"string",
2045
- "min":1
2046
- },
2047
- "EmailTemplateSubject":{"type":"string"},
2048
- "EmailTemplateText":{"type":"string"},
2049
- "Enabled":{"type":"boolean"},
2050
- "EnabledWrapper":{"type":"boolean"},
2051
- "ErrorMessage":{"type":"string"},
2052
- "Esp":{"type":"string"},
2053
- "Esps":{
2054
- "type":"list",
2055
- "member":{"shape":"Esp"}
2056
- },
2057
- "EventDestination":{
2058
- "type":"structure",
2059
- "required":[
2060
- "Name",
2061
- "MatchingEventTypes"
2062
- ],
2063
- "members":{
2064
- "Name":{"shape":"EventDestinationName"},
2065
- "Enabled":{"shape":"Enabled"},
2066
- "MatchingEventTypes":{"shape":"EventTypes"},
2067
- "KinesisFirehoseDestination":{"shape":"KinesisFirehoseDestination"},
2068
- "CloudWatchDestination":{"shape":"CloudWatchDestination"},
2069
- "SnsDestination":{"shape":"SnsDestination"},
2070
- "PinpointDestination":{"shape":"PinpointDestination"}
2071
- }
2072
- },
2073
- "EventDestinationDefinition":{
2074
- "type":"structure",
2075
- "members":{
2076
- "Enabled":{"shape":"Enabled"},
2077
- "MatchingEventTypes":{"shape":"EventTypes"},
2078
- "KinesisFirehoseDestination":{"shape":"KinesisFirehoseDestination"},
2079
- "CloudWatchDestination":{"shape":"CloudWatchDestination"},
2080
- "SnsDestination":{"shape":"SnsDestination"},
2081
- "PinpointDestination":{"shape":"PinpointDestination"}
2082
- }
2083
- },
2084
- "EventDestinationName":{"type":"string"},
2085
- "EventDestinations":{
2086
- "type":"list",
2087
- "member":{"shape":"EventDestination"}
2088
- },
2089
- "EventType":{
2090
- "type":"string",
2091
- "enum":[
2092
- "SEND",
2093
- "REJECT",
2094
- "BOUNCE",
2095
- "COMPLAINT",
2096
- "DELIVERY",
2097
- "OPEN",
2098
- "CLICK",
2099
- "RENDERING_FAILURE",
2100
- "DELIVERY_DELAY",
2101
- "SUBSCRIPTION"
2102
- ]
2103
- },
2104
- "EventTypes":{
2105
- "type":"list",
2106
- "member":{"shape":"EventType"}
2107
- },
2108
- "FailedRecordsCount":{"type":"integer"},
2109
- "FailedRecordsS3Url":{"type":"string"},
2110
- "FailureInfo":{
2111
- "type":"structure",
2112
- "members":{
2113
- "FailedRecordsS3Url":{"shape":"FailedRecordsS3Url"},
2114
- "ErrorMessage":{"shape":"ErrorMessage"}
2115
- }
2116
- },
2117
- "FailureRedirectionURL":{"type":"string"},
2118
- "FeedbackId":{"type":"string"},
2119
- "GeneralEnforcementStatus":{"type":"string"},
2120
- "GetAccountRequest":{
2121
- "type":"structure",
2122
- "members":{
2123
- }
2124
- },
2125
- "GetAccountResponse":{
2126
- "type":"structure",
2127
- "members":{
2128
- "DedicatedIpAutoWarmupEnabled":{"shape":"Enabled"},
2129
- "EnforcementStatus":{"shape":"GeneralEnforcementStatus"},
2130
- "ProductionAccessEnabled":{"shape":"Enabled"},
2131
- "SendQuota":{"shape":"SendQuota"},
2132
- "SendingEnabled":{"shape":"Enabled"},
2133
- "SuppressionAttributes":{"shape":"SuppressionAttributes"},
2134
- "Details":{"shape":"AccountDetails"}
2135
- }
2136
- },
2137
- "GetBlacklistReportsRequest":{
2138
- "type":"structure",
2139
- "required":["BlacklistItemNames"],
2140
- "members":{
2141
- "BlacklistItemNames":{
2142
- "shape":"BlacklistItemNames",
2143
- "location":"querystring",
2144
- "locationName":"BlacklistItemNames"
2145
- }
2146
- }
2147
- },
2148
- "GetBlacklistReportsResponse":{
2149
- "type":"structure",
2150
- "required":["BlacklistReport"],
2151
- "members":{
2152
- "BlacklistReport":{"shape":"BlacklistReport"}
2153
- }
2154
- },
2155
- "GetConfigurationSetEventDestinationsRequest":{
2156
- "type":"structure",
2157
- "required":["ConfigurationSetName"],
2158
- "members":{
2159
- "ConfigurationSetName":{
2160
- "shape":"ConfigurationSetName",
2161
- "location":"uri",
2162
- "locationName":"ConfigurationSetName"
2163
- }
2164
- }
2165
- },
2166
- "GetConfigurationSetEventDestinationsResponse":{
2167
- "type":"structure",
2168
- "members":{
2169
- "EventDestinations":{"shape":"EventDestinations"}
2170
- }
2171
- },
2172
- "GetConfigurationSetRequest":{
2173
- "type":"structure",
2174
- "required":["ConfigurationSetName"],
2175
- "members":{
2176
- "ConfigurationSetName":{
2177
- "shape":"ConfigurationSetName",
2178
- "location":"uri",
2179
- "locationName":"ConfigurationSetName"
2180
- }
2181
- }
2182
- },
2183
- "GetConfigurationSetResponse":{
2184
- "type":"structure",
2185
- "members":{
2186
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
2187
- "TrackingOptions":{"shape":"TrackingOptions"},
2188
- "DeliveryOptions":{"shape":"DeliveryOptions"},
2189
- "ReputationOptions":{"shape":"ReputationOptions"},
2190
- "SendingOptions":{"shape":"SendingOptions"},
2191
- "Tags":{"shape":"TagList"},
2192
- "SuppressionOptions":{"shape":"SuppressionOptions"}
2193
- }
2194
- },
2195
- "GetContactListRequest":{
2196
- "type":"structure",
2197
- "required":["ContactListName"],
2198
- "members":{
2199
- "ContactListName":{
2200
- "shape":"ContactListName",
2201
- "location":"uri",
2202
- "locationName":"ContactListName"
2203
- }
2204
- }
2205
- },
2206
- "GetContactListResponse":{
2207
- "type":"structure",
2208
- "members":{
2209
- "ContactListName":{"shape":"ContactListName"},
2210
- "Topics":{"shape":"Topics"},
2211
- "Description":{"shape":"Description"},
2212
- "CreatedTimestamp":{"shape":"Timestamp"},
2213
- "LastUpdatedTimestamp":{"shape":"Timestamp"},
2214
- "Tags":{"shape":"TagList"}
2215
- }
2216
- },
2217
- "GetContactRequest":{
2218
- "type":"structure",
2219
- "required":[
2220
- "ContactListName",
2221
- "EmailAddress"
2222
- ],
2223
- "members":{
2224
- "ContactListName":{
2225
- "shape":"ContactListName",
2226
- "location":"uri",
2227
- "locationName":"ContactListName"
2228
- },
2229
- "EmailAddress":{
2230
- "shape":"EmailAddress",
2231
- "location":"uri",
2232
- "locationName":"EmailAddress"
2233
- }
2234
- }
2235
- },
2236
- "GetContactResponse":{
2237
- "type":"structure",
2238
- "members":{
2239
- "ContactListName":{"shape":"ContactListName"},
2240
- "EmailAddress":{"shape":"EmailAddress"},
2241
- "TopicPreferences":{"shape":"TopicPreferenceList"},
2242
- "TopicDefaultPreferences":{"shape":"TopicPreferenceList"},
2243
- "UnsubscribeAll":{"shape":"UnsubscribeAll"},
2244
- "AttributesData":{"shape":"AttributesData"},
2245
- "CreatedTimestamp":{"shape":"Timestamp"},
2246
- "LastUpdatedTimestamp":{"shape":"Timestamp"}
2247
- }
2248
- },
2249
- "GetCustomVerificationEmailTemplateRequest":{
2250
- "type":"structure",
2251
- "required":["TemplateName"],
2252
- "members":{
2253
- "TemplateName":{
2254
- "shape":"EmailTemplateName",
2255
- "location":"uri",
2256
- "locationName":"TemplateName"
2257
- }
2258
- }
2259
- },
2260
- "GetCustomVerificationEmailTemplateResponse":{
2261
- "type":"structure",
2262
- "members":{
2263
- "TemplateName":{"shape":"EmailTemplateName"},
2264
- "FromEmailAddress":{"shape":"EmailAddress"},
2265
- "TemplateSubject":{"shape":"EmailTemplateSubject"},
2266
- "TemplateContent":{"shape":"TemplateContent"},
2267
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
2268
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
2269
- }
2270
- },
2271
- "GetDedicatedIpRequest":{
2272
- "type":"structure",
2273
- "required":["Ip"],
2274
- "members":{
2275
- "Ip":{
2276
- "shape":"Ip",
2277
- "location":"uri",
2278
- "locationName":"IP"
2279
- }
2280
- }
2281
- },
2282
- "GetDedicatedIpResponse":{
2283
- "type":"structure",
2284
- "members":{
2285
- "DedicatedIp":{"shape":"DedicatedIp"}
2286
- }
2287
- },
2288
- "GetDedicatedIpsRequest":{
2289
- "type":"structure",
2290
- "members":{
2291
- "PoolName":{
2292
- "shape":"PoolName",
2293
- "location":"querystring",
2294
- "locationName":"PoolName"
2295
- },
2296
- "NextToken":{
2297
- "shape":"NextToken",
2298
- "location":"querystring",
2299
- "locationName":"NextToken"
2300
- },
2301
- "PageSize":{
2302
- "shape":"MaxItems",
2303
- "location":"querystring",
2304
- "locationName":"PageSize"
2305
- }
2306
- }
2307
- },
2308
- "GetDedicatedIpsResponse":{
2309
- "type":"structure",
2310
- "members":{
2311
- "DedicatedIps":{"shape":"DedicatedIpList"},
2312
- "NextToken":{"shape":"NextToken"}
2313
- }
2314
- },
2315
- "GetDeliverabilityDashboardOptionsRequest":{
2316
- "type":"structure",
2317
- "members":{
2318
- }
2319
- },
2320
- "GetDeliverabilityDashboardOptionsResponse":{
2321
- "type":"structure",
2322
- "required":["DashboardEnabled"],
2323
- "members":{
2324
- "DashboardEnabled":{"shape":"Enabled"},
2325
- "SubscriptionExpiryDate":{"shape":"Timestamp"},
2326
- "AccountStatus":{"shape":"DeliverabilityDashboardAccountStatus"},
2327
- "ActiveSubscribedDomains":{"shape":"DomainDeliverabilityTrackingOptions"},
2328
- "PendingExpirationSubscribedDomains":{"shape":"DomainDeliverabilityTrackingOptions"}
2329
- }
2330
- },
2331
- "GetDeliverabilityTestReportRequest":{
2332
- "type":"structure",
2333
- "required":["ReportId"],
2334
- "members":{
2335
- "ReportId":{
2336
- "shape":"ReportId",
2337
- "location":"uri",
2338
- "locationName":"ReportId"
2339
- }
2340
- }
2341
- },
2342
- "GetDeliverabilityTestReportResponse":{
2343
- "type":"structure",
2344
- "required":[
2345
- "DeliverabilityTestReport",
2346
- "OverallPlacement",
2347
- "IspPlacements"
2348
- ],
2349
- "members":{
2350
- "DeliverabilityTestReport":{"shape":"DeliverabilityTestReport"},
2351
- "OverallPlacement":{"shape":"PlacementStatistics"},
2352
- "IspPlacements":{"shape":"IspPlacements"},
2353
- "Message":{"shape":"MessageContent"},
2354
- "Tags":{"shape":"TagList"}
2355
- }
2356
- },
2357
- "GetDomainDeliverabilityCampaignRequest":{
2358
- "type":"structure",
2359
- "required":["CampaignId"],
2360
- "members":{
2361
- "CampaignId":{
2362
- "shape":"CampaignId",
2363
- "location":"uri",
2364
- "locationName":"CampaignId"
2365
- }
2366
- }
2367
- },
2368
- "GetDomainDeliverabilityCampaignResponse":{
2369
- "type":"structure",
2370
- "required":["DomainDeliverabilityCampaign"],
2371
- "members":{
2372
- "DomainDeliverabilityCampaign":{"shape":"DomainDeliverabilityCampaign"}
2373
- }
2374
- },
2375
- "GetDomainStatisticsReportRequest":{
2376
- "type":"structure",
2377
- "required":[
2378
- "Domain",
2379
- "StartDate",
2380
- "EndDate"
2381
- ],
2382
- "members":{
2383
- "Domain":{
2384
- "shape":"Identity",
2385
- "location":"uri",
2386
- "locationName":"Domain"
2387
- },
2388
- "StartDate":{
2389
- "shape":"Timestamp",
2390
- "location":"querystring",
2391
- "locationName":"StartDate"
2392
- },
2393
- "EndDate":{
2394
- "shape":"Timestamp",
2395
- "location":"querystring",
2396
- "locationName":"EndDate"
2397
- }
2398
- }
2399
- },
2400
- "GetDomainStatisticsReportResponse":{
2401
- "type":"structure",
2402
- "required":[
2403
- "OverallVolume",
2404
- "DailyVolumes"
2405
- ],
2406
- "members":{
2407
- "OverallVolume":{"shape":"OverallVolume"},
2408
- "DailyVolumes":{"shape":"DailyVolumes"}
2409
- }
2410
- },
2411
- "GetEmailIdentityPoliciesRequest":{
2412
- "type":"structure",
2413
- "required":["EmailIdentity"],
2414
- "members":{
2415
- "EmailIdentity":{
2416
- "shape":"Identity",
2417
- "location":"uri",
2418
- "locationName":"EmailIdentity"
2419
- }
2420
- }
2421
- },
2422
- "GetEmailIdentityPoliciesResponse":{
2423
- "type":"structure",
2424
- "members":{
2425
- "Policies":{"shape":"PolicyMap"}
2426
- }
2427
- },
2428
- "GetEmailIdentityRequest":{
2429
- "type":"structure",
2430
- "required":["EmailIdentity"],
2431
- "members":{
2432
- "EmailIdentity":{
2433
- "shape":"Identity",
2434
- "location":"uri",
2435
- "locationName":"EmailIdentity"
2436
- }
2437
- }
2438
- },
2439
- "GetEmailIdentityResponse":{
2440
- "type":"structure",
2441
- "members":{
2442
- "IdentityType":{"shape":"IdentityType"},
2443
- "FeedbackForwardingStatus":{"shape":"Enabled"},
2444
- "VerifiedForSendingStatus":{"shape":"Enabled"},
2445
- "DkimAttributes":{"shape":"DkimAttributes"},
2446
- "MailFromAttributes":{"shape":"MailFromAttributes"},
2447
- "Policies":{"shape":"PolicyMap"},
2448
- "Tags":{"shape":"TagList"}
2449
- }
2450
- },
2451
- "GetEmailTemplateRequest":{
2452
- "type":"structure",
2453
- "required":["TemplateName"],
2454
- "members":{
2455
- "TemplateName":{
2456
- "shape":"EmailTemplateName",
2457
- "location":"uri",
2458
- "locationName":"TemplateName"
2459
- }
2460
- }
2461
- },
2462
- "GetEmailTemplateResponse":{
2463
- "type":"structure",
2464
- "required":[
2465
- "TemplateName",
2466
- "TemplateContent"
2467
- ],
2468
- "members":{
2469
- "TemplateName":{"shape":"EmailTemplateName"},
2470
- "TemplateContent":{"shape":"EmailTemplateContent"}
2471
- }
2472
- },
2473
- "GetImportJobRequest":{
2474
- "type":"structure",
2475
- "required":["JobId"],
2476
- "members":{
2477
- "JobId":{
2478
- "shape":"JobId",
2479
- "location":"uri",
2480
- "locationName":"JobId"
2481
- }
2482
- }
2483
- },
2484
- "GetImportJobResponse":{
2485
- "type":"structure",
2486
- "members":{
2487
- "JobId":{"shape":"JobId"},
2488
- "ImportDestination":{"shape":"ImportDestination"},
2489
- "ImportDataSource":{"shape":"ImportDataSource"},
2490
- "FailureInfo":{"shape":"FailureInfo"},
2491
- "JobStatus":{"shape":"JobStatus"},
2492
- "CreatedTimestamp":{"shape":"Timestamp"},
2493
- "CompletedTimestamp":{"shape":"Timestamp"},
2494
- "ProcessedRecordsCount":{"shape":"ProcessedRecordsCount"},
2495
- "FailedRecordsCount":{"shape":"FailedRecordsCount"}
2496
- }
2497
- },
2498
- "GetSuppressedDestinationRequest":{
2499
- "type":"structure",
2500
- "required":["EmailAddress"],
2501
- "members":{
2502
- "EmailAddress":{
2503
- "shape":"EmailAddress",
2504
- "location":"uri",
2505
- "locationName":"EmailAddress"
2506
- }
2507
- }
2508
- },
2509
- "GetSuppressedDestinationResponse":{
2510
- "type":"structure",
2511
- "required":["SuppressedDestination"],
2512
- "members":{
2513
- "SuppressedDestination":{"shape":"SuppressedDestination"}
2514
- }
2515
- },
2516
- "Identity":{
2517
- "type":"string",
2518
- "min":1
2519
- },
2520
- "IdentityInfo":{
2521
- "type":"structure",
2522
- "members":{
2523
- "IdentityType":{"shape":"IdentityType"},
2524
- "IdentityName":{"shape":"Identity"},
2525
- "SendingEnabled":{"shape":"Enabled"}
2526
- }
2527
- },
2528
- "IdentityInfoList":{
2529
- "type":"list",
2530
- "member":{"shape":"IdentityInfo"}
2531
- },
2532
- "IdentityType":{
2533
- "type":"string",
2534
- "enum":[
2535
- "EMAIL_ADDRESS",
2536
- "DOMAIN",
2537
- "MANAGED_DOMAIN"
2538
- ]
2539
- },
2540
- "ImageUrl":{"type":"string"},
2541
- "ImportDataSource":{
2542
- "type":"structure",
2543
- "required":[
2544
- "S3Url",
2545
- "DataFormat"
2546
- ],
2547
- "members":{
2548
- "S3Url":{"shape":"S3Url"},
2549
- "DataFormat":{"shape":"DataFormat"}
2550
- }
2551
- },
2552
- "ImportDestination":{
2553
- "type":"structure",
2554
- "members":{
2555
- "SuppressionListDestination":{"shape":"SuppressionListDestination"},
2556
- "ContactListDestination":{"shape":"ContactListDestination"}
2557
- }
2558
- },
2559
- "ImportDestinationType":{
2560
- "type":"string",
2561
- "enum":[
2562
- "SUPPRESSION_LIST",
2563
- "CONTACT_LIST"
2564
- ]
2565
- },
2566
- "ImportJobSummary":{
2567
- "type":"structure",
2568
- "members":{
2569
- "JobId":{"shape":"JobId"},
2570
- "ImportDestination":{"shape":"ImportDestination"},
2571
- "JobStatus":{"shape":"JobStatus"},
2572
- "CreatedTimestamp":{"shape":"Timestamp"}
2573
- }
2574
- },
2575
- "ImportJobSummaryList":{
2576
- "type":"list",
2577
- "member":{"shape":"ImportJobSummary"}
2578
- },
2579
- "InboxPlacementTrackingOption":{
2580
- "type":"structure",
2581
- "members":{
2582
- "Global":{"shape":"Enabled"},
2583
- "TrackedIsps":{"shape":"IspNameList"}
2584
- }
2585
- },
2586
- "InvalidNextTokenException":{
2587
- "type":"structure",
2588
- "members":{
2589
- },
2590
- "error":{"httpStatusCode":400},
2591
- "exception":true
2592
- },
2593
- "Ip":{"type":"string"},
2594
- "IpList":{
2595
- "type":"list",
2596
- "member":{"shape":"Ip"}
2597
- },
2598
- "IspName":{"type":"string"},
2599
- "IspNameList":{
2600
- "type":"list",
2601
- "member":{"shape":"IspName"}
2602
- },
2603
- "IspPlacement":{
2604
- "type":"structure",
2605
- "members":{
2606
- "IspName":{"shape":"IspName"},
2607
- "PlacementStatistics":{"shape":"PlacementStatistics"}
2608
- }
2609
- },
2610
- "IspPlacements":{
2611
- "type":"list",
2612
- "member":{"shape":"IspPlacement"}
2613
- },
2614
- "JobId":{
2615
- "type":"string",
2616
- "min":1
2617
- },
2618
- "JobStatus":{
2619
- "type":"string",
2620
- "enum":[
2621
- "CREATED",
2622
- "PROCESSING",
2623
- "COMPLETED",
2624
- "FAILED"
2625
- ]
2626
- },
2627
- "KinesisFirehoseDestination":{
2628
- "type":"structure",
2629
- "required":[
2630
- "IamRoleArn",
2631
- "DeliveryStreamArn"
2632
- ],
2633
- "members":{
2634
- "IamRoleArn":{"shape":"AmazonResourceName"},
2635
- "DeliveryStreamArn":{"shape":"AmazonResourceName"}
2636
- }
2637
- },
2638
- "LastFreshStart":{"type":"timestamp"},
2639
- "LimitExceededException":{
2640
- "type":"structure",
2641
- "members":{
2642
- },
2643
- "error":{"httpStatusCode":400},
2644
- "exception":true
2645
- },
2646
- "ListConfigurationSetsRequest":{
2647
- "type":"structure",
2648
- "members":{
2649
- "NextToken":{
2650
- "shape":"NextToken",
2651
- "location":"querystring",
2652
- "locationName":"NextToken"
2653
- },
2654
- "PageSize":{
2655
- "shape":"MaxItems",
2656
- "location":"querystring",
2657
- "locationName":"PageSize"
2658
- }
2659
- }
2660
- },
2661
- "ListConfigurationSetsResponse":{
2662
- "type":"structure",
2663
- "members":{
2664
- "ConfigurationSets":{"shape":"ConfigurationSetNameList"},
2665
- "NextToken":{"shape":"NextToken"}
2666
- }
2667
- },
2668
- "ListContactListsRequest":{
2669
- "type":"structure",
2670
- "members":{
2671
- "PageSize":{
2672
- "shape":"MaxItems",
2673
- "location":"querystring",
2674
- "locationName":"PageSize"
2675
- },
2676
- "NextToken":{
2677
- "shape":"NextToken",
2678
- "location":"querystring",
2679
- "locationName":"NextToken"
2680
- }
2681
- }
2682
- },
2683
- "ListContactListsResponse":{
2684
- "type":"structure",
2685
- "members":{
2686
- "ContactLists":{"shape":"ListOfContactLists"},
2687
- "NextToken":{"shape":"NextToken"}
2688
- }
2689
- },
2690
- "ListContactsFilter":{
2691
- "type":"structure",
2692
- "members":{
2693
- "FilteredStatus":{"shape":"SubscriptionStatus"},
2694
- "TopicFilter":{"shape":"TopicFilter"}
2695
- }
2696
- },
2697
- "ListContactsRequest":{
2698
- "type":"structure",
2699
- "required":["ContactListName"],
2700
- "members":{
2701
- "ContactListName":{
2702
- "shape":"ContactListName",
2703
- "location":"uri",
2704
- "locationName":"ContactListName"
2705
- },
2706
- "Filter":{"shape":"ListContactsFilter"},
2707
- "PageSize":{
2708
- "shape":"MaxItems",
2709
- "location":"querystring",
2710
- "locationName":"PageSize"
2711
- },
2712
- "NextToken":{
2713
- "shape":"NextToken",
2714
- "location":"querystring",
2715
- "locationName":"NextToken"
2716
- }
2717
- }
2718
- },
2719
- "ListContactsResponse":{
2720
- "type":"structure",
2721
- "members":{
2722
- "Contacts":{"shape":"ListOfContacts"},
2723
- "NextToken":{"shape":"NextToken"}
2724
- }
2725
- },
2726
- "ListCustomVerificationEmailTemplatesRequest":{
2727
- "type":"structure",
2728
- "members":{
2729
- "NextToken":{
2730
- "shape":"NextToken",
2731
- "location":"querystring",
2732
- "locationName":"NextToken"
2733
- },
2734
- "PageSize":{
2735
- "shape":"MaxItems",
2736
- "location":"querystring",
2737
- "locationName":"PageSize"
2738
- }
2739
- }
2740
- },
2741
- "ListCustomVerificationEmailTemplatesResponse":{
2742
- "type":"structure",
2743
- "members":{
2744
- "CustomVerificationEmailTemplates":{"shape":"CustomVerificationEmailTemplatesList"},
2745
- "NextToken":{"shape":"NextToken"}
2746
- }
2747
- },
2748
- "ListDedicatedIpPoolsRequest":{
2749
- "type":"structure",
2750
- "members":{
2751
- "NextToken":{
2752
- "shape":"NextToken",
2753
- "location":"querystring",
2754
- "locationName":"NextToken"
2755
- },
2756
- "PageSize":{
2757
- "shape":"MaxItems",
2758
- "location":"querystring",
2759
- "locationName":"PageSize"
2760
- }
2761
- }
2762
- },
2763
- "ListDedicatedIpPoolsResponse":{
2764
- "type":"structure",
2765
- "members":{
2766
- "DedicatedIpPools":{"shape":"ListOfDedicatedIpPools"},
2767
- "NextToken":{"shape":"NextToken"}
2768
- }
2769
- },
2770
- "ListDeliverabilityTestReportsRequest":{
2771
- "type":"structure",
2772
- "members":{
2773
- "NextToken":{
2774
- "shape":"NextToken",
2775
- "location":"querystring",
2776
- "locationName":"NextToken"
2777
- },
2778
- "PageSize":{
2779
- "shape":"MaxItems",
2780
- "location":"querystring",
2781
- "locationName":"PageSize"
2782
- }
2783
- }
2784
- },
2785
- "ListDeliverabilityTestReportsResponse":{
2786
- "type":"structure",
2787
- "required":["DeliverabilityTestReports"],
2788
- "members":{
2789
- "DeliverabilityTestReports":{"shape":"DeliverabilityTestReports"},
2790
- "NextToken":{"shape":"NextToken"}
2791
- }
2792
- },
2793
- "ListDomainDeliverabilityCampaignsRequest":{
2794
- "type":"structure",
2795
- "required":[
2796
- "StartDate",
2797
- "EndDate",
2798
- "SubscribedDomain"
2799
- ],
2800
- "members":{
2801
- "StartDate":{
2802
- "shape":"Timestamp",
2803
- "location":"querystring",
2804
- "locationName":"StartDate"
2805
- },
2806
- "EndDate":{
2807
- "shape":"Timestamp",
2808
- "location":"querystring",
2809
- "locationName":"EndDate"
2810
- },
2811
- "SubscribedDomain":{
2812
- "shape":"Domain",
2813
- "location":"uri",
2814
- "locationName":"SubscribedDomain"
2815
- },
2816
- "NextToken":{
2817
- "shape":"NextToken",
2818
- "location":"querystring",
2819
- "locationName":"NextToken"
2820
- },
2821
- "PageSize":{
2822
- "shape":"MaxItems",
2823
- "location":"querystring",
2824
- "locationName":"PageSize"
2825
- }
2826
- }
2827
- },
2828
- "ListDomainDeliverabilityCampaignsResponse":{
2829
- "type":"structure",
2830
- "required":["DomainDeliverabilityCampaigns"],
2831
- "members":{
2832
- "DomainDeliverabilityCampaigns":{"shape":"DomainDeliverabilityCampaignList"},
2833
- "NextToken":{"shape":"NextToken"}
2834
- }
2835
- },
2836
- "ListEmailIdentitiesRequest":{
2837
- "type":"structure",
2838
- "members":{
2839
- "NextToken":{
2840
- "shape":"NextToken",
2841
- "location":"querystring",
2842
- "locationName":"NextToken"
2843
- },
2844
- "PageSize":{
2845
- "shape":"MaxItems",
2846
- "location":"querystring",
2847
- "locationName":"PageSize"
2848
- }
2849
- }
2850
- },
2851
- "ListEmailIdentitiesResponse":{
2852
- "type":"structure",
2853
- "members":{
2854
- "EmailIdentities":{"shape":"IdentityInfoList"},
2855
- "NextToken":{"shape":"NextToken"}
2856
- }
2857
- },
2858
- "ListEmailTemplatesRequest":{
2859
- "type":"structure",
2860
- "members":{
2861
- "NextToken":{
2862
- "shape":"NextToken",
2863
- "location":"querystring",
2864
- "locationName":"NextToken"
2865
- },
2866
- "PageSize":{
2867
- "shape":"MaxItems",
2868
- "location":"querystring",
2869
- "locationName":"PageSize"
2870
- }
2871
- }
2872
- },
2873
- "ListEmailTemplatesResponse":{
2874
- "type":"structure",
2875
- "members":{
2876
- "TemplatesMetadata":{"shape":"EmailTemplateMetadataList"},
2877
- "NextToken":{"shape":"NextToken"}
2878
- }
2879
- },
2880
- "ListImportJobsRequest":{
2881
- "type":"structure",
2882
- "members":{
2883
- "ImportDestinationType":{"shape":"ImportDestinationType"},
2884
- "NextToken":{
2885
- "shape":"NextToken",
2886
- "location":"querystring",
2887
- "locationName":"NextToken"
2888
- },
2889
- "PageSize":{
2890
- "shape":"MaxItems",
2891
- "location":"querystring",
2892
- "locationName":"PageSize"
2893
- }
2894
- }
2895
- },
2896
- "ListImportJobsResponse":{
2897
- "type":"structure",
2898
- "members":{
2899
- "ImportJobs":{"shape":"ImportJobSummaryList"},
2900
- "NextToken":{"shape":"NextToken"}
2901
- }
2902
- },
2903
- "ListManagementOptions":{
2904
- "type":"structure",
2905
- "required":["ContactListName"],
2906
- "members":{
2907
- "ContactListName":{"shape":"ContactListName"},
2908
- "TopicName":{"shape":"TopicName"}
2909
- }
2910
- },
2911
- "ListOfContactLists":{
2912
- "type":"list",
2913
- "member":{"shape":"ContactList"}
2914
- },
2915
- "ListOfContacts":{
2916
- "type":"list",
2917
- "member":{"shape":"Contact"}
2918
- },
2919
- "ListOfDedicatedIpPools":{
2920
- "type":"list",
2921
- "member":{"shape":"PoolName"}
2922
- },
2923
- "ListSuppressedDestinationsRequest":{
2924
- "type":"structure",
2925
- "members":{
2926
- "Reasons":{
2927
- "shape":"SuppressionListReasons",
2928
- "location":"querystring",
2929
- "locationName":"Reason"
2930
- },
2931
- "StartDate":{
2932
- "shape":"Timestamp",
2933
- "location":"querystring",
2934
- "locationName":"StartDate"
2935
- },
2936
- "EndDate":{
2937
- "shape":"Timestamp",
2938
- "location":"querystring",
2939
- "locationName":"EndDate"
2940
- },
2941
- "NextToken":{
2942
- "shape":"NextToken",
2943
- "location":"querystring",
2944
- "locationName":"NextToken"
2945
- },
2946
- "PageSize":{
2947
- "shape":"MaxItems",
2948
- "location":"querystring",
2949
- "locationName":"PageSize"
2950
- }
2951
- }
2952
- },
2953
- "ListSuppressedDestinationsResponse":{
2954
- "type":"structure",
2955
- "members":{
2956
- "SuppressedDestinationSummaries":{"shape":"SuppressedDestinationSummaries"},
2957
- "NextToken":{"shape":"NextToken"}
2958
- }
2959
- },
2960
- "ListTagsForResourceRequest":{
2961
- "type":"structure",
2962
- "required":["ResourceArn"],
2963
- "members":{
2964
- "ResourceArn":{
2965
- "shape":"AmazonResourceName",
2966
- "location":"querystring",
2967
- "locationName":"ResourceArn"
2968
- }
2969
- }
2970
- },
2971
- "ListTagsForResourceResponse":{
2972
- "type":"structure",
2973
- "required":["Tags"],
2974
- "members":{
2975
- "Tags":{"shape":"TagList"}
2976
- }
2977
- },
2978
- "MailFromAttributes":{
2979
- "type":"structure",
2980
- "required":[
2981
- "MailFromDomain",
2982
- "MailFromDomainStatus",
2983
- "BehaviorOnMxFailure"
2984
- ],
2985
- "members":{
2986
- "MailFromDomain":{"shape":"MailFromDomainName"},
2987
- "MailFromDomainStatus":{"shape":"MailFromDomainStatus"},
2988
- "BehaviorOnMxFailure":{"shape":"BehaviorOnMxFailure"}
2989
- }
2990
- },
2991
- "MailFromDomainName":{"type":"string"},
2992
- "MailFromDomainNotVerifiedException":{
2993
- "type":"structure",
2994
- "members":{
2995
- },
2996
- "error":{"httpStatusCode":400},
2997
- "exception":true
2998
- },
2999
- "MailFromDomainStatus":{
3000
- "type":"string",
3001
- "enum":[
3002
- "PENDING",
3003
- "SUCCESS",
3004
- "FAILED",
3005
- "TEMPORARY_FAILURE"
3006
- ]
3007
- },
3008
- "MailType":{
3009
- "type":"string",
3010
- "enum":[
3011
- "MARKETING",
3012
- "TRANSACTIONAL"
3013
- ]
3014
- },
3015
- "Max24HourSend":{"type":"double"},
3016
- "MaxItems":{"type":"integer"},
3017
- "MaxSendRate":{"type":"double"},
3018
- "Message":{
3019
- "type":"structure",
3020
- "required":[
3021
- "Subject",
3022
- "Body"
3023
- ],
3024
- "members":{
3025
- "Subject":{"shape":"Content"},
3026
- "Body":{"shape":"Body"}
3027
- }
3028
- },
3029
- "MessageContent":{"type":"string"},
3030
- "MessageData":{"type":"string"},
3031
- "MessageRejected":{
3032
- "type":"structure",
3033
- "members":{
3034
- },
3035
- "error":{"httpStatusCode":400},
3036
- "exception":true
3037
- },
3038
- "MessageTag":{
3039
- "type":"structure",
3040
- "required":[
3041
- "Name",
3042
- "Value"
3043
- ],
3044
- "members":{
3045
- "Name":{"shape":"MessageTagName"},
3046
- "Value":{"shape":"MessageTagValue"}
3047
- }
3048
- },
3049
- "MessageTagList":{
3050
- "type":"list",
3051
- "member":{"shape":"MessageTag"}
3052
- },
3053
- "MessageTagName":{"type":"string"},
3054
- "MessageTagValue":{"type":"string"},
3055
- "NextToken":{"type":"string"},
3056
- "NotFoundException":{
3057
- "type":"structure",
3058
- "members":{
3059
- },
3060
- "error":{"httpStatusCode":404},
3061
- "exception":true
3062
- },
3063
- "OutboundMessageId":{"type":"string"},
3064
- "OverallVolume":{
3065
- "type":"structure",
3066
- "members":{
3067
- "VolumeStatistics":{"shape":"VolumeStatistics"},
3068
- "ReadRatePercent":{"shape":"Percentage"},
3069
- "DomainIspPlacements":{"shape":"DomainIspPlacements"}
3070
- }
3071
- },
3072
- "Percentage":{"type":"double"},
3073
- "Percentage100Wrapper":{"type":"integer"},
3074
- "PinpointDestination":{
3075
- "type":"structure",
3076
- "members":{
3077
- "ApplicationArn":{"shape":"AmazonResourceName"}
3078
- }
3079
- },
3080
- "PlacementStatistics":{
3081
- "type":"structure",
3082
- "members":{
3083
- "InboxPercentage":{"shape":"Percentage"},
3084
- "SpamPercentage":{"shape":"Percentage"},
3085
- "MissingPercentage":{"shape":"Percentage"},
3086
- "SpfPercentage":{"shape":"Percentage"},
3087
- "DkimPercentage":{"shape":"Percentage"}
3088
- }
3089
- },
3090
- "Policy":{
3091
- "type":"string",
3092
- "min":1
3093
- },
3094
- "PolicyMap":{
3095
- "type":"map",
3096
- "key":{"shape":"PolicyName"},
3097
- "value":{"shape":"Policy"}
3098
- },
3099
- "PolicyName":{
3100
- "type":"string",
3101
- "max":64,
3102
- "min":1
3103
- },
3104
- "PoolName":{"type":"string"},
3105
- "PrivateKey":{
3106
- "type":"string",
3107
- "max":20480,
3108
- "min":1,
3109
- "pattern":"^[a-zA-Z0-9+\\/]+={0,2}$",
3110
- "sensitive":true
3111
- },
3112
- "ProcessedRecordsCount":{"type":"integer"},
3113
- "PutAccountDedicatedIpWarmupAttributesRequest":{
3114
- "type":"structure",
3115
- "members":{
3116
- "AutoWarmupEnabled":{"shape":"Enabled"}
3117
- }
3118
- },
3119
- "PutAccountDedicatedIpWarmupAttributesResponse":{
3120
- "type":"structure",
3121
- "members":{
3122
- }
3123
- },
3124
- "PutAccountDetailsRequest":{
3125
- "type":"structure",
3126
- "required":[
3127
- "MailType",
3128
- "WebsiteURL",
3129
- "UseCaseDescription"
3130
- ],
3131
- "members":{
3132
- "MailType":{"shape":"MailType"},
3133
- "WebsiteURL":{"shape":"WebsiteURL"},
3134
- "ContactLanguage":{"shape":"ContactLanguage"},
3135
- "UseCaseDescription":{"shape":"UseCaseDescription"},
3136
- "AdditionalContactEmailAddresses":{"shape":"AdditionalContactEmailAddresses"},
3137
- "ProductionAccessEnabled":{"shape":"EnabledWrapper"}
3138
- }
3139
- },
3140
- "PutAccountDetailsResponse":{
3141
- "type":"structure",
3142
- "members":{
3143
- }
3144
- },
3145
- "PutAccountSendingAttributesRequest":{
3146
- "type":"structure",
3147
- "members":{
3148
- "SendingEnabled":{"shape":"Enabled"}
3149
- }
3150
- },
3151
- "PutAccountSendingAttributesResponse":{
3152
- "type":"structure",
3153
- "members":{
3154
- }
3155
- },
3156
- "PutAccountSuppressionAttributesRequest":{
3157
- "type":"structure",
3158
- "members":{
3159
- "SuppressedReasons":{"shape":"SuppressionListReasons"}
3160
- }
3161
- },
3162
- "PutAccountSuppressionAttributesResponse":{
3163
- "type":"structure",
3164
- "members":{
3165
- }
3166
- },
3167
- "PutConfigurationSetDeliveryOptionsRequest":{
3168
- "type":"structure",
3169
- "required":["ConfigurationSetName"],
3170
- "members":{
3171
- "ConfigurationSetName":{
3172
- "shape":"ConfigurationSetName",
3173
- "location":"uri",
3174
- "locationName":"ConfigurationSetName"
3175
- },
3176
- "TlsPolicy":{"shape":"TlsPolicy"},
3177
- "SendingPoolName":{"shape":"SendingPoolName"}
3178
- }
3179
- },
3180
- "PutConfigurationSetDeliveryOptionsResponse":{
3181
- "type":"structure",
3182
- "members":{
3183
- }
3184
- },
3185
- "PutConfigurationSetReputationOptionsRequest":{
3186
- "type":"structure",
3187
- "required":["ConfigurationSetName"],
3188
- "members":{
3189
- "ConfigurationSetName":{
3190
- "shape":"ConfigurationSetName",
3191
- "location":"uri",
3192
- "locationName":"ConfigurationSetName"
3193
- },
3194
- "ReputationMetricsEnabled":{"shape":"Enabled"}
3195
- }
3196
- },
3197
- "PutConfigurationSetReputationOptionsResponse":{
3198
- "type":"structure",
3199
- "members":{
3200
- }
3201
- },
3202
- "PutConfigurationSetSendingOptionsRequest":{
3203
- "type":"structure",
3204
- "required":["ConfigurationSetName"],
3205
- "members":{
3206
- "ConfigurationSetName":{
3207
- "shape":"ConfigurationSetName",
3208
- "location":"uri",
3209
- "locationName":"ConfigurationSetName"
3210
- },
3211
- "SendingEnabled":{"shape":"Enabled"}
3212
- }
3213
- },
3214
- "PutConfigurationSetSendingOptionsResponse":{
3215
- "type":"structure",
3216
- "members":{
3217
- }
3218
- },
3219
- "PutConfigurationSetSuppressionOptionsRequest":{
3220
- "type":"structure",
3221
- "required":["ConfigurationSetName"],
3222
- "members":{
3223
- "ConfigurationSetName":{
3224
- "shape":"ConfigurationSetName",
3225
- "location":"uri",
3226
- "locationName":"ConfigurationSetName"
3227
- },
3228
- "SuppressedReasons":{"shape":"SuppressionListReasons"}
3229
- }
3230
- },
3231
- "PutConfigurationSetSuppressionOptionsResponse":{
3232
- "type":"structure",
3233
- "members":{
3234
- }
3235
- },
3236
- "PutConfigurationSetTrackingOptionsRequest":{
3237
- "type":"structure",
3238
- "required":["ConfigurationSetName"],
3239
- "members":{
3240
- "ConfigurationSetName":{
3241
- "shape":"ConfigurationSetName",
3242
- "location":"uri",
3243
- "locationName":"ConfigurationSetName"
3244
- },
3245
- "CustomRedirectDomain":{"shape":"CustomRedirectDomain"}
3246
- }
3247
- },
3248
- "PutConfigurationSetTrackingOptionsResponse":{
3249
- "type":"structure",
3250
- "members":{
3251
- }
3252
- },
3253
- "PutDedicatedIpInPoolRequest":{
3254
- "type":"structure",
3255
- "required":[
3256
- "Ip",
3257
- "DestinationPoolName"
3258
- ],
3259
- "members":{
3260
- "Ip":{
3261
- "shape":"Ip",
3262
- "location":"uri",
3263
- "locationName":"IP"
3264
- },
3265
- "DestinationPoolName":{"shape":"PoolName"}
3266
- }
3267
- },
3268
- "PutDedicatedIpInPoolResponse":{
3269
- "type":"structure",
3270
- "members":{
3271
- }
3272
- },
3273
- "PutDedicatedIpWarmupAttributesRequest":{
3274
- "type":"structure",
3275
- "required":[
3276
- "Ip",
3277
- "WarmupPercentage"
3278
- ],
3279
- "members":{
3280
- "Ip":{
3281
- "shape":"Ip",
3282
- "location":"uri",
3283
- "locationName":"IP"
3284
- },
3285
- "WarmupPercentage":{"shape":"Percentage100Wrapper"}
3286
- }
3287
- },
3288
- "PutDedicatedIpWarmupAttributesResponse":{
3289
- "type":"structure",
3290
- "members":{
3291
- }
3292
- },
3293
- "PutDeliverabilityDashboardOptionRequest":{
3294
- "type":"structure",
3295
- "required":["DashboardEnabled"],
3296
- "members":{
3297
- "DashboardEnabled":{"shape":"Enabled"},
3298
- "SubscribedDomains":{"shape":"DomainDeliverabilityTrackingOptions"}
3299
- }
3300
- },
3301
- "PutDeliverabilityDashboardOptionResponse":{
3302
- "type":"structure",
3303
- "members":{
3304
- }
3305
- },
3306
- "PutEmailIdentityDkimAttributesRequest":{
3307
- "type":"structure",
3308
- "required":["EmailIdentity"],
3309
- "members":{
3310
- "EmailIdentity":{
3311
- "shape":"Identity",
3312
- "location":"uri",
3313
- "locationName":"EmailIdentity"
3314
- },
3315
- "SigningEnabled":{"shape":"Enabled"}
3316
- }
3317
- },
3318
- "PutEmailIdentityDkimAttributesResponse":{
3319
- "type":"structure",
3320
- "members":{
3321
- }
3322
- },
3323
- "PutEmailIdentityDkimSigningAttributesRequest":{
3324
- "type":"structure",
3325
- "required":[
3326
- "EmailIdentity",
3327
- "SigningAttributesOrigin"
3328
- ],
3329
- "members":{
3330
- "EmailIdentity":{
3331
- "shape":"Identity",
3332
- "location":"uri",
3333
- "locationName":"EmailIdentity"
3334
- },
3335
- "SigningAttributesOrigin":{"shape":"DkimSigningAttributesOrigin"},
3336
- "SigningAttributes":{"shape":"DkimSigningAttributes"}
3337
- }
3338
- },
3339
- "PutEmailIdentityDkimSigningAttributesResponse":{
3340
- "type":"structure",
3341
- "members":{
3342
- "DkimStatus":{"shape":"DkimStatus"},
3343
- "DkimTokens":{"shape":"DnsTokenList"}
3344
- }
3345
- },
3346
- "PutEmailIdentityFeedbackAttributesRequest":{
3347
- "type":"structure",
3348
- "required":["EmailIdentity"],
3349
- "members":{
3350
- "EmailIdentity":{
3351
- "shape":"Identity",
3352
- "location":"uri",
3353
- "locationName":"EmailIdentity"
3354
- },
3355
- "EmailForwardingEnabled":{"shape":"Enabled"}
3356
- }
3357
- },
3358
- "PutEmailIdentityFeedbackAttributesResponse":{
3359
- "type":"structure",
3360
- "members":{
3361
- }
3362
- },
3363
- "PutEmailIdentityMailFromAttributesRequest":{
3364
- "type":"structure",
3365
- "required":["EmailIdentity"],
3366
- "members":{
3367
- "EmailIdentity":{
3368
- "shape":"Identity",
3369
- "location":"uri",
3370
- "locationName":"EmailIdentity"
3371
- },
3372
- "MailFromDomain":{"shape":"MailFromDomainName"},
3373
- "BehaviorOnMxFailure":{"shape":"BehaviorOnMxFailure"}
3374
- }
3375
- },
3376
- "PutEmailIdentityMailFromAttributesResponse":{
3377
- "type":"structure",
3378
- "members":{
3379
- }
3380
- },
3381
- "PutSuppressedDestinationRequest":{
3382
- "type":"structure",
3383
- "required":[
3384
- "EmailAddress",
3385
- "Reason"
3386
- ],
3387
- "members":{
3388
- "EmailAddress":{"shape":"EmailAddress"},
3389
- "Reason":{"shape":"SuppressionListReason"}
3390
- }
3391
- },
3392
- "PutSuppressedDestinationResponse":{
3393
- "type":"structure",
3394
- "members":{
3395
- }
3396
- },
3397
- "RawMessage":{
3398
- "type":"structure",
3399
- "required":["Data"],
3400
- "members":{
3401
- "Data":{"shape":"RawMessageData"}
3402
- }
3403
- },
3404
- "RawMessageData":{"type":"blob"},
3405
- "RblName":{"type":"string"},
3406
- "RenderedEmailTemplate":{"type":"string"},
3407
- "ReplacementEmailContent":{
3408
- "type":"structure",
3409
- "members":{
3410
- "ReplacementTemplate":{"shape":"ReplacementTemplate"}
3411
- }
3412
- },
3413
- "ReplacementTemplate":{
3414
- "type":"structure",
3415
- "members":{
3416
- "ReplacementTemplateData":{"shape":"EmailTemplateData"}
3417
- }
3418
- },
3419
- "ReportId":{"type":"string"},
3420
- "ReportName":{"type":"string"},
3421
- "ReputationOptions":{
3422
- "type":"structure",
3423
- "members":{
3424
- "ReputationMetricsEnabled":{"shape":"Enabled"},
3425
- "LastFreshStart":{"shape":"LastFreshStart"}
3426
- }
3427
- },
3428
- "ReviewDetails":{
3429
- "type":"structure",
3430
- "members":{
3431
- "Status":{"shape":"ReviewStatus"},
3432
- "CaseId":{"shape":"CaseId"}
3433
- }
3434
- },
3435
- "ReviewStatus":{
3436
- "type":"string",
3437
- "enum":[
3438
- "PENDING",
3439
- "FAILED",
3440
- "GRANTED",
3441
- "DENIED"
3442
- ]
3443
- },
3444
- "S3Url":{
3445
- "type":"string",
3446
- "pattern":"^s3:\\/\\/([^\\/]+)\\/(.*?([^\\/]+)\\/?)$"
3447
- },
3448
- "Selector":{
3449
- "type":"string",
3450
- "max":63,
3451
- "min":1,
3452
- "pattern":"^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9]))$"
3453
- },
3454
- "SendBulkEmailRequest":{
3455
- "type":"structure",
3456
- "required":[
3457
- "DefaultContent",
3458
- "BulkEmailEntries"
3459
- ],
3460
- "members":{
3461
- "FromEmailAddress":{"shape":"EmailAddress"},
3462
- "FromEmailAddressIdentityArn":{"shape":"AmazonResourceName"},
3463
- "ReplyToAddresses":{"shape":"EmailAddressList"},
3464
- "FeedbackForwardingEmailAddress":{"shape":"EmailAddress"},
3465
- "FeedbackForwardingEmailAddressIdentityArn":{"shape":"AmazonResourceName"},
3466
- "DefaultEmailTags":{"shape":"MessageTagList"},
3467
- "DefaultContent":{"shape":"BulkEmailContent"},
3468
- "BulkEmailEntries":{"shape":"BulkEmailEntryList"},
3469
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
3470
- }
3471
- },
3472
- "SendBulkEmailResponse":{
3473
- "type":"structure",
3474
- "required":["BulkEmailEntryResults"],
3475
- "members":{
3476
- "BulkEmailEntryResults":{"shape":"BulkEmailEntryResultList"}
3477
- }
3478
- },
3479
- "SendCustomVerificationEmailRequest":{
3480
- "type":"structure",
3481
- "required":[
3482
- "EmailAddress",
3483
- "TemplateName"
3484
- ],
3485
- "members":{
3486
- "EmailAddress":{"shape":"EmailAddress"},
3487
- "TemplateName":{"shape":"EmailTemplateName"},
3488
- "ConfigurationSetName":{"shape":"ConfigurationSetName"}
3489
- }
3490
- },
3491
- "SendCustomVerificationEmailResponse":{
3492
- "type":"structure",
3493
- "members":{
3494
- "MessageId":{"shape":"OutboundMessageId"}
3495
- }
3496
- },
3497
- "SendEmailRequest":{
3498
- "type":"structure",
3499
- "required":["Content"],
3500
- "members":{
3501
- "FromEmailAddress":{"shape":"EmailAddress"},
3502
- "FromEmailAddressIdentityArn":{"shape":"AmazonResourceName"},
3503
- "Destination":{"shape":"Destination"},
3504
- "ReplyToAddresses":{"shape":"EmailAddressList"},
3505
- "FeedbackForwardingEmailAddress":{"shape":"EmailAddress"},
3506
- "FeedbackForwardingEmailAddressIdentityArn":{"shape":"AmazonResourceName"},
3507
- "Content":{"shape":"EmailContent"},
3508
- "EmailTags":{"shape":"MessageTagList"},
3509
- "ConfigurationSetName":{"shape":"ConfigurationSetName"},
3510
- "ListManagementOptions":{"shape":"ListManagementOptions"}
3511
- }
3512
- },
3513
- "SendEmailResponse":{
3514
- "type":"structure",
3515
- "members":{
3516
- "MessageId":{"shape":"OutboundMessageId"}
3517
- }
3518
- },
3519
- "SendQuota":{
3520
- "type":"structure",
3521
- "members":{
3522
- "Max24HourSend":{"shape":"Max24HourSend"},
3523
- "MaxSendRate":{"shape":"MaxSendRate"},
3524
- "SentLast24Hours":{"shape":"SentLast24Hours"}
3525
- }
3526
- },
3527
- "SendingOptions":{
3528
- "type":"structure",
3529
- "members":{
3530
- "SendingEnabled":{"shape":"Enabled"}
3531
- }
3532
- },
3533
- "SendingPausedException":{
3534
- "type":"structure",
3535
- "members":{
3536
- },
3537
- "error":{"httpStatusCode":400},
3538
- "exception":true
3539
- },
3540
- "SendingPoolName":{"type":"string"},
3541
- "SentLast24Hours":{"type":"double"},
3542
- "SnsDestination":{
3543
- "type":"structure",
3544
- "required":["TopicArn"],
3545
- "members":{
3546
- "TopicArn":{"shape":"AmazonResourceName"}
3547
- }
3548
- },
3549
- "Subject":{"type":"string"},
3550
- "SubscriptionStatus":{
3551
- "type":"string",
3552
- "enum":[
3553
- "OPT_IN",
3554
- "OPT_OUT"
3555
- ]
3556
- },
3557
- "SuccessRedirectionURL":{"type":"string"},
3558
- "SuppressedDestination":{
3559
- "type":"structure",
3560
- "required":[
3561
- "EmailAddress",
3562
- "Reason",
3563
- "LastUpdateTime"
3564
- ],
3565
- "members":{
3566
- "EmailAddress":{"shape":"EmailAddress"},
3567
- "Reason":{"shape":"SuppressionListReason"},
3568
- "LastUpdateTime":{"shape":"Timestamp"},
3569
- "Attributes":{"shape":"SuppressedDestinationAttributes"}
3570
- }
3571
- },
3572
- "SuppressedDestinationAttributes":{
3573
- "type":"structure",
3574
- "members":{
3575
- "MessageId":{"shape":"OutboundMessageId"},
3576
- "FeedbackId":{"shape":"FeedbackId"}
3577
- }
3578
- },
3579
- "SuppressedDestinationSummaries":{
3580
- "type":"list",
3581
- "member":{"shape":"SuppressedDestinationSummary"}
3582
- },
3583
- "SuppressedDestinationSummary":{
3584
- "type":"structure",
3585
- "required":[
3586
- "EmailAddress",
3587
- "Reason",
3588
- "LastUpdateTime"
3589
- ],
3590
- "members":{
3591
- "EmailAddress":{"shape":"EmailAddress"},
3592
- "Reason":{"shape":"SuppressionListReason"},
3593
- "LastUpdateTime":{"shape":"Timestamp"}
3594
- }
3595
- },
3596
- "SuppressionAttributes":{
3597
- "type":"structure",
3598
- "members":{
3599
- "SuppressedReasons":{"shape":"SuppressionListReasons"}
3600
- }
3601
- },
3602
- "SuppressionListDestination":{
3603
- "type":"structure",
3604
- "required":["SuppressionListImportAction"],
3605
- "members":{
3606
- "SuppressionListImportAction":{"shape":"SuppressionListImportAction"}
3607
- }
3608
- },
3609
- "SuppressionListImportAction":{
3610
- "type":"string",
3611
- "enum":[
3612
- "DELETE",
3613
- "PUT"
3614
- ]
3615
- },
3616
- "SuppressionListReason":{
3617
- "type":"string",
3618
- "enum":[
3619
- "BOUNCE",
3620
- "COMPLAINT"
3621
- ]
3622
- },
3623
- "SuppressionListReasons":{
3624
- "type":"list",
3625
- "member":{"shape":"SuppressionListReason"}
3626
- },
3627
- "SuppressionOptions":{
3628
- "type":"structure",
3629
- "members":{
3630
- "SuppressedReasons":{"shape":"SuppressionListReasons"}
3631
- }
3632
- },
3633
- "Tag":{
3634
- "type":"structure",
3635
- "required":[
3636
- "Key",
3637
- "Value"
3638
- ],
3639
- "members":{
3640
- "Key":{"shape":"TagKey"},
3641
- "Value":{"shape":"TagValue"}
3642
- }
3643
- },
3644
- "TagKey":{"type":"string"},
3645
- "TagKeyList":{
3646
- "type":"list",
3647
- "member":{"shape":"TagKey"}
3648
- },
3649
- "TagList":{
3650
- "type":"list",
3651
- "member":{"shape":"Tag"}
3652
- },
3653
- "TagResourceRequest":{
3654
- "type":"structure",
3655
- "required":[
3656
- "ResourceArn",
3657
- "Tags"
3658
- ],
3659
- "members":{
3660
- "ResourceArn":{"shape":"AmazonResourceName"},
3661
- "Tags":{"shape":"TagList"}
3662
- }
3663
- },
3664
- "TagResourceResponse":{
3665
- "type":"structure",
3666
- "members":{
3667
- }
3668
- },
3669
- "TagValue":{"type":"string"},
3670
- "Template":{
3671
- "type":"structure",
3672
- "members":{
3673
- "TemplateName":{"shape":"EmailTemplateName"},
3674
- "TemplateArn":{"shape":"AmazonResourceName"},
3675
- "TemplateData":{"shape":"EmailTemplateData"}
3676
- }
3677
- },
3678
- "TemplateContent":{"type":"string"},
3679
- "TestRenderEmailTemplateRequest":{
3680
- "type":"structure",
3681
- "required":[
3682
- "TemplateName",
3683
- "TemplateData"
3684
- ],
3685
- "members":{
3686
- "TemplateName":{
3687
- "shape":"EmailTemplateName",
3688
- "location":"uri",
3689
- "locationName":"TemplateName"
3690
- },
3691
- "TemplateData":{"shape":"EmailTemplateData"}
3692
- }
3693
- },
3694
- "TestRenderEmailTemplateResponse":{
3695
- "type":"structure",
3696
- "required":["RenderedTemplate"],
3697
- "members":{
3698
- "RenderedTemplate":{"shape":"RenderedEmailTemplate"}
3699
- }
3700
- },
3701
- "Timestamp":{"type":"timestamp"},
3702
- "TlsPolicy":{
3703
- "type":"string",
3704
- "enum":[
3705
- "REQUIRE",
3706
- "OPTIONAL"
3707
- ]
3708
- },
3709
- "TooManyRequestsException":{
3710
- "type":"structure",
3711
- "members":{
3712
- },
3713
- "error":{"httpStatusCode":429},
3714
- "exception":true
3715
- },
3716
- "Topic":{
3717
- "type":"structure",
3718
- "required":[
3719
- "TopicName",
3720
- "DisplayName",
3721
- "DefaultSubscriptionStatus"
3722
- ],
3723
- "members":{
3724
- "TopicName":{"shape":"TopicName"},
3725
- "DisplayName":{"shape":"DisplayName"},
3726
- "Description":{"shape":"Description"},
3727
- "DefaultSubscriptionStatus":{"shape":"SubscriptionStatus"}
3728
- }
3729
- },
3730
- "TopicFilter":{
3731
- "type":"structure",
3732
- "members":{
3733
- "TopicName":{"shape":"TopicName"},
3734
- "UseDefaultIfPreferenceUnavailable":{"shape":"UseDefaultIfPreferenceUnavailable"}
3735
- }
3736
- },
3737
- "TopicName":{"type":"string"},
3738
- "TopicPreference":{
3739
- "type":"structure",
3740
- "required":[
3741
- "TopicName",
3742
- "SubscriptionStatus"
3743
- ],
3744
- "members":{
3745
- "TopicName":{"shape":"TopicName"},
3746
- "SubscriptionStatus":{"shape":"SubscriptionStatus"}
3747
- }
3748
- },
3749
- "TopicPreferenceList":{
3750
- "type":"list",
3751
- "member":{"shape":"TopicPreference"}
3752
- },
3753
- "Topics":{
3754
- "type":"list",
3755
- "member":{"shape":"Topic"}
3756
- },
3757
- "TrackingOptions":{
3758
- "type":"structure",
3759
- "required":["CustomRedirectDomain"],
3760
- "members":{
3761
- "CustomRedirectDomain":{"shape":"CustomRedirectDomain"}
3762
- }
3763
- },
3764
- "UnsubscribeAll":{"type":"boolean"},
3765
- "UntagResourceRequest":{
3766
- "type":"structure",
3767
- "required":[
3768
- "ResourceArn",
3769
- "TagKeys"
3770
- ],
3771
- "members":{
3772
- "ResourceArn":{
3773
- "shape":"AmazonResourceName",
3774
- "location":"querystring",
3775
- "locationName":"ResourceArn"
3776
- },
3777
- "TagKeys":{
3778
- "shape":"TagKeyList",
3779
- "location":"querystring",
3780
- "locationName":"TagKeys"
3781
- }
3782
- }
3783
- },
3784
- "UntagResourceResponse":{
3785
- "type":"structure",
3786
- "members":{
3787
- }
3788
- },
3789
- "UpdateConfigurationSetEventDestinationRequest":{
3790
- "type":"structure",
3791
- "required":[
3792
- "ConfigurationSetName",
3793
- "EventDestinationName",
3794
- "EventDestination"
3795
- ],
3796
- "members":{
3797
- "ConfigurationSetName":{
3798
- "shape":"ConfigurationSetName",
3799
- "location":"uri",
3800
- "locationName":"ConfigurationSetName"
3801
- },
3802
- "EventDestinationName":{
3803
- "shape":"EventDestinationName",
3804
- "location":"uri",
3805
- "locationName":"EventDestinationName"
3806
- },
3807
- "EventDestination":{"shape":"EventDestinationDefinition"}
3808
- }
3809
- },
3810
- "UpdateConfigurationSetEventDestinationResponse":{
3811
- "type":"structure",
3812
- "members":{
3813
- }
3814
- },
3815
- "UpdateContactListRequest":{
3816
- "type":"structure",
3817
- "required":["ContactListName"],
3818
- "members":{
3819
- "ContactListName":{
3820
- "shape":"ContactListName",
3821
- "location":"uri",
3822
- "locationName":"ContactListName"
3823
- },
3824
- "Topics":{"shape":"Topics"},
3825
- "Description":{"shape":"Description"}
3826
- }
3827
- },
3828
- "UpdateContactListResponse":{
3829
- "type":"structure",
3830
- "members":{
3831
- }
3832
- },
3833
- "UpdateContactRequest":{
3834
- "type":"structure",
3835
- "required":[
3836
- "ContactListName",
3837
- "EmailAddress"
3838
- ],
3839
- "members":{
3840
- "ContactListName":{
3841
- "shape":"ContactListName",
3842
- "location":"uri",
3843
- "locationName":"ContactListName"
3844
- },
3845
- "EmailAddress":{
3846
- "shape":"EmailAddress",
3847
- "location":"uri",
3848
- "locationName":"EmailAddress"
3849
- },
3850
- "TopicPreferences":{"shape":"TopicPreferenceList"},
3851
- "UnsubscribeAll":{"shape":"UnsubscribeAll"},
3852
- "AttributesData":{"shape":"AttributesData"}
3853
- }
3854
- },
3855
- "UpdateContactResponse":{
3856
- "type":"structure",
3857
- "members":{
3858
- }
3859
- },
3860
- "UpdateCustomVerificationEmailTemplateRequest":{
3861
- "type":"structure",
3862
- "required":[
3863
- "TemplateName",
3864
- "FromEmailAddress",
3865
- "TemplateSubject",
3866
- "TemplateContent",
3867
- "SuccessRedirectionURL",
3868
- "FailureRedirectionURL"
3869
- ],
3870
- "members":{
3871
- "TemplateName":{
3872
- "shape":"EmailTemplateName",
3873
- "location":"uri",
3874
- "locationName":"TemplateName"
3875
- },
3876
- "FromEmailAddress":{"shape":"EmailAddress"},
3877
- "TemplateSubject":{"shape":"EmailTemplateSubject"},
3878
- "TemplateContent":{"shape":"TemplateContent"},
3879
- "SuccessRedirectionURL":{"shape":"SuccessRedirectionURL"},
3880
- "FailureRedirectionURL":{"shape":"FailureRedirectionURL"}
3881
- }
3882
- },
3883
- "UpdateCustomVerificationEmailTemplateResponse":{
3884
- "type":"structure",
3885
- "members":{
3886
- }
3887
- },
3888
- "UpdateEmailIdentityPolicyRequest":{
3889
- "type":"structure",
3890
- "required":[
3891
- "EmailIdentity",
3892
- "PolicyName",
3893
- "Policy"
3894
- ],
3895
- "members":{
3896
- "EmailIdentity":{
3897
- "shape":"Identity",
3898
- "location":"uri",
3899
- "locationName":"EmailIdentity"
3900
- },
3901
- "PolicyName":{
3902
- "shape":"PolicyName",
3903
- "location":"uri",
3904
- "locationName":"PolicyName"
3905
- },
3906
- "Policy":{"shape":"Policy"}
3907
- }
3908
- },
3909
- "UpdateEmailIdentityPolicyResponse":{
3910
- "type":"structure",
3911
- "members":{
3912
- }
3913
- },
3914
- "UpdateEmailTemplateRequest":{
3915
- "type":"structure",
3916
- "required":[
3917
- "TemplateName",
3918
- "TemplateContent"
3919
- ],
3920
- "members":{
3921
- "TemplateName":{
3922
- "shape":"EmailTemplateName",
3923
- "location":"uri",
3924
- "locationName":"TemplateName"
3925
- },
3926
- "TemplateContent":{"shape":"EmailTemplateContent"}
3927
- }
3928
- },
3929
- "UpdateEmailTemplateResponse":{
3930
- "type":"structure",
3931
- "members":{
3932
- }
3933
- },
3934
- "UseCaseDescription":{
3935
- "type":"string",
3936
- "max":5000,
3937
- "min":1,
3938
- "sensitive":true
3939
- },
3940
- "UseDefaultIfPreferenceUnavailable":{"type":"boolean"},
3941
- "Volume":{"type":"long"},
3942
- "VolumeStatistics":{
3943
- "type":"structure",
3944
- "members":{
3945
- "InboxRawCount":{"shape":"Volume"},
3946
- "SpamRawCount":{"shape":"Volume"},
3947
- "ProjectedInbox":{"shape":"Volume"},
3948
- "ProjectedSpam":{"shape":"Volume"}
3949
- }
3950
- },
3951
- "WarmupStatus":{
3952
- "type":"string",
3953
- "enum":[
3954
- "IN_PROGRESS",
3955
- "DONE"
3956
- ]
3957
- },
3958
- "WebsiteURL":{
3959
- "type":"string",
3960
- "max":1000,
3961
- "min":1,
3962
- "pattern":"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?",
3963
- "sensitive":true
3964
- }
3965
- }
3966
- }