aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,2001 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2013-01-01",
5
- "endpointPrefix":"cloudsearch",
6
- "serviceFullName":"Amazon CloudSearch",
7
- "signatureVersion":"v4",
8
- "xmlNamespace":"http://cloudsearch.amazonaws.com/doc/2013-01-01/",
9
- "protocol":"query"
10
- },
11
- "operations":{
12
- "BuildSuggesters":{
13
- "name":"BuildSuggesters",
14
- "http":{
15
- "method":"POST",
16
- "requestUri":"/"
17
- },
18
- "input":{"shape":"BuildSuggestersRequest"},
19
- "output":{
20
- "shape":"BuildSuggestersResponse",
21
- "resultWrapper":"BuildSuggestersResult"
22
- },
23
- "errors":[
24
- {
25
- "shape":"BaseException",
26
- "exception":true
27
- },
28
- {
29
- "shape":"InternalException",
30
- "error":{
31
- "code":"InternalException",
32
- "httpStatusCode":500
33
- },
34
- "exception":true
35
- },
36
- {
37
- "shape":"ResourceNotFoundException",
38
- "error":{
39
- "code":"ResourceNotFound",
40
- "httpStatusCode":409,
41
- "senderFault":true
42
- },
43
- "exception":true
44
- }
45
- ]
46
- },
47
- "CreateDomain":{
48
- "name":"CreateDomain",
49
- "http":{
50
- "method":"POST",
51
- "requestUri":"/"
52
- },
53
- "input":{"shape":"CreateDomainRequest"},
54
- "output":{
55
- "shape":"CreateDomainResponse",
56
- "resultWrapper":"CreateDomainResult"
57
- },
58
- "errors":[
59
- {
60
- "shape":"BaseException",
61
- "exception":true
62
- },
63
- {
64
- "shape":"InternalException",
65
- "error":{
66
- "code":"InternalException",
67
- "httpStatusCode":500
68
- },
69
- "exception":true
70
- },
71
- {
72
- "shape":"LimitExceededException",
73
- "error":{
74
- "code":"LimitExceeded",
75
- "httpStatusCode":409,
76
- "senderFault":true
77
- },
78
- "exception":true
79
- }
80
- ]
81
- },
82
- "DefineAnalysisScheme":{
83
- "name":"DefineAnalysisScheme",
84
- "http":{
85
- "method":"POST",
86
- "requestUri":"/"
87
- },
88
- "input":{"shape":"DefineAnalysisSchemeRequest"},
89
- "output":{
90
- "shape":"DefineAnalysisSchemeResponse",
91
- "resultWrapper":"DefineAnalysisSchemeResult"
92
- },
93
- "errors":[
94
- {
95
- "shape":"BaseException",
96
- "exception":true
97
- },
98
- {
99
- "shape":"InternalException",
100
- "error":{
101
- "code":"InternalException",
102
- "httpStatusCode":500
103
- },
104
- "exception":true
105
- },
106
- {
107
- "shape":"LimitExceededException",
108
- "error":{
109
- "code":"LimitExceeded",
110
- "httpStatusCode":409,
111
- "senderFault":true
112
- },
113
- "exception":true
114
- },
115
- {
116
- "shape":"InvalidTypeException",
117
- "error":{
118
- "code":"InvalidType",
119
- "httpStatusCode":409,
120
- "senderFault":true
121
- },
122
- "exception":true
123
- },
124
- {
125
- "shape":"ResourceNotFoundException",
126
- "error":{
127
- "code":"ResourceNotFound",
128
- "httpStatusCode":409,
129
- "senderFault":true
130
- },
131
- "exception":true
132
- }
133
- ]
134
- },
135
- "DefineExpression":{
136
- "name":"DefineExpression",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"DefineExpressionRequest"},
142
- "output":{
143
- "shape":"DefineExpressionResponse",
144
- "resultWrapper":"DefineExpressionResult"
145
- },
146
- "errors":[
147
- {
148
- "shape":"BaseException",
149
- "exception":true
150
- },
151
- {
152
- "shape":"InternalException",
153
- "error":{
154
- "code":"InternalException",
155
- "httpStatusCode":500
156
- },
157
- "exception":true
158
- },
159
- {
160
- "shape":"LimitExceededException",
161
- "error":{
162
- "code":"LimitExceeded",
163
- "httpStatusCode":409,
164
- "senderFault":true
165
- },
166
- "exception":true
167
- },
168
- {
169
- "shape":"InvalidTypeException",
170
- "error":{
171
- "code":"InvalidType",
172
- "httpStatusCode":409,
173
- "senderFault":true
174
- },
175
- "exception":true
176
- },
177
- {
178
- "shape":"ResourceNotFoundException",
179
- "error":{
180
- "code":"ResourceNotFound",
181
- "httpStatusCode":409,
182
- "senderFault":true
183
- },
184
- "exception":true
185
- }
186
- ]
187
- },
188
- "DefineIndexField":{
189
- "name":"DefineIndexField",
190
- "http":{
191
- "method":"POST",
192
- "requestUri":"/"
193
- },
194
- "input":{"shape":"DefineIndexFieldRequest"},
195
- "output":{
196
- "shape":"DefineIndexFieldResponse",
197
- "resultWrapper":"DefineIndexFieldResult"
198
- },
199
- "errors":[
200
- {
201
- "shape":"BaseException",
202
- "exception":true
203
- },
204
- {
205
- "shape":"InternalException",
206
- "error":{
207
- "code":"InternalException",
208
- "httpStatusCode":500
209
- },
210
- "exception":true
211
- },
212
- {
213
- "shape":"LimitExceededException",
214
- "error":{
215
- "code":"LimitExceeded",
216
- "httpStatusCode":409,
217
- "senderFault":true
218
- },
219
- "exception":true
220
- },
221
- {
222
- "shape":"InvalidTypeException",
223
- "error":{
224
- "code":"InvalidType",
225
- "httpStatusCode":409,
226
- "senderFault":true
227
- },
228
- "exception":true
229
- },
230
- {
231
- "shape":"ResourceNotFoundException",
232
- "error":{
233
- "code":"ResourceNotFound",
234
- "httpStatusCode":409,
235
- "senderFault":true
236
- },
237
- "exception":true
238
- }
239
- ]
240
- },
241
- "DefineSuggester":{
242
- "name":"DefineSuggester",
243
- "http":{
244
- "method":"POST",
245
- "requestUri":"/"
246
- },
247
- "input":{"shape":"DefineSuggesterRequest"},
248
- "output":{
249
- "shape":"DefineSuggesterResponse",
250
- "resultWrapper":"DefineSuggesterResult"
251
- },
252
- "errors":[
253
- {
254
- "shape":"BaseException",
255
- "exception":true
256
- },
257
- {
258
- "shape":"InternalException",
259
- "error":{
260
- "code":"InternalException",
261
- "httpStatusCode":500
262
- },
263
- "exception":true
264
- },
265
- {
266
- "shape":"LimitExceededException",
267
- "error":{
268
- "code":"LimitExceeded",
269
- "httpStatusCode":409,
270
- "senderFault":true
271
- },
272
- "exception":true
273
- },
274
- {
275
- "shape":"InvalidTypeException",
276
- "error":{
277
- "code":"InvalidType",
278
- "httpStatusCode":409,
279
- "senderFault":true
280
- },
281
- "exception":true
282
- },
283
- {
284
- "shape":"ResourceNotFoundException",
285
- "error":{
286
- "code":"ResourceNotFound",
287
- "httpStatusCode":409,
288
- "senderFault":true
289
- },
290
- "exception":true
291
- }
292
- ]
293
- },
294
- "DeleteAnalysisScheme":{
295
- "name":"DeleteAnalysisScheme",
296
- "http":{
297
- "method":"POST",
298
- "requestUri":"/"
299
- },
300
- "input":{"shape":"DeleteAnalysisSchemeRequest"},
301
- "output":{
302
- "shape":"DeleteAnalysisSchemeResponse",
303
- "resultWrapper":"DeleteAnalysisSchemeResult"
304
- },
305
- "errors":[
306
- {
307
- "shape":"BaseException",
308
- "exception":true
309
- },
310
- {
311
- "shape":"InternalException",
312
- "error":{
313
- "code":"InternalException",
314
- "httpStatusCode":500
315
- },
316
- "exception":true
317
- },
318
- {
319
- "shape":"InvalidTypeException",
320
- "error":{
321
- "code":"InvalidType",
322
- "httpStatusCode":409,
323
- "senderFault":true
324
- },
325
- "exception":true
326
- },
327
- {
328
- "shape":"ResourceNotFoundException",
329
- "error":{
330
- "code":"ResourceNotFound",
331
- "httpStatusCode":409,
332
- "senderFault":true
333
- },
334
- "exception":true
335
- }
336
- ]
337
- },
338
- "DeleteDomain":{
339
- "name":"DeleteDomain",
340
- "http":{
341
- "method":"POST",
342
- "requestUri":"/"
343
- },
344
- "input":{"shape":"DeleteDomainRequest"},
345
- "output":{
346
- "shape":"DeleteDomainResponse",
347
- "resultWrapper":"DeleteDomainResult"
348
- },
349
- "errors":[
350
- {
351
- "shape":"BaseException",
352
- "exception":true
353
- },
354
- {
355
- "shape":"InternalException",
356
- "error":{
357
- "code":"InternalException",
358
- "httpStatusCode":500
359
- },
360
- "exception":true
361
- }
362
- ]
363
- },
364
- "DeleteExpression":{
365
- "name":"DeleteExpression",
366
- "http":{
367
- "method":"POST",
368
- "requestUri":"/"
369
- },
370
- "input":{"shape":"DeleteExpressionRequest"},
371
- "output":{
372
- "shape":"DeleteExpressionResponse",
373
- "resultWrapper":"DeleteExpressionResult"
374
- },
375
- "errors":[
376
- {
377
- "shape":"BaseException",
378
- "exception":true
379
- },
380
- {
381
- "shape":"InternalException",
382
- "error":{
383
- "code":"InternalException",
384
- "httpStatusCode":500
385
- },
386
- "exception":true
387
- },
388
- {
389
- "shape":"InvalidTypeException",
390
- "error":{
391
- "code":"InvalidType",
392
- "httpStatusCode":409,
393
- "senderFault":true
394
- },
395
- "exception":true
396
- },
397
- {
398
- "shape":"ResourceNotFoundException",
399
- "error":{
400
- "code":"ResourceNotFound",
401
- "httpStatusCode":409,
402
- "senderFault":true
403
- },
404
- "exception":true
405
- }
406
- ]
407
- },
408
- "DeleteIndexField":{
409
- "name":"DeleteIndexField",
410
- "http":{
411
- "method":"POST",
412
- "requestUri":"/"
413
- },
414
- "input":{"shape":"DeleteIndexFieldRequest"},
415
- "output":{
416
- "shape":"DeleteIndexFieldResponse",
417
- "resultWrapper":"DeleteIndexFieldResult"
418
- },
419
- "errors":[
420
- {
421
- "shape":"BaseException",
422
- "exception":true
423
- },
424
- {
425
- "shape":"InternalException",
426
- "error":{
427
- "code":"InternalException",
428
- "httpStatusCode":500
429
- },
430
- "exception":true
431
- },
432
- {
433
- "shape":"InvalidTypeException",
434
- "error":{
435
- "code":"InvalidType",
436
- "httpStatusCode":409,
437
- "senderFault":true
438
- },
439
- "exception":true
440
- },
441
- {
442
- "shape":"ResourceNotFoundException",
443
- "error":{
444
- "code":"ResourceNotFound",
445
- "httpStatusCode":409,
446
- "senderFault":true
447
- },
448
- "exception":true
449
- }
450
- ]
451
- },
452
- "DeleteSuggester":{
453
- "name":"DeleteSuggester",
454
- "http":{
455
- "method":"POST",
456
- "requestUri":"/"
457
- },
458
- "input":{"shape":"DeleteSuggesterRequest"},
459
- "output":{
460
- "shape":"DeleteSuggesterResponse",
461
- "resultWrapper":"DeleteSuggesterResult"
462
- },
463
- "errors":[
464
- {
465
- "shape":"BaseException",
466
- "exception":true
467
- },
468
- {
469
- "shape":"InternalException",
470
- "error":{
471
- "code":"InternalException",
472
- "httpStatusCode":500
473
- },
474
- "exception":true
475
- },
476
- {
477
- "shape":"InvalidTypeException",
478
- "error":{
479
- "code":"InvalidType",
480
- "httpStatusCode":409,
481
- "senderFault":true
482
- },
483
- "exception":true
484
- },
485
- {
486
- "shape":"ResourceNotFoundException",
487
- "error":{
488
- "code":"ResourceNotFound",
489
- "httpStatusCode":409,
490
- "senderFault":true
491
- },
492
- "exception":true
493
- }
494
- ]
495
- },
496
- "DescribeAnalysisSchemes":{
497
- "name":"DescribeAnalysisSchemes",
498
- "http":{
499
- "method":"POST",
500
- "requestUri":"/"
501
- },
502
- "input":{"shape":"DescribeAnalysisSchemesRequest"},
503
- "output":{
504
- "shape":"DescribeAnalysisSchemesResponse",
505
- "resultWrapper":"DescribeAnalysisSchemesResult"
506
- },
507
- "errors":[
508
- {
509
- "shape":"BaseException",
510
- "exception":true
511
- },
512
- {
513
- "shape":"InternalException",
514
- "error":{
515
- "code":"InternalException",
516
- "httpStatusCode":500
517
- },
518
- "exception":true
519
- },
520
- {
521
- "shape":"ResourceNotFoundException",
522
- "error":{
523
- "code":"ResourceNotFound",
524
- "httpStatusCode":409,
525
- "senderFault":true
526
- },
527
- "exception":true
528
- }
529
- ]
530
- },
531
- "DescribeAvailabilityOptions":{
532
- "name":"DescribeAvailabilityOptions",
533
- "http":{
534
- "method":"POST",
535
- "requestUri":"/"
536
- },
537
- "input":{"shape":"DescribeAvailabilityOptionsRequest"},
538
- "output":{
539
- "shape":"DescribeAvailabilityOptionsResponse",
540
- "resultWrapper":"DescribeAvailabilityOptionsResult"
541
- },
542
- "errors":[
543
- {
544
- "shape":"BaseException",
545
- "exception":true
546
- },
547
- {
548
- "shape":"InternalException",
549
- "error":{
550
- "code":"InternalException",
551
- "httpStatusCode":500
552
- },
553
- "exception":true
554
- },
555
- {
556
- "shape":"InvalidTypeException",
557
- "error":{
558
- "code":"InvalidType",
559
- "httpStatusCode":409,
560
- "senderFault":true
561
- },
562
- "exception":true
563
- },
564
- {
565
- "shape":"LimitExceededException",
566
- "error":{
567
- "code":"LimitExceeded",
568
- "httpStatusCode":409,
569
- "senderFault":true
570
- },
571
- "exception":true
572
- },
573
- {
574
- "shape":"ResourceNotFoundException",
575
- "error":{
576
- "code":"ResourceNotFound",
577
- "httpStatusCode":409,
578
- "senderFault":true
579
- },
580
- "exception":true
581
- },
582
- {
583
- "shape":"DisabledOperationException",
584
- "error":{
585
- "code":"DisabledAction",
586
- "httpStatusCode":409,
587
- "senderFault":true
588
- },
589
- "exception":true
590
- }
591
- ]
592
- },
593
- "DescribeDomains":{
594
- "name":"DescribeDomains",
595
- "http":{
596
- "method":"POST",
597
- "requestUri":"/"
598
- },
599
- "input":{"shape":"DescribeDomainsRequest"},
600
- "output":{
601
- "shape":"DescribeDomainsResponse",
602
- "resultWrapper":"DescribeDomainsResult"
603
- },
604
- "errors":[
605
- {
606
- "shape":"BaseException",
607
- "exception":true
608
- },
609
- {
610
- "shape":"InternalException",
611
- "error":{
612
- "code":"InternalException",
613
- "httpStatusCode":500
614
- },
615
- "exception":true
616
- }
617
- ]
618
- },
619
- "DescribeExpressions":{
620
- "name":"DescribeExpressions",
621
- "http":{
622
- "method":"POST",
623
- "requestUri":"/"
624
- },
625
- "input":{"shape":"DescribeExpressionsRequest"},
626
- "output":{
627
- "shape":"DescribeExpressionsResponse",
628
- "resultWrapper":"DescribeExpressionsResult"
629
- },
630
- "errors":[
631
- {
632
- "shape":"BaseException",
633
- "exception":true
634
- },
635
- {
636
- "shape":"InternalException",
637
- "error":{
638
- "code":"InternalException",
639
- "httpStatusCode":500
640
- },
641
- "exception":true
642
- },
643
- {
644
- "shape":"ResourceNotFoundException",
645
- "error":{
646
- "code":"ResourceNotFound",
647
- "httpStatusCode":409,
648
- "senderFault":true
649
- },
650
- "exception":true
651
- }
652
- ]
653
- },
654
- "DescribeIndexFields":{
655
- "name":"DescribeIndexFields",
656
- "http":{
657
- "method":"POST",
658
- "requestUri":"/"
659
- },
660
- "input":{"shape":"DescribeIndexFieldsRequest"},
661
- "output":{
662
- "shape":"DescribeIndexFieldsResponse",
663
- "resultWrapper":"DescribeIndexFieldsResult"
664
- },
665
- "errors":[
666
- {
667
- "shape":"BaseException",
668
- "exception":true
669
- },
670
- {
671
- "shape":"InternalException",
672
- "error":{
673
- "code":"InternalException",
674
- "httpStatusCode":500
675
- },
676
- "exception":true
677
- },
678
- {
679
- "shape":"ResourceNotFoundException",
680
- "error":{
681
- "code":"ResourceNotFound",
682
- "httpStatusCode":409,
683
- "senderFault":true
684
- },
685
- "exception":true
686
- }
687
- ]
688
- },
689
- "DescribeScalingParameters":{
690
- "name":"DescribeScalingParameters",
691
- "http":{
692
- "method":"POST",
693
- "requestUri":"/"
694
- },
695
- "input":{"shape":"DescribeScalingParametersRequest"},
696
- "output":{
697
- "shape":"DescribeScalingParametersResponse",
698
- "resultWrapper":"DescribeScalingParametersResult"
699
- },
700
- "errors":[
701
- {
702
- "shape":"BaseException",
703
- "exception":true
704
- },
705
- {
706
- "shape":"InternalException",
707
- "error":{
708
- "code":"InternalException",
709
- "httpStatusCode":500
710
- },
711
- "exception":true
712
- },
713
- {
714
- "shape":"ResourceNotFoundException",
715
- "error":{
716
- "code":"ResourceNotFound",
717
- "httpStatusCode":409,
718
- "senderFault":true
719
- },
720
- "exception":true
721
- }
722
- ]
723
- },
724
- "DescribeServiceAccessPolicies":{
725
- "name":"DescribeServiceAccessPolicies",
726
- "http":{
727
- "method":"POST",
728
- "requestUri":"/"
729
- },
730
- "input":{"shape":"DescribeServiceAccessPoliciesRequest"},
731
- "output":{
732
- "shape":"DescribeServiceAccessPoliciesResponse",
733
- "resultWrapper":"DescribeServiceAccessPoliciesResult"
734
- },
735
- "errors":[
736
- {
737
- "shape":"BaseException",
738
- "exception":true
739
- },
740
- {
741
- "shape":"InternalException",
742
- "error":{
743
- "code":"InternalException",
744
- "httpStatusCode":500
745
- },
746
- "exception":true
747
- },
748
- {
749
- "shape":"ResourceNotFoundException",
750
- "error":{
751
- "code":"ResourceNotFound",
752
- "httpStatusCode":409,
753
- "senderFault":true
754
- },
755
- "exception":true
756
- }
757
- ]
758
- },
759
- "DescribeSuggesters":{
760
- "name":"DescribeSuggesters",
761
- "http":{
762
- "method":"POST",
763
- "requestUri":"/"
764
- },
765
- "input":{"shape":"DescribeSuggestersRequest"},
766
- "output":{
767
- "shape":"DescribeSuggestersResponse",
768
- "resultWrapper":"DescribeSuggestersResult"
769
- },
770
- "errors":[
771
- {
772
- "shape":"BaseException",
773
- "exception":true
774
- },
775
- {
776
- "shape":"InternalException",
777
- "error":{
778
- "code":"InternalException",
779
- "httpStatusCode":500
780
- },
781
- "exception":true
782
- },
783
- {
784
- "shape":"ResourceNotFoundException",
785
- "error":{
786
- "code":"ResourceNotFound",
787
- "httpStatusCode":409,
788
- "senderFault":true
789
- },
790
- "exception":true
791
- }
792
- ]
793
- },
794
- "IndexDocuments":{
795
- "name":"IndexDocuments",
796
- "http":{
797
- "method":"POST",
798
- "requestUri":"/"
799
- },
800
- "input":{"shape":"IndexDocumentsRequest"},
801
- "output":{
802
- "shape":"IndexDocumentsResponse",
803
- "resultWrapper":"IndexDocumentsResult"
804
- },
805
- "errors":[
806
- {
807
- "shape":"BaseException",
808
- "exception":true
809
- },
810
- {
811
- "shape":"InternalException",
812
- "error":{
813
- "code":"InternalException",
814
- "httpStatusCode":500
815
- },
816
- "exception":true
817
- },
818
- {
819
- "shape":"ResourceNotFoundException",
820
- "error":{
821
- "code":"ResourceNotFound",
822
- "httpStatusCode":409,
823
- "senderFault":true
824
- },
825
- "exception":true
826
- }
827
- ]
828
- },
829
- "ListDomainNames":{
830
- "name":"ListDomainNames",
831
- "http":{
832
- "method":"POST",
833
- "requestUri":"/"
834
- },
835
- "output":{
836
- "shape":"ListDomainNamesResponse",
837
- "resultWrapper":"ListDomainNamesResult"
838
- },
839
- "errors":[
840
- {
841
- "shape":"BaseException",
842
- "exception":true
843
- }
844
- ]
845
- },
846
- "UpdateAvailabilityOptions":{
847
- "name":"UpdateAvailabilityOptions",
848
- "http":{
849
- "method":"POST",
850
- "requestUri":"/"
851
- },
852
- "input":{"shape":"UpdateAvailabilityOptionsRequest"},
853
- "output":{
854
- "shape":"UpdateAvailabilityOptionsResponse",
855
- "resultWrapper":"UpdateAvailabilityOptionsResult"
856
- },
857
- "errors":[
858
- {
859
- "shape":"BaseException",
860
- "exception":true
861
- },
862
- {
863
- "shape":"InternalException",
864
- "error":{
865
- "code":"InternalException",
866
- "httpStatusCode":500
867
- },
868
- "exception":true
869
- },
870
- {
871
- "shape":"InvalidTypeException",
872
- "error":{
873
- "code":"InvalidType",
874
- "httpStatusCode":409,
875
- "senderFault":true
876
- },
877
- "exception":true
878
- },
879
- {
880
- "shape":"LimitExceededException",
881
- "error":{
882
- "code":"LimitExceeded",
883
- "httpStatusCode":409,
884
- "senderFault":true
885
- },
886
- "exception":true
887
- },
888
- {
889
- "shape":"ResourceNotFoundException",
890
- "error":{
891
- "code":"ResourceNotFound",
892
- "httpStatusCode":409,
893
- "senderFault":true
894
- },
895
- "exception":true
896
- },
897
- {
898
- "shape":"DisabledOperationException",
899
- "error":{
900
- "code":"DisabledAction",
901
- "httpStatusCode":409,
902
- "senderFault":true
903
- },
904
- "exception":true
905
- }
906
- ]
907
- },
908
- "UpdateScalingParameters":{
909
- "name":"UpdateScalingParameters",
910
- "http":{
911
- "method":"POST",
912
- "requestUri":"/"
913
- },
914
- "input":{"shape":"UpdateScalingParametersRequest"},
915
- "output":{
916
- "shape":"UpdateScalingParametersResponse",
917
- "resultWrapper":"UpdateScalingParametersResult"
918
- },
919
- "errors":[
920
- {
921
- "shape":"BaseException",
922
- "exception":true
923
- },
924
- {
925
- "shape":"InternalException",
926
- "error":{
927
- "code":"InternalException",
928
- "httpStatusCode":500
929
- },
930
- "exception":true
931
- },
932
- {
933
- "shape":"LimitExceededException",
934
- "error":{
935
- "code":"LimitExceeded",
936
- "httpStatusCode":409,
937
- "senderFault":true
938
- },
939
- "exception":true
940
- },
941
- {
942
- "shape":"ResourceNotFoundException",
943
- "error":{
944
- "code":"ResourceNotFound",
945
- "httpStatusCode":409,
946
- "senderFault":true
947
- },
948
- "exception":true
949
- },
950
- {
951
- "shape":"InvalidTypeException",
952
- "error":{
953
- "code":"InvalidType",
954
- "httpStatusCode":409,
955
- "senderFault":true
956
- },
957
- "exception":true
958
- }
959
- ]
960
- },
961
- "UpdateServiceAccessPolicies":{
962
- "name":"UpdateServiceAccessPolicies",
963
- "http":{
964
- "method":"POST",
965
- "requestUri":"/"
966
- },
967
- "input":{"shape":"UpdateServiceAccessPoliciesRequest"},
968
- "output":{
969
- "shape":"UpdateServiceAccessPoliciesResponse",
970
- "resultWrapper":"UpdateServiceAccessPoliciesResult"
971
- },
972
- "errors":[
973
- {
974
- "shape":"BaseException",
975
- "exception":true
976
- },
977
- {
978
- "shape":"InternalException",
979
- "error":{
980
- "code":"InternalException",
981
- "httpStatusCode":500
982
- },
983
- "exception":true
984
- },
985
- {
986
- "shape":"LimitExceededException",
987
- "error":{
988
- "code":"LimitExceeded",
989
- "httpStatusCode":409,
990
- "senderFault":true
991
- },
992
- "exception":true
993
- },
994
- {
995
- "shape":"ResourceNotFoundException",
996
- "error":{
997
- "code":"ResourceNotFound",
998
- "httpStatusCode":409,
999
- "senderFault":true
1000
- },
1001
- "exception":true
1002
- },
1003
- {
1004
- "shape":"InvalidTypeException",
1005
- "error":{
1006
- "code":"InvalidType",
1007
- "httpStatusCode":409,
1008
- "senderFault":true
1009
- },
1010
- "exception":true
1011
- }
1012
- ]
1013
- }
1014
- },
1015
- "shapes":{
1016
- "APIVersion":{"type":"string"},
1017
- "ARN":{"type":"string"},
1018
- "AccessPoliciesStatus":{
1019
- "type":"structure",
1020
- "required":[
1021
- "Options",
1022
- "Status"
1023
- ],
1024
- "members":{
1025
- "Options":{"shape":"PolicyDocument"},
1026
- "Status":{"shape":"OptionStatus"}
1027
- }
1028
- },
1029
- "AlgorithmicStemming":{
1030
- "type":"string",
1031
- "enum":[
1032
- "none",
1033
- "minimal",
1034
- "light",
1035
- "full"
1036
- ]
1037
- },
1038
- "AnalysisOptions":{
1039
- "type":"structure",
1040
- "members":{
1041
- "Synonyms":{"shape":"String"},
1042
- "Stopwords":{"shape":"String"},
1043
- "StemmingDictionary":{"shape":"String"},
1044
- "JapaneseTokenizationDictionary":{"shape":"String"},
1045
- "AlgorithmicStemming":{"shape":"AlgorithmicStemming"}
1046
- }
1047
- },
1048
- "AnalysisScheme":{
1049
- "type":"structure",
1050
- "required":[
1051
- "AnalysisSchemeName",
1052
- "AnalysisSchemeLanguage"
1053
- ],
1054
- "members":{
1055
- "AnalysisSchemeName":{"shape":"StandardName"},
1056
- "AnalysisSchemeLanguage":{"shape":"AnalysisSchemeLanguage"},
1057
- "AnalysisOptions":{"shape":"AnalysisOptions"}
1058
- }
1059
- },
1060
- "AnalysisSchemeLanguage":{
1061
- "type":"string",
1062
- "enum":[
1063
- "ar",
1064
- "bg",
1065
- "ca",
1066
- "cs",
1067
- "da",
1068
- "de",
1069
- "el",
1070
- "en",
1071
- "es",
1072
- "eu",
1073
- "fa",
1074
- "fi",
1075
- "fr",
1076
- "ga",
1077
- "gl",
1078
- "he",
1079
- "hi",
1080
- "hu",
1081
- "hy",
1082
- "id",
1083
- "it",
1084
- "ja",
1085
- "ko",
1086
- "lv",
1087
- "mul",
1088
- "nl",
1089
- "no",
1090
- "pt",
1091
- "ro",
1092
- "ru",
1093
- "sv",
1094
- "th",
1095
- "tr",
1096
- "zh-Hans",
1097
- "zh-Hant"
1098
- ]
1099
- },
1100
- "AnalysisSchemeStatus":{
1101
- "type":"structure",
1102
- "required":[
1103
- "Options",
1104
- "Status"
1105
- ],
1106
- "members":{
1107
- "Options":{"shape":"AnalysisScheme"},
1108
- "Status":{"shape":"OptionStatus"}
1109
- }
1110
- },
1111
- "AnalysisSchemeStatusList":{
1112
- "type":"list",
1113
- "member":{"shape":"AnalysisSchemeStatus"}
1114
- },
1115
- "AvailabilityOptionsStatus":{
1116
- "type":"structure",
1117
- "required":[
1118
- "Options",
1119
- "Status"
1120
- ],
1121
- "members":{
1122
- "Options":{"shape":"MultiAZ"},
1123
- "Status":{"shape":"OptionStatus"}
1124
- }
1125
- },
1126
- "BaseException":{
1127
- "type":"structure",
1128
- "members":{
1129
- "Code":{"shape":"ErrorCode"},
1130
- "Message":{"shape":"ErrorMessage"}
1131
- },
1132
- "exception":true
1133
- },
1134
- "Boolean":{"type":"boolean"},
1135
- "BuildSuggestersRequest":{
1136
- "type":"structure",
1137
- "required":["DomainName"],
1138
- "members":{
1139
- "DomainName":{"shape":"DomainName"}
1140
- }
1141
- },
1142
- "BuildSuggestersResponse":{
1143
- "type":"structure",
1144
- "members":{
1145
- "FieldNames":{"shape":"FieldNameList"}
1146
- }
1147
- },
1148
- "CreateDomainRequest":{
1149
- "type":"structure",
1150
- "required":["DomainName"],
1151
- "members":{
1152
- "DomainName":{"shape":"DomainName"}
1153
- }
1154
- },
1155
- "CreateDomainResponse":{
1156
- "type":"structure",
1157
- "members":{
1158
- "DomainStatus":{"shape":"DomainStatus"}
1159
- }
1160
- },
1161
- "DateArrayOptions":{
1162
- "type":"structure",
1163
- "members":{
1164
- "DefaultValue":{"shape":"FieldValue"},
1165
- "SourceFields":{"shape":"FieldNameCommaList"},
1166
- "FacetEnabled":{"shape":"Boolean"},
1167
- "SearchEnabled":{"shape":"Boolean"},
1168
- "ReturnEnabled":{"shape":"Boolean"}
1169
- }
1170
- },
1171
- "DateOptions":{
1172
- "type":"structure",
1173
- "members":{
1174
- "DefaultValue":{"shape":"FieldValue"},
1175
- "SourceField":{"shape":"FieldName"},
1176
- "FacetEnabled":{"shape":"Boolean"},
1177
- "SearchEnabled":{"shape":"Boolean"},
1178
- "ReturnEnabled":{"shape":"Boolean"},
1179
- "SortEnabled":{"shape":"Boolean"}
1180
- }
1181
- },
1182
- "DefineAnalysisSchemeRequest":{
1183
- "type":"structure",
1184
- "required":[
1185
- "DomainName",
1186
- "AnalysisScheme"
1187
- ],
1188
- "members":{
1189
- "DomainName":{"shape":"DomainName"},
1190
- "AnalysisScheme":{"shape":"AnalysisScheme"}
1191
- }
1192
- },
1193
- "DefineAnalysisSchemeResponse":{
1194
- "type":"structure",
1195
- "required":["AnalysisScheme"],
1196
- "members":{
1197
- "AnalysisScheme":{"shape":"AnalysisSchemeStatus"}
1198
- }
1199
- },
1200
- "DefineExpressionRequest":{
1201
- "type":"structure",
1202
- "required":[
1203
- "DomainName",
1204
- "Expression"
1205
- ],
1206
- "members":{
1207
- "DomainName":{"shape":"DomainName"},
1208
- "Expression":{"shape":"Expression"}
1209
- }
1210
- },
1211
- "DefineExpressionResponse":{
1212
- "type":"structure",
1213
- "required":["Expression"],
1214
- "members":{
1215
- "Expression":{"shape":"ExpressionStatus"}
1216
- }
1217
- },
1218
- "DefineIndexFieldRequest":{
1219
- "type":"structure",
1220
- "required":[
1221
- "DomainName",
1222
- "IndexField"
1223
- ],
1224
- "members":{
1225
- "DomainName":{"shape":"DomainName"},
1226
- "IndexField":{"shape":"IndexField"}
1227
- }
1228
- },
1229
- "DefineIndexFieldResponse":{
1230
- "type":"structure",
1231
- "required":["IndexField"],
1232
- "members":{
1233
- "IndexField":{"shape":"IndexFieldStatus"}
1234
- }
1235
- },
1236
- "DefineSuggesterRequest":{
1237
- "type":"structure",
1238
- "required":[
1239
- "DomainName",
1240
- "Suggester"
1241
- ],
1242
- "members":{
1243
- "DomainName":{"shape":"DomainName"},
1244
- "Suggester":{"shape":"Suggester"}
1245
- }
1246
- },
1247
- "DefineSuggesterResponse":{
1248
- "type":"structure",
1249
- "required":["Suggester"],
1250
- "members":{
1251
- "Suggester":{"shape":"SuggesterStatus"}
1252
- }
1253
- },
1254
- "DeleteAnalysisSchemeRequest":{
1255
- "type":"structure",
1256
- "required":[
1257
- "DomainName",
1258
- "AnalysisSchemeName"
1259
- ],
1260
- "members":{
1261
- "DomainName":{"shape":"DomainName"},
1262
- "AnalysisSchemeName":{"shape":"StandardName"}
1263
- }
1264
- },
1265
- "DeleteAnalysisSchemeResponse":{
1266
- "type":"structure",
1267
- "required":["AnalysisScheme"],
1268
- "members":{
1269
- "AnalysisScheme":{"shape":"AnalysisSchemeStatus"}
1270
- }
1271
- },
1272
- "DeleteDomainRequest":{
1273
- "type":"structure",
1274
- "required":["DomainName"],
1275
- "members":{
1276
- "DomainName":{"shape":"DomainName"}
1277
- }
1278
- },
1279
- "DeleteDomainResponse":{
1280
- "type":"structure",
1281
- "members":{
1282
- "DomainStatus":{"shape":"DomainStatus"}
1283
- }
1284
- },
1285
- "DeleteExpressionRequest":{
1286
- "type":"structure",
1287
- "required":[
1288
- "DomainName",
1289
- "ExpressionName"
1290
- ],
1291
- "members":{
1292
- "DomainName":{"shape":"DomainName"},
1293
- "ExpressionName":{"shape":"StandardName"}
1294
- }
1295
- },
1296
- "DeleteExpressionResponse":{
1297
- "type":"structure",
1298
- "required":["Expression"],
1299
- "members":{
1300
- "Expression":{"shape":"ExpressionStatus"}
1301
- }
1302
- },
1303
- "DeleteIndexFieldRequest":{
1304
- "type":"structure",
1305
- "required":[
1306
- "DomainName",
1307
- "IndexFieldName"
1308
- ],
1309
- "members":{
1310
- "DomainName":{"shape":"DomainName"},
1311
- "IndexFieldName":{"shape":"DynamicFieldName"}
1312
- }
1313
- },
1314
- "DeleteIndexFieldResponse":{
1315
- "type":"structure",
1316
- "required":["IndexField"],
1317
- "members":{
1318
- "IndexField":{"shape":"IndexFieldStatus"}
1319
- }
1320
- },
1321
- "DeleteSuggesterRequest":{
1322
- "type":"structure",
1323
- "required":[
1324
- "DomainName",
1325
- "SuggesterName"
1326
- ],
1327
- "members":{
1328
- "DomainName":{"shape":"DomainName"},
1329
- "SuggesterName":{"shape":"StandardName"}
1330
- }
1331
- },
1332
- "DeleteSuggesterResponse":{
1333
- "type":"structure",
1334
- "required":["Suggester"],
1335
- "members":{
1336
- "Suggester":{"shape":"SuggesterStatus"}
1337
- }
1338
- },
1339
- "DescribeAnalysisSchemesRequest":{
1340
- "type":"structure",
1341
- "required":["DomainName"],
1342
- "members":{
1343
- "DomainName":{"shape":"DomainName"},
1344
- "AnalysisSchemeNames":{"shape":"StandardNameList"},
1345
- "Deployed":{"shape":"Boolean"}
1346
- }
1347
- },
1348
- "DescribeAnalysisSchemesResponse":{
1349
- "type":"structure",
1350
- "required":["AnalysisSchemes"],
1351
- "members":{
1352
- "AnalysisSchemes":{"shape":"AnalysisSchemeStatusList"}
1353
- }
1354
- },
1355
- "DescribeAvailabilityOptionsRequest":{
1356
- "type":"structure",
1357
- "required":["DomainName"],
1358
- "members":{
1359
- "DomainName":{"shape":"DomainName"},
1360
- "Deployed":{"shape":"Boolean"}
1361
- }
1362
- },
1363
- "DescribeAvailabilityOptionsResponse":{
1364
- "type":"structure",
1365
- "members":{
1366
- "AvailabilityOptions":{"shape":"AvailabilityOptionsStatus"}
1367
- }
1368
- },
1369
- "DescribeDomainsRequest":{
1370
- "type":"structure",
1371
- "members":{
1372
- "DomainNames":{"shape":"DomainNameList"}
1373
- }
1374
- },
1375
- "DescribeDomainsResponse":{
1376
- "type":"structure",
1377
- "required":["DomainStatusList"],
1378
- "members":{
1379
- "DomainStatusList":{"shape":"DomainStatusList"}
1380
- }
1381
- },
1382
- "DescribeExpressionsRequest":{
1383
- "type":"structure",
1384
- "required":["DomainName"],
1385
- "members":{
1386
- "DomainName":{"shape":"DomainName"},
1387
- "ExpressionNames":{"shape":"StandardNameList"},
1388
- "Deployed":{"shape":"Boolean"}
1389
- }
1390
- },
1391
- "DescribeExpressionsResponse":{
1392
- "type":"structure",
1393
- "required":["Expressions"],
1394
- "members":{
1395
- "Expressions":{"shape":"ExpressionStatusList"}
1396
- }
1397
- },
1398
- "DescribeIndexFieldsRequest":{
1399
- "type":"structure",
1400
- "required":["DomainName"],
1401
- "members":{
1402
- "DomainName":{"shape":"DomainName"},
1403
- "FieldNames":{"shape":"DynamicFieldNameList"},
1404
- "Deployed":{"shape":"Boolean"}
1405
- }
1406
- },
1407
- "DescribeIndexFieldsResponse":{
1408
- "type":"structure",
1409
- "required":["IndexFields"],
1410
- "members":{
1411
- "IndexFields":{"shape":"IndexFieldStatusList"}
1412
- }
1413
- },
1414
- "DescribeScalingParametersRequest":{
1415
- "type":"structure",
1416
- "required":["DomainName"],
1417
- "members":{
1418
- "DomainName":{"shape":"DomainName"}
1419
- }
1420
- },
1421
- "DescribeScalingParametersResponse":{
1422
- "type":"structure",
1423
- "required":["ScalingParameters"],
1424
- "members":{
1425
- "ScalingParameters":{"shape":"ScalingParametersStatus"}
1426
- }
1427
- },
1428
- "DescribeServiceAccessPoliciesRequest":{
1429
- "type":"structure",
1430
- "required":["DomainName"],
1431
- "members":{
1432
- "DomainName":{"shape":"DomainName"},
1433
- "Deployed":{"shape":"Boolean"}
1434
- }
1435
- },
1436
- "DescribeServiceAccessPoliciesResponse":{
1437
- "type":"structure",
1438
- "required":["AccessPolicies"],
1439
- "members":{
1440
- "AccessPolicies":{"shape":"AccessPoliciesStatus"}
1441
- }
1442
- },
1443
- "DescribeSuggestersRequest":{
1444
- "type":"structure",
1445
- "required":["DomainName"],
1446
- "members":{
1447
- "DomainName":{"shape":"DomainName"},
1448
- "SuggesterNames":{"shape":"StandardNameList"},
1449
- "Deployed":{"shape":"Boolean"}
1450
- }
1451
- },
1452
- "DescribeSuggestersResponse":{
1453
- "type":"structure",
1454
- "required":["Suggesters"],
1455
- "members":{
1456
- "Suggesters":{"shape":"SuggesterStatusList"}
1457
- }
1458
- },
1459
- "DisabledOperationException":{
1460
- "type":"structure",
1461
- "members":{
1462
- },
1463
- "error":{
1464
- "code":"DisabledAction",
1465
- "httpStatusCode":409,
1466
- "senderFault":true
1467
- },
1468
- "exception":true
1469
- },
1470
- "DocumentSuggesterOptions":{
1471
- "type":"structure",
1472
- "required":["SourceField"],
1473
- "members":{
1474
- "SourceField":{"shape":"FieldName"},
1475
- "FuzzyMatching":{"shape":"SuggesterFuzzyMatching"},
1476
- "SortExpression":{"shape":"String"}
1477
- }
1478
- },
1479
- "DomainId":{
1480
- "type":"string",
1481
- "min":1,
1482
- "max":64
1483
- },
1484
- "DomainName":{
1485
- "type":"string",
1486
- "min":3,
1487
- "max":28,
1488
- "pattern":"[a-z][a-z0-9\\-]+"
1489
- },
1490
- "DomainNameList":{
1491
- "type":"list",
1492
- "member":{"shape":"DomainName"}
1493
- },
1494
- "DomainNameMap":{
1495
- "type":"map",
1496
- "key":{"shape":"DomainName"},
1497
- "value":{"shape":"APIVersion"}
1498
- },
1499
- "DomainStatus":{
1500
- "type":"structure",
1501
- "required":[
1502
- "DomainId",
1503
- "DomainName",
1504
- "RequiresIndexDocuments"
1505
- ],
1506
- "members":{
1507
- "DomainId":{"shape":"DomainId"},
1508
- "DomainName":{"shape":"DomainName"},
1509
- "ARN":{"shape":"ARN"},
1510
- "Created":{"shape":"Boolean"},
1511
- "Deleted":{"shape":"Boolean"},
1512
- "DocService":{"shape":"ServiceEndpoint"},
1513
- "SearchService":{"shape":"ServiceEndpoint"},
1514
- "RequiresIndexDocuments":{"shape":"Boolean"},
1515
- "Processing":{"shape":"Boolean"},
1516
- "SearchInstanceType":{"shape":"SearchInstanceType"},
1517
- "SearchPartitionCount":{"shape":"PartitionCount"},
1518
- "SearchInstanceCount":{"shape":"InstanceCount"},
1519
- "Limits":{"shape":"Limits"}
1520
- }
1521
- },
1522
- "DomainStatusList":{
1523
- "type":"list",
1524
- "member":{"shape":"DomainStatus"}
1525
- },
1526
- "Double":{"type":"double"},
1527
- "DoubleArrayOptions":{
1528
- "type":"structure",
1529
- "members":{
1530
- "DefaultValue":{"shape":"Double"},
1531
- "SourceFields":{"shape":"FieldNameCommaList"},
1532
- "FacetEnabled":{"shape":"Boolean"},
1533
- "SearchEnabled":{"shape":"Boolean"},
1534
- "ReturnEnabled":{"shape":"Boolean"}
1535
- }
1536
- },
1537
- "DoubleOptions":{
1538
- "type":"structure",
1539
- "members":{
1540
- "DefaultValue":{"shape":"Double"},
1541
- "SourceField":{"shape":"FieldName"},
1542
- "FacetEnabled":{"shape":"Boolean"},
1543
- "SearchEnabled":{"shape":"Boolean"},
1544
- "ReturnEnabled":{"shape":"Boolean"},
1545
- "SortEnabled":{"shape":"Boolean"}
1546
- }
1547
- },
1548
- "DynamicFieldName":{
1549
- "type":"string",
1550
- "min":1,
1551
- "max":64,
1552
- "pattern":"([a-z][a-z0-9_]*\\*?|\\*[a-z0-9_]*)"
1553
- },
1554
- "DynamicFieldNameList":{
1555
- "type":"list",
1556
- "member":{"shape":"DynamicFieldName"}
1557
- },
1558
- "ErrorCode":{"type":"string"},
1559
- "ErrorMessage":{"type":"string"},
1560
- "Expression":{
1561
- "type":"structure",
1562
- "required":[
1563
- "ExpressionName",
1564
- "ExpressionValue"
1565
- ],
1566
- "members":{
1567
- "ExpressionName":{"shape":"StandardName"},
1568
- "ExpressionValue":{"shape":"ExpressionValue"}
1569
- }
1570
- },
1571
- "ExpressionStatus":{
1572
- "type":"structure",
1573
- "required":[
1574
- "Options",
1575
- "Status"
1576
- ],
1577
- "members":{
1578
- "Options":{"shape":"Expression"},
1579
- "Status":{"shape":"OptionStatus"}
1580
- }
1581
- },
1582
- "ExpressionStatusList":{
1583
- "type":"list",
1584
- "member":{"shape":"ExpressionStatus"}
1585
- },
1586
- "ExpressionValue":{
1587
- "type":"string",
1588
- "min":1,
1589
- "max":10240
1590
- },
1591
- "FieldName":{
1592
- "type":"string",
1593
- "min":1,
1594
- "max":64,
1595
- "pattern":"[a-z][a-z0-9_]*"
1596
- },
1597
- "FieldNameCommaList":{
1598
- "type":"string",
1599
- "pattern":"\\s*[a-z*][a-z0-9_]*\\*?\\s*(,\\s*[a-z*][a-z0-9_]*\\*?\\s*)*"
1600
- },
1601
- "FieldNameList":{
1602
- "type":"list",
1603
- "member":{"shape":"FieldName"}
1604
- },
1605
- "FieldValue":{
1606
- "type":"string",
1607
- "min":0,
1608
- "max":1024
1609
- },
1610
- "IndexDocumentsRequest":{
1611
- "type":"structure",
1612
- "required":["DomainName"],
1613
- "members":{
1614
- "DomainName":{"shape":"DomainName"}
1615
- }
1616
- },
1617
- "IndexDocumentsResponse":{
1618
- "type":"structure",
1619
- "members":{
1620
- "FieldNames":{"shape":"FieldNameList"}
1621
- }
1622
- },
1623
- "IndexField":{
1624
- "type":"structure",
1625
- "required":[
1626
- "IndexFieldName",
1627
- "IndexFieldType"
1628
- ],
1629
- "members":{
1630
- "IndexFieldName":{"shape":"DynamicFieldName"},
1631
- "IndexFieldType":{"shape":"IndexFieldType"},
1632
- "IntOptions":{"shape":"IntOptions"},
1633
- "DoubleOptions":{"shape":"DoubleOptions"},
1634
- "LiteralOptions":{"shape":"LiteralOptions"},
1635
- "TextOptions":{"shape":"TextOptions"},
1636
- "DateOptions":{"shape":"DateOptions"},
1637
- "LatLonOptions":{"shape":"LatLonOptions"},
1638
- "IntArrayOptions":{"shape":"IntArrayOptions"},
1639
- "DoubleArrayOptions":{"shape":"DoubleArrayOptions"},
1640
- "LiteralArrayOptions":{"shape":"LiteralArrayOptions"},
1641
- "TextArrayOptions":{"shape":"TextArrayOptions"},
1642
- "DateArrayOptions":{"shape":"DateArrayOptions"}
1643
- }
1644
- },
1645
- "IndexFieldStatus":{
1646
- "type":"structure",
1647
- "required":[
1648
- "Options",
1649
- "Status"
1650
- ],
1651
- "members":{
1652
- "Options":{"shape":"IndexField"},
1653
- "Status":{"shape":"OptionStatus"}
1654
- }
1655
- },
1656
- "IndexFieldStatusList":{
1657
- "type":"list",
1658
- "member":{"shape":"IndexFieldStatus"}
1659
- },
1660
- "IndexFieldType":{
1661
- "type":"string",
1662
- "enum":[
1663
- "int",
1664
- "double",
1665
- "literal",
1666
- "text",
1667
- "date",
1668
- "latlon",
1669
- "int-array",
1670
- "double-array",
1671
- "literal-array",
1672
- "text-array",
1673
- "date-array"
1674
- ]
1675
- },
1676
- "InstanceCount":{
1677
- "type":"integer",
1678
- "min":1
1679
- },
1680
- "IntArrayOptions":{
1681
- "type":"structure",
1682
- "members":{
1683
- "DefaultValue":{"shape":"Long"},
1684
- "SourceFields":{"shape":"FieldNameCommaList"},
1685
- "FacetEnabled":{"shape":"Boolean"},
1686
- "SearchEnabled":{"shape":"Boolean"},
1687
- "ReturnEnabled":{"shape":"Boolean"}
1688
- }
1689
- },
1690
- "IntOptions":{
1691
- "type":"structure",
1692
- "members":{
1693
- "DefaultValue":{"shape":"Long"},
1694
- "SourceField":{"shape":"FieldName"},
1695
- "FacetEnabled":{"shape":"Boolean"},
1696
- "SearchEnabled":{"shape":"Boolean"},
1697
- "ReturnEnabled":{"shape":"Boolean"},
1698
- "SortEnabled":{"shape":"Boolean"}
1699
- }
1700
- },
1701
- "InternalException":{
1702
- "type":"structure",
1703
- "members":{
1704
- },
1705
- "error":{
1706
- "code":"InternalException",
1707
- "httpStatusCode":500
1708
- },
1709
- "exception":true
1710
- },
1711
- "InvalidTypeException":{
1712
- "type":"structure",
1713
- "members":{
1714
- },
1715
- "error":{
1716
- "code":"InvalidType",
1717
- "httpStatusCode":409,
1718
- "senderFault":true
1719
- },
1720
- "exception":true
1721
- },
1722
- "LatLonOptions":{
1723
- "type":"structure",
1724
- "members":{
1725
- "DefaultValue":{"shape":"FieldValue"},
1726
- "SourceField":{"shape":"FieldName"},
1727
- "FacetEnabled":{"shape":"Boolean"},
1728
- "SearchEnabled":{"shape":"Boolean"},
1729
- "ReturnEnabled":{"shape":"Boolean"},
1730
- "SortEnabled":{"shape":"Boolean"}
1731
- }
1732
- },
1733
- "LimitExceededException":{
1734
- "type":"structure",
1735
- "members":{
1736
- },
1737
- "error":{
1738
- "code":"LimitExceeded",
1739
- "httpStatusCode":409,
1740
- "senderFault":true
1741
- },
1742
- "exception":true
1743
- },
1744
- "Limits":{
1745
- "type":"structure",
1746
- "required":[
1747
- "MaximumReplicationCount",
1748
- "MaximumPartitionCount"
1749
- ],
1750
- "members":{
1751
- "MaximumReplicationCount":{"shape":"MaximumReplicationCount"},
1752
- "MaximumPartitionCount":{"shape":"MaximumPartitionCount"}
1753
- }
1754
- },
1755
- "ListDomainNamesResponse":{
1756
- "type":"structure",
1757
- "members":{
1758
- "DomainNames":{"shape":"DomainNameMap"}
1759
- }
1760
- },
1761
- "LiteralArrayOptions":{
1762
- "type":"structure",
1763
- "members":{
1764
- "DefaultValue":{"shape":"FieldValue"},
1765
- "SourceFields":{"shape":"FieldNameCommaList"},
1766
- "FacetEnabled":{"shape":"Boolean"},
1767
- "SearchEnabled":{"shape":"Boolean"},
1768
- "ReturnEnabled":{"shape":"Boolean"}
1769
- }
1770
- },
1771
- "LiteralOptions":{
1772
- "type":"structure",
1773
- "members":{
1774
- "DefaultValue":{"shape":"FieldValue"},
1775
- "SourceField":{"shape":"FieldName"},
1776
- "FacetEnabled":{"shape":"Boolean"},
1777
- "SearchEnabled":{"shape":"Boolean"},
1778
- "ReturnEnabled":{"shape":"Boolean"},
1779
- "SortEnabled":{"shape":"Boolean"}
1780
- }
1781
- },
1782
- "Long":{"type":"long"},
1783
- "MaximumPartitionCount":{
1784
- "type":"integer",
1785
- "min":1
1786
- },
1787
- "MaximumReplicationCount":{
1788
- "type":"integer",
1789
- "min":1
1790
- },
1791
- "MultiAZ":{"type":"boolean"},
1792
- "OptionState":{
1793
- "type":"string",
1794
- "enum":[
1795
- "RequiresIndexDocuments",
1796
- "Processing",
1797
- "Active",
1798
- "FailedToValidate"
1799
- ]
1800
- },
1801
- "OptionStatus":{
1802
- "type":"structure",
1803
- "required":[
1804
- "CreationDate",
1805
- "UpdateDate",
1806
- "State"
1807
- ],
1808
- "members":{
1809
- "CreationDate":{"shape":"UpdateTimestamp"},
1810
- "UpdateDate":{"shape":"UpdateTimestamp"},
1811
- "UpdateVersion":{"shape":"UIntValue"},
1812
- "State":{"shape":"OptionState"},
1813
- "PendingDeletion":{"shape":"Boolean"}
1814
- }
1815
- },
1816
- "PartitionCount":{
1817
- "type":"integer",
1818
- "min":1
1819
- },
1820
- "PartitionInstanceType":{
1821
- "type":"string",
1822
- "enum":[
1823
- "search.m1.small",
1824
- "search.m1.large",
1825
- "search.m2.xlarge",
1826
- "search.m2.2xlarge",
1827
- "search.m3.medium",
1828
- "search.m3.large",
1829
- "search.m3.xlarge",
1830
- "search.m3.2xlarge"
1831
- ]
1832
- },
1833
- "PolicyDocument":{"type":"string"},
1834
- "ResourceNotFoundException":{
1835
- "type":"structure",
1836
- "members":{
1837
- },
1838
- "error":{
1839
- "code":"ResourceNotFound",
1840
- "httpStatusCode":409,
1841
- "senderFault":true
1842
- },
1843
- "exception":true
1844
- },
1845
- "ScalingParameters":{
1846
- "type":"structure",
1847
- "members":{
1848
- "DesiredInstanceType":{"shape":"PartitionInstanceType"},
1849
- "DesiredReplicationCount":{"shape":"UIntValue"},
1850
- "DesiredPartitionCount":{"shape":"UIntValue"}
1851
- }
1852
- },
1853
- "ScalingParametersStatus":{
1854
- "type":"structure",
1855
- "required":[
1856
- "Options",
1857
- "Status"
1858
- ],
1859
- "members":{
1860
- "Options":{"shape":"ScalingParameters"},
1861
- "Status":{"shape":"OptionStatus"}
1862
- }
1863
- },
1864
- "SearchInstanceType":{"type":"string"},
1865
- "ServiceEndpoint":{
1866
- "type":"structure",
1867
- "members":{
1868
- "Endpoint":{"shape":"ServiceUrl"}
1869
- }
1870
- },
1871
- "ServiceUrl":{"type":"string"},
1872
- "StandardName":{
1873
- "type":"string",
1874
- "min":1,
1875
- "max":64,
1876
- "pattern":"[a-z][a-z0-9_]*"
1877
- },
1878
- "StandardNameList":{
1879
- "type":"list",
1880
- "member":{"shape":"StandardName"}
1881
- },
1882
- "String":{"type":"string"},
1883
- "Suggester":{
1884
- "type":"structure",
1885
- "required":[
1886
- "SuggesterName",
1887
- "DocumentSuggesterOptions"
1888
- ],
1889
- "members":{
1890
- "SuggesterName":{"shape":"StandardName"},
1891
- "DocumentSuggesterOptions":{"shape":"DocumentSuggesterOptions"}
1892
- }
1893
- },
1894
- "SuggesterFuzzyMatching":{
1895
- "type":"string",
1896
- "enum":[
1897
- "none",
1898
- "low",
1899
- "high"
1900
- ]
1901
- },
1902
- "SuggesterStatus":{
1903
- "type":"structure",
1904
- "required":[
1905
- "Options",
1906
- "Status"
1907
- ],
1908
- "members":{
1909
- "Options":{"shape":"Suggester"},
1910
- "Status":{"shape":"OptionStatus"}
1911
- }
1912
- },
1913
- "SuggesterStatusList":{
1914
- "type":"list",
1915
- "member":{"shape":"SuggesterStatus"}
1916
- },
1917
- "TextArrayOptions":{
1918
- "type":"structure",
1919
- "members":{
1920
- "DefaultValue":{"shape":"FieldValue"},
1921
- "SourceFields":{"shape":"FieldNameCommaList"},
1922
- "ReturnEnabled":{"shape":"Boolean"},
1923
- "HighlightEnabled":{"shape":"Boolean"},
1924
- "AnalysisScheme":{"shape":"Word"}
1925
- }
1926
- },
1927
- "TextOptions":{
1928
- "type":"structure",
1929
- "members":{
1930
- "DefaultValue":{"shape":"FieldValue"},
1931
- "SourceField":{"shape":"FieldName"},
1932
- "ReturnEnabled":{"shape":"Boolean"},
1933
- "SortEnabled":{"shape":"Boolean"},
1934
- "HighlightEnabled":{"shape":"Boolean"},
1935
- "AnalysisScheme":{"shape":"Word"}
1936
- }
1937
- },
1938
- "UIntValue":{
1939
- "type":"integer",
1940
- "min":0
1941
- },
1942
- "UpdateAvailabilityOptionsRequest":{
1943
- "type":"structure",
1944
- "required":[
1945
- "DomainName",
1946
- "MultiAZ"
1947
- ],
1948
- "members":{
1949
- "DomainName":{"shape":"DomainName"},
1950
- "MultiAZ":{"shape":"Boolean"}
1951
- }
1952
- },
1953
- "UpdateAvailabilityOptionsResponse":{
1954
- "type":"structure",
1955
- "members":{
1956
- "AvailabilityOptions":{"shape":"AvailabilityOptionsStatus"}
1957
- }
1958
- },
1959
- "UpdateScalingParametersRequest":{
1960
- "type":"structure",
1961
- "required":[
1962
- "DomainName",
1963
- "ScalingParameters"
1964
- ],
1965
- "members":{
1966
- "DomainName":{"shape":"DomainName"},
1967
- "ScalingParameters":{"shape":"ScalingParameters"}
1968
- }
1969
- },
1970
- "UpdateScalingParametersResponse":{
1971
- "type":"structure",
1972
- "required":["ScalingParameters"],
1973
- "members":{
1974
- "ScalingParameters":{"shape":"ScalingParametersStatus"}
1975
- }
1976
- },
1977
- "UpdateServiceAccessPoliciesRequest":{
1978
- "type":"structure",
1979
- "required":[
1980
- "DomainName",
1981
- "AccessPolicies"
1982
- ],
1983
- "members":{
1984
- "DomainName":{"shape":"DomainName"},
1985
- "AccessPolicies":{"shape":"PolicyDocument"}
1986
- }
1987
- },
1988
- "UpdateServiceAccessPoliciesResponse":{
1989
- "type":"structure",
1990
- "required":["AccessPolicies"],
1991
- "members":{
1992
- "AccessPolicies":{"shape":"AccessPoliciesStatus"}
1993
- }
1994
- },
1995
- "UpdateTimestamp":{"type":"timestamp"},
1996
- "Word":{
1997
- "type":"string",
1998
- "pattern":"[\\S]+"
1999
- }
2000
- }
2001
- }