aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,24 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListJobsByPipeline": {
4
- "input_token": "PageToken",
5
- "output_token": "NextPageToken",
6
- "result_key": "Jobs"
7
- },
8
- "ListJobsByStatus": {
9
- "input_token": "PageToken",
10
- "output_token": "NextPageToken",
11
- "result_key": "Jobs"
12
- },
13
- "ListPipelines": {
14
- "input_token": "PageToken",
15
- "output_token": "NextPageToken",
16
- "result_key": "Pipelines"
17
- },
18
- "ListPresets": {
19
- "input_token": "PageToken",
20
- "output_token": "NextPageToken",
21
- "result_key": "Presets"
22
- }
23
- }
24
- }
@@ -1,30 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "JobComplete": {
5
- "delay": 30,
6
- "operation": "ReadJob",
7
- "maxAttempts": 120,
8
- "acceptors": [
9
- {
10
- "expected": "Complete",
11
- "matcher": "path",
12
- "state": "success",
13
- "argument": "Job.Status"
14
- },
15
- {
16
- "expected": "Canceled",
17
- "matcher": "path",
18
- "state": "failure",
19
- "argument": "Job.Status"
20
- },
21
- {
22
- "expected": "Error",
23
- "matcher": "path",
24
- "state": "failure",
25
- "argument": "Job.Status"
26
- }
27
- ]
28
- }
29
- }
30
- }
@@ -1,1791 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2010-12-01",
5
- "endpointPrefix":"email",
6
- "protocol":"query",
7
- "serviceAbbreviation":"Amazon SES",
8
- "serviceFullName":"Amazon Simple Email Service",
9
- "signatureVersion":"v4",
10
- "signingName":"ses",
11
- "xmlNamespace":"http://ses.amazonaws.com/doc/2010-12-01/"
12
- },
13
- "operations":{
14
- "CloneReceiptRuleSet":{
15
- "name":"CloneReceiptRuleSet",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"CloneReceiptRuleSetRequest"},
21
- "output":{
22
- "shape":"CloneReceiptRuleSetResponse",
23
- "resultWrapper":"CloneReceiptRuleSetResult"
24
- },
25
- "errors":[
26
- {"shape":"RuleSetDoesNotExistException"},
27
- {"shape":"AlreadyExistsException"},
28
- {"shape":"LimitExceededException"}
29
- ]
30
- },
31
- "CreateReceiptFilter":{
32
- "name":"CreateReceiptFilter",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"CreateReceiptFilterRequest"},
38
- "output":{
39
- "shape":"CreateReceiptFilterResponse",
40
- "resultWrapper":"CreateReceiptFilterResult"
41
- },
42
- "errors":[
43
- {"shape":"LimitExceededException"},
44
- {"shape":"AlreadyExistsException"}
45
- ]
46
- },
47
- "CreateReceiptRule":{
48
- "name":"CreateReceiptRule",
49
- "http":{
50
- "method":"POST",
51
- "requestUri":"/"
52
- },
53
- "input":{"shape":"CreateReceiptRuleRequest"},
54
- "output":{
55
- "shape":"CreateReceiptRuleResponse",
56
- "resultWrapper":"CreateReceiptRuleResult"
57
- },
58
- "errors":[
59
- {"shape":"InvalidSnsTopicException"},
60
- {"shape":"InvalidS3ConfigurationException"},
61
- {"shape":"InvalidLambdaFunctionException"},
62
- {"shape":"AlreadyExistsException"},
63
- {"shape":"RuleDoesNotExistException"},
64
- {"shape":"RuleSetDoesNotExistException"},
65
- {"shape":"LimitExceededException"}
66
- ]
67
- },
68
- "CreateReceiptRuleSet":{
69
- "name":"CreateReceiptRuleSet",
70
- "http":{
71
- "method":"POST",
72
- "requestUri":"/"
73
- },
74
- "input":{"shape":"CreateReceiptRuleSetRequest"},
75
- "output":{
76
- "shape":"CreateReceiptRuleSetResponse",
77
- "resultWrapper":"CreateReceiptRuleSetResult"
78
- },
79
- "errors":[
80
- {"shape":"AlreadyExistsException"},
81
- {"shape":"LimitExceededException"}
82
- ]
83
- },
84
- "DeleteIdentity":{
85
- "name":"DeleteIdentity",
86
- "http":{
87
- "method":"POST",
88
- "requestUri":"/"
89
- },
90
- "input":{"shape":"DeleteIdentityRequest"},
91
- "output":{
92
- "shape":"DeleteIdentityResponse",
93
- "resultWrapper":"DeleteIdentityResult"
94
- }
95
- },
96
- "DeleteIdentityPolicy":{
97
- "name":"DeleteIdentityPolicy",
98
- "http":{
99
- "method":"POST",
100
- "requestUri":"/"
101
- },
102
- "input":{"shape":"DeleteIdentityPolicyRequest"},
103
- "output":{
104
- "shape":"DeleteIdentityPolicyResponse",
105
- "resultWrapper":"DeleteIdentityPolicyResult"
106
- }
107
- },
108
- "DeleteReceiptFilter":{
109
- "name":"DeleteReceiptFilter",
110
- "http":{
111
- "method":"POST",
112
- "requestUri":"/"
113
- },
114
- "input":{"shape":"DeleteReceiptFilterRequest"},
115
- "output":{
116
- "shape":"DeleteReceiptFilterResponse",
117
- "resultWrapper":"DeleteReceiptFilterResult"
118
- }
119
- },
120
- "DeleteReceiptRule":{
121
- "name":"DeleteReceiptRule",
122
- "http":{
123
- "method":"POST",
124
- "requestUri":"/"
125
- },
126
- "input":{"shape":"DeleteReceiptRuleRequest"},
127
- "output":{
128
- "shape":"DeleteReceiptRuleResponse",
129
- "resultWrapper":"DeleteReceiptRuleResult"
130
- },
131
- "errors":[
132
- {"shape":"RuleSetDoesNotExistException"}
133
- ]
134
- },
135
- "DeleteReceiptRuleSet":{
136
- "name":"DeleteReceiptRuleSet",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"DeleteReceiptRuleSetRequest"},
142
- "output":{
143
- "shape":"DeleteReceiptRuleSetResponse",
144
- "resultWrapper":"DeleteReceiptRuleSetResult"
145
- },
146
- "errors":[
147
- {"shape":"CannotDeleteException"}
148
- ]
149
- },
150
- "DeleteVerifiedEmailAddress":{
151
- "name":"DeleteVerifiedEmailAddress",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"DeleteVerifiedEmailAddressRequest"}
157
- },
158
- "DescribeActiveReceiptRuleSet":{
159
- "name":"DescribeActiveReceiptRuleSet",
160
- "http":{
161
- "method":"POST",
162
- "requestUri":"/"
163
- },
164
- "input":{"shape":"DescribeActiveReceiptRuleSetRequest"},
165
- "output":{
166
- "shape":"DescribeActiveReceiptRuleSetResponse",
167
- "resultWrapper":"DescribeActiveReceiptRuleSetResult"
168
- }
169
- },
170
- "DescribeReceiptRule":{
171
- "name":"DescribeReceiptRule",
172
- "http":{
173
- "method":"POST",
174
- "requestUri":"/"
175
- },
176
- "input":{"shape":"DescribeReceiptRuleRequest"},
177
- "output":{
178
- "shape":"DescribeReceiptRuleResponse",
179
- "resultWrapper":"DescribeReceiptRuleResult"
180
- },
181
- "errors":[
182
- {"shape":"RuleDoesNotExistException"},
183
- {"shape":"RuleSetDoesNotExistException"}
184
- ]
185
- },
186
- "DescribeReceiptRuleSet":{
187
- "name":"DescribeReceiptRuleSet",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/"
191
- },
192
- "input":{"shape":"DescribeReceiptRuleSetRequest"},
193
- "output":{
194
- "shape":"DescribeReceiptRuleSetResponse",
195
- "resultWrapper":"DescribeReceiptRuleSetResult"
196
- },
197
- "errors":[
198
- {"shape":"RuleSetDoesNotExistException"}
199
- ]
200
- },
201
- "GetIdentityDkimAttributes":{
202
- "name":"GetIdentityDkimAttributes",
203
- "http":{
204
- "method":"POST",
205
- "requestUri":"/"
206
- },
207
- "input":{"shape":"GetIdentityDkimAttributesRequest"},
208
- "output":{
209
- "shape":"GetIdentityDkimAttributesResponse",
210
- "resultWrapper":"GetIdentityDkimAttributesResult"
211
- }
212
- },
213
- "GetIdentityMailFromDomainAttributes":{
214
- "name":"GetIdentityMailFromDomainAttributes",
215
- "http":{
216
- "method":"POST",
217
- "requestUri":"/"
218
- },
219
- "input":{"shape":"GetIdentityMailFromDomainAttributesRequest"},
220
- "output":{
221
- "shape":"GetIdentityMailFromDomainAttributesResponse",
222
- "resultWrapper":"GetIdentityMailFromDomainAttributesResult"
223
- }
224
- },
225
- "GetIdentityNotificationAttributes":{
226
- "name":"GetIdentityNotificationAttributes",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/"
230
- },
231
- "input":{"shape":"GetIdentityNotificationAttributesRequest"},
232
- "output":{
233
- "shape":"GetIdentityNotificationAttributesResponse",
234
- "resultWrapper":"GetIdentityNotificationAttributesResult"
235
- }
236
- },
237
- "GetIdentityPolicies":{
238
- "name":"GetIdentityPolicies",
239
- "http":{
240
- "method":"POST",
241
- "requestUri":"/"
242
- },
243
- "input":{"shape":"GetIdentityPoliciesRequest"},
244
- "output":{
245
- "shape":"GetIdentityPoliciesResponse",
246
- "resultWrapper":"GetIdentityPoliciesResult"
247
- }
248
- },
249
- "GetIdentityVerificationAttributes":{
250
- "name":"GetIdentityVerificationAttributes",
251
- "http":{
252
- "method":"POST",
253
- "requestUri":"/"
254
- },
255
- "input":{"shape":"GetIdentityVerificationAttributesRequest"},
256
- "output":{
257
- "shape":"GetIdentityVerificationAttributesResponse",
258
- "resultWrapper":"GetIdentityVerificationAttributesResult"
259
- }
260
- },
261
- "GetSendQuota":{
262
- "name":"GetSendQuota",
263
- "http":{
264
- "method":"POST",
265
- "requestUri":"/"
266
- },
267
- "output":{
268
- "shape":"GetSendQuotaResponse",
269
- "resultWrapper":"GetSendQuotaResult"
270
- }
271
- },
272
- "GetSendStatistics":{
273
- "name":"GetSendStatistics",
274
- "http":{
275
- "method":"POST",
276
- "requestUri":"/"
277
- },
278
- "output":{
279
- "shape":"GetSendStatisticsResponse",
280
- "resultWrapper":"GetSendStatisticsResult"
281
- }
282
- },
283
- "ListIdentities":{
284
- "name":"ListIdentities",
285
- "http":{
286
- "method":"POST",
287
- "requestUri":"/"
288
- },
289
- "input":{"shape":"ListIdentitiesRequest"},
290
- "output":{
291
- "shape":"ListIdentitiesResponse",
292
- "resultWrapper":"ListIdentitiesResult"
293
- }
294
- },
295
- "ListIdentityPolicies":{
296
- "name":"ListIdentityPolicies",
297
- "http":{
298
- "method":"POST",
299
- "requestUri":"/"
300
- },
301
- "input":{"shape":"ListIdentityPoliciesRequest"},
302
- "output":{
303
- "shape":"ListIdentityPoliciesResponse",
304
- "resultWrapper":"ListIdentityPoliciesResult"
305
- }
306
- },
307
- "ListReceiptFilters":{
308
- "name":"ListReceiptFilters",
309
- "http":{
310
- "method":"POST",
311
- "requestUri":"/"
312
- },
313
- "input":{"shape":"ListReceiptFiltersRequest"},
314
- "output":{
315
- "shape":"ListReceiptFiltersResponse",
316
- "resultWrapper":"ListReceiptFiltersResult"
317
- }
318
- },
319
- "ListReceiptRuleSets":{
320
- "name":"ListReceiptRuleSets",
321
- "http":{
322
- "method":"POST",
323
- "requestUri":"/"
324
- },
325
- "input":{"shape":"ListReceiptRuleSetsRequest"},
326
- "output":{
327
- "shape":"ListReceiptRuleSetsResponse",
328
- "resultWrapper":"ListReceiptRuleSetsResult"
329
- }
330
- },
331
- "ListVerifiedEmailAddresses":{
332
- "name":"ListVerifiedEmailAddresses",
333
- "http":{
334
- "method":"POST",
335
- "requestUri":"/"
336
- },
337
- "output":{
338
- "shape":"ListVerifiedEmailAddressesResponse",
339
- "resultWrapper":"ListVerifiedEmailAddressesResult"
340
- }
341
- },
342
- "PutIdentityPolicy":{
343
- "name":"PutIdentityPolicy",
344
- "http":{
345
- "method":"POST",
346
- "requestUri":"/"
347
- },
348
- "input":{"shape":"PutIdentityPolicyRequest"},
349
- "output":{
350
- "shape":"PutIdentityPolicyResponse",
351
- "resultWrapper":"PutIdentityPolicyResult"
352
- },
353
- "errors":[
354
- {"shape":"InvalidPolicyException"}
355
- ]
356
- },
357
- "ReorderReceiptRuleSet":{
358
- "name":"ReorderReceiptRuleSet",
359
- "http":{
360
- "method":"POST",
361
- "requestUri":"/"
362
- },
363
- "input":{"shape":"ReorderReceiptRuleSetRequest"},
364
- "output":{
365
- "shape":"ReorderReceiptRuleSetResponse",
366
- "resultWrapper":"ReorderReceiptRuleSetResult"
367
- },
368
- "errors":[
369
- {"shape":"RuleSetDoesNotExistException"},
370
- {"shape":"RuleDoesNotExistException"}
371
- ]
372
- },
373
- "SendBounce":{
374
- "name":"SendBounce",
375
- "http":{
376
- "method":"POST",
377
- "requestUri":"/"
378
- },
379
- "input":{"shape":"SendBounceRequest"},
380
- "output":{
381
- "shape":"SendBounceResponse",
382
- "resultWrapper":"SendBounceResult"
383
- },
384
- "errors":[
385
- {"shape":"MessageRejected"}
386
- ]
387
- },
388
- "SendEmail":{
389
- "name":"SendEmail",
390
- "http":{
391
- "method":"POST",
392
- "requestUri":"/"
393
- },
394
- "input":{"shape":"SendEmailRequest"},
395
- "output":{
396
- "shape":"SendEmailResponse",
397
- "resultWrapper":"SendEmailResult"
398
- },
399
- "errors":[
400
- {"shape":"MessageRejected"},
401
- {"shape":"MailFromDomainNotVerifiedException"}
402
- ]
403
- },
404
- "SendRawEmail":{
405
- "name":"SendRawEmail",
406
- "http":{
407
- "method":"POST",
408
- "requestUri":"/"
409
- },
410
- "input":{"shape":"SendRawEmailRequest"},
411
- "output":{
412
- "shape":"SendRawEmailResponse",
413
- "resultWrapper":"SendRawEmailResult"
414
- },
415
- "errors":[
416
- {"shape":"MessageRejected"},
417
- {"shape":"MailFromDomainNotVerifiedException"}
418
- ]
419
- },
420
- "SetActiveReceiptRuleSet":{
421
- "name":"SetActiveReceiptRuleSet",
422
- "http":{
423
- "method":"POST",
424
- "requestUri":"/"
425
- },
426
- "input":{"shape":"SetActiveReceiptRuleSetRequest"},
427
- "output":{
428
- "shape":"SetActiveReceiptRuleSetResponse",
429
- "resultWrapper":"SetActiveReceiptRuleSetResult"
430
- },
431
- "errors":[
432
- {"shape":"RuleSetDoesNotExistException"}
433
- ]
434
- },
435
- "SetIdentityDkimEnabled":{
436
- "name":"SetIdentityDkimEnabled",
437
- "http":{
438
- "method":"POST",
439
- "requestUri":"/"
440
- },
441
- "input":{"shape":"SetIdentityDkimEnabledRequest"},
442
- "output":{
443
- "shape":"SetIdentityDkimEnabledResponse",
444
- "resultWrapper":"SetIdentityDkimEnabledResult"
445
- }
446
- },
447
- "SetIdentityFeedbackForwardingEnabled":{
448
- "name":"SetIdentityFeedbackForwardingEnabled",
449
- "http":{
450
- "method":"POST",
451
- "requestUri":"/"
452
- },
453
- "input":{"shape":"SetIdentityFeedbackForwardingEnabledRequest"},
454
- "output":{
455
- "shape":"SetIdentityFeedbackForwardingEnabledResponse",
456
- "resultWrapper":"SetIdentityFeedbackForwardingEnabledResult"
457
- }
458
- },
459
- "SetIdentityHeadersInNotificationsEnabled":{
460
- "name":"SetIdentityHeadersInNotificationsEnabled",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"SetIdentityHeadersInNotificationsEnabledRequest"},
466
- "output":{
467
- "shape":"SetIdentityHeadersInNotificationsEnabledResponse",
468
- "resultWrapper":"SetIdentityHeadersInNotificationsEnabledResult"
469
- }
470
- },
471
- "SetIdentityMailFromDomain":{
472
- "name":"SetIdentityMailFromDomain",
473
- "http":{
474
- "method":"POST",
475
- "requestUri":"/"
476
- },
477
- "input":{"shape":"SetIdentityMailFromDomainRequest"},
478
- "output":{
479
- "shape":"SetIdentityMailFromDomainResponse",
480
- "resultWrapper":"SetIdentityMailFromDomainResult"
481
- }
482
- },
483
- "SetIdentityNotificationTopic":{
484
- "name":"SetIdentityNotificationTopic",
485
- "http":{
486
- "method":"POST",
487
- "requestUri":"/"
488
- },
489
- "input":{"shape":"SetIdentityNotificationTopicRequest"},
490
- "output":{
491
- "shape":"SetIdentityNotificationTopicResponse",
492
- "resultWrapper":"SetIdentityNotificationTopicResult"
493
- }
494
- },
495
- "SetReceiptRulePosition":{
496
- "name":"SetReceiptRulePosition",
497
- "http":{
498
- "method":"POST",
499
- "requestUri":"/"
500
- },
501
- "input":{"shape":"SetReceiptRulePositionRequest"},
502
- "output":{
503
- "shape":"SetReceiptRulePositionResponse",
504
- "resultWrapper":"SetReceiptRulePositionResult"
505
- },
506
- "errors":[
507
- {"shape":"RuleSetDoesNotExistException"},
508
- {"shape":"RuleDoesNotExistException"}
509
- ]
510
- },
511
- "UpdateReceiptRule":{
512
- "name":"UpdateReceiptRule",
513
- "http":{
514
- "method":"POST",
515
- "requestUri":"/"
516
- },
517
- "input":{"shape":"UpdateReceiptRuleRequest"},
518
- "output":{
519
- "shape":"UpdateReceiptRuleResponse",
520
- "resultWrapper":"UpdateReceiptRuleResult"
521
- },
522
- "errors":[
523
- {"shape":"InvalidSnsTopicException"},
524
- {"shape":"InvalidS3ConfigurationException"},
525
- {"shape":"InvalidLambdaFunctionException"},
526
- {"shape":"RuleSetDoesNotExistException"},
527
- {"shape":"RuleDoesNotExistException"},
528
- {"shape":"LimitExceededException"}
529
- ]
530
- },
531
- "VerifyDomainDkim":{
532
- "name":"VerifyDomainDkim",
533
- "http":{
534
- "method":"POST",
535
- "requestUri":"/"
536
- },
537
- "input":{"shape":"VerifyDomainDkimRequest"},
538
- "output":{
539
- "shape":"VerifyDomainDkimResponse",
540
- "resultWrapper":"VerifyDomainDkimResult"
541
- }
542
- },
543
- "VerifyDomainIdentity":{
544
- "name":"VerifyDomainIdentity",
545
- "http":{
546
- "method":"POST",
547
- "requestUri":"/"
548
- },
549
- "input":{"shape":"VerifyDomainIdentityRequest"},
550
- "output":{
551
- "shape":"VerifyDomainIdentityResponse",
552
- "resultWrapper":"VerifyDomainIdentityResult"
553
- }
554
- },
555
- "VerifyEmailAddress":{
556
- "name":"VerifyEmailAddress",
557
- "http":{
558
- "method":"POST",
559
- "requestUri":"/"
560
- },
561
- "input":{"shape":"VerifyEmailAddressRequest"}
562
- },
563
- "VerifyEmailIdentity":{
564
- "name":"VerifyEmailIdentity",
565
- "http":{
566
- "method":"POST",
567
- "requestUri":"/"
568
- },
569
- "input":{"shape":"VerifyEmailIdentityRequest"},
570
- "output":{
571
- "shape":"VerifyEmailIdentityResponse",
572
- "resultWrapper":"VerifyEmailIdentityResult"
573
- }
574
- }
575
- },
576
- "shapes":{
577
- "AddHeaderAction":{
578
- "type":"structure",
579
- "required":[
580
- "HeaderName",
581
- "HeaderValue"
582
- ],
583
- "members":{
584
- "HeaderName":{"shape":"HeaderName"},
585
- "HeaderValue":{"shape":"HeaderValue"}
586
- }
587
- },
588
- "Address":{"type":"string"},
589
- "AddressList":{
590
- "type":"list",
591
- "member":{"shape":"Address"}
592
- },
593
- "AlreadyExistsException":{
594
- "type":"structure",
595
- "members":{
596
- "Name":{"shape":"RuleOrRuleSetName"}
597
- },
598
- "error":{
599
- "code":"AlreadyExists",
600
- "httpStatusCode":400,
601
- "senderFault":true
602
- },
603
- "exception":true
604
- },
605
- "AmazonResourceName":{"type":"string"},
606
- "ArrivalDate":{"type":"timestamp"},
607
- "BehaviorOnMXFailure":{
608
- "type":"string",
609
- "enum":[
610
- "UseDefaultValue",
611
- "RejectMessage"
612
- ]
613
- },
614
- "Body":{
615
- "type":"structure",
616
- "members":{
617
- "Text":{"shape":"Content"},
618
- "Html":{"shape":"Content"}
619
- }
620
- },
621
- "BounceAction":{
622
- "type":"structure",
623
- "required":[
624
- "SmtpReplyCode",
625
- "Message",
626
- "Sender"
627
- ],
628
- "members":{
629
- "TopicArn":{"shape":"AmazonResourceName"},
630
- "SmtpReplyCode":{"shape":"BounceSmtpReplyCode"},
631
- "StatusCode":{"shape":"BounceStatusCode"},
632
- "Message":{"shape":"BounceMessage"},
633
- "Sender":{"shape":"Address"}
634
- }
635
- },
636
- "BounceMessage":{"type":"string"},
637
- "BounceSmtpReplyCode":{"type":"string"},
638
- "BounceStatusCode":{"type":"string"},
639
- "BounceType":{
640
- "type":"string",
641
- "enum":[
642
- "DoesNotExist",
643
- "MessageTooLarge",
644
- "ExceededQuota",
645
- "ContentRejected",
646
- "Undefined",
647
- "TemporaryFailure"
648
- ]
649
- },
650
- "BouncedRecipientInfo":{
651
- "type":"structure",
652
- "required":["Recipient"],
653
- "members":{
654
- "Recipient":{"shape":"Address"},
655
- "RecipientArn":{"shape":"AmazonResourceName"},
656
- "BounceType":{"shape":"BounceType"},
657
- "RecipientDsnFields":{"shape":"RecipientDsnFields"}
658
- }
659
- },
660
- "BouncedRecipientInfoList":{
661
- "type":"list",
662
- "member":{"shape":"BouncedRecipientInfo"}
663
- },
664
- "CannotDeleteException":{
665
- "type":"structure",
666
- "members":{
667
- "Name":{"shape":"RuleOrRuleSetName"}
668
- },
669
- "error":{
670
- "code":"CannotDelete",
671
- "httpStatusCode":400,
672
- "senderFault":true
673
- },
674
- "exception":true
675
- },
676
- "Charset":{"type":"string"},
677
- "Cidr":{"type":"string"},
678
- "CloneReceiptRuleSetRequest":{
679
- "type":"structure",
680
- "required":[
681
- "RuleSetName",
682
- "OriginalRuleSetName"
683
- ],
684
- "members":{
685
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
686
- "OriginalRuleSetName":{"shape":"ReceiptRuleSetName"}
687
- }
688
- },
689
- "CloneReceiptRuleSetResponse":{
690
- "type":"structure",
691
- "members":{
692
- }
693
- },
694
- "Content":{
695
- "type":"structure",
696
- "required":["Data"],
697
- "members":{
698
- "Data":{"shape":"MessageData"},
699
- "Charset":{"shape":"Charset"}
700
- }
701
- },
702
- "Counter":{"type":"long"},
703
- "CreateReceiptFilterRequest":{
704
- "type":"structure",
705
- "required":["Filter"],
706
- "members":{
707
- "Filter":{"shape":"ReceiptFilter"}
708
- }
709
- },
710
- "CreateReceiptFilterResponse":{
711
- "type":"structure",
712
- "members":{
713
- }
714
- },
715
- "CreateReceiptRuleRequest":{
716
- "type":"structure",
717
- "required":[
718
- "RuleSetName",
719
- "Rule"
720
- ],
721
- "members":{
722
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
723
- "After":{"shape":"ReceiptRuleName"},
724
- "Rule":{"shape":"ReceiptRule"}
725
- }
726
- },
727
- "CreateReceiptRuleResponse":{
728
- "type":"structure",
729
- "members":{
730
- }
731
- },
732
- "CreateReceiptRuleSetRequest":{
733
- "type":"structure",
734
- "required":["RuleSetName"],
735
- "members":{
736
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
737
- }
738
- },
739
- "CreateReceiptRuleSetResponse":{
740
- "type":"structure",
741
- "members":{
742
- }
743
- },
744
- "CustomMailFromStatus":{
745
- "type":"string",
746
- "enum":[
747
- "Pending",
748
- "Success",
749
- "Failed",
750
- "TemporaryFailure"
751
- ]
752
- },
753
- "DeleteIdentityPolicyRequest":{
754
- "type":"structure",
755
- "required":[
756
- "Identity",
757
- "PolicyName"
758
- ],
759
- "members":{
760
- "Identity":{"shape":"Identity"},
761
- "PolicyName":{"shape":"PolicyName"}
762
- }
763
- },
764
- "DeleteIdentityPolicyResponse":{
765
- "type":"structure",
766
- "members":{
767
- }
768
- },
769
- "DeleteIdentityRequest":{
770
- "type":"structure",
771
- "required":["Identity"],
772
- "members":{
773
- "Identity":{"shape":"Identity"}
774
- }
775
- },
776
- "DeleteIdentityResponse":{
777
- "type":"structure",
778
- "members":{
779
- }
780
- },
781
- "DeleteReceiptFilterRequest":{
782
- "type":"structure",
783
- "required":["FilterName"],
784
- "members":{
785
- "FilterName":{"shape":"ReceiptFilterName"}
786
- }
787
- },
788
- "DeleteReceiptFilterResponse":{
789
- "type":"structure",
790
- "members":{
791
- }
792
- },
793
- "DeleteReceiptRuleRequest":{
794
- "type":"structure",
795
- "required":[
796
- "RuleSetName",
797
- "RuleName"
798
- ],
799
- "members":{
800
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
801
- "RuleName":{"shape":"ReceiptRuleName"}
802
- }
803
- },
804
- "DeleteReceiptRuleResponse":{
805
- "type":"structure",
806
- "members":{
807
- }
808
- },
809
- "DeleteReceiptRuleSetRequest":{
810
- "type":"structure",
811
- "required":["RuleSetName"],
812
- "members":{
813
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
814
- }
815
- },
816
- "DeleteReceiptRuleSetResponse":{
817
- "type":"structure",
818
- "members":{
819
- }
820
- },
821
- "DeleteVerifiedEmailAddressRequest":{
822
- "type":"structure",
823
- "required":["EmailAddress"],
824
- "members":{
825
- "EmailAddress":{"shape":"Address"}
826
- }
827
- },
828
- "DescribeActiveReceiptRuleSetRequest":{
829
- "type":"structure",
830
- "members":{
831
- }
832
- },
833
- "DescribeActiveReceiptRuleSetResponse":{
834
- "type":"structure",
835
- "members":{
836
- "Metadata":{"shape":"ReceiptRuleSetMetadata"},
837
- "Rules":{"shape":"ReceiptRulesList"}
838
- }
839
- },
840
- "DescribeReceiptRuleRequest":{
841
- "type":"structure",
842
- "required":[
843
- "RuleSetName",
844
- "RuleName"
845
- ],
846
- "members":{
847
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
848
- "RuleName":{"shape":"ReceiptRuleName"}
849
- }
850
- },
851
- "DescribeReceiptRuleResponse":{
852
- "type":"structure",
853
- "members":{
854
- "Rule":{"shape":"ReceiptRule"}
855
- }
856
- },
857
- "DescribeReceiptRuleSetRequest":{
858
- "type":"structure",
859
- "required":["RuleSetName"],
860
- "members":{
861
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
862
- }
863
- },
864
- "DescribeReceiptRuleSetResponse":{
865
- "type":"structure",
866
- "members":{
867
- "Metadata":{"shape":"ReceiptRuleSetMetadata"},
868
- "Rules":{"shape":"ReceiptRulesList"}
869
- }
870
- },
871
- "Destination":{
872
- "type":"structure",
873
- "members":{
874
- "ToAddresses":{"shape":"AddressList"},
875
- "CcAddresses":{"shape":"AddressList"},
876
- "BccAddresses":{"shape":"AddressList"}
877
- }
878
- },
879
- "DiagnosticCode":{"type":"string"},
880
- "DkimAttributes":{
881
- "type":"map",
882
- "key":{"shape":"Identity"},
883
- "value":{"shape":"IdentityDkimAttributes"}
884
- },
885
- "Domain":{"type":"string"},
886
- "DsnAction":{
887
- "type":"string",
888
- "enum":[
889
- "failed",
890
- "delayed",
891
- "delivered",
892
- "relayed",
893
- "expanded"
894
- ]
895
- },
896
- "DsnStatus":{"type":"string"},
897
- "Enabled":{"type":"boolean"},
898
- "Explanation":{"type":"string"},
899
- "ExtensionField":{
900
- "type":"structure",
901
- "required":[
902
- "Name",
903
- "Value"
904
- ],
905
- "members":{
906
- "Name":{"shape":"ExtensionFieldName"},
907
- "Value":{"shape":"ExtensionFieldValue"}
908
- }
909
- },
910
- "ExtensionFieldList":{
911
- "type":"list",
912
- "member":{"shape":"ExtensionField"}
913
- },
914
- "ExtensionFieldName":{"type":"string"},
915
- "ExtensionFieldValue":{"type":"string"},
916
- "GetIdentityDkimAttributesRequest":{
917
- "type":"structure",
918
- "required":["Identities"],
919
- "members":{
920
- "Identities":{"shape":"IdentityList"}
921
- }
922
- },
923
- "GetIdentityDkimAttributesResponse":{
924
- "type":"structure",
925
- "required":["DkimAttributes"],
926
- "members":{
927
- "DkimAttributes":{"shape":"DkimAttributes"}
928
- }
929
- },
930
- "GetIdentityMailFromDomainAttributesRequest":{
931
- "type":"structure",
932
- "required":["Identities"],
933
- "members":{
934
- "Identities":{"shape":"IdentityList"}
935
- }
936
- },
937
- "GetIdentityMailFromDomainAttributesResponse":{
938
- "type":"structure",
939
- "required":["MailFromDomainAttributes"],
940
- "members":{
941
- "MailFromDomainAttributes":{"shape":"MailFromDomainAttributes"}
942
- }
943
- },
944
- "GetIdentityNotificationAttributesRequest":{
945
- "type":"structure",
946
- "required":["Identities"],
947
- "members":{
948
- "Identities":{"shape":"IdentityList"}
949
- }
950
- },
951
- "GetIdentityNotificationAttributesResponse":{
952
- "type":"structure",
953
- "required":["NotificationAttributes"],
954
- "members":{
955
- "NotificationAttributes":{"shape":"NotificationAttributes"}
956
- }
957
- },
958
- "GetIdentityPoliciesRequest":{
959
- "type":"structure",
960
- "required":[
961
- "Identity",
962
- "PolicyNames"
963
- ],
964
- "members":{
965
- "Identity":{"shape":"Identity"},
966
- "PolicyNames":{"shape":"PolicyNameList"}
967
- }
968
- },
969
- "GetIdentityPoliciesResponse":{
970
- "type":"structure",
971
- "required":["Policies"],
972
- "members":{
973
- "Policies":{"shape":"PolicyMap"}
974
- }
975
- },
976
- "GetIdentityVerificationAttributesRequest":{
977
- "type":"structure",
978
- "required":["Identities"],
979
- "members":{
980
- "Identities":{"shape":"IdentityList"}
981
- }
982
- },
983
- "GetIdentityVerificationAttributesResponse":{
984
- "type":"structure",
985
- "required":["VerificationAttributes"],
986
- "members":{
987
- "VerificationAttributes":{"shape":"VerificationAttributes"}
988
- }
989
- },
990
- "GetSendQuotaResponse":{
991
- "type":"structure",
992
- "members":{
993
- "Max24HourSend":{"shape":"Max24HourSend"},
994
- "MaxSendRate":{"shape":"MaxSendRate"},
995
- "SentLast24Hours":{"shape":"SentLast24Hours"}
996
- }
997
- },
998
- "GetSendStatisticsResponse":{
999
- "type":"structure",
1000
- "members":{
1001
- "SendDataPoints":{"shape":"SendDataPointList"}
1002
- }
1003
- },
1004
- "HeaderName":{"type":"string"},
1005
- "HeaderValue":{"type":"string"},
1006
- "Identity":{"type":"string"},
1007
- "IdentityDkimAttributes":{
1008
- "type":"structure",
1009
- "required":[
1010
- "DkimEnabled",
1011
- "DkimVerificationStatus"
1012
- ],
1013
- "members":{
1014
- "DkimEnabled":{"shape":"Enabled"},
1015
- "DkimVerificationStatus":{"shape":"VerificationStatus"},
1016
- "DkimTokens":{"shape":"VerificationTokenList"}
1017
- }
1018
- },
1019
- "IdentityList":{
1020
- "type":"list",
1021
- "member":{"shape":"Identity"}
1022
- },
1023
- "IdentityMailFromDomainAttributes":{
1024
- "type":"structure",
1025
- "required":[
1026
- "MailFromDomain",
1027
- "MailFromDomainStatus",
1028
- "BehaviorOnMXFailure"
1029
- ],
1030
- "members":{
1031
- "MailFromDomain":{"shape":"MailFromDomainName"},
1032
- "MailFromDomainStatus":{"shape":"CustomMailFromStatus"},
1033
- "BehaviorOnMXFailure":{"shape":"BehaviorOnMXFailure"}
1034
- }
1035
- },
1036
- "IdentityNotificationAttributes":{
1037
- "type":"structure",
1038
- "required":[
1039
- "BounceTopic",
1040
- "ComplaintTopic",
1041
- "DeliveryTopic",
1042
- "ForwardingEnabled"
1043
- ],
1044
- "members":{
1045
- "BounceTopic":{"shape":"NotificationTopic"},
1046
- "ComplaintTopic":{"shape":"NotificationTopic"},
1047
- "DeliveryTopic":{"shape":"NotificationTopic"},
1048
- "ForwardingEnabled":{"shape":"Enabled"},
1049
- "HeadersInBounceNotificationsEnabled":{"shape":"Enabled"},
1050
- "HeadersInComplaintNotificationsEnabled":{"shape":"Enabled"},
1051
- "HeadersInDeliveryNotificationsEnabled":{"shape":"Enabled"}
1052
- }
1053
- },
1054
- "IdentityType":{
1055
- "type":"string",
1056
- "enum":[
1057
- "EmailAddress",
1058
- "Domain"
1059
- ]
1060
- },
1061
- "IdentityVerificationAttributes":{
1062
- "type":"structure",
1063
- "required":["VerificationStatus"],
1064
- "members":{
1065
- "VerificationStatus":{"shape":"VerificationStatus"},
1066
- "VerificationToken":{"shape":"VerificationToken"}
1067
- }
1068
- },
1069
- "InvalidLambdaFunctionException":{
1070
- "type":"structure",
1071
- "members":{
1072
- "FunctionArn":{"shape":"AmazonResourceName"}
1073
- },
1074
- "error":{
1075
- "code":"InvalidLambdaFunction",
1076
- "httpStatusCode":400,
1077
- "senderFault":true
1078
- },
1079
- "exception":true
1080
- },
1081
- "InvalidPolicyException":{
1082
- "type":"structure",
1083
- "members":{
1084
- },
1085
- "error":{
1086
- "code":"InvalidPolicy",
1087
- "httpStatusCode":400,
1088
- "senderFault":true
1089
- },
1090
- "exception":true
1091
- },
1092
- "InvalidS3ConfigurationException":{
1093
- "type":"structure",
1094
- "members":{
1095
- "Bucket":{"shape":"S3BucketName"}
1096
- },
1097
- "error":{
1098
- "code":"InvalidS3Configuration",
1099
- "httpStatusCode":400,
1100
- "senderFault":true
1101
- },
1102
- "exception":true
1103
- },
1104
- "InvalidSnsTopicException":{
1105
- "type":"structure",
1106
- "members":{
1107
- "Topic":{"shape":"AmazonResourceName"}
1108
- },
1109
- "error":{
1110
- "code":"InvalidSnsTopic",
1111
- "httpStatusCode":400,
1112
- "senderFault":true
1113
- },
1114
- "exception":true
1115
- },
1116
- "InvocationType":{
1117
- "type":"string",
1118
- "enum":[
1119
- "Event",
1120
- "RequestResponse"
1121
- ]
1122
- },
1123
- "LambdaAction":{
1124
- "type":"structure",
1125
- "required":["FunctionArn"],
1126
- "members":{
1127
- "TopicArn":{"shape":"AmazonResourceName"},
1128
- "FunctionArn":{"shape":"AmazonResourceName"},
1129
- "InvocationType":{"shape":"InvocationType"}
1130
- }
1131
- },
1132
- "LastAttemptDate":{"type":"timestamp"},
1133
- "LimitExceededException":{
1134
- "type":"structure",
1135
- "members":{
1136
- },
1137
- "error":{
1138
- "code":"LimitExceeded",
1139
- "httpStatusCode":400,
1140
- "senderFault":true
1141
- },
1142
- "exception":true
1143
- },
1144
- "ListIdentitiesRequest":{
1145
- "type":"structure",
1146
- "members":{
1147
- "IdentityType":{"shape":"IdentityType"},
1148
- "NextToken":{"shape":"NextToken"},
1149
- "MaxItems":{"shape":"MaxItems"}
1150
- }
1151
- },
1152
- "ListIdentitiesResponse":{
1153
- "type":"structure",
1154
- "required":["Identities"],
1155
- "members":{
1156
- "Identities":{"shape":"IdentityList"},
1157
- "NextToken":{"shape":"NextToken"}
1158
- }
1159
- },
1160
- "ListIdentityPoliciesRequest":{
1161
- "type":"structure",
1162
- "required":["Identity"],
1163
- "members":{
1164
- "Identity":{"shape":"Identity"}
1165
- }
1166
- },
1167
- "ListIdentityPoliciesResponse":{
1168
- "type":"structure",
1169
- "required":["PolicyNames"],
1170
- "members":{
1171
- "PolicyNames":{"shape":"PolicyNameList"}
1172
- }
1173
- },
1174
- "ListReceiptFiltersRequest":{
1175
- "type":"structure",
1176
- "members":{
1177
- }
1178
- },
1179
- "ListReceiptFiltersResponse":{
1180
- "type":"structure",
1181
- "members":{
1182
- "Filters":{"shape":"ReceiptFilterList"}
1183
- }
1184
- },
1185
- "ListReceiptRuleSetsRequest":{
1186
- "type":"structure",
1187
- "members":{
1188
- "NextToken":{"shape":"NextToken"}
1189
- }
1190
- },
1191
- "ListReceiptRuleSetsResponse":{
1192
- "type":"structure",
1193
- "members":{
1194
- "RuleSets":{"shape":"ReceiptRuleSetsLists"},
1195
- "NextToken":{"shape":"NextToken"}
1196
- }
1197
- },
1198
- "ListVerifiedEmailAddressesResponse":{
1199
- "type":"structure",
1200
- "members":{
1201
- "VerifiedEmailAddresses":{"shape":"AddressList"}
1202
- }
1203
- },
1204
- "MailFromDomainAttributes":{
1205
- "type":"map",
1206
- "key":{"shape":"Identity"},
1207
- "value":{"shape":"IdentityMailFromDomainAttributes"}
1208
- },
1209
- "MailFromDomainName":{"type":"string"},
1210
- "MailFromDomainNotVerifiedException":{
1211
- "type":"structure",
1212
- "members":{
1213
- },
1214
- "error":{
1215
- "code":"MailFromDomainNotVerifiedException",
1216
- "httpStatusCode":400,
1217
- "senderFault":true
1218
- },
1219
- "exception":true
1220
- },
1221
- "Max24HourSend":{"type":"double"},
1222
- "MaxItems":{"type":"integer"},
1223
- "MaxSendRate":{"type":"double"},
1224
- "Message":{
1225
- "type":"structure",
1226
- "required":[
1227
- "Subject",
1228
- "Body"
1229
- ],
1230
- "members":{
1231
- "Subject":{"shape":"Content"},
1232
- "Body":{"shape":"Body"}
1233
- }
1234
- },
1235
- "MessageData":{"type":"string"},
1236
- "MessageDsn":{
1237
- "type":"structure",
1238
- "required":["ReportingMta"],
1239
- "members":{
1240
- "ReportingMta":{"shape":"ReportingMta"},
1241
- "ArrivalDate":{"shape":"ArrivalDate"},
1242
- "ExtensionFields":{"shape":"ExtensionFieldList"}
1243
- }
1244
- },
1245
- "MessageId":{"type":"string"},
1246
- "MessageRejected":{
1247
- "type":"structure",
1248
- "members":{
1249
- },
1250
- "error":{
1251
- "code":"MessageRejected",
1252
- "httpStatusCode":400,
1253
- "senderFault":true
1254
- },
1255
- "exception":true
1256
- },
1257
- "NextToken":{"type":"string"},
1258
- "NotificationAttributes":{
1259
- "type":"map",
1260
- "key":{"shape":"Identity"},
1261
- "value":{"shape":"IdentityNotificationAttributes"}
1262
- },
1263
- "NotificationTopic":{"type":"string"},
1264
- "NotificationType":{
1265
- "type":"string",
1266
- "enum":[
1267
- "Bounce",
1268
- "Complaint",
1269
- "Delivery"
1270
- ]
1271
- },
1272
- "Policy":{
1273
- "type":"string",
1274
- "min":1
1275
- },
1276
- "PolicyMap":{
1277
- "type":"map",
1278
- "key":{"shape":"PolicyName"},
1279
- "value":{"shape":"Policy"}
1280
- },
1281
- "PolicyName":{
1282
- "type":"string",
1283
- "max":64,
1284
- "min":1
1285
- },
1286
- "PolicyNameList":{
1287
- "type":"list",
1288
- "member":{"shape":"PolicyName"}
1289
- },
1290
- "PutIdentityPolicyRequest":{
1291
- "type":"structure",
1292
- "required":[
1293
- "Identity",
1294
- "PolicyName",
1295
- "Policy"
1296
- ],
1297
- "members":{
1298
- "Identity":{"shape":"Identity"},
1299
- "PolicyName":{"shape":"PolicyName"},
1300
- "Policy":{"shape":"Policy"}
1301
- }
1302
- },
1303
- "PutIdentityPolicyResponse":{
1304
- "type":"structure",
1305
- "members":{
1306
- }
1307
- },
1308
- "RawMessage":{
1309
- "type":"structure",
1310
- "required":["Data"],
1311
- "members":{
1312
- "Data":{"shape":"RawMessageData"}
1313
- }
1314
- },
1315
- "RawMessageData":{"type":"blob"},
1316
- "ReceiptAction":{
1317
- "type":"structure",
1318
- "members":{
1319
- "S3Action":{"shape":"S3Action"},
1320
- "BounceAction":{"shape":"BounceAction"},
1321
- "WorkmailAction":{"shape":"WorkmailAction"},
1322
- "LambdaAction":{"shape":"LambdaAction"},
1323
- "StopAction":{"shape":"StopAction"},
1324
- "AddHeaderAction":{"shape":"AddHeaderAction"},
1325
- "SNSAction":{"shape":"SNSAction"}
1326
- }
1327
- },
1328
- "ReceiptActionsList":{
1329
- "type":"list",
1330
- "member":{"shape":"ReceiptAction"}
1331
- },
1332
- "ReceiptFilter":{
1333
- "type":"structure",
1334
- "required":[
1335
- "Name",
1336
- "IpFilter"
1337
- ],
1338
- "members":{
1339
- "Name":{"shape":"ReceiptFilterName"},
1340
- "IpFilter":{"shape":"ReceiptIpFilter"}
1341
- }
1342
- },
1343
- "ReceiptFilterList":{
1344
- "type":"list",
1345
- "member":{"shape":"ReceiptFilter"}
1346
- },
1347
- "ReceiptFilterName":{"type":"string"},
1348
- "ReceiptFilterPolicy":{
1349
- "type":"string",
1350
- "enum":[
1351
- "Block",
1352
- "Allow"
1353
- ]
1354
- },
1355
- "ReceiptIpFilter":{
1356
- "type":"structure",
1357
- "required":[
1358
- "Policy",
1359
- "Cidr"
1360
- ],
1361
- "members":{
1362
- "Policy":{"shape":"ReceiptFilterPolicy"},
1363
- "Cidr":{"shape":"Cidr"}
1364
- }
1365
- },
1366
- "ReceiptRule":{
1367
- "type":"structure",
1368
- "required":["Name"],
1369
- "members":{
1370
- "Name":{"shape":"ReceiptRuleName"},
1371
- "Enabled":{"shape":"Enabled"},
1372
- "TlsPolicy":{"shape":"TlsPolicy"},
1373
- "Recipients":{"shape":"RecipientsList"},
1374
- "Actions":{"shape":"ReceiptActionsList"},
1375
- "ScanEnabled":{"shape":"Enabled"}
1376
- }
1377
- },
1378
- "ReceiptRuleName":{"type":"string"},
1379
- "ReceiptRuleNamesList":{
1380
- "type":"list",
1381
- "member":{"shape":"ReceiptRuleName"}
1382
- },
1383
- "ReceiptRuleSetMetadata":{
1384
- "type":"structure",
1385
- "members":{
1386
- "Name":{"shape":"ReceiptRuleSetName"},
1387
- "CreatedTimestamp":{"shape":"Timestamp"}
1388
- }
1389
- },
1390
- "ReceiptRuleSetName":{"type":"string"},
1391
- "ReceiptRuleSetsLists":{
1392
- "type":"list",
1393
- "member":{"shape":"ReceiptRuleSetMetadata"}
1394
- },
1395
- "ReceiptRulesList":{
1396
- "type":"list",
1397
- "member":{"shape":"ReceiptRule"}
1398
- },
1399
- "Recipient":{"type":"string"},
1400
- "RecipientDsnFields":{
1401
- "type":"structure",
1402
- "required":[
1403
- "Action",
1404
- "Status"
1405
- ],
1406
- "members":{
1407
- "FinalRecipient":{"shape":"Address"},
1408
- "Action":{"shape":"DsnAction"},
1409
- "RemoteMta":{"shape":"RemoteMta"},
1410
- "Status":{"shape":"DsnStatus"},
1411
- "DiagnosticCode":{"shape":"DiagnosticCode"},
1412
- "LastAttemptDate":{"shape":"LastAttemptDate"},
1413
- "ExtensionFields":{"shape":"ExtensionFieldList"}
1414
- }
1415
- },
1416
- "RecipientsList":{
1417
- "type":"list",
1418
- "member":{"shape":"Recipient"}
1419
- },
1420
- "RemoteMta":{"type":"string"},
1421
- "ReorderReceiptRuleSetRequest":{
1422
- "type":"structure",
1423
- "required":[
1424
- "RuleSetName",
1425
- "RuleNames"
1426
- ],
1427
- "members":{
1428
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1429
- "RuleNames":{"shape":"ReceiptRuleNamesList"}
1430
- }
1431
- },
1432
- "ReorderReceiptRuleSetResponse":{
1433
- "type":"structure",
1434
- "members":{
1435
- }
1436
- },
1437
- "ReportingMta":{"type":"string"},
1438
- "RuleDoesNotExistException":{
1439
- "type":"structure",
1440
- "members":{
1441
- "Name":{"shape":"RuleOrRuleSetName"}
1442
- },
1443
- "error":{
1444
- "code":"RuleDoesNotExist",
1445
- "httpStatusCode":400,
1446
- "senderFault":true
1447
- },
1448
- "exception":true
1449
- },
1450
- "RuleOrRuleSetName":{"type":"string"},
1451
- "RuleSetDoesNotExistException":{
1452
- "type":"structure",
1453
- "members":{
1454
- "Name":{"shape":"RuleOrRuleSetName"}
1455
- },
1456
- "error":{
1457
- "code":"RuleSetDoesNotExist",
1458
- "httpStatusCode":400,
1459
- "senderFault":true
1460
- },
1461
- "exception":true
1462
- },
1463
- "S3Action":{
1464
- "type":"structure",
1465
- "required":["BucketName"],
1466
- "members":{
1467
- "TopicArn":{"shape":"AmazonResourceName"},
1468
- "BucketName":{"shape":"S3BucketName"},
1469
- "ObjectKeyPrefix":{"shape":"S3KeyPrefix"},
1470
- "KmsKeyArn":{"shape":"AmazonResourceName"}
1471
- }
1472
- },
1473
- "S3BucketName":{"type":"string"},
1474
- "S3KeyPrefix":{"type":"string"},
1475
- "SNSAction":{
1476
- "type":"structure",
1477
- "required":["TopicArn"],
1478
- "members":{
1479
- "TopicArn":{"shape":"AmazonResourceName"},
1480
- "Encoding":{"shape":"SNSActionEncoding"}
1481
- }
1482
- },
1483
- "SNSActionEncoding":{
1484
- "type":"string",
1485
- "enum":[
1486
- "UTF-8",
1487
- "Base64"
1488
- ]
1489
- },
1490
- "SendBounceRequest":{
1491
- "type":"structure",
1492
- "required":[
1493
- "OriginalMessageId",
1494
- "BounceSender",
1495
- "BouncedRecipientInfoList"
1496
- ],
1497
- "members":{
1498
- "OriginalMessageId":{"shape":"MessageId"},
1499
- "BounceSender":{"shape":"Address"},
1500
- "Explanation":{"shape":"Explanation"},
1501
- "MessageDsn":{"shape":"MessageDsn"},
1502
- "BouncedRecipientInfoList":{"shape":"BouncedRecipientInfoList"},
1503
- "BounceSenderArn":{"shape":"AmazonResourceName"}
1504
- }
1505
- },
1506
- "SendBounceResponse":{
1507
- "type":"structure",
1508
- "members":{
1509
- "MessageId":{"shape":"MessageId"}
1510
- }
1511
- },
1512
- "SendDataPoint":{
1513
- "type":"structure",
1514
- "members":{
1515
- "Timestamp":{"shape":"Timestamp"},
1516
- "DeliveryAttempts":{"shape":"Counter"},
1517
- "Bounces":{"shape":"Counter"},
1518
- "Complaints":{"shape":"Counter"},
1519
- "Rejects":{"shape":"Counter"}
1520
- }
1521
- },
1522
- "SendDataPointList":{
1523
- "type":"list",
1524
- "member":{"shape":"SendDataPoint"}
1525
- },
1526
- "SendEmailRequest":{
1527
- "type":"structure",
1528
- "required":[
1529
- "Source",
1530
- "Destination",
1531
- "Message"
1532
- ],
1533
- "members":{
1534
- "Source":{"shape":"Address"},
1535
- "Destination":{"shape":"Destination"},
1536
- "Message":{"shape":"Message"},
1537
- "ReplyToAddresses":{"shape":"AddressList"},
1538
- "ReturnPath":{"shape":"Address"},
1539
- "SourceArn":{"shape":"AmazonResourceName"},
1540
- "ReturnPathArn":{"shape":"AmazonResourceName"}
1541
- }
1542
- },
1543
- "SendEmailResponse":{
1544
- "type":"structure",
1545
- "required":["MessageId"],
1546
- "members":{
1547
- "MessageId":{"shape":"MessageId"}
1548
- }
1549
- },
1550
- "SendRawEmailRequest":{
1551
- "type":"structure",
1552
- "required":["RawMessage"],
1553
- "members":{
1554
- "Source":{"shape":"Address"},
1555
- "Destinations":{"shape":"AddressList"},
1556
- "RawMessage":{"shape":"RawMessage"},
1557
- "FromArn":{"shape":"AmazonResourceName"},
1558
- "SourceArn":{"shape":"AmazonResourceName"},
1559
- "ReturnPathArn":{"shape":"AmazonResourceName"}
1560
- }
1561
- },
1562
- "SendRawEmailResponse":{
1563
- "type":"structure",
1564
- "required":["MessageId"],
1565
- "members":{
1566
- "MessageId":{"shape":"MessageId"}
1567
- }
1568
- },
1569
- "SentLast24Hours":{"type":"double"},
1570
- "SetActiveReceiptRuleSetRequest":{
1571
- "type":"structure",
1572
- "members":{
1573
- "RuleSetName":{"shape":"ReceiptRuleSetName"}
1574
- }
1575
- },
1576
- "SetActiveReceiptRuleSetResponse":{
1577
- "type":"structure",
1578
- "members":{
1579
- }
1580
- },
1581
- "SetIdentityDkimEnabledRequest":{
1582
- "type":"structure",
1583
- "required":[
1584
- "Identity",
1585
- "DkimEnabled"
1586
- ],
1587
- "members":{
1588
- "Identity":{"shape":"Identity"},
1589
- "DkimEnabled":{"shape":"Enabled"}
1590
- }
1591
- },
1592
- "SetIdentityDkimEnabledResponse":{
1593
- "type":"structure",
1594
- "members":{
1595
- }
1596
- },
1597
- "SetIdentityFeedbackForwardingEnabledRequest":{
1598
- "type":"structure",
1599
- "required":[
1600
- "Identity",
1601
- "ForwardingEnabled"
1602
- ],
1603
- "members":{
1604
- "Identity":{"shape":"Identity"},
1605
- "ForwardingEnabled":{"shape":"Enabled"}
1606
- }
1607
- },
1608
- "SetIdentityFeedbackForwardingEnabledResponse":{
1609
- "type":"structure",
1610
- "members":{
1611
- }
1612
- },
1613
- "SetIdentityHeadersInNotificationsEnabledRequest":{
1614
- "type":"structure",
1615
- "required":[
1616
- "Identity",
1617
- "NotificationType",
1618
- "Enabled"
1619
- ],
1620
- "members":{
1621
- "Identity":{"shape":"Identity"},
1622
- "NotificationType":{"shape":"NotificationType"},
1623
- "Enabled":{"shape":"Enabled"}
1624
- }
1625
- },
1626
- "SetIdentityHeadersInNotificationsEnabledResponse":{
1627
- "type":"structure",
1628
- "members":{
1629
- }
1630
- },
1631
- "SetIdentityMailFromDomainRequest":{
1632
- "type":"structure",
1633
- "required":["Identity"],
1634
- "members":{
1635
- "Identity":{"shape":"Identity"},
1636
- "MailFromDomain":{"shape":"MailFromDomainName"},
1637
- "BehaviorOnMXFailure":{"shape":"BehaviorOnMXFailure"}
1638
- }
1639
- },
1640
- "SetIdentityMailFromDomainResponse":{
1641
- "type":"structure",
1642
- "members":{
1643
- }
1644
- },
1645
- "SetIdentityNotificationTopicRequest":{
1646
- "type":"structure",
1647
- "required":[
1648
- "Identity",
1649
- "NotificationType"
1650
- ],
1651
- "members":{
1652
- "Identity":{"shape":"Identity"},
1653
- "NotificationType":{"shape":"NotificationType"},
1654
- "SnsTopic":{"shape":"NotificationTopic"}
1655
- }
1656
- },
1657
- "SetIdentityNotificationTopicResponse":{
1658
- "type":"structure",
1659
- "members":{
1660
- }
1661
- },
1662
- "SetReceiptRulePositionRequest":{
1663
- "type":"structure",
1664
- "required":[
1665
- "RuleSetName",
1666
- "RuleName"
1667
- ],
1668
- "members":{
1669
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1670
- "RuleName":{"shape":"ReceiptRuleName"},
1671
- "After":{"shape":"ReceiptRuleName"}
1672
- }
1673
- },
1674
- "SetReceiptRulePositionResponse":{
1675
- "type":"structure",
1676
- "members":{
1677
- }
1678
- },
1679
- "StopAction":{
1680
- "type":"structure",
1681
- "required":["Scope"],
1682
- "members":{
1683
- "Scope":{"shape":"StopScope"},
1684
- "TopicArn":{"shape":"AmazonResourceName"}
1685
- }
1686
- },
1687
- "StopScope":{
1688
- "type":"string",
1689
- "enum":["RuleSet"]
1690
- },
1691
- "Timestamp":{"type":"timestamp"},
1692
- "TlsPolicy":{
1693
- "type":"string",
1694
- "enum":[
1695
- "Require",
1696
- "Optional"
1697
- ]
1698
- },
1699
- "UpdateReceiptRuleRequest":{
1700
- "type":"structure",
1701
- "required":[
1702
- "RuleSetName",
1703
- "Rule"
1704
- ],
1705
- "members":{
1706
- "RuleSetName":{"shape":"ReceiptRuleSetName"},
1707
- "Rule":{"shape":"ReceiptRule"}
1708
- }
1709
- },
1710
- "UpdateReceiptRuleResponse":{
1711
- "type":"structure",
1712
- "members":{
1713
- }
1714
- },
1715
- "VerificationAttributes":{
1716
- "type":"map",
1717
- "key":{"shape":"Identity"},
1718
- "value":{"shape":"IdentityVerificationAttributes"}
1719
- },
1720
- "VerificationStatus":{
1721
- "type":"string",
1722
- "enum":[
1723
- "Pending",
1724
- "Success",
1725
- "Failed",
1726
- "TemporaryFailure",
1727
- "NotStarted"
1728
- ]
1729
- },
1730
- "VerificationToken":{"type":"string"},
1731
- "VerificationTokenList":{
1732
- "type":"list",
1733
- "member":{"shape":"VerificationToken"}
1734
- },
1735
- "VerifyDomainDkimRequest":{
1736
- "type":"structure",
1737
- "required":["Domain"],
1738
- "members":{
1739
- "Domain":{"shape":"Domain"}
1740
- }
1741
- },
1742
- "VerifyDomainDkimResponse":{
1743
- "type":"structure",
1744
- "required":["DkimTokens"],
1745
- "members":{
1746
- "DkimTokens":{"shape":"VerificationTokenList"}
1747
- }
1748
- },
1749
- "VerifyDomainIdentityRequest":{
1750
- "type":"structure",
1751
- "required":["Domain"],
1752
- "members":{
1753
- "Domain":{"shape":"Domain"}
1754
- }
1755
- },
1756
- "VerifyDomainIdentityResponse":{
1757
- "type":"structure",
1758
- "required":["VerificationToken"],
1759
- "members":{
1760
- "VerificationToken":{"shape":"VerificationToken"}
1761
- }
1762
- },
1763
- "VerifyEmailAddressRequest":{
1764
- "type":"structure",
1765
- "required":["EmailAddress"],
1766
- "members":{
1767
- "EmailAddress":{"shape":"Address"}
1768
- }
1769
- },
1770
- "VerifyEmailIdentityRequest":{
1771
- "type":"structure",
1772
- "required":["EmailAddress"],
1773
- "members":{
1774
- "EmailAddress":{"shape":"Address"}
1775
- }
1776
- },
1777
- "VerifyEmailIdentityResponse":{
1778
- "type":"structure",
1779
- "members":{
1780
- }
1781
- },
1782
- "WorkmailAction":{
1783
- "type":"structure",
1784
- "required":["OrganizationArn"],
1785
- "members":{
1786
- "TopicArn":{"shape":"AmazonResourceName"},
1787
- "OrganizationArn":{"shape":"AmazonResourceName"}
1788
- }
1789
- }
1790
- }
1791
- }