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,49 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeDestinations": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "limit",
7
- "result_key": "destinations"
8
- },
9
- "DescribeLogGroups": {
10
- "input_token": "nextToken",
11
- "output_token": "nextToken",
12
- "limit_key": "limit",
13
- "result_key": "logGroups"
14
- },
15
- "DescribeLogStreams": {
16
- "input_token": "nextToken",
17
- "output_token": "nextToken",
18
- "limit_key": "limit",
19
- "result_key": "logStreams"
20
- },
21
- "DescribeMetricFilters": {
22
- "input_token": "nextToken",
23
- "output_token": "nextToken",
24
- "limit_key": "limit",
25
- "result_key": "metricFilters"
26
- },
27
- "DescribeSubscriptionFilters": {
28
- "input_token": "nextToken",
29
- "output_token": "nextToken",
30
- "limit_key": "limit",
31
- "result_key": "subscriptionFilters"
32
- },
33
- "FilterLogEvents": {
34
- "input_token": "nextToken",
35
- "output_token": "nextToken",
36
- "limit_key": "limit",
37
- "result_key": [
38
- "events",
39
- "searchedLogStreams"
40
- ]
41
- },
42
- "GetLogEvents": {
43
- "input_token": "nextToken",
44
- "output_token": "nextForwardToken",
45
- "limit_key": "limit",
46
- "result_key": "events"
47
- }
48
- }
49
- }
@@ -1,1947 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-12-12",
5
- "endpointPrefix":"machinelearning",
6
- "jsonVersion":"1.1",
7
- "serviceFullName":"Amazon Machine Learning",
8
- "signatureVersion":"v4",
9
- "targetPrefix":"AmazonML_20141212",
10
- "protocol":"json"
11
- },
12
- "operations":{
13
- "AddTags":{
14
- "name":"AddTags",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AddTagsInput"},
20
- "output":{"shape":"AddTagsOutput"},
21
- "errors":[
22
- {
23
- "shape":"InvalidInputException",
24
- "error":{"httpStatusCode":400},
25
- "exception":true
26
- },
27
- {
28
- "shape":"InvalidTagException",
29
- "exception":true
30
- },
31
- {
32
- "shape":"TagLimitExceededException",
33
- "exception":true
34
- },
35
- {
36
- "shape":"ResourceNotFoundException",
37
- "error":{"httpStatusCode":404},
38
- "exception":true
39
- },
40
- {
41
- "shape":"InternalServerException",
42
- "error":{"httpStatusCode":500},
43
- "exception":true,
44
- "fault":true
45
- }
46
- ]
47
- },
48
- "CreateBatchPrediction":{
49
- "name":"CreateBatchPrediction",
50
- "http":{
51
- "method":"POST",
52
- "requestUri":"/"
53
- },
54
- "input":{"shape":"CreateBatchPredictionInput"},
55
- "output":{"shape":"CreateBatchPredictionOutput"},
56
- "errors":[
57
- {
58
- "shape":"InvalidInputException",
59
- "error":{"httpStatusCode":400},
60
- "exception":true
61
- },
62
- {
63
- "shape":"InternalServerException",
64
- "error":{"httpStatusCode":500},
65
- "exception":true,
66
- "fault":true
67
- },
68
- {
69
- "shape":"IdempotentParameterMismatchException",
70
- "error":{"httpStatusCode":400},
71
- "exception":true
72
- }
73
- ]
74
- },
75
- "CreateDataSourceFromRDS":{
76
- "name":"CreateDataSourceFromRDS",
77
- "http":{
78
- "method":"POST",
79
- "requestUri":"/"
80
- },
81
- "input":{"shape":"CreateDataSourceFromRDSInput"},
82
- "output":{"shape":"CreateDataSourceFromRDSOutput"},
83
- "errors":[
84
- {
85
- "shape":"InvalidInputException",
86
- "error":{"httpStatusCode":400},
87
- "exception":true
88
- },
89
- {
90
- "shape":"InternalServerException",
91
- "error":{"httpStatusCode":500},
92
- "exception":true,
93
- "fault":true
94
- },
95
- {
96
- "shape":"IdempotentParameterMismatchException",
97
- "error":{"httpStatusCode":400},
98
- "exception":true
99
- }
100
- ]
101
- },
102
- "CreateDataSourceFromRedshift":{
103
- "name":"CreateDataSourceFromRedshift",
104
- "http":{
105
- "method":"POST",
106
- "requestUri":"/"
107
- },
108
- "input":{"shape":"CreateDataSourceFromRedshiftInput"},
109
- "output":{"shape":"CreateDataSourceFromRedshiftOutput"},
110
- "errors":[
111
- {
112
- "shape":"InvalidInputException",
113
- "error":{"httpStatusCode":400},
114
- "exception":true
115
- },
116
- {
117
- "shape":"InternalServerException",
118
- "error":{"httpStatusCode":500},
119
- "exception":true,
120
- "fault":true
121
- },
122
- {
123
- "shape":"IdempotentParameterMismatchException",
124
- "error":{"httpStatusCode":400},
125
- "exception":true
126
- }
127
- ]
128
- },
129
- "CreateDataSourceFromS3":{
130
- "name":"CreateDataSourceFromS3",
131
- "http":{
132
- "method":"POST",
133
- "requestUri":"/"
134
- },
135
- "input":{"shape":"CreateDataSourceFromS3Input"},
136
- "output":{"shape":"CreateDataSourceFromS3Output"},
137
- "errors":[
138
- {
139
- "shape":"InvalidInputException",
140
- "error":{"httpStatusCode":400},
141
- "exception":true
142
- },
143
- {
144
- "shape":"InternalServerException",
145
- "error":{"httpStatusCode":500},
146
- "exception":true,
147
- "fault":true
148
- },
149
- {
150
- "shape":"IdempotentParameterMismatchException",
151
- "error":{"httpStatusCode":400},
152
- "exception":true
153
- }
154
- ]
155
- },
156
- "CreateEvaluation":{
157
- "name":"CreateEvaluation",
158
- "http":{
159
- "method":"POST",
160
- "requestUri":"/"
161
- },
162
- "input":{"shape":"CreateEvaluationInput"},
163
- "output":{"shape":"CreateEvaluationOutput"},
164
- "errors":[
165
- {
166
- "shape":"InvalidInputException",
167
- "error":{"httpStatusCode":400},
168
- "exception":true
169
- },
170
- {
171
- "shape":"InternalServerException",
172
- "error":{"httpStatusCode":500},
173
- "exception":true,
174
- "fault":true
175
- },
176
- {
177
- "shape":"IdempotentParameterMismatchException",
178
- "error":{"httpStatusCode":400},
179
- "exception":true
180
- }
181
- ]
182
- },
183
- "CreateMLModel":{
184
- "name":"CreateMLModel",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"CreateMLModelInput"},
190
- "output":{"shape":"CreateMLModelOutput"},
191
- "errors":[
192
- {
193
- "shape":"InvalidInputException",
194
- "error":{"httpStatusCode":400},
195
- "exception":true
196
- },
197
- {
198
- "shape":"InternalServerException",
199
- "error":{"httpStatusCode":500},
200
- "exception":true,
201
- "fault":true
202
- },
203
- {
204
- "shape":"IdempotentParameterMismatchException",
205
- "error":{"httpStatusCode":400},
206
- "exception":true
207
- }
208
- ]
209
- },
210
- "CreateRealtimeEndpoint":{
211
- "name":"CreateRealtimeEndpoint",
212
- "http":{
213
- "method":"POST",
214
- "requestUri":"/"
215
- },
216
- "input":{"shape":"CreateRealtimeEndpointInput"},
217
- "output":{"shape":"CreateRealtimeEndpointOutput"},
218
- "errors":[
219
- {
220
- "shape":"InvalidInputException",
221
- "error":{"httpStatusCode":400},
222
- "exception":true
223
- },
224
- {
225
- "shape":"ResourceNotFoundException",
226
- "error":{"httpStatusCode":404},
227
- "exception":true
228
- },
229
- {
230
- "shape":"InternalServerException",
231
- "error":{"httpStatusCode":500},
232
- "exception":true,
233
- "fault":true
234
- }
235
- ]
236
- },
237
- "DeleteBatchPrediction":{
238
- "name":"DeleteBatchPrediction",
239
- "http":{
240
- "method":"POST",
241
- "requestUri":"/"
242
- },
243
- "input":{"shape":"DeleteBatchPredictionInput"},
244
- "output":{"shape":"DeleteBatchPredictionOutput"},
245
- "errors":[
246
- {
247
- "shape":"InvalidInputException",
248
- "error":{"httpStatusCode":400},
249
- "exception":true
250
- },
251
- {
252
- "shape":"ResourceNotFoundException",
253
- "error":{"httpStatusCode":404},
254
- "exception":true
255
- },
256
- {
257
- "shape":"InternalServerException",
258
- "error":{"httpStatusCode":500},
259
- "exception":true,
260
- "fault":true
261
- }
262
- ]
263
- },
264
- "DeleteDataSource":{
265
- "name":"DeleteDataSource",
266
- "http":{
267
- "method":"POST",
268
- "requestUri":"/"
269
- },
270
- "input":{"shape":"DeleteDataSourceInput"},
271
- "output":{"shape":"DeleteDataSourceOutput"},
272
- "errors":[
273
- {
274
- "shape":"InvalidInputException",
275
- "error":{"httpStatusCode":400},
276
- "exception":true
277
- },
278
- {
279
- "shape":"ResourceNotFoundException",
280
- "error":{"httpStatusCode":404},
281
- "exception":true
282
- },
283
- {
284
- "shape":"InternalServerException",
285
- "error":{"httpStatusCode":500},
286
- "exception":true,
287
- "fault":true
288
- }
289
- ]
290
- },
291
- "DeleteEvaluation":{
292
- "name":"DeleteEvaluation",
293
- "http":{
294
- "method":"POST",
295
- "requestUri":"/"
296
- },
297
- "input":{"shape":"DeleteEvaluationInput"},
298
- "output":{"shape":"DeleteEvaluationOutput"},
299
- "errors":[
300
- {
301
- "shape":"InvalidInputException",
302
- "error":{"httpStatusCode":400},
303
- "exception":true
304
- },
305
- {
306
- "shape":"ResourceNotFoundException",
307
- "error":{"httpStatusCode":404},
308
- "exception":true
309
- },
310
- {
311
- "shape":"InternalServerException",
312
- "error":{"httpStatusCode":500},
313
- "exception":true,
314
- "fault":true
315
- }
316
- ]
317
- },
318
- "DeleteMLModel":{
319
- "name":"DeleteMLModel",
320
- "http":{
321
- "method":"POST",
322
- "requestUri":"/"
323
- },
324
- "input":{"shape":"DeleteMLModelInput"},
325
- "output":{"shape":"DeleteMLModelOutput"},
326
- "errors":[
327
- {
328
- "shape":"InvalidInputException",
329
- "error":{"httpStatusCode":400},
330
- "exception":true
331
- },
332
- {
333
- "shape":"ResourceNotFoundException",
334
- "error":{"httpStatusCode":404},
335
- "exception":true
336
- },
337
- {
338
- "shape":"InternalServerException",
339
- "error":{"httpStatusCode":500},
340
- "exception":true,
341
- "fault":true
342
- }
343
- ]
344
- },
345
- "DeleteRealtimeEndpoint":{
346
- "name":"DeleteRealtimeEndpoint",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"DeleteRealtimeEndpointInput"},
352
- "output":{"shape":"DeleteRealtimeEndpointOutput"},
353
- "errors":[
354
- {
355
- "shape":"InvalidInputException",
356
- "error":{"httpStatusCode":400},
357
- "exception":true
358
- },
359
- {
360
- "shape":"ResourceNotFoundException",
361
- "error":{"httpStatusCode":404},
362
- "exception":true
363
- },
364
- {
365
- "shape":"InternalServerException",
366
- "error":{"httpStatusCode":500},
367
- "exception":true,
368
- "fault":true
369
- }
370
- ]
371
- },
372
- "DeleteTags":{
373
- "name":"DeleteTags",
374
- "http":{
375
- "method":"POST",
376
- "requestUri":"/"
377
- },
378
- "input":{"shape":"DeleteTagsInput"},
379
- "output":{"shape":"DeleteTagsOutput"},
380
- "errors":[
381
- {
382
- "shape":"InvalidInputException",
383
- "error":{"httpStatusCode":400},
384
- "exception":true
385
- },
386
- {
387
- "shape":"InvalidTagException",
388
- "exception":true
389
- },
390
- {
391
- "shape":"ResourceNotFoundException",
392
- "error":{"httpStatusCode":404},
393
- "exception":true
394
- },
395
- {
396
- "shape":"InternalServerException",
397
- "error":{"httpStatusCode":500},
398
- "exception":true,
399
- "fault":true
400
- }
401
- ]
402
- },
403
- "DescribeBatchPredictions":{
404
- "name":"DescribeBatchPredictions",
405
- "http":{
406
- "method":"POST",
407
- "requestUri":"/"
408
- },
409
- "input":{"shape":"DescribeBatchPredictionsInput"},
410
- "output":{"shape":"DescribeBatchPredictionsOutput"},
411
- "errors":[
412
- {
413
- "shape":"InvalidInputException",
414
- "error":{"httpStatusCode":400},
415
- "exception":true
416
- },
417
- {
418
- "shape":"InternalServerException",
419
- "error":{"httpStatusCode":500},
420
- "exception":true,
421
- "fault":true
422
- }
423
- ]
424
- },
425
- "DescribeDataSources":{
426
- "name":"DescribeDataSources",
427
- "http":{
428
- "method":"POST",
429
- "requestUri":"/"
430
- },
431
- "input":{"shape":"DescribeDataSourcesInput"},
432
- "output":{"shape":"DescribeDataSourcesOutput"},
433
- "errors":[
434
- {
435
- "shape":"InvalidInputException",
436
- "error":{"httpStatusCode":400},
437
- "exception":true
438
- },
439
- {
440
- "shape":"InternalServerException",
441
- "error":{"httpStatusCode":500},
442
- "exception":true,
443
- "fault":true
444
- }
445
- ]
446
- },
447
- "DescribeEvaluations":{
448
- "name":"DescribeEvaluations",
449
- "http":{
450
- "method":"POST",
451
- "requestUri":"/"
452
- },
453
- "input":{"shape":"DescribeEvaluationsInput"},
454
- "output":{"shape":"DescribeEvaluationsOutput"},
455
- "errors":[
456
- {
457
- "shape":"InvalidInputException",
458
- "error":{"httpStatusCode":400},
459
- "exception":true
460
- },
461
- {
462
- "shape":"InternalServerException",
463
- "error":{"httpStatusCode":500},
464
- "exception":true,
465
- "fault":true
466
- }
467
- ]
468
- },
469
- "DescribeMLModels":{
470
- "name":"DescribeMLModels",
471
- "http":{
472
- "method":"POST",
473
- "requestUri":"/"
474
- },
475
- "input":{"shape":"DescribeMLModelsInput"},
476
- "output":{"shape":"DescribeMLModelsOutput"},
477
- "errors":[
478
- {
479
- "shape":"InvalidInputException",
480
- "error":{"httpStatusCode":400},
481
- "exception":true
482
- },
483
- {
484
- "shape":"InternalServerException",
485
- "error":{"httpStatusCode":500},
486
- "exception":true,
487
- "fault":true
488
- }
489
- ]
490
- },
491
- "DescribeTags":{
492
- "name":"DescribeTags",
493
- "http":{
494
- "method":"POST",
495
- "requestUri":"/"
496
- },
497
- "input":{"shape":"DescribeTagsInput"},
498
- "output":{"shape":"DescribeTagsOutput"},
499
- "errors":[
500
- {
501
- "shape":"InvalidInputException",
502
- "error":{"httpStatusCode":400},
503
- "exception":true
504
- },
505
- {
506
- "shape":"ResourceNotFoundException",
507
- "error":{"httpStatusCode":404},
508
- "exception":true
509
- },
510
- {
511
- "shape":"InternalServerException",
512
- "error":{"httpStatusCode":500},
513
- "exception":true,
514
- "fault":true
515
- }
516
- ]
517
- },
518
- "GetBatchPrediction":{
519
- "name":"GetBatchPrediction",
520
- "http":{
521
- "method":"POST",
522
- "requestUri":"/"
523
- },
524
- "input":{"shape":"GetBatchPredictionInput"},
525
- "output":{"shape":"GetBatchPredictionOutput"},
526
- "errors":[
527
- {
528
- "shape":"InvalidInputException",
529
- "error":{"httpStatusCode":400},
530
- "exception":true
531
- },
532
- {
533
- "shape":"ResourceNotFoundException",
534
- "error":{"httpStatusCode":404},
535
- "exception":true
536
- },
537
- {
538
- "shape":"InternalServerException",
539
- "error":{"httpStatusCode":500},
540
- "exception":true,
541
- "fault":true
542
- }
543
- ]
544
- },
545
- "GetDataSource":{
546
- "name":"GetDataSource",
547
- "http":{
548
- "method":"POST",
549
- "requestUri":"/"
550
- },
551
- "input":{"shape":"GetDataSourceInput"},
552
- "output":{"shape":"GetDataSourceOutput"},
553
- "errors":[
554
- {
555
- "shape":"InvalidInputException",
556
- "error":{"httpStatusCode":400},
557
- "exception":true
558
- },
559
- {
560
- "shape":"ResourceNotFoundException",
561
- "error":{"httpStatusCode":404},
562
- "exception":true
563
- },
564
- {
565
- "shape":"InternalServerException",
566
- "error":{"httpStatusCode":500},
567
- "exception":true,
568
- "fault":true
569
- }
570
- ]
571
- },
572
- "GetEvaluation":{
573
- "name":"GetEvaluation",
574
- "http":{
575
- "method":"POST",
576
- "requestUri":"/"
577
- },
578
- "input":{"shape":"GetEvaluationInput"},
579
- "output":{"shape":"GetEvaluationOutput"},
580
- "errors":[
581
- {
582
- "shape":"InvalidInputException",
583
- "error":{"httpStatusCode":400},
584
- "exception":true
585
- },
586
- {
587
- "shape":"ResourceNotFoundException",
588
- "error":{"httpStatusCode":404},
589
- "exception":true
590
- },
591
- {
592
- "shape":"InternalServerException",
593
- "error":{"httpStatusCode":500},
594
- "exception":true,
595
- "fault":true
596
- }
597
- ]
598
- },
599
- "GetMLModel":{
600
- "name":"GetMLModel",
601
- "http":{
602
- "method":"POST",
603
- "requestUri":"/"
604
- },
605
- "input":{"shape":"GetMLModelInput"},
606
- "output":{"shape":"GetMLModelOutput"},
607
- "errors":[
608
- {
609
- "shape":"InvalidInputException",
610
- "error":{"httpStatusCode":400},
611
- "exception":true
612
- },
613
- {
614
- "shape":"ResourceNotFoundException",
615
- "error":{"httpStatusCode":404},
616
- "exception":true
617
- },
618
- {
619
- "shape":"InternalServerException",
620
- "error":{"httpStatusCode":500},
621
- "exception":true,
622
- "fault":true
623
- }
624
- ]
625
- },
626
- "Predict":{
627
- "name":"Predict",
628
- "http":{
629
- "method":"POST",
630
- "requestUri":"/"
631
- },
632
- "input":{"shape":"PredictInput"},
633
- "output":{"shape":"PredictOutput"},
634
- "errors":[
635
- {
636
- "shape":"InvalidInputException",
637
- "error":{"httpStatusCode":400},
638
- "exception":true
639
- },
640
- {
641
- "shape":"ResourceNotFoundException",
642
- "error":{"httpStatusCode":404},
643
- "exception":true
644
- },
645
- {
646
- "shape":"LimitExceededException",
647
- "error":{"httpStatusCode":417},
648
- "exception":true
649
- },
650
- {
651
- "shape":"InternalServerException",
652
- "error":{"httpStatusCode":500},
653
- "exception":true,
654
- "fault":true
655
- },
656
- {
657
- "shape":"PredictorNotMountedException",
658
- "error":{"httpStatusCode":400},
659
- "exception":true
660
- }
661
- ]
662
- },
663
- "UpdateBatchPrediction":{
664
- "name":"UpdateBatchPrediction",
665
- "http":{
666
- "method":"POST",
667
- "requestUri":"/"
668
- },
669
- "input":{"shape":"UpdateBatchPredictionInput"},
670
- "output":{"shape":"UpdateBatchPredictionOutput"},
671
- "errors":[
672
- {
673
- "shape":"InvalidInputException",
674
- "error":{"httpStatusCode":400},
675
- "exception":true
676
- },
677
- {
678
- "shape":"ResourceNotFoundException",
679
- "error":{"httpStatusCode":404},
680
- "exception":true
681
- },
682
- {
683
- "shape":"InternalServerException",
684
- "error":{"httpStatusCode":500},
685
- "exception":true,
686
- "fault":true
687
- }
688
- ]
689
- },
690
- "UpdateDataSource":{
691
- "name":"UpdateDataSource",
692
- "http":{
693
- "method":"POST",
694
- "requestUri":"/"
695
- },
696
- "input":{"shape":"UpdateDataSourceInput"},
697
- "output":{"shape":"UpdateDataSourceOutput"},
698
- "errors":[
699
- {
700
- "shape":"InvalidInputException",
701
- "error":{"httpStatusCode":400},
702
- "exception":true
703
- },
704
- {
705
- "shape":"ResourceNotFoundException",
706
- "error":{"httpStatusCode":404},
707
- "exception":true
708
- },
709
- {
710
- "shape":"InternalServerException",
711
- "error":{"httpStatusCode":500},
712
- "exception":true,
713
- "fault":true
714
- }
715
- ]
716
- },
717
- "UpdateEvaluation":{
718
- "name":"UpdateEvaluation",
719
- "http":{
720
- "method":"POST",
721
- "requestUri":"/"
722
- },
723
- "input":{"shape":"UpdateEvaluationInput"},
724
- "output":{"shape":"UpdateEvaluationOutput"},
725
- "errors":[
726
- {
727
- "shape":"InvalidInputException",
728
- "error":{"httpStatusCode":400},
729
- "exception":true
730
- },
731
- {
732
- "shape":"ResourceNotFoundException",
733
- "error":{"httpStatusCode":404},
734
- "exception":true
735
- },
736
- {
737
- "shape":"InternalServerException",
738
- "error":{"httpStatusCode":500},
739
- "exception":true,
740
- "fault":true
741
- }
742
- ]
743
- },
744
- "UpdateMLModel":{
745
- "name":"UpdateMLModel",
746
- "http":{
747
- "method":"POST",
748
- "requestUri":"/"
749
- },
750
- "input":{"shape":"UpdateMLModelInput"},
751
- "output":{"shape":"UpdateMLModelOutput"},
752
- "errors":[
753
- {
754
- "shape":"InvalidInputException",
755
- "error":{"httpStatusCode":400},
756
- "exception":true
757
- },
758
- {
759
- "shape":"ResourceNotFoundException",
760
- "error":{"httpStatusCode":404},
761
- "exception":true
762
- },
763
- {
764
- "shape":"InternalServerException",
765
- "error":{"httpStatusCode":500},
766
- "exception":true,
767
- "fault":true
768
- }
769
- ]
770
- }
771
- },
772
- "shapes":{
773
- "AddTagsInput":{
774
- "type":"structure",
775
- "required":[
776
- "Tags",
777
- "ResourceId",
778
- "ResourceType"
779
- ],
780
- "members":{
781
- "Tags":{"shape":"TagList"},
782
- "ResourceId":{"shape":"EntityId"},
783
- "ResourceType":{"shape":"TaggableResourceType"}
784
- }
785
- },
786
- "AddTagsOutput":{
787
- "type":"structure",
788
- "members":{
789
- "ResourceId":{"shape":"EntityId"},
790
- "ResourceType":{"shape":"TaggableResourceType"}
791
- }
792
- },
793
- "Algorithm":{
794
- "type":"string",
795
- "enum":["sgd"]
796
- },
797
- "AwsUserArn":{
798
- "type":"string",
799
- "pattern":"arn:aws:iam::[0-9]+:((user/.+)|(root))"
800
- },
801
- "BatchPrediction":{
802
- "type":"structure",
803
- "members":{
804
- "BatchPredictionId":{"shape":"EntityId"},
805
- "MLModelId":{"shape":"EntityId"},
806
- "BatchPredictionDataSourceId":{"shape":"EntityId"},
807
- "InputDataLocationS3":{"shape":"S3Url"},
808
- "CreatedByIamUser":{"shape":"AwsUserArn"},
809
- "CreatedAt":{"shape":"EpochTime"},
810
- "LastUpdatedAt":{"shape":"EpochTime"},
811
- "Name":{"shape":"EntityName"},
812
- "Status":{"shape":"EntityStatus"},
813
- "OutputUri":{"shape":"S3Url"},
814
- "Message":{"shape":"Message"}
815
- }
816
- },
817
- "BatchPredictionFilterVariable":{
818
- "type":"string",
819
- "enum":[
820
- "CreatedAt",
821
- "LastUpdatedAt",
822
- "Status",
823
- "Name",
824
- "IAMUser",
825
- "MLModelId",
826
- "DataSourceId",
827
- "DataURI"
828
- ]
829
- },
830
- "BatchPredictions":{
831
- "type":"list",
832
- "member":{"shape":"BatchPrediction"}
833
- },
834
- "ComparatorValue":{
835
- "type":"string",
836
- "max":1024,
837
- "pattern":".*\\S.*|^$"
838
- },
839
- "ComputeStatistics":{"type":"boolean"},
840
- "CreateBatchPredictionInput":{
841
- "type":"structure",
842
- "required":[
843
- "BatchPredictionId",
844
- "MLModelId",
845
- "BatchPredictionDataSourceId",
846
- "OutputUri"
847
- ],
848
- "members":{
849
- "BatchPredictionId":{"shape":"EntityId"},
850
- "BatchPredictionName":{"shape":"EntityName"},
851
- "MLModelId":{"shape":"EntityId"},
852
- "BatchPredictionDataSourceId":{"shape":"EntityId"},
853
- "OutputUri":{"shape":"S3Url"}
854
- }
855
- },
856
- "CreateBatchPredictionOutput":{
857
- "type":"structure",
858
- "members":{
859
- "BatchPredictionId":{"shape":"EntityId"}
860
- }
861
- },
862
- "CreateDataSourceFromRDSInput":{
863
- "type":"structure",
864
- "required":[
865
- "DataSourceId",
866
- "RDSData",
867
- "RoleARN"
868
- ],
869
- "members":{
870
- "DataSourceId":{"shape":"EntityId"},
871
- "DataSourceName":{"shape":"EntityName"},
872
- "RDSData":{"shape":"RDSDataSpec"},
873
- "RoleARN":{"shape":"RoleARN"},
874
- "ComputeStatistics":{"shape":"ComputeStatistics"}
875
- }
876
- },
877
- "CreateDataSourceFromRDSOutput":{
878
- "type":"structure",
879
- "members":{
880
- "DataSourceId":{"shape":"EntityId"}
881
- }
882
- },
883
- "CreateDataSourceFromRedshiftInput":{
884
- "type":"structure",
885
- "required":[
886
- "DataSourceId",
887
- "DataSpec",
888
- "RoleARN"
889
- ],
890
- "members":{
891
- "DataSourceId":{"shape":"EntityId"},
892
- "DataSourceName":{"shape":"EntityName"},
893
- "DataSpec":{"shape":"RedshiftDataSpec"},
894
- "RoleARN":{"shape":"RoleARN"},
895
- "ComputeStatistics":{"shape":"ComputeStatistics"}
896
- }
897
- },
898
- "CreateDataSourceFromRedshiftOutput":{
899
- "type":"structure",
900
- "members":{
901
- "DataSourceId":{"shape":"EntityId"}
902
- }
903
- },
904
- "CreateDataSourceFromS3Input":{
905
- "type":"structure",
906
- "required":[
907
- "DataSourceId",
908
- "DataSpec"
909
- ],
910
- "members":{
911
- "DataSourceId":{"shape":"EntityId"},
912
- "DataSourceName":{"shape":"EntityName"},
913
- "DataSpec":{"shape":"S3DataSpec"},
914
- "ComputeStatistics":{"shape":"ComputeStatistics"}
915
- }
916
- },
917
- "CreateDataSourceFromS3Output":{
918
- "type":"structure",
919
- "members":{
920
- "DataSourceId":{"shape":"EntityId"}
921
- }
922
- },
923
- "CreateEvaluationInput":{
924
- "type":"structure",
925
- "required":[
926
- "EvaluationId",
927
- "MLModelId",
928
- "EvaluationDataSourceId"
929
- ],
930
- "members":{
931
- "EvaluationId":{"shape":"EntityId"},
932
- "EvaluationName":{"shape":"EntityName"},
933
- "MLModelId":{"shape":"EntityId"},
934
- "EvaluationDataSourceId":{"shape":"EntityId"}
935
- }
936
- },
937
- "CreateEvaluationOutput":{
938
- "type":"structure",
939
- "members":{
940
- "EvaluationId":{"shape":"EntityId"}
941
- }
942
- },
943
- "CreateMLModelInput":{
944
- "type":"structure",
945
- "required":[
946
- "MLModelId",
947
- "MLModelType",
948
- "TrainingDataSourceId"
949
- ],
950
- "members":{
951
- "MLModelId":{"shape":"EntityId"},
952
- "MLModelName":{"shape":"EntityName"},
953
- "MLModelType":{"shape":"MLModelType"},
954
- "Parameters":{"shape":"TrainingParameters"},
955
- "TrainingDataSourceId":{"shape":"EntityId"},
956
- "Recipe":{"shape":"Recipe"},
957
- "RecipeUri":{"shape":"S3Url"}
958
- }
959
- },
960
- "CreateMLModelOutput":{
961
- "type":"structure",
962
- "members":{
963
- "MLModelId":{"shape":"EntityId"}
964
- }
965
- },
966
- "CreateRealtimeEndpointInput":{
967
- "type":"structure",
968
- "required":["MLModelId"],
969
- "members":{
970
- "MLModelId":{"shape":"EntityId"}
971
- }
972
- },
973
- "CreateRealtimeEndpointOutput":{
974
- "type":"structure",
975
- "members":{
976
- "MLModelId":{"shape":"EntityId"},
977
- "RealtimeEndpointInfo":{"shape":"RealtimeEndpointInfo"}
978
- }
979
- },
980
- "DataRearrangement":{"type":"string"},
981
- "DataSchema":{
982
- "type":"string",
983
- "max":131071
984
- },
985
- "DataSource":{
986
- "type":"structure",
987
- "members":{
988
- "DataSourceId":{"shape":"EntityId"},
989
- "DataLocationS3":{"shape":"S3Url"},
990
- "DataRearrangement":{"shape":"DataRearrangement"},
991
- "CreatedByIamUser":{"shape":"AwsUserArn"},
992
- "CreatedAt":{"shape":"EpochTime"},
993
- "LastUpdatedAt":{"shape":"EpochTime"},
994
- "DataSizeInBytes":{"shape":"LongType"},
995
- "NumberOfFiles":{"shape":"LongType"},
996
- "Name":{"shape":"EntityName"},
997
- "Status":{"shape":"EntityStatus"},
998
- "Message":{"shape":"Message"},
999
- "RedshiftMetadata":{"shape":"RedshiftMetadata"},
1000
- "RDSMetadata":{"shape":"RDSMetadata"},
1001
- "RoleARN":{"shape":"RoleARN"},
1002
- "ComputeStatistics":{"shape":"ComputeStatistics"}
1003
- }
1004
- },
1005
- "DataSourceFilterVariable":{
1006
- "type":"string",
1007
- "enum":[
1008
- "CreatedAt",
1009
- "LastUpdatedAt",
1010
- "Status",
1011
- "Name",
1012
- "DataLocationS3",
1013
- "IAMUser"
1014
- ]
1015
- },
1016
- "DataSources":{
1017
- "type":"list",
1018
- "member":{"shape":"DataSource"}
1019
- },
1020
- "DeleteBatchPredictionInput":{
1021
- "type":"structure",
1022
- "required":["BatchPredictionId"],
1023
- "members":{
1024
- "BatchPredictionId":{"shape":"EntityId"}
1025
- }
1026
- },
1027
- "DeleteBatchPredictionOutput":{
1028
- "type":"structure",
1029
- "members":{
1030
- "BatchPredictionId":{"shape":"EntityId"}
1031
- }
1032
- },
1033
- "DeleteDataSourceInput":{
1034
- "type":"structure",
1035
- "required":["DataSourceId"],
1036
- "members":{
1037
- "DataSourceId":{"shape":"EntityId"}
1038
- }
1039
- },
1040
- "DeleteDataSourceOutput":{
1041
- "type":"structure",
1042
- "members":{
1043
- "DataSourceId":{"shape":"EntityId"}
1044
- }
1045
- },
1046
- "DeleteEvaluationInput":{
1047
- "type":"structure",
1048
- "required":["EvaluationId"],
1049
- "members":{
1050
- "EvaluationId":{"shape":"EntityId"}
1051
- }
1052
- },
1053
- "DeleteEvaluationOutput":{
1054
- "type":"structure",
1055
- "members":{
1056
- "EvaluationId":{"shape":"EntityId"}
1057
- }
1058
- },
1059
- "DeleteMLModelInput":{
1060
- "type":"structure",
1061
- "required":["MLModelId"],
1062
- "members":{
1063
- "MLModelId":{"shape":"EntityId"}
1064
- }
1065
- },
1066
- "DeleteMLModelOutput":{
1067
- "type":"structure",
1068
- "members":{
1069
- "MLModelId":{"shape":"EntityId"}
1070
- }
1071
- },
1072
- "DeleteRealtimeEndpointInput":{
1073
- "type":"structure",
1074
- "required":["MLModelId"],
1075
- "members":{
1076
- "MLModelId":{"shape":"EntityId"}
1077
- }
1078
- },
1079
- "DeleteRealtimeEndpointOutput":{
1080
- "type":"structure",
1081
- "members":{
1082
- "MLModelId":{"shape":"EntityId"},
1083
- "RealtimeEndpointInfo":{"shape":"RealtimeEndpointInfo"}
1084
- }
1085
- },
1086
- "DeleteTagsInput":{
1087
- "type":"structure",
1088
- "required":[
1089
- "TagKeys",
1090
- "ResourceId",
1091
- "ResourceType"
1092
- ],
1093
- "members":{
1094
- "TagKeys":{"shape":"TagKeyList"},
1095
- "ResourceId":{"shape":"EntityId"},
1096
- "ResourceType":{"shape":"TaggableResourceType"}
1097
- }
1098
- },
1099
- "DeleteTagsOutput":{
1100
- "type":"structure",
1101
- "members":{
1102
- "ResourceId":{"shape":"EntityId"},
1103
- "ResourceType":{"shape":"TaggableResourceType"}
1104
- }
1105
- },
1106
- "DescribeBatchPredictionsInput":{
1107
- "type":"structure",
1108
- "members":{
1109
- "FilterVariable":{"shape":"BatchPredictionFilterVariable"},
1110
- "EQ":{"shape":"ComparatorValue"},
1111
- "GT":{"shape":"ComparatorValue"},
1112
- "LT":{"shape":"ComparatorValue"},
1113
- "GE":{"shape":"ComparatorValue"},
1114
- "LE":{"shape":"ComparatorValue"},
1115
- "NE":{"shape":"ComparatorValue"},
1116
- "Prefix":{"shape":"ComparatorValue"},
1117
- "SortOrder":{"shape":"SortOrder"},
1118
- "NextToken":{"shape":"StringType"},
1119
- "Limit":{"shape":"PageLimit"}
1120
- }
1121
- },
1122
- "DescribeBatchPredictionsOutput":{
1123
- "type":"structure",
1124
- "members":{
1125
- "Results":{"shape":"BatchPredictions"},
1126
- "NextToken":{"shape":"StringType"}
1127
- }
1128
- },
1129
- "DescribeDataSourcesInput":{
1130
- "type":"structure",
1131
- "members":{
1132
- "FilterVariable":{"shape":"DataSourceFilterVariable"},
1133
- "EQ":{"shape":"ComparatorValue"},
1134
- "GT":{"shape":"ComparatorValue"},
1135
- "LT":{"shape":"ComparatorValue"},
1136
- "GE":{"shape":"ComparatorValue"},
1137
- "LE":{"shape":"ComparatorValue"},
1138
- "NE":{"shape":"ComparatorValue"},
1139
- "Prefix":{"shape":"ComparatorValue"},
1140
- "SortOrder":{"shape":"SortOrder"},
1141
- "NextToken":{"shape":"StringType"},
1142
- "Limit":{"shape":"PageLimit"}
1143
- }
1144
- },
1145
- "DescribeDataSourcesOutput":{
1146
- "type":"structure",
1147
- "members":{
1148
- "Results":{"shape":"DataSources"},
1149
- "NextToken":{"shape":"StringType"}
1150
- }
1151
- },
1152
- "DescribeEvaluationsInput":{
1153
- "type":"structure",
1154
- "members":{
1155
- "FilterVariable":{"shape":"EvaluationFilterVariable"},
1156
- "EQ":{"shape":"ComparatorValue"},
1157
- "GT":{"shape":"ComparatorValue"},
1158
- "LT":{"shape":"ComparatorValue"},
1159
- "GE":{"shape":"ComparatorValue"},
1160
- "LE":{"shape":"ComparatorValue"},
1161
- "NE":{"shape":"ComparatorValue"},
1162
- "Prefix":{"shape":"ComparatorValue"},
1163
- "SortOrder":{"shape":"SortOrder"},
1164
- "NextToken":{"shape":"StringType"},
1165
- "Limit":{"shape":"PageLimit"}
1166
- }
1167
- },
1168
- "DescribeEvaluationsOutput":{
1169
- "type":"structure",
1170
- "members":{
1171
- "Results":{"shape":"Evaluations"},
1172
- "NextToken":{"shape":"StringType"}
1173
- }
1174
- },
1175
- "DescribeMLModelsInput":{
1176
- "type":"structure",
1177
- "members":{
1178
- "FilterVariable":{"shape":"MLModelFilterVariable"},
1179
- "EQ":{"shape":"ComparatorValue"},
1180
- "GT":{"shape":"ComparatorValue"},
1181
- "LT":{"shape":"ComparatorValue"},
1182
- "GE":{"shape":"ComparatorValue"},
1183
- "LE":{"shape":"ComparatorValue"},
1184
- "NE":{"shape":"ComparatorValue"},
1185
- "Prefix":{"shape":"ComparatorValue"},
1186
- "SortOrder":{"shape":"SortOrder"},
1187
- "NextToken":{"shape":"StringType"},
1188
- "Limit":{"shape":"PageLimit"}
1189
- }
1190
- },
1191
- "DescribeMLModelsOutput":{
1192
- "type":"structure",
1193
- "members":{
1194
- "Results":{"shape":"MLModels"},
1195
- "NextToken":{"shape":"StringType"}
1196
- }
1197
- },
1198
- "DescribeTagsInput":{
1199
- "type":"structure",
1200
- "required":[
1201
- "ResourceId",
1202
- "ResourceType"
1203
- ],
1204
- "members":{
1205
- "ResourceId":{"shape":"EntityId"},
1206
- "ResourceType":{"shape":"TaggableResourceType"}
1207
- }
1208
- },
1209
- "DescribeTagsOutput":{
1210
- "type":"structure",
1211
- "members":{
1212
- "ResourceId":{"shape":"EntityId"},
1213
- "ResourceType":{"shape":"TaggableResourceType"},
1214
- "Tags":{"shape":"TagList"}
1215
- }
1216
- },
1217
- "DetailsAttributes":{
1218
- "type":"string",
1219
- "enum":[
1220
- "PredictiveModelType",
1221
- "Algorithm"
1222
- ]
1223
- },
1224
- "DetailsMap":{
1225
- "type":"map",
1226
- "key":{"shape":"DetailsAttributes"},
1227
- "value":{"shape":"DetailsValue"}
1228
- },
1229
- "DetailsValue":{
1230
- "type":"string",
1231
- "min":1
1232
- },
1233
- "EDPPipelineId":{
1234
- "type":"string",
1235
- "min":1,
1236
- "max":1024
1237
- },
1238
- "EDPResourceRole":{
1239
- "type":"string",
1240
- "min":1,
1241
- "max":64
1242
- },
1243
- "EDPSecurityGroupId":{
1244
- "type":"string",
1245
- "min":1,
1246
- "max":255
1247
- },
1248
- "EDPSecurityGroupIds":{
1249
- "type":"list",
1250
- "member":{"shape":"EDPSecurityGroupId"}
1251
- },
1252
- "EDPServiceRole":{
1253
- "type":"string",
1254
- "min":1,
1255
- "max":64
1256
- },
1257
- "EDPSubnetId":{
1258
- "type":"string",
1259
- "min":1,
1260
- "max":255
1261
- },
1262
- "EntityId":{
1263
- "type":"string",
1264
- "min":1,
1265
- "max":64,
1266
- "pattern":"[a-zA-Z0-9_.-]+"
1267
- },
1268
- "EntityName":{
1269
- "type":"string",
1270
- "max":1024,
1271
- "pattern":".*\\S.*|^$"
1272
- },
1273
- "EntityStatus":{
1274
- "type":"string",
1275
- "enum":[
1276
- "PENDING",
1277
- "INPROGRESS",
1278
- "FAILED",
1279
- "COMPLETED",
1280
- "DELETED"
1281
- ]
1282
- },
1283
- "EpochTime":{"type":"timestamp"},
1284
- "ErrorCode":{"type":"integer"},
1285
- "ErrorMessage":{
1286
- "type":"string",
1287
- "max":2048
1288
- },
1289
- "Evaluation":{
1290
- "type":"structure",
1291
- "members":{
1292
- "EvaluationId":{"shape":"EntityId"},
1293
- "MLModelId":{"shape":"EntityId"},
1294
- "EvaluationDataSourceId":{"shape":"EntityId"},
1295
- "InputDataLocationS3":{"shape":"S3Url"},
1296
- "CreatedByIamUser":{"shape":"AwsUserArn"},
1297
- "CreatedAt":{"shape":"EpochTime"},
1298
- "LastUpdatedAt":{"shape":"EpochTime"},
1299
- "Name":{"shape":"EntityName"},
1300
- "Status":{"shape":"EntityStatus"},
1301
- "PerformanceMetrics":{"shape":"PerformanceMetrics"},
1302
- "Message":{"shape":"Message"}
1303
- }
1304
- },
1305
- "EvaluationFilterVariable":{
1306
- "type":"string",
1307
- "enum":[
1308
- "CreatedAt",
1309
- "LastUpdatedAt",
1310
- "Status",
1311
- "Name",
1312
- "IAMUser",
1313
- "MLModelId",
1314
- "DataSourceId",
1315
- "DataURI"
1316
- ]
1317
- },
1318
- "Evaluations":{
1319
- "type":"list",
1320
- "member":{"shape":"Evaluation"}
1321
- },
1322
- "GetBatchPredictionInput":{
1323
- "type":"structure",
1324
- "required":["BatchPredictionId"],
1325
- "members":{
1326
- "BatchPredictionId":{"shape":"EntityId"}
1327
- }
1328
- },
1329
- "GetBatchPredictionOutput":{
1330
- "type":"structure",
1331
- "members":{
1332
- "BatchPredictionId":{"shape":"EntityId"},
1333
- "MLModelId":{"shape":"EntityId"},
1334
- "BatchPredictionDataSourceId":{"shape":"EntityId"},
1335
- "InputDataLocationS3":{"shape":"S3Url"},
1336
- "CreatedByIamUser":{"shape":"AwsUserArn"},
1337
- "CreatedAt":{"shape":"EpochTime"},
1338
- "LastUpdatedAt":{"shape":"EpochTime"},
1339
- "Name":{"shape":"EntityName"},
1340
- "Status":{"shape":"EntityStatus"},
1341
- "OutputUri":{"shape":"S3Url"},
1342
- "LogUri":{"shape":"PresignedS3Url"},
1343
- "Message":{"shape":"Message"}
1344
- }
1345
- },
1346
- "GetDataSourceInput":{
1347
- "type":"structure",
1348
- "required":["DataSourceId"],
1349
- "members":{
1350
- "DataSourceId":{"shape":"EntityId"},
1351
- "Verbose":{"shape":"Verbose"}
1352
- }
1353
- },
1354
- "GetDataSourceOutput":{
1355
- "type":"structure",
1356
- "members":{
1357
- "DataSourceId":{"shape":"EntityId"},
1358
- "DataLocationS3":{"shape":"S3Url"},
1359
- "DataRearrangement":{"shape":"DataRearrangement"},
1360
- "CreatedByIamUser":{"shape":"AwsUserArn"},
1361
- "CreatedAt":{"shape":"EpochTime"},
1362
- "LastUpdatedAt":{"shape":"EpochTime"},
1363
- "DataSizeInBytes":{"shape":"LongType"},
1364
- "NumberOfFiles":{"shape":"LongType"},
1365
- "Name":{"shape":"EntityName"},
1366
- "Status":{"shape":"EntityStatus"},
1367
- "LogUri":{"shape":"PresignedS3Url"},
1368
- "Message":{"shape":"Message"},
1369
- "RedshiftMetadata":{"shape":"RedshiftMetadata"},
1370
- "RDSMetadata":{"shape":"RDSMetadata"},
1371
- "RoleARN":{"shape":"RoleARN"},
1372
- "ComputeStatistics":{"shape":"ComputeStatistics"},
1373
- "DataSourceSchema":{"shape":"DataSchema"}
1374
- }
1375
- },
1376
- "GetEvaluationInput":{
1377
- "type":"structure",
1378
- "required":["EvaluationId"],
1379
- "members":{
1380
- "EvaluationId":{"shape":"EntityId"}
1381
- }
1382
- },
1383
- "GetEvaluationOutput":{
1384
- "type":"structure",
1385
- "members":{
1386
- "EvaluationId":{"shape":"EntityId"},
1387
- "MLModelId":{"shape":"EntityId"},
1388
- "EvaluationDataSourceId":{"shape":"EntityId"},
1389
- "InputDataLocationS3":{"shape":"S3Url"},
1390
- "CreatedByIamUser":{"shape":"AwsUserArn"},
1391
- "CreatedAt":{"shape":"EpochTime"},
1392
- "LastUpdatedAt":{"shape":"EpochTime"},
1393
- "Name":{"shape":"EntityName"},
1394
- "Status":{"shape":"EntityStatus"},
1395
- "PerformanceMetrics":{"shape":"PerformanceMetrics"},
1396
- "LogUri":{"shape":"PresignedS3Url"},
1397
- "Message":{"shape":"Message"}
1398
- }
1399
- },
1400
- "GetMLModelInput":{
1401
- "type":"structure",
1402
- "required":["MLModelId"],
1403
- "members":{
1404
- "MLModelId":{"shape":"EntityId"},
1405
- "Verbose":{"shape":"Verbose"}
1406
- }
1407
- },
1408
- "GetMLModelOutput":{
1409
- "type":"structure",
1410
- "members":{
1411
- "MLModelId":{"shape":"EntityId"},
1412
- "TrainingDataSourceId":{"shape":"EntityId"},
1413
- "CreatedByIamUser":{"shape":"AwsUserArn"},
1414
- "CreatedAt":{"shape":"EpochTime"},
1415
- "LastUpdatedAt":{"shape":"EpochTime"},
1416
- "Name":{"shape":"MLModelName"},
1417
- "Status":{"shape":"EntityStatus"},
1418
- "SizeInBytes":{"shape":"LongType"},
1419
- "EndpointInfo":{"shape":"RealtimeEndpointInfo"},
1420
- "TrainingParameters":{"shape":"TrainingParameters"},
1421
- "InputDataLocationS3":{"shape":"S3Url"},
1422
- "MLModelType":{"shape":"MLModelType"},
1423
- "ScoreThreshold":{"shape":"ScoreThreshold"},
1424
- "ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
1425
- "LogUri":{"shape":"PresignedS3Url"},
1426
- "Message":{"shape":"Message"},
1427
- "Recipe":{"shape":"Recipe"},
1428
- "Schema":{"shape":"DataSchema"}
1429
- }
1430
- },
1431
- "IdempotentParameterMismatchException":{
1432
- "type":"structure",
1433
- "members":{
1434
- "message":{"shape":"ErrorMessage"},
1435
- "code":{"shape":"ErrorCode"}
1436
- },
1437
- "error":{"httpStatusCode":400},
1438
- "exception":true
1439
- },
1440
- "IntegerType":{"type":"integer"},
1441
- "InternalServerException":{
1442
- "type":"structure",
1443
- "members":{
1444
- "message":{"shape":"ErrorMessage"},
1445
- "code":{"shape":"ErrorCode"}
1446
- },
1447
- "error":{"httpStatusCode":500},
1448
- "exception":true,
1449
- "fault":true
1450
- },
1451
- "InvalidInputException":{
1452
- "type":"structure",
1453
- "members":{
1454
- "message":{"shape":"ErrorMessage"},
1455
- "code":{"shape":"ErrorCode"}
1456
- },
1457
- "error":{"httpStatusCode":400},
1458
- "exception":true
1459
- },
1460
- "InvalidTagException":{
1461
- "type":"structure",
1462
- "members":{
1463
- "message":{"shape":"ErrorMessage"}
1464
- },
1465
- "exception":true
1466
- },
1467
- "Label":{
1468
- "type":"string",
1469
- "min":1
1470
- },
1471
- "LimitExceededException":{
1472
- "type":"structure",
1473
- "members":{
1474
- "message":{"shape":"ErrorMessage"},
1475
- "code":{"shape":"ErrorCode"}
1476
- },
1477
- "error":{"httpStatusCode":417},
1478
- "exception":true
1479
- },
1480
- "LongType":{"type":"long"},
1481
- "MLModel":{
1482
- "type":"structure",
1483
- "members":{
1484
- "MLModelId":{"shape":"EntityId"},
1485
- "TrainingDataSourceId":{"shape":"EntityId"},
1486
- "CreatedByIamUser":{"shape":"AwsUserArn"},
1487
- "CreatedAt":{"shape":"EpochTime"},
1488
- "LastUpdatedAt":{"shape":"EpochTime"},
1489
- "Name":{"shape":"MLModelName"},
1490
- "Status":{"shape":"EntityStatus"},
1491
- "SizeInBytes":{"shape":"LongType"},
1492
- "EndpointInfo":{"shape":"RealtimeEndpointInfo"},
1493
- "TrainingParameters":{"shape":"TrainingParameters"},
1494
- "InputDataLocationS3":{"shape":"S3Url"},
1495
- "Algorithm":{"shape":"Algorithm"},
1496
- "MLModelType":{"shape":"MLModelType"},
1497
- "ScoreThreshold":{"shape":"ScoreThreshold"},
1498
- "ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
1499
- "Message":{"shape":"Message"}
1500
- }
1501
- },
1502
- "MLModelFilterVariable":{
1503
- "type":"string",
1504
- "enum":[
1505
- "CreatedAt",
1506
- "LastUpdatedAt",
1507
- "Status",
1508
- "Name",
1509
- "IAMUser",
1510
- "TrainingDataSourceId",
1511
- "RealtimeEndpointStatus",
1512
- "MLModelType",
1513
- "Algorithm",
1514
- "TrainingDataURI"
1515
- ]
1516
- },
1517
- "MLModelName":{
1518
- "type":"string",
1519
- "max":1024
1520
- },
1521
- "MLModelType":{
1522
- "type":"string",
1523
- "enum":[
1524
- "REGRESSION",
1525
- "BINARY",
1526
- "MULTICLASS"
1527
- ]
1528
- },
1529
- "MLModels":{
1530
- "type":"list",
1531
- "member":{"shape":"MLModel"}
1532
- },
1533
- "Message":{
1534
- "type":"string",
1535
- "max":10240
1536
- },
1537
- "PageLimit":{
1538
- "type":"integer",
1539
- "min":1,
1540
- "max":100
1541
- },
1542
- "PerformanceMetrics":{
1543
- "type":"structure",
1544
- "members":{
1545
- "Properties":{"shape":"PerformanceMetricsProperties"}
1546
- }
1547
- },
1548
- "PerformanceMetricsProperties":{
1549
- "type":"map",
1550
- "key":{"shape":"PerformanceMetricsPropertyKey"},
1551
- "value":{"shape":"PerformanceMetricsPropertyValue"}
1552
- },
1553
- "PerformanceMetricsPropertyKey":{"type":"string"},
1554
- "PerformanceMetricsPropertyValue":{"type":"string"},
1555
- "PredictInput":{
1556
- "type":"structure",
1557
- "required":[
1558
- "MLModelId",
1559
- "Record",
1560
- "PredictEndpoint"
1561
- ],
1562
- "members":{
1563
- "MLModelId":{"shape":"EntityId"},
1564
- "Record":{"shape":"Record"},
1565
- "PredictEndpoint":{"shape":"VipURL"}
1566
- }
1567
- },
1568
- "PredictOutput":{
1569
- "type":"structure",
1570
- "members":{
1571
- "Prediction":{"shape":"Prediction"}
1572
- }
1573
- },
1574
- "Prediction":{
1575
- "type":"structure",
1576
- "members":{
1577
- "predictedLabel":{"shape":"Label"},
1578
- "predictedValue":{"shape":"floatLabel"},
1579
- "predictedScores":{"shape":"ScoreValuePerLabelMap"},
1580
- "details":{"shape":"DetailsMap"}
1581
- }
1582
- },
1583
- "PredictorNotMountedException":{
1584
- "type":"structure",
1585
- "members":{
1586
- "message":{"shape":"ErrorMessage"}
1587
- },
1588
- "error":{"httpStatusCode":400},
1589
- "exception":true
1590
- },
1591
- "PresignedS3Url":{"type":"string"},
1592
- "RDSDataSpec":{
1593
- "type":"structure",
1594
- "required":[
1595
- "DatabaseInformation",
1596
- "SelectSqlQuery",
1597
- "DatabaseCredentials",
1598
- "S3StagingLocation",
1599
- "ResourceRole",
1600
- "ServiceRole",
1601
- "SubnetId",
1602
- "SecurityGroupIds"
1603
- ],
1604
- "members":{
1605
- "DatabaseInformation":{"shape":"RDSDatabase"},
1606
- "SelectSqlQuery":{"shape":"RDSSelectSqlQuery"},
1607
- "DatabaseCredentials":{"shape":"RDSDatabaseCredentials"},
1608
- "S3StagingLocation":{"shape":"S3Url"},
1609
- "DataRearrangement":{"shape":"DataRearrangement"},
1610
- "DataSchema":{"shape":"DataSchema"},
1611
- "DataSchemaUri":{"shape":"S3Url"},
1612
- "ResourceRole":{"shape":"EDPResourceRole"},
1613
- "ServiceRole":{"shape":"EDPServiceRole"},
1614
- "SubnetId":{"shape":"EDPSubnetId"},
1615
- "SecurityGroupIds":{"shape":"EDPSecurityGroupIds"}
1616
- }
1617
- },
1618
- "RDSDatabase":{
1619
- "type":"structure",
1620
- "required":[
1621
- "InstanceIdentifier",
1622
- "DatabaseName"
1623
- ],
1624
- "members":{
1625
- "InstanceIdentifier":{"shape":"RDSInstanceIdentifier"},
1626
- "DatabaseName":{"shape":"RDSDatabaseName"}
1627
- }
1628
- },
1629
- "RDSDatabaseCredentials":{
1630
- "type":"structure",
1631
- "required":[
1632
- "Username",
1633
- "Password"
1634
- ],
1635
- "members":{
1636
- "Username":{"shape":"RDSDatabaseUsername"},
1637
- "Password":{"shape":"RDSDatabasePassword"}
1638
- }
1639
- },
1640
- "RDSDatabaseName":{
1641
- "type":"string",
1642
- "min":1,
1643
- "max":64
1644
- },
1645
- "RDSDatabasePassword":{
1646
- "type":"string",
1647
- "min":8,
1648
- "max":128
1649
- },
1650
- "RDSDatabaseUsername":{
1651
- "type":"string",
1652
- "min":1,
1653
- "max":128
1654
- },
1655
- "RDSInstanceIdentifier":{
1656
- "type":"string",
1657
- "min":1,
1658
- "max":63,
1659
- "pattern":"[a-z0-9-]+"
1660
- },
1661
- "RDSMetadata":{
1662
- "type":"structure",
1663
- "members":{
1664
- "Database":{"shape":"RDSDatabase"},
1665
- "DatabaseUserName":{"shape":"RDSDatabaseUsername"},
1666
- "SelectSqlQuery":{"shape":"RDSSelectSqlQuery"},
1667
- "ResourceRole":{"shape":"EDPResourceRole"},
1668
- "ServiceRole":{"shape":"EDPServiceRole"},
1669
- "DataPipelineId":{"shape":"EDPPipelineId"}
1670
- }
1671
- },
1672
- "RDSSelectSqlQuery":{
1673
- "type":"string",
1674
- "min":1,
1675
- "max":16777216
1676
- },
1677
- "RealtimeEndpointInfo":{
1678
- "type":"structure",
1679
- "members":{
1680
- "PeakRequestsPerSecond":{"shape":"IntegerType"},
1681
- "CreatedAt":{"shape":"EpochTime"},
1682
- "EndpointUrl":{"shape":"VipURL"},
1683
- "EndpointStatus":{"shape":"RealtimeEndpointStatus"}
1684
- }
1685
- },
1686
- "RealtimeEndpointStatus":{
1687
- "type":"string",
1688
- "enum":[
1689
- "NONE",
1690
- "READY",
1691
- "UPDATING",
1692
- "FAILED"
1693
- ]
1694
- },
1695
- "Recipe":{
1696
- "type":"string",
1697
- "max":131071
1698
- },
1699
- "Record":{
1700
- "type":"map",
1701
- "key":{"shape":"VariableName"},
1702
- "value":{"shape":"VariableValue"}
1703
- },
1704
- "RedshiftClusterIdentifier":{
1705
- "type":"string",
1706
- "min":1,
1707
- "max":63,
1708
- "pattern":"[a-z0-9-]+"
1709
- },
1710
- "RedshiftDataSpec":{
1711
- "type":"structure",
1712
- "required":[
1713
- "DatabaseInformation",
1714
- "SelectSqlQuery",
1715
- "DatabaseCredentials",
1716
- "S3StagingLocation"
1717
- ],
1718
- "members":{
1719
- "DatabaseInformation":{"shape":"RedshiftDatabase"},
1720
- "SelectSqlQuery":{"shape":"RedshiftSelectSqlQuery"},
1721
- "DatabaseCredentials":{"shape":"RedshiftDatabaseCredentials"},
1722
- "S3StagingLocation":{"shape":"S3Url"},
1723
- "DataRearrangement":{"shape":"DataRearrangement"},
1724
- "DataSchema":{"shape":"DataSchema"},
1725
- "DataSchemaUri":{"shape":"S3Url"}
1726
- }
1727
- },
1728
- "RedshiftDatabase":{
1729
- "type":"structure",
1730
- "required":[
1731
- "DatabaseName",
1732
- "ClusterIdentifier"
1733
- ],
1734
- "members":{
1735
- "DatabaseName":{"shape":"RedshiftDatabaseName"},
1736
- "ClusterIdentifier":{"shape":"RedshiftClusterIdentifier"}
1737
- }
1738
- },
1739
- "RedshiftDatabaseCredentials":{
1740
- "type":"structure",
1741
- "required":[
1742
- "Username",
1743
- "Password"
1744
- ],
1745
- "members":{
1746
- "Username":{"shape":"RedshiftDatabaseUsername"},
1747
- "Password":{"shape":"RedshiftDatabasePassword"}
1748
- }
1749
- },
1750
- "RedshiftDatabaseName":{
1751
- "type":"string",
1752
- "min":1,
1753
- "max":64,
1754
- "pattern":"[a-z0-9]+"
1755
- },
1756
- "RedshiftDatabasePassword":{
1757
- "type":"string",
1758
- "min":8,
1759
- "max":64
1760
- },
1761
- "RedshiftDatabaseUsername":{
1762
- "type":"string",
1763
- "min":1,
1764
- "max":128
1765
- },
1766
- "RedshiftMetadata":{
1767
- "type":"structure",
1768
- "members":{
1769
- "RedshiftDatabase":{"shape":"RedshiftDatabase"},
1770
- "DatabaseUserName":{"shape":"RedshiftDatabaseUsername"},
1771
- "SelectSqlQuery":{"shape":"RedshiftSelectSqlQuery"}
1772
- }
1773
- },
1774
- "RedshiftSelectSqlQuery":{
1775
- "type":"string",
1776
- "min":1,
1777
- "max":16777216
1778
- },
1779
- "ResourceNotFoundException":{
1780
- "type":"structure",
1781
- "members":{
1782
- "message":{"shape":"ErrorMessage"},
1783
- "code":{"shape":"ErrorCode"}
1784
- },
1785
- "error":{"httpStatusCode":404},
1786
- "exception":true
1787
- },
1788
- "RoleARN":{
1789
- "type":"string",
1790
- "min":1,
1791
- "max":110
1792
- },
1793
- "S3DataSpec":{
1794
- "type":"structure",
1795
- "required":["DataLocationS3"],
1796
- "members":{
1797
- "DataLocationS3":{"shape":"S3Url"},
1798
- "DataRearrangement":{"shape":"DataRearrangement"},
1799
- "DataSchema":{"shape":"DataSchema"},
1800
- "DataSchemaLocationS3":{"shape":"S3Url"}
1801
- }
1802
- },
1803
- "S3Url":{
1804
- "type":"string",
1805
- "max":2048,
1806
- "pattern":"s3://([^/]+)(/.*)?"
1807
- },
1808
- "ScoreThreshold":{"type":"float"},
1809
- "ScoreValue":{"type":"float"},
1810
- "ScoreValuePerLabelMap":{
1811
- "type":"map",
1812
- "key":{"shape":"Label"},
1813
- "value":{"shape":"ScoreValue"}
1814
- },
1815
- "SortOrder":{
1816
- "type":"string",
1817
- "enum":[
1818
- "asc",
1819
- "dsc"
1820
- ]
1821
- },
1822
- "StringType":{"type":"string"},
1823
- "Tag":{
1824
- "type":"structure",
1825
- "members":{
1826
- "Key":{"shape":"TagKey"},
1827
- "Value":{"shape":"TagValue"}
1828
- }
1829
- },
1830
- "TagKey":{
1831
- "type":"string",
1832
- "min":1,
1833
- "max":128,
1834
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1835
- },
1836
- "TagKeyList":{
1837
- "type":"list",
1838
- "member":{"shape":"TagKey"}
1839
- },
1840
- "TagLimitExceededException":{
1841
- "type":"structure",
1842
- "members":{
1843
- "message":{"shape":"ErrorMessage"}
1844
- },
1845
- "exception":true
1846
- },
1847
- "TagList":{
1848
- "type":"list",
1849
- "member":{"shape":"Tag"}
1850
- },
1851
- "TagValue":{
1852
- "type":"string",
1853
- "min":0,
1854
- "max":256,
1855
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1856
- },
1857
- "TaggableResourceType":{
1858
- "type":"string",
1859
- "enum":[
1860
- "BatchPrediction",
1861
- "DataSource",
1862
- "Evaluation",
1863
- "MLModel"
1864
- ]
1865
- },
1866
- "TrainingParameters":{
1867
- "type":"map",
1868
- "key":{"shape":"StringType"},
1869
- "value":{"shape":"StringType"}
1870
- },
1871
- "UpdateBatchPredictionInput":{
1872
- "type":"structure",
1873
- "required":[
1874
- "BatchPredictionId",
1875
- "BatchPredictionName"
1876
- ],
1877
- "members":{
1878
- "BatchPredictionId":{"shape":"EntityId"},
1879
- "BatchPredictionName":{"shape":"EntityName"}
1880
- }
1881
- },
1882
- "UpdateBatchPredictionOutput":{
1883
- "type":"structure",
1884
- "members":{
1885
- "BatchPredictionId":{"shape":"EntityId"}
1886
- }
1887
- },
1888
- "UpdateDataSourceInput":{
1889
- "type":"structure",
1890
- "required":[
1891
- "DataSourceId",
1892
- "DataSourceName"
1893
- ],
1894
- "members":{
1895
- "DataSourceId":{"shape":"EntityId"},
1896
- "DataSourceName":{"shape":"EntityName"}
1897
- }
1898
- },
1899
- "UpdateDataSourceOutput":{
1900
- "type":"structure",
1901
- "members":{
1902
- "DataSourceId":{"shape":"EntityId"}
1903
- }
1904
- },
1905
- "UpdateEvaluationInput":{
1906
- "type":"structure",
1907
- "required":[
1908
- "EvaluationId",
1909
- "EvaluationName"
1910
- ],
1911
- "members":{
1912
- "EvaluationId":{"shape":"EntityId"},
1913
- "EvaluationName":{"shape":"EntityName"}
1914
- }
1915
- },
1916
- "UpdateEvaluationOutput":{
1917
- "type":"structure",
1918
- "members":{
1919
- "EvaluationId":{"shape":"EntityId"}
1920
- }
1921
- },
1922
- "UpdateMLModelInput":{
1923
- "type":"structure",
1924
- "required":["MLModelId"],
1925
- "members":{
1926
- "MLModelId":{"shape":"EntityId"},
1927
- "MLModelName":{"shape":"EntityName"},
1928
- "ScoreThreshold":{"shape":"ScoreThreshold"}
1929
- }
1930
- },
1931
- "UpdateMLModelOutput":{
1932
- "type":"structure",
1933
- "members":{
1934
- "MLModelId":{"shape":"EntityId"}
1935
- }
1936
- },
1937
- "VariableName":{"type":"string"},
1938
- "VariableValue":{"type":"string"},
1939
- "Verbose":{"type":"boolean"},
1940
- "VipURL":{
1941
- "type":"string",
1942
- "max":2048,
1943
- "pattern":"https://[a-zA-Z0-9-.]*\\.amazon(aws)?\\.com[/]?"
1944
- },
1945
- "floatLabel":{"type":"float"}
1946
- }
1947
- }