aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,1657 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2016-04-18",
5
- "endpointPrefix":"cognito-idp",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"Amazon Cognito Identity Provider",
9
- "signatureVersion":"v4",
10
- "targetPrefix":"AWSCognitoIdentityProviderService"
11
- },
12
- "operations":{
13
- "AddCustomAttributes":{
14
- "name":"AddCustomAttributes",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AddCustomAttributesRequest"},
20
- "output":{"shape":"AddCustomAttributesResponse"},
21
- "errors":[
22
- {"shape":"ResourceNotFoundException"},
23
- {"shape":"InvalidParameterException"},
24
- {"shape":"TooManyRequestsException"},
25
- {"shape":"InternalErrorException"}
26
- ]
27
- },
28
- "AdminConfirmSignUp":{
29
- "name":"AdminConfirmSignUp",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/"
33
- },
34
- "input":{"shape":"AdminConfirmSignUpRequest"},
35
- "output":{"shape":"AdminConfirmSignUpResponse"},
36
- "errors":[
37
- {"shape":"ResourceNotFoundException"},
38
- {"shape":"InvalidParameterException"},
39
- {"shape":"UnexpectedLambdaException"},
40
- {"shape":"UserLambdaValidationException"},
41
- {"shape":"NotAuthorizedException"},
42
- {"shape":"TooManyFailedAttemptsException"},
43
- {"shape":"InvalidLambdaResponseException"},
44
- {"shape":"TooManyRequestsException"},
45
- {"shape":"LimitExceededException"},
46
- {"shape":"InternalErrorException"}
47
- ]
48
- },
49
- "AdminDeleteUser":{
50
- "name":"AdminDeleteUser",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"AdminDeleteUserRequest"},
56
- "errors":[
57
- {"shape":"ResourceNotFoundException"},
58
- {"shape":"InvalidParameterException"},
59
- {"shape":"TooManyRequestsException"},
60
- {"shape":"InternalErrorException"}
61
- ]
62
- },
63
- "AdminDeleteUserAttributes":{
64
- "name":"AdminDeleteUserAttributes",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"AdminDeleteUserAttributesRequest"},
70
- "output":{"shape":"AdminDeleteUserAttributesResponse"},
71
- "errors":[
72
- {"shape":"ResourceNotFoundException"},
73
- {"shape":"InvalidParameterException"},
74
- {"shape":"TooManyRequestsException"},
75
- {"shape":"InternalErrorException"}
76
- ]
77
- },
78
- "AdminDisableUser":{
79
- "name":"AdminDisableUser",
80
- "http":{
81
- "method":"POST",
82
- "requestUri":"/"
83
- },
84
- "input":{"shape":"AdminDisableUserRequest"},
85
- "output":{"shape":"AdminDisableUserResponse"},
86
- "errors":[
87
- {"shape":"ResourceNotFoundException"},
88
- {"shape":"InvalidParameterException"},
89
- {"shape":"TooManyRequestsException"},
90
- {"shape":"InternalErrorException"}
91
- ]
92
- },
93
- "AdminEnableUser":{
94
- "name":"AdminEnableUser",
95
- "http":{
96
- "method":"POST",
97
- "requestUri":"/"
98
- },
99
- "input":{"shape":"AdminEnableUserRequest"},
100
- "output":{"shape":"AdminEnableUserResponse"},
101
- "errors":[
102
- {"shape":"ResourceNotFoundException"},
103
- {"shape":"InvalidParameterException"},
104
- {"shape":"TooManyRequestsException"},
105
- {"shape":"InternalErrorException"}
106
- ]
107
- },
108
- "AdminGetUser":{
109
- "name":"AdminGetUser",
110
- "http":{
111
- "method":"POST",
112
- "requestUri":"/"
113
- },
114
- "input":{"shape":"AdminGetUserRequest"},
115
- "output":{"shape":"AdminGetUserResponse"},
116
- "errors":[
117
- {"shape":"ResourceNotFoundException"},
118
- {"shape":"InvalidParameterException"},
119
- {"shape":"TooManyRequestsException"},
120
- {"shape":"InternalErrorException"}
121
- ]
122
- },
123
- "AdminResetUserPassword":{
124
- "name":"AdminResetUserPassword",
125
- "http":{
126
- "method":"POST",
127
- "requestUri":"/"
128
- },
129
- "input":{"shape":"AdminResetUserPasswordRequest"},
130
- "output":{"shape":"AdminResetUserPasswordResponse"},
131
- "errors":[
132
- {"shape":"ResourceNotFoundException"},
133
- {"shape":"InvalidParameterException"},
134
- {"shape":"UnexpectedLambdaException"},
135
- {"shape":"UserLambdaValidationException"},
136
- {"shape":"NotAuthorizedException"},
137
- {"shape":"InvalidLambdaResponseException"},
138
- {"shape":"TooManyRequestsException"},
139
- {"shape":"LimitExceededException"},
140
- {"shape":"InternalErrorException"}
141
- ]
142
- },
143
- "AdminSetUserSettings":{
144
- "name":"AdminSetUserSettings",
145
- "http":{
146
- "method":"POST",
147
- "requestUri":"/"
148
- },
149
- "input":{"shape":"AdminSetUserSettingsRequest"},
150
- "output":{"shape":"AdminSetUserSettingsResponse"},
151
- "errors":[
152
- {"shape":"ResourceNotFoundException"},
153
- {"shape":"InvalidParameterException"},
154
- {"shape":"NotAuthorizedException"}
155
- ]
156
- },
157
- "AdminUpdateUserAttributes":{
158
- "name":"AdminUpdateUserAttributes",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"AdminUpdateUserAttributesRequest"},
164
- "output":{"shape":"AdminUpdateUserAttributesResponse"},
165
- "errors":[
166
- {"shape":"ResourceNotFoundException"},
167
- {"shape":"InvalidParameterException"},
168
- {"shape":"UnexpectedLambdaException"},
169
- {"shape":"UserLambdaValidationException"},
170
- {"shape":"InvalidLambdaResponseException"},
171
- {"shape":"AliasExistsException"},
172
- {"shape":"TooManyRequestsException"},
173
- {"shape":"InternalErrorException"}
174
- ]
175
- },
176
- "ChangePassword":{
177
- "name":"ChangePassword",
178
- "http":{
179
- "method":"POST",
180
- "requestUri":"/"
181
- },
182
- "input":{"shape":"ChangePasswordRequest"},
183
- "output":{"shape":"ChangePasswordResponse"},
184
- "errors":[
185
- {"shape":"ResourceNotFoundException"},
186
- {"shape":"InvalidParameterException"},
187
- {"shape":"InvalidPasswordException"},
188
- {"shape":"NotAuthorizedException"},
189
- {"shape":"TooManyRequestsException"},
190
- {"shape":"InternalErrorException"}
191
- ],
192
- "authtype":"none"
193
- },
194
- "ConfirmForgotPassword":{
195
- "name":"ConfirmForgotPassword",
196
- "http":{
197
- "method":"POST",
198
- "requestUri":"/"
199
- },
200
- "input":{"shape":"ConfirmForgotPasswordRequest"},
201
- "output":{"shape":"ConfirmForgotPasswordResponse"},
202
- "errors":[
203
- {"shape":"ResourceNotFoundException"},
204
- {"shape":"UnexpectedLambdaException"},
205
- {"shape":"UserLambdaValidationException"},
206
- {"shape":"InvalidParameterException"},
207
- {"shape":"InvalidPasswordException"},
208
- {"shape":"NotAuthorizedException"},
209
- {"shape":"CodeMismatchException"},
210
- {"shape":"ExpiredCodeException"},
211
- {"shape":"TooManyFailedAttemptsException"},
212
- {"shape":"InvalidLambdaResponseException"},
213
- {"shape":"TooManyRequestsException"},
214
- {"shape":"LimitExceededException"},
215
- {"shape":"InternalErrorException"}
216
- ],
217
- "authtype":"none"
218
- },
219
- "ConfirmSignUp":{
220
- "name":"ConfirmSignUp",
221
- "http":{
222
- "method":"POST",
223
- "requestUri":"/"
224
- },
225
- "input":{"shape":"ConfirmSignUpRequest"},
226
- "output":{"shape":"ConfirmSignUpResponse"},
227
- "errors":[
228
- {"shape":"ResourceNotFoundException"},
229
- {"shape":"InvalidParameterException"},
230
- {"shape":"UnexpectedLambdaException"},
231
- {"shape":"UserLambdaValidationException"},
232
- {"shape":"NotAuthorizedException"},
233
- {"shape":"TooManyFailedAttemptsException"},
234
- {"shape":"CodeMismatchException"},
235
- {"shape":"ExpiredCodeException"},
236
- {"shape":"InvalidLambdaResponseException"},
237
- {"shape":"AliasExistsException"},
238
- {"shape":"TooManyRequestsException"},
239
- {"shape":"LimitExceededException"},
240
- {"shape":"InternalErrorException"}
241
- ],
242
- "authtype":"none"
243
- },
244
- "CreateUserPool":{
245
- "name":"CreateUserPool",
246
- "http":{
247
- "method":"POST",
248
- "requestUri":"/"
249
- },
250
- "input":{"shape":"CreateUserPoolRequest"},
251
- "output":{"shape":"CreateUserPoolResponse"},
252
- "errors":[
253
- {"shape":"InvalidParameterException"},
254
- {"shape":"TooManyRequestsException"},
255
- {"shape":"InternalErrorException"},
256
- {"shape":"LimitExceededException"}
257
- ]
258
- },
259
- "CreateUserPoolClient":{
260
- "name":"CreateUserPoolClient",
261
- "http":{
262
- "method":"POST",
263
- "requestUri":"/"
264
- },
265
- "input":{"shape":"CreateUserPoolClientRequest"},
266
- "output":{"shape":"CreateUserPoolClientResponse"},
267
- "errors":[
268
- {"shape":"InvalidParameterException"},
269
- {"shape":"ResourceNotFoundException"},
270
- {"shape":"TooManyRequestsException"},
271
- {"shape":"LimitExceededException"},
272
- {"shape":"InternalErrorException"}
273
- ]
274
- },
275
- "DeleteUser":{
276
- "name":"DeleteUser",
277
- "http":{
278
- "method":"POST",
279
- "requestUri":"/"
280
- },
281
- "input":{"shape":"DeleteUserRequest"},
282
- "errors":[
283
- {"shape":"ResourceNotFoundException"},
284
- {"shape":"InvalidParameterException"},
285
- {"shape":"NotAuthorizedException"},
286
- {"shape":"TooManyRequestsException"},
287
- {"shape":"InternalErrorException"}
288
- ],
289
- "authtype":"none"
290
- },
291
- "DeleteUserAttributes":{
292
- "name":"DeleteUserAttributes",
293
- "http":{
294
- "method":"POST",
295
- "requestUri":"/"
296
- },
297
- "input":{"shape":"DeleteUserAttributesRequest"},
298
- "output":{"shape":"DeleteUserAttributesResponse"},
299
- "errors":[
300
- {"shape":"ResourceNotFoundException"},
301
- {"shape":"InvalidParameterException"},
302
- {"shape":"NotAuthorizedException"},
303
- {"shape":"TooManyRequestsException"},
304
- {"shape":"InternalErrorException"}
305
- ],
306
- "authtype":"none"
307
- },
308
- "DeleteUserPool":{
309
- "name":"DeleteUserPool",
310
- "http":{
311
- "method":"POST",
312
- "requestUri":"/"
313
- },
314
- "input":{"shape":"DeleteUserPoolRequest"},
315
- "errors":[
316
- {"shape":"ResourceNotFoundException"},
317
- {"shape":"InvalidParameterException"},
318
- {"shape":"TooManyRequestsException"},
319
- {"shape":"InternalErrorException"}
320
- ]
321
- },
322
- "DeleteUserPoolClient":{
323
- "name":"DeleteUserPoolClient",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DeleteUserPoolClientRequest"},
329
- "errors":[
330
- {"shape":"ResourceNotFoundException"},
331
- {"shape":"InvalidParameterException"},
332
- {"shape":"TooManyRequestsException"},
333
- {"shape":"InternalErrorException"}
334
- ]
335
- },
336
- "DescribeUserPool":{
337
- "name":"DescribeUserPool",
338
- "http":{
339
- "method":"POST",
340
- "requestUri":"/"
341
- },
342
- "input":{"shape":"DescribeUserPoolRequest"},
343
- "output":{"shape":"DescribeUserPoolResponse"},
344
- "errors":[
345
- {"shape":"ResourceNotFoundException"},
346
- {"shape":"InvalidParameterException"},
347
- {"shape":"TooManyRequestsException"},
348
- {"shape":"InternalErrorException"}
349
- ]
350
- },
351
- "DescribeUserPoolClient":{
352
- "name":"DescribeUserPoolClient",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/"
356
- },
357
- "input":{"shape":"DescribeUserPoolClientRequest"},
358
- "output":{"shape":"DescribeUserPoolClientResponse"},
359
- "errors":[
360
- {"shape":"ResourceNotFoundException"},
361
- {"shape":"InvalidParameterException"},
362
- {"shape":"TooManyRequestsException"},
363
- {"shape":"InternalErrorException"}
364
- ]
365
- },
366
- "ForgotPassword":{
367
- "name":"ForgotPassword",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"ForgotPasswordRequest"},
373
- "output":{"shape":"ForgotPasswordResponse"},
374
- "errors":[
375
- {"shape":"ResourceNotFoundException"},
376
- {"shape":"InvalidParameterException"},
377
- {"shape":"UnexpectedLambdaException"},
378
- {"shape":"UserLambdaValidationException"},
379
- {"shape":"NotAuthorizedException"},
380
- {"shape":"InvalidLambdaResponseException"},
381
- {"shape":"TooManyRequestsException"},
382
- {"shape":"LimitExceededException"},
383
- {"shape":"InternalErrorException"}
384
- ],
385
- "authtype":"none"
386
- },
387
- "GetUser":{
388
- "name":"GetUser",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"GetUserRequest"},
394
- "output":{"shape":"GetUserResponse"},
395
- "errors":[
396
- {"shape":"ResourceNotFoundException"},
397
- {"shape":"InvalidParameterException"},
398
- {"shape":"NotAuthorizedException"},
399
- {"shape":"TooManyRequestsException"},
400
- {"shape":"InternalErrorException"}
401
- ],
402
- "authtype":"none"
403
- },
404
- "GetUserAttributeVerificationCode":{
405
- "name":"GetUserAttributeVerificationCode",
406
- "http":{
407
- "method":"POST",
408
- "requestUri":"/"
409
- },
410
- "input":{"shape":"GetUserAttributeVerificationCodeRequest"},
411
- "output":{"shape":"GetUserAttributeVerificationCodeResponse"},
412
- "errors":[
413
- {"shape":"ResourceNotFoundException"},
414
- {"shape":"InvalidParameterException"},
415
- {"shape":"TooManyRequestsException"},
416
- {"shape":"NotAuthorizedException"},
417
- {"shape":"UnexpectedLambdaException"},
418
- {"shape":"UserLambdaValidationException"},
419
- {"shape":"InvalidLambdaResponseException"},
420
- {"shape":"InternalErrorException"}
421
- ],
422
- "authtype":"none"
423
- },
424
- "ListUserPoolClients":{
425
- "name":"ListUserPoolClients",
426
- "http":{
427
- "method":"POST",
428
- "requestUri":"/"
429
- },
430
- "input":{"shape":"ListUserPoolClientsRequest"},
431
- "output":{"shape":"ListUserPoolClientsResponse"},
432
- "errors":[
433
- {"shape":"InvalidParameterException"},
434
- {"shape":"ResourceNotFoundException"},
435
- {"shape":"TooManyRequestsException"},
436
- {"shape":"InternalErrorException"}
437
- ]
438
- },
439
- "ListUserPools":{
440
- "name":"ListUserPools",
441
- "http":{
442
- "method":"POST",
443
- "requestUri":"/"
444
- },
445
- "input":{"shape":"ListUserPoolsRequest"},
446
- "output":{"shape":"ListUserPoolsResponse"},
447
- "errors":[
448
- {"shape":"InvalidParameterException"},
449
- {"shape":"TooManyRequestsException"},
450
- {"shape":"InternalErrorException"}
451
- ]
452
- },
453
- "ListUsers":{
454
- "name":"ListUsers",
455
- "http":{
456
- "method":"POST",
457
- "requestUri":"/"
458
- },
459
- "input":{"shape":"ListUsersRequest"},
460
- "output":{"shape":"ListUsersResponse"},
461
- "errors":[
462
- {"shape":"InvalidParameterException"},
463
- {"shape":"ResourceNotFoundException"},
464
- {"shape":"TooManyRequestsException"},
465
- {"shape":"InternalErrorException"}
466
- ]
467
- },
468
- "ResendConfirmationCode":{
469
- "name":"ResendConfirmationCode",
470
- "http":{
471
- "method":"POST",
472
- "requestUri":"/"
473
- },
474
- "input":{"shape":"ResendConfirmationCodeRequest"},
475
- "output":{"shape":"ResendConfirmationCodeResponse"},
476
- "errors":[
477
- {"shape":"ResourceNotFoundException"},
478
- {"shape":"InvalidParameterException"},
479
- {"shape":"UnexpectedLambdaException"},
480
- {"shape":"UserLambdaValidationException"},
481
- {"shape":"NotAuthorizedException"},
482
- {"shape":"InvalidLambdaResponseException"},
483
- {"shape":"TooManyRequestsException"},
484
- {"shape":"LimitExceededException"},
485
- {"shape":"InternalErrorException"}
486
- ],
487
- "authtype":"none"
488
- },
489
- "SetUserSettings":{
490
- "name":"SetUserSettings",
491
- "http":{
492
- "method":"POST",
493
- "requestUri":"/"
494
- },
495
- "input":{"shape":"SetUserSettingsRequest"},
496
- "output":{"shape":"SetUserSettingsResponse"},
497
- "errors":[
498
- {"shape":"ResourceNotFoundException"},
499
- {"shape":"InvalidParameterException"},
500
- {"shape":"NotAuthorizedException"}
501
- ],
502
- "authtype":"none"
503
- },
504
- "SignUp":{
505
- "name":"SignUp",
506
- "http":{
507
- "method":"POST",
508
- "requestUri":"/"
509
- },
510
- "input":{"shape":"SignUpRequest"},
511
- "output":{"shape":"SignUpResponse"},
512
- "errors":[
513
- {"shape":"ResourceNotFoundException"},
514
- {"shape":"InvalidParameterException"},
515
- {"shape":"UnexpectedLambdaException"},
516
- {"shape":"UserLambdaValidationException"},
517
- {"shape":"NotAuthorizedException"},
518
- {"shape":"InvalidPasswordException"},
519
- {"shape":"InvalidLambdaResponseException"},
520
- {"shape":"UsernameExistsException"},
521
- {"shape":"TooManyRequestsException"},
522
- {"shape":"InternalErrorException"}
523
- ],
524
- "authtype":"none"
525
- },
526
- "UpdateUserAttributes":{
527
- "name":"UpdateUserAttributes",
528
- "http":{
529
- "method":"POST",
530
- "requestUri":"/"
531
- },
532
- "input":{"shape":"UpdateUserAttributesRequest"},
533
- "output":{"shape":"UpdateUserAttributesResponse"},
534
- "errors":[
535
- {"shape":"ResourceNotFoundException"},
536
- {"shape":"InvalidParameterException"},
537
- {"shape":"CodeMismatchException"},
538
- {"shape":"ExpiredCodeException"},
539
- {"shape":"NotAuthorizedException"},
540
- {"shape":"UnexpectedLambdaException"},
541
- {"shape":"UserLambdaValidationException"},
542
- {"shape":"InvalidLambdaResponseException"},
543
- {"shape":"TooManyRequestsException"},
544
- {"shape":"AliasExistsException"},
545
- {"shape":"InternalErrorException"}
546
- ],
547
- "authtype":"none"
548
- },
549
- "UpdateUserPool":{
550
- "name":"UpdateUserPool",
551
- "http":{
552
- "method":"POST",
553
- "requestUri":"/"
554
- },
555
- "input":{"shape":"UpdateUserPoolRequest"},
556
- "output":{"shape":"UpdateUserPoolResponse"},
557
- "errors":[
558
- {"shape":"ResourceNotFoundException"},
559
- {"shape":"InvalidParameterException"},
560
- {"shape":"ConcurrentModificationException"},
561
- {"shape":"TooManyRequestsException"},
562
- {"shape":"InternalErrorException"}
563
- ]
564
- },
565
- "UpdateUserPoolClient":{
566
- "name":"UpdateUserPoolClient",
567
- "http":{
568
- "method":"POST",
569
- "requestUri":"/"
570
- },
571
- "input":{"shape":"UpdateUserPoolClientRequest"},
572
- "output":{"shape":"UpdateUserPoolClientResponse"},
573
- "errors":[
574
- {"shape":"ResourceNotFoundException"},
575
- {"shape":"InvalidParameterException"},
576
- {"shape":"TooManyRequestsException"},
577
- {"shape":"InternalErrorException"}
578
- ]
579
- },
580
- "VerifyUserAttribute":{
581
- "name":"VerifyUserAttribute",
582
- "http":{
583
- "method":"POST",
584
- "requestUri":"/"
585
- },
586
- "input":{"shape":"VerifyUserAttributeRequest"},
587
- "output":{"shape":"VerifyUserAttributeResponse"},
588
- "errors":[
589
- {"shape":"ResourceNotFoundException"},
590
- {"shape":"InvalidParameterException"},
591
- {"shape":"CodeMismatchException"},
592
- {"shape":"ExpiredCodeException"},
593
- {"shape":"NotAuthorizedException"},
594
- {"shape":"TooManyRequestsException"},
595
- {"shape":"InternalErrorException"}
596
- ],
597
- "authtype":"none"
598
- }
599
- },
600
- "shapes":{
601
- "AddCustomAttributesRequest":{
602
- "type":"structure",
603
- "required":[
604
- "UserPoolId",
605
- "CustomAttributes"
606
- ],
607
- "members":{
608
- "UserPoolId":{"shape":"UserPoolIdType"},
609
- "CustomAttributes":{"shape":"CustomAttributesListType"}
610
- }
611
- },
612
- "AddCustomAttributesResponse":{
613
- "type":"structure",
614
- "members":{
615
- }
616
- },
617
- "AdminConfirmSignUpRequest":{
618
- "type":"structure",
619
- "required":[
620
- "UserPoolId",
621
- "Username"
622
- ],
623
- "members":{
624
- "UserPoolId":{"shape":"UserPoolIdType"},
625
- "Username":{"shape":"UsernameType"}
626
- }
627
- },
628
- "AdminConfirmSignUpResponse":{
629
- "type":"structure",
630
- "members":{
631
- }
632
- },
633
- "AdminDeleteUserAttributesRequest":{
634
- "type":"structure",
635
- "required":[
636
- "UserPoolId",
637
- "Username",
638
- "UserAttributeNames"
639
- ],
640
- "members":{
641
- "UserPoolId":{"shape":"UserPoolIdType"},
642
- "Username":{"shape":"UsernameType"},
643
- "UserAttributeNames":{"shape":"AttributeNameListType"}
644
- }
645
- },
646
- "AdminDeleteUserAttributesResponse":{
647
- "type":"structure",
648
- "members":{
649
- }
650
- },
651
- "AdminDeleteUserRequest":{
652
- "type":"structure",
653
- "required":[
654
- "UserPoolId",
655
- "Username"
656
- ],
657
- "members":{
658
- "UserPoolId":{"shape":"UserPoolIdType"},
659
- "Username":{"shape":"UsernameType"}
660
- }
661
- },
662
- "AdminDisableUserRequest":{
663
- "type":"structure",
664
- "required":[
665
- "UserPoolId",
666
- "Username"
667
- ],
668
- "members":{
669
- "UserPoolId":{"shape":"UserPoolIdType"},
670
- "Username":{"shape":"UsernameType"}
671
- }
672
- },
673
- "AdminDisableUserResponse":{
674
- "type":"structure",
675
- "members":{
676
- }
677
- },
678
- "AdminEnableUserRequest":{
679
- "type":"structure",
680
- "required":[
681
- "UserPoolId",
682
- "Username"
683
- ],
684
- "members":{
685
- "UserPoolId":{"shape":"UserPoolIdType"},
686
- "Username":{"shape":"UsernameType"}
687
- }
688
- },
689
- "AdminEnableUserResponse":{
690
- "type":"structure",
691
- "members":{
692
- }
693
- },
694
- "AdminGetUserRequest":{
695
- "type":"structure",
696
- "required":[
697
- "UserPoolId",
698
- "Username"
699
- ],
700
- "members":{
701
- "UserPoolId":{"shape":"UserPoolIdType"},
702
- "Username":{"shape":"UsernameType"}
703
- }
704
- },
705
- "AdminGetUserResponse":{
706
- "type":"structure",
707
- "required":["Username"],
708
- "members":{
709
- "Username":{"shape":"UsernameType"},
710
- "UserAttributes":{"shape":"AttributeListType"},
711
- "UserCreateDate":{"shape":"DateType"},
712
- "UserLastModifiedDate":{"shape":"DateType"},
713
- "Enabled":{"shape":"BooleanType"},
714
- "UserStatus":{"shape":"UserStatusType"},
715
- "MFAOptions":{"shape":"MFAOptionListType"}
716
- }
717
- },
718
- "AdminResetUserPasswordRequest":{
719
- "type":"structure",
720
- "required":[
721
- "UserPoolId",
722
- "Username"
723
- ],
724
- "members":{
725
- "UserPoolId":{"shape":"UserPoolIdType"},
726
- "Username":{"shape":"UsernameType"}
727
- }
728
- },
729
- "AdminResetUserPasswordResponse":{
730
- "type":"structure",
731
- "members":{
732
- }
733
- },
734
- "AdminSetUserSettingsRequest":{
735
- "type":"structure",
736
- "required":[
737
- "UserPoolId",
738
- "Username",
739
- "MFAOptions"
740
- ],
741
- "members":{
742
- "UserPoolId":{"shape":"UserPoolIdType"},
743
- "Username":{"shape":"UsernameType"},
744
- "MFAOptions":{"shape":"MFAOptionListType"}
745
- }
746
- },
747
- "AdminSetUserSettingsResponse":{
748
- "type":"structure",
749
- "members":{
750
- }
751
- },
752
- "AdminUpdateUserAttributesRequest":{
753
- "type":"structure",
754
- "required":[
755
- "UserPoolId",
756
- "Username",
757
- "UserAttributes"
758
- ],
759
- "members":{
760
- "UserPoolId":{"shape":"UserPoolIdType"},
761
- "Username":{"shape":"UsernameType"},
762
- "UserAttributes":{"shape":"AttributeListType"}
763
- }
764
- },
765
- "AdminUpdateUserAttributesResponse":{
766
- "type":"structure",
767
- "members":{
768
- }
769
- },
770
- "AliasAttributeType":{
771
- "type":"string",
772
- "enum":[
773
- "phone_number",
774
- "email",
775
- "preferred_username"
776
- ]
777
- },
778
- "AliasAttributesListType":{
779
- "type":"list",
780
- "member":{"shape":"AliasAttributeType"}
781
- },
782
- "AliasExistsException":{
783
- "type":"structure",
784
- "members":{
785
- "message":{"shape":"MessageType"}
786
- },
787
- "exception":true
788
- },
789
- "ArnType":{
790
- "type":"string",
791
- "max":2048,
792
- "min":20
793
- },
794
- "AttributeDataType":{
795
- "type":"string",
796
- "enum":[
797
- "String",
798
- "Number",
799
- "DateTime",
800
- "Boolean"
801
- ]
802
- },
803
- "AttributeListType":{
804
- "type":"list",
805
- "member":{"shape":"AttributeType"}
806
- },
807
- "AttributeNameListType":{
808
- "type":"list",
809
- "member":{"shape":"AttributeNameType"}
810
- },
811
- "AttributeNameType":{
812
- "type":"string",
813
- "max":32,
814
- "min":1,
815
- "pattern":"[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+"
816
- },
817
- "AttributeType":{
818
- "type":"structure",
819
- "required":["Name"],
820
- "members":{
821
- "Name":{"shape":"AttributeNameType"},
822
- "Value":{"shape":"AttributeValueType"}
823
- }
824
- },
825
- "AttributeValueType":{
826
- "type":"string",
827
- "max":256,
828
- "sensitive":true
829
- },
830
- "BooleanType":{"type":"boolean"},
831
- "ChangePasswordRequest":{
832
- "type":"structure",
833
- "required":[
834
- "PreviousPassword",
835
- "ProposedPassword"
836
- ],
837
- "members":{
838
- "PreviousPassword":{"shape":"PasswordType"},
839
- "ProposedPassword":{"shape":"PasswordType"},
840
- "AccessToken":{"shape":"TokenModelType"}
841
- }
842
- },
843
- "ChangePasswordResponse":{
844
- "type":"structure",
845
- "members":{
846
- }
847
- },
848
- "ClientIdType":{
849
- "type":"string",
850
- "max":128,
851
- "min":1,
852
- "pattern":"[\\w+]+",
853
- "sensitive":true
854
- },
855
- "ClientNameType":{
856
- "type":"string",
857
- "max":128,
858
- "min":1,
859
- "pattern":"[\\w\\s+=,.@-]+"
860
- },
861
- "ClientSecretType":{
862
- "type":"string",
863
- "max":64,
864
- "min":1,
865
- "pattern":"[\\w+]+",
866
- "sensitive":true
867
- },
868
- "CodeDeliveryDetailsListType":{
869
- "type":"list",
870
- "member":{"shape":"CodeDeliveryDetailsType"}
871
- },
872
- "CodeDeliveryDetailsType":{
873
- "type":"structure",
874
- "members":{
875
- "Destination":{"shape":"StringType"},
876
- "DeliveryMedium":{"shape":"DeliveryMediumType"},
877
- "AttributeName":{"shape":"AttributeNameType"}
878
- }
879
- },
880
- "CodeMismatchException":{
881
- "type":"structure",
882
- "members":{
883
- "message":{"shape":"MessageType"}
884
- },
885
- "exception":true
886
- },
887
- "ConcurrentModificationException":{
888
- "type":"structure",
889
- "members":{
890
- "message":{"shape":"MessageType"}
891
- },
892
- "exception":true
893
- },
894
- "ConfirmForgotPasswordRequest":{
895
- "type":"structure",
896
- "required":[
897
- "ClientId",
898
- "Username",
899
- "ConfirmationCode",
900
- "Password"
901
- ],
902
- "members":{
903
- "ClientId":{"shape":"ClientIdType"},
904
- "SecretHash":{"shape":"SecretHashType"},
905
- "Username":{"shape":"UsernameType"},
906
- "ConfirmationCode":{"shape":"ConfirmationCodeType"},
907
- "Password":{"shape":"PasswordType"}
908
- }
909
- },
910
- "ConfirmForgotPasswordResponse":{
911
- "type":"structure",
912
- "members":{
913
- }
914
- },
915
- "ConfirmSignUpRequest":{
916
- "type":"structure",
917
- "required":[
918
- "ClientId",
919
- "Username",
920
- "ConfirmationCode"
921
- ],
922
- "members":{
923
- "ClientId":{"shape":"ClientIdType"},
924
- "SecretHash":{"shape":"SecretHashType"},
925
- "Username":{"shape":"UsernameType"},
926
- "ConfirmationCode":{"shape":"ConfirmationCodeType"},
927
- "ForceAliasCreation":{"shape":"ForceAliasCreation"}
928
- }
929
- },
930
- "ConfirmSignUpResponse":{
931
- "type":"structure",
932
- "members":{
933
- }
934
- },
935
- "ConfirmationCodeType":{
936
- "type":"string",
937
- "max":2048,
938
- "min":1,
939
- "pattern":"[\\S]+"
940
- },
941
- "CreateUserPoolClientRequest":{
942
- "type":"structure",
943
- "required":[
944
- "UserPoolId",
945
- "ClientName"
946
- ],
947
- "members":{
948
- "UserPoolId":{"shape":"UserPoolIdType"},
949
- "ClientName":{"shape":"ClientNameType"},
950
- "GenerateSecret":{"shape":"GenerateSecret"}
951
- }
952
- },
953
- "CreateUserPoolClientResponse":{
954
- "type":"structure",
955
- "members":{
956
- "UserPoolClient":{"shape":"UserPoolClientType"}
957
- }
958
- },
959
- "CreateUserPoolRequest":{
960
- "type":"structure",
961
- "required":["PoolName"],
962
- "members":{
963
- "PoolName":{"shape":"UserPoolNameType"},
964
- "Policies":{"shape":"UserPoolPolicyType"},
965
- "LambdaConfig":{"shape":"LambdaConfigType"},
966
- "AutoVerifiedAttributes":{"shape":"VerifiedAttributesListType"},
967
- "AliasAttributes":{"shape":"AliasAttributesListType"},
968
- "SmsVerificationMessage":{"shape":"SmsVerificationMessageType"},
969
- "EmailVerificationMessage":{"shape":"EmailVerificationMessageType"},
970
- "EmailVerificationSubject":{"shape":"EmailVerificationSubjectType"},
971
- "SmsAuthenticationMessage":{"shape":"SmsVerificationMessageType"},
972
- "MfaConfiguration":{"shape":"UserPoolMfaType"}
973
- }
974
- },
975
- "CreateUserPoolResponse":{
976
- "type":"structure",
977
- "members":{
978
- "UserPool":{"shape":"UserPoolType"}
979
- }
980
- },
981
- "CustomAttributeNameType":{
982
- "type":"string",
983
- "max":20,
984
- "min":1,
985
- "pattern":"[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+"
986
- },
987
- "CustomAttributesListType":{
988
- "type":"list",
989
- "member":{"shape":"SchemaAttributeType"},
990
- "max":25,
991
- "min":1
992
- },
993
- "DateType":{"type":"timestamp"},
994
- "DeleteUserAttributesRequest":{
995
- "type":"structure",
996
- "required":["UserAttributeNames"],
997
- "members":{
998
- "UserAttributeNames":{"shape":"AttributeNameListType"},
999
- "AccessToken":{"shape":"TokenModelType"}
1000
- }
1001
- },
1002
- "DeleteUserAttributesResponse":{
1003
- "type":"structure",
1004
- "members":{
1005
- }
1006
- },
1007
- "DeleteUserPoolClientRequest":{
1008
- "type":"structure",
1009
- "required":[
1010
- "UserPoolId",
1011
- "ClientId"
1012
- ],
1013
- "members":{
1014
- "UserPoolId":{"shape":"UserPoolIdType"},
1015
- "ClientId":{"shape":"ClientIdType"}
1016
- }
1017
- },
1018
- "DeleteUserPoolRequest":{
1019
- "type":"structure",
1020
- "required":["UserPoolId"],
1021
- "members":{
1022
- "UserPoolId":{"shape":"UserPoolIdType"}
1023
- }
1024
- },
1025
- "DeleteUserRequest":{
1026
- "type":"structure",
1027
- "members":{
1028
- "AccessToken":{"shape":"TokenModelType"}
1029
- }
1030
- },
1031
- "DeliveryMediumType":{
1032
- "type":"string",
1033
- "enum":[
1034
- "SMS",
1035
- "EMAIL"
1036
- ]
1037
- },
1038
- "DescribeUserPoolClientRequest":{
1039
- "type":"structure",
1040
- "required":[
1041
- "UserPoolId",
1042
- "ClientId"
1043
- ],
1044
- "members":{
1045
- "UserPoolId":{"shape":"UserPoolIdType"},
1046
- "ClientId":{"shape":"ClientIdType"}
1047
- }
1048
- },
1049
- "DescribeUserPoolClientResponse":{
1050
- "type":"structure",
1051
- "members":{
1052
- "UserPoolClient":{"shape":"UserPoolClientType"}
1053
- }
1054
- },
1055
- "DescribeUserPoolRequest":{
1056
- "type":"structure",
1057
- "required":["UserPoolId"],
1058
- "members":{
1059
- "UserPoolId":{"shape":"UserPoolIdType"}
1060
- }
1061
- },
1062
- "DescribeUserPoolResponse":{
1063
- "type":"structure",
1064
- "members":{
1065
- "UserPool":{"shape":"UserPoolType"}
1066
- }
1067
- },
1068
- "EmailVerificationMessageType":{
1069
- "type":"string",
1070
- "max":2048,
1071
- "min":6,
1072
- "pattern":"[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s*]*\\{####\\}[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s*]*"
1073
- },
1074
- "EmailVerificationSubjectType":{
1075
- "type":"string",
1076
- "max":140,
1077
- "min":1,
1078
- "pattern":"[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\s]+"
1079
- },
1080
- "ExpiredCodeException":{
1081
- "type":"structure",
1082
- "members":{
1083
- "message":{"shape":"MessageType"}
1084
- },
1085
- "exception":true
1086
- },
1087
- "ForceAliasCreation":{"type":"boolean"},
1088
- "ForgotPasswordRequest":{
1089
- "type":"structure",
1090
- "required":[
1091
- "ClientId",
1092
- "Username"
1093
- ],
1094
- "members":{
1095
- "ClientId":{"shape":"ClientIdType"},
1096
- "SecretHash":{"shape":"SecretHashType"},
1097
- "Username":{"shape":"UsernameType"}
1098
- }
1099
- },
1100
- "ForgotPasswordResponse":{
1101
- "type":"structure",
1102
- "members":{
1103
- "CodeDeliveryDetails":{"shape":"CodeDeliveryDetailsType"}
1104
- }
1105
- },
1106
- "GenerateSecret":{"type":"boolean"},
1107
- "GetUserAttributeVerificationCodeRequest":{
1108
- "type":"structure",
1109
- "required":["AttributeName"],
1110
- "members":{
1111
- "AccessToken":{"shape":"TokenModelType"},
1112
- "AttributeName":{"shape":"AttributeNameType"}
1113
- }
1114
- },
1115
- "GetUserAttributeVerificationCodeResponse":{
1116
- "type":"structure",
1117
- "members":{
1118
- "CodeDeliveryDetails":{"shape":"CodeDeliveryDetailsType"}
1119
- }
1120
- },
1121
- "GetUserRequest":{
1122
- "type":"structure",
1123
- "members":{
1124
- "AccessToken":{"shape":"TokenModelType"}
1125
- }
1126
- },
1127
- "GetUserResponse":{
1128
- "type":"structure",
1129
- "required":[
1130
- "Username",
1131
- "UserAttributes"
1132
- ],
1133
- "members":{
1134
- "Username":{"shape":"UsernameType"},
1135
- "UserAttributes":{"shape":"AttributeListType"},
1136
- "MFAOptions":{"shape":"MFAOptionListType"}
1137
- }
1138
- },
1139
- "IntegerType":{"type":"integer"},
1140
- "InternalErrorException":{
1141
- "type":"structure",
1142
- "members":{
1143
- "message":{"shape":"MessageType"}
1144
- },
1145
- "exception":true,
1146
- "fault":true
1147
- },
1148
- "InvalidLambdaResponseException":{
1149
- "type":"structure",
1150
- "members":{
1151
- "message":{"shape":"MessageType"}
1152
- },
1153
- "exception":true
1154
- },
1155
- "InvalidParameterException":{
1156
- "type":"structure",
1157
- "members":{
1158
- "message":{"shape":"MessageType"}
1159
- },
1160
- "exception":true
1161
- },
1162
- "InvalidPasswordException":{
1163
- "type":"structure",
1164
- "members":{
1165
- "message":{"shape":"MessageType"}
1166
- },
1167
- "exception":true
1168
- },
1169
- "LambdaConfigType":{
1170
- "type":"structure",
1171
- "members":{
1172
- "PreSignUp":{"shape":"ArnType"},
1173
- "CustomMessage":{"shape":"ArnType"},
1174
- "PostConfirmation":{"shape":"ArnType"},
1175
- "PreAuthentication":{"shape":"ArnType"},
1176
- "PostAuthentication":{"shape":"ArnType"}
1177
- }
1178
- },
1179
- "LimitExceededException":{
1180
- "type":"structure",
1181
- "members":{
1182
- "message":{"shape":"MessageType"}
1183
- },
1184
- "exception":true
1185
- },
1186
- "ListUserPoolClientsRequest":{
1187
- "type":"structure",
1188
- "required":["UserPoolId"],
1189
- "members":{
1190
- "UserPoolId":{"shape":"UserPoolIdType"},
1191
- "MaxResults":{"shape":"QueryLimit"},
1192
- "NextToken":{"shape":"PaginationKey"}
1193
- }
1194
- },
1195
- "ListUserPoolClientsResponse":{
1196
- "type":"structure",
1197
- "members":{
1198
- "UserPoolClients":{"shape":"UserPoolClientListType"},
1199
- "NextToken":{"shape":"PaginationKey"}
1200
- }
1201
- },
1202
- "ListUserPoolsRequest":{
1203
- "type":"structure",
1204
- "required":["MaxResults"],
1205
- "members":{
1206
- "NextToken":{"shape":"PaginationKeyType"},
1207
- "MaxResults":{"shape":"QueryLimitType"}
1208
- }
1209
- },
1210
- "ListUserPoolsResponse":{
1211
- "type":"structure",
1212
- "members":{
1213
- "UserPools":{"shape":"UserPoolListType"},
1214
- "NextToken":{"shape":"PaginationKeyType"}
1215
- }
1216
- },
1217
- "ListUsersRequest":{
1218
- "type":"structure",
1219
- "required":["UserPoolId"],
1220
- "members":{
1221
- "UserPoolId":{"shape":"UserPoolIdType"},
1222
- "AttributesToGet":{"shape":"SearchedAttributeNamesListType"},
1223
- "Limit":{"shape":"QueryLimitType"},
1224
- "PaginationToken":{"shape":"SearchPaginationTokenType"},
1225
- "UserStatus":{"shape":"UserStatusType"}
1226
- }
1227
- },
1228
- "ListUsersResponse":{
1229
- "type":"structure",
1230
- "members":{
1231
- "Users":{"shape":"UsersListType"},
1232
- "PaginationToken":{"shape":"SearchPaginationTokenType"}
1233
- }
1234
- },
1235
- "MFAOptionListType":{
1236
- "type":"list",
1237
- "member":{"shape":"MFAOptionType"}
1238
- },
1239
- "MFAOptionType":{
1240
- "type":"structure",
1241
- "members":{
1242
- "DeliveryMedium":{"shape":"DeliveryMediumType"},
1243
- "AttributeName":{"shape":"AttributeNameType"}
1244
- }
1245
- },
1246
- "MessageType":{"type":"string"},
1247
- "NotAuthorizedException":{
1248
- "type":"structure",
1249
- "members":{
1250
- "message":{"shape":"MessageType"}
1251
- },
1252
- "exception":true
1253
- },
1254
- "NumberAttributeConstraintsType":{
1255
- "type":"structure",
1256
- "members":{
1257
- "MinValue":{"shape":"StringType"},
1258
- "MaxValue":{"shape":"StringType"}
1259
- }
1260
- },
1261
- "PaginationKey":{
1262
- "type":"string",
1263
- "min":1
1264
- },
1265
- "PaginationKeyType":{
1266
- "type":"string",
1267
- "min":1,
1268
- "pattern":"[\\S]+"
1269
- },
1270
- "PasswordPolicyMinLengthType":{
1271
- "type":"integer",
1272
- "max":99,
1273
- "min":6
1274
- },
1275
- "PasswordPolicyType":{
1276
- "type":"structure",
1277
- "members":{
1278
- "MinimumLength":{"shape":"PasswordPolicyMinLengthType"},
1279
- "RequireUppercase":{"shape":"BooleanType"},
1280
- "RequireLowercase":{"shape":"BooleanType"},
1281
- "RequireNumbers":{"shape":"BooleanType"},
1282
- "RequireSymbols":{"shape":"BooleanType"}
1283
- }
1284
- },
1285
- "PasswordType":{
1286
- "type":"string",
1287
- "max":256,
1288
- "min":6,
1289
- "pattern":"[\\S]+",
1290
- "sensitive":true
1291
- },
1292
- "QueryLimit":{
1293
- "type":"integer",
1294
- "max":60,
1295
- "min":1
1296
- },
1297
- "QueryLimitType":{
1298
- "type":"integer",
1299
- "max":60,
1300
- "min":1
1301
- },
1302
- "ResendConfirmationCodeRequest":{
1303
- "type":"structure",
1304
- "required":[
1305
- "ClientId",
1306
- "Username"
1307
- ],
1308
- "members":{
1309
- "ClientId":{"shape":"ClientIdType"},
1310
- "SecretHash":{"shape":"SecretHashType"},
1311
- "Username":{"shape":"UsernameType"}
1312
- }
1313
- },
1314
- "ResendConfirmationCodeResponse":{
1315
- "type":"structure",
1316
- "members":{
1317
- "CodeDeliveryDetails":{"shape":"CodeDeliveryDetailsType"}
1318
- }
1319
- },
1320
- "ResourceNotFoundException":{
1321
- "type":"structure",
1322
- "members":{
1323
- "message":{"shape":"MessageType"}
1324
- },
1325
- "exception":true
1326
- },
1327
- "SchemaAttributeType":{
1328
- "type":"structure",
1329
- "members":{
1330
- "Name":{"shape":"CustomAttributeNameType"},
1331
- "AttributeDataType":{"shape":"AttributeDataType"},
1332
- "DeveloperOnlyAttribute":{"shape":"BooleanType"},
1333
- "Mutable":{"shape":"BooleanType"},
1334
- "Required":{"shape":"BooleanType"},
1335
- "NumberAttributeConstraints":{"shape":"NumberAttributeConstraintsType"},
1336
- "StringAttributeConstraints":{"shape":"StringAttributeConstraintsType"}
1337
- }
1338
- },
1339
- "SchemaAttributesListType":{
1340
- "type":"list",
1341
- "member":{"shape":"SchemaAttributeType"},
1342
- "max":50,
1343
- "min":1
1344
- },
1345
- "SearchPaginationTokenType":{
1346
- "type":"string",
1347
- "min":1
1348
- },
1349
- "SearchedAttributeNamesListType":{
1350
- "type":"list",
1351
- "member":{"shape":"AttributeNameType"}
1352
- },
1353
- "SecretHashType":{
1354
- "type":"string",
1355
- "max":128,
1356
- "min":1,
1357
- "pattern":"[\\w+=/]+",
1358
- "sensitive":true
1359
- },
1360
- "SetUserSettingsRequest":{
1361
- "type":"structure",
1362
- "required":[
1363
- "AccessToken",
1364
- "MFAOptions"
1365
- ],
1366
- "members":{
1367
- "AccessToken":{"shape":"TokenModelType"},
1368
- "MFAOptions":{"shape":"MFAOptionListType"}
1369
- }
1370
- },
1371
- "SetUserSettingsResponse":{
1372
- "type":"structure",
1373
- "members":{
1374
- }
1375
- },
1376
- "SignUpRequest":{
1377
- "type":"structure",
1378
- "required":[
1379
- "ClientId",
1380
- "Username",
1381
- "Password"
1382
- ],
1383
- "members":{
1384
- "ClientId":{"shape":"ClientIdType"},
1385
- "SecretHash":{"shape":"SecretHashType"},
1386
- "Username":{"shape":"UsernameType"},
1387
- "Password":{"shape":"PasswordType"},
1388
- "UserAttributes":{"shape":"AttributeListType"},
1389
- "ValidationData":{"shape":"AttributeListType"}
1390
- }
1391
- },
1392
- "SignUpResponse":{
1393
- "type":"structure",
1394
- "members":{
1395
- "UserConfirmed":{"shape":"BooleanType"},
1396
- "CodeDeliveryDetails":{"shape":"CodeDeliveryDetailsType"}
1397
- }
1398
- },
1399
- "SmsVerificationMessageType":{
1400
- "type":"string",
1401
- "max":140,
1402
- "min":6,
1403
- "pattern":".*\\{####\\}.*"
1404
- },
1405
- "StatusType":{
1406
- "type":"string",
1407
- "enum":[
1408
- "Enabled",
1409
- "Disabled"
1410
- ]
1411
- },
1412
- "StringAttributeConstraintsType":{
1413
- "type":"structure",
1414
- "members":{
1415
- "MinLength":{"shape":"StringType"},
1416
- "MaxLength":{"shape":"StringType"}
1417
- }
1418
- },
1419
- "StringType":{"type":"string"},
1420
- "TokenModelType":{
1421
- "type":"string",
1422
- "sensitive":true
1423
- },
1424
- "TooManyFailedAttemptsException":{
1425
- "type":"structure",
1426
- "members":{
1427
- "message":{"shape":"MessageType"}
1428
- },
1429
- "exception":true
1430
- },
1431
- "TooManyRequestsException":{
1432
- "type":"structure",
1433
- "members":{
1434
- "message":{"shape":"MessageType"}
1435
- },
1436
- "exception":true
1437
- },
1438
- "UnexpectedLambdaException":{
1439
- "type":"structure",
1440
- "members":{
1441
- "message":{"shape":"MessageType"}
1442
- },
1443
- "exception":true
1444
- },
1445
- "UpdateUserAttributesRequest":{
1446
- "type":"structure",
1447
- "required":["UserAttributes"],
1448
- "members":{
1449
- "UserAttributes":{"shape":"AttributeListType"},
1450
- "AccessToken":{"shape":"TokenModelType"}
1451
- }
1452
- },
1453
- "UpdateUserAttributesResponse":{
1454
- "type":"structure",
1455
- "members":{
1456
- "CodeDeliveryDetailsList":{"shape":"CodeDeliveryDetailsListType"}
1457
- }
1458
- },
1459
- "UpdateUserPoolClientRequest":{
1460
- "type":"structure",
1461
- "required":[
1462
- "UserPoolId",
1463
- "ClientId"
1464
- ],
1465
- "members":{
1466
- "UserPoolId":{"shape":"UserPoolIdType"},
1467
- "ClientId":{"shape":"ClientIdType"},
1468
- "ClientName":{"shape":"ClientNameType"}
1469
- }
1470
- },
1471
- "UpdateUserPoolClientResponse":{
1472
- "type":"structure",
1473
- "members":{
1474
- "UserPoolClient":{"shape":"UserPoolClientType"}
1475
- }
1476
- },
1477
- "UpdateUserPoolRequest":{
1478
- "type":"structure",
1479
- "required":["UserPoolId"],
1480
- "members":{
1481
- "UserPoolId":{"shape":"UserPoolIdType"},
1482
- "Policies":{"shape":"UserPoolPolicyType"},
1483
- "LambdaConfig":{"shape":"LambdaConfigType"},
1484
- "AutoVerifiedAttributes":{"shape":"VerifiedAttributesListType"},
1485
- "SmsVerificationMessage":{"shape":"SmsVerificationMessageType"},
1486
- "EmailVerificationMessage":{"shape":"EmailVerificationMessageType"},
1487
- "EmailVerificationSubject":{"shape":"EmailVerificationSubjectType"},
1488
- "SmsAuthenticationMessage":{"shape":"SmsVerificationMessageType"},
1489
- "MfaConfiguration":{"shape":"UserPoolMfaType"}
1490
- }
1491
- },
1492
- "UpdateUserPoolResponse":{
1493
- "type":"structure",
1494
- "members":{
1495
- }
1496
- },
1497
- "UserLambdaValidationException":{
1498
- "type":"structure",
1499
- "members":{
1500
- "message":{"shape":"MessageType"}
1501
- },
1502
- "exception":true
1503
- },
1504
- "UserPoolClientDescription":{
1505
- "type":"structure",
1506
- "members":{
1507
- "ClientId":{"shape":"ClientIdType"},
1508
- "UserPoolId":{"shape":"UserPoolIdType"},
1509
- "ClientName":{"shape":"ClientNameType"}
1510
- }
1511
- },
1512
- "UserPoolClientListType":{
1513
- "type":"list",
1514
- "member":{"shape":"UserPoolClientDescription"}
1515
- },
1516
- "UserPoolClientType":{
1517
- "type":"structure",
1518
- "members":{
1519
- "UserPoolId":{"shape":"UserPoolIdType"},
1520
- "ClientName":{"shape":"ClientNameType"},
1521
- "ClientId":{"shape":"ClientIdType"},
1522
- "ClientSecret":{"shape":"ClientSecretType"},
1523
- "LastModifiedDate":{"shape":"DateType"},
1524
- "CreationDate":{"shape":"DateType"}
1525
- }
1526
- },
1527
- "UserPoolDescriptionType":{
1528
- "type":"structure",
1529
- "members":{
1530
- "Id":{"shape":"UserPoolIdType"},
1531
- "Name":{"shape":"UserPoolNameType"},
1532
- "LambdaConfig":{"shape":"LambdaConfigType"},
1533
- "Status":{"shape":"StatusType"},
1534
- "LastModifiedDate":{"shape":"DateType"},
1535
- "CreationDate":{"shape":"DateType"}
1536
- }
1537
- },
1538
- "UserPoolIdType":{
1539
- "type":"string",
1540
- "max":55,
1541
- "min":1,
1542
- "pattern":"[\\w-]+.[0-9a-zA-Z-]+"
1543
- },
1544
- "UserPoolListType":{
1545
- "type":"list",
1546
- "member":{"shape":"UserPoolDescriptionType"}
1547
- },
1548
- "UserPoolMfaType":{
1549
- "type":"string",
1550
- "enum":[
1551
- "OFF",
1552
- "ON",
1553
- "OPTIONAL"
1554
- ]
1555
- },
1556
- "UserPoolNameType":{
1557
- "type":"string",
1558
- "max":128,
1559
- "min":1,
1560
- "pattern":"[\\w\\s+=,.@-]+"
1561
- },
1562
- "UserPoolPolicyType":{
1563
- "type":"structure",
1564
- "members":{
1565
- "PasswordPolicy":{"shape":"PasswordPolicyType"}
1566
- }
1567
- },
1568
- "UserPoolType":{
1569
- "type":"structure",
1570
- "members":{
1571
- "Id":{"shape":"UserPoolIdType"},
1572
- "Name":{"shape":"UserPoolNameType"},
1573
- "Policies":{"shape":"UserPoolPolicyType"},
1574
- "LambdaConfig":{"shape":"LambdaConfigType"},
1575
- "Status":{"shape":"StatusType"},
1576
- "LastModifiedDate":{"shape":"DateType"},
1577
- "CreationDate":{"shape":"DateType"},
1578
- "SchemaAttributes":{"shape":"SchemaAttributesListType"},
1579
- "AutoVerifiedAttributes":{"shape":"VerifiedAttributesListType"},
1580
- "AliasAttributes":{"shape":"AliasAttributesListType"},
1581
- "SmsVerificationMessage":{"shape":"SmsVerificationMessageType"},
1582
- "EmailVerificationMessage":{"shape":"EmailVerificationMessageType"},
1583
- "EmailVerificationSubject":{"shape":"EmailVerificationSubjectType"},
1584
- "SmsAuthenticationMessage":{"shape":"SmsVerificationMessageType"},
1585
- "MfaConfiguration":{"shape":"UserPoolMfaType"},
1586
- "EstimatedNumberOfUsers":{"shape":"IntegerType"}
1587
- }
1588
- },
1589
- "UserStatusType":{
1590
- "type":"string",
1591
- "enum":[
1592
- "UNCONFIRMED",
1593
- "CONFIRMED",
1594
- "ARCHIVED",
1595
- "COMPROMISED",
1596
- "UNKNOWN"
1597
- ]
1598
- },
1599
- "UserType":{
1600
- "type":"structure",
1601
- "members":{
1602
- "Username":{"shape":"UsernameType"},
1603
- "Attributes":{"shape":"AttributeListType"},
1604
- "UserCreateDate":{"shape":"DateType"},
1605
- "UserLastModifiedDate":{"shape":"DateType"},
1606
- "Enabled":{"shape":"BooleanType"},
1607
- "UserStatus":{"shape":"UserStatusType"}
1608
- }
1609
- },
1610
- "UsernameExistsException":{
1611
- "type":"structure",
1612
- "members":{
1613
- "message":{"shape":"MessageType"}
1614
- },
1615
- "exception":true
1616
- },
1617
- "UsernameType":{
1618
- "type":"string",
1619
- "max":128,
1620
- "min":1,
1621
- "pattern":"[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+",
1622
- "sensitive":true
1623
- },
1624
- "UsersListType":{
1625
- "type":"list",
1626
- "member":{"shape":"UserType"}
1627
- },
1628
- "VerifiedAttributeType":{
1629
- "type":"string",
1630
- "enum":[
1631
- "phone_number",
1632
- "email"
1633
- ]
1634
- },
1635
- "VerifiedAttributesListType":{
1636
- "type":"list",
1637
- "member":{"shape":"VerifiedAttributeType"}
1638
- },
1639
- "VerifyUserAttributeRequest":{
1640
- "type":"structure",
1641
- "required":[
1642
- "AttributeName",
1643
- "Code"
1644
- ],
1645
- "members":{
1646
- "AccessToken":{"shape":"TokenModelType"},
1647
- "AttributeName":{"shape":"AttributeNameType"},
1648
- "Code":{"shape":"ConfirmationCodeType"}
1649
- }
1650
- },
1651
- "VerifyUserAttributeResponse":{
1652
- "type":"structure",
1653
- "members":{
1654
- }
1655
- }
1656
- }
1657
- }