aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,3033 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2016-05-10",
5
- "endpointPrefix":"clouddirectory",
6
- "protocol":"rest-json",
7
- "serviceFullName":"Amazon CloudDirectory",
8
- "signatureVersion":"v4",
9
- "signingName":"clouddirectory",
10
- "uid":"clouddirectory-2016-05-10"
11
- },
12
- "operations":{
13
- "AddFacetToObject":{
14
- "name":"AddFacetToObject",
15
- "http":{
16
- "method":"PUT",
17
- "requestUri":"/amazonclouddirectory/2017-01-11/object/facets",
18
- "responseCode":200
19
- },
20
- "input":{"shape":"AddFacetToObjectRequest"},
21
- "output":{"shape":"AddFacetToObjectResponse"},
22
- "errors":[
23
- {"shape":"InternalServiceException"},
24
- {"shape":"InvalidArnException"},
25
- {"shape":"RetryableConflictException"},
26
- {"shape":"ValidationException"},
27
- {"shape":"LimitExceededException"},
28
- {"shape":"AccessDeniedException"},
29
- {"shape":"DirectoryNotEnabledException"},
30
- {"shape":"ResourceNotFoundException"},
31
- {"shape":"FacetValidationException"}
32
- ]
33
- },
34
- "ApplySchema":{
35
- "name":"ApplySchema",
36
- "http":{
37
- "method":"PUT",
38
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/apply",
39
- "responseCode":200
40
- },
41
- "input":{"shape":"ApplySchemaRequest"},
42
- "output":{"shape":"ApplySchemaResponse"},
43
- "errors":[
44
- {"shape":"InternalServiceException"},
45
- {"shape":"InvalidArnException"},
46
- {"shape":"RetryableConflictException"},
47
- {"shape":"ValidationException"},
48
- {"shape":"LimitExceededException"},
49
- {"shape":"AccessDeniedException"},
50
- {"shape":"ResourceNotFoundException"},
51
- {"shape":"InvalidAttachmentException"}
52
- ]
53
- },
54
- "AttachObject":{
55
- "name":"AttachObject",
56
- "http":{
57
- "method":"PUT",
58
- "requestUri":"/amazonclouddirectory/2017-01-11/object/attach",
59
- "responseCode":200
60
- },
61
- "input":{"shape":"AttachObjectRequest"},
62
- "output":{"shape":"AttachObjectResponse"},
63
- "errors":[
64
- {"shape":"InternalServiceException"},
65
- {"shape":"InvalidArnException"},
66
- {"shape":"RetryableConflictException"},
67
- {"shape":"ValidationException"},
68
- {"shape":"LimitExceededException"},
69
- {"shape":"AccessDeniedException"},
70
- {"shape":"DirectoryNotEnabledException"},
71
- {"shape":"ResourceNotFoundException"},
72
- {"shape":"LinkNameAlreadyInUseException"},
73
- {"shape":"InvalidAttachmentException"},
74
- {"shape":"ValidationException"}
75
- ]
76
- },
77
- "AttachPolicy":{
78
- "name":"AttachPolicy",
79
- "http":{
80
- "method":"PUT",
81
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/attach",
82
- "responseCode":200
83
- },
84
- "input":{"shape":"AttachPolicyRequest"},
85
- "output":{"shape":"AttachPolicyResponse"},
86
- "errors":[
87
- {"shape":"InternalServiceException"},
88
- {"shape":"InvalidArnException"},
89
- {"shape":"RetryableConflictException"},
90
- {"shape":"ValidationException"},
91
- {"shape":"LimitExceededException"},
92
- {"shape":"AccessDeniedException"},
93
- {"shape":"DirectoryNotEnabledException"},
94
- {"shape":"InvalidArnException"},
95
- {"shape":"ResourceNotFoundException"},
96
- {"shape":"NotPolicyException"}
97
- ]
98
- },
99
- "AttachToIndex":{
100
- "name":"AttachToIndex",
101
- "http":{
102
- "method":"PUT",
103
- "requestUri":"/amazonclouddirectory/2017-01-11/index/attach",
104
- "responseCode":200
105
- },
106
- "input":{"shape":"AttachToIndexRequest"},
107
- "output":{"shape":"AttachToIndexResponse"},
108
- "errors":[
109
- {"shape":"InternalServiceException"},
110
- {"shape":"InvalidArnException"},
111
- {"shape":"RetryableConflictException"},
112
- {"shape":"ValidationException"},
113
- {"shape":"LimitExceededException"},
114
- {"shape":"AccessDeniedException"},
115
- {"shape":"DirectoryNotEnabledException"},
116
- {"shape":"ResourceNotFoundException"},
117
- {"shape":"LinkNameAlreadyInUseException"},
118
- {"shape":"IndexedAttributeMissingException"},
119
- {"shape":"NotIndexException"}
120
- ]
121
- },
122
- "BatchRead":{
123
- "name":"BatchRead",
124
- "http":{
125
- "method":"POST",
126
- "requestUri":"/amazonclouddirectory/2017-01-11/batchread",
127
- "responseCode":200
128
- },
129
- "input":{"shape":"BatchReadRequest"},
130
- "output":{"shape":"BatchReadResponse"},
131
- "errors":[
132
- {"shape":"InternalServiceException"},
133
- {"shape":"InvalidArnException"},
134
- {"shape":"RetryableConflictException"},
135
- {"shape":"ValidationException"},
136
- {"shape":"LimitExceededException"},
137
- {"shape":"AccessDeniedException"},
138
- {"shape":"DirectoryNotEnabledException"}
139
- ]
140
- },
141
- "BatchWrite":{
142
- "name":"BatchWrite",
143
- "http":{
144
- "method":"PUT",
145
- "requestUri":"/amazonclouddirectory/2017-01-11/batchwrite",
146
- "responseCode":200
147
- },
148
- "input":{"shape":"BatchWriteRequest"},
149
- "output":{"shape":"BatchWriteResponse"},
150
- "errors":[
151
- {"shape":"InternalServiceException"},
152
- {"shape":"InvalidArnException"},
153
- {"shape":"RetryableConflictException"},
154
- {"shape":"ValidationException"},
155
- {"shape":"LimitExceededException"},
156
- {"shape":"AccessDeniedException"},
157
- {"shape":"DirectoryNotEnabledException"},
158
- {"shape":"BatchWriteException"}
159
- ]
160
- },
161
- "CreateDirectory":{
162
- "name":"CreateDirectory",
163
- "http":{
164
- "method":"PUT",
165
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/create",
166
- "responseCode":200
167
- },
168
- "input":{"shape":"CreateDirectoryRequest"},
169
- "output":{"shape":"CreateDirectoryResponse"},
170
- "errors":[
171
- {"shape":"InternalServiceException"},
172
- {"shape":"InvalidArnException"},
173
- {"shape":"RetryableConflictException"},
174
- {"shape":"ValidationException"},
175
- {"shape":"LimitExceededException"},
176
- {"shape":"AccessDeniedException"},
177
- {"shape":"DirectoryAlreadyExistsException"},
178
- {"shape":"InvalidArnException"},
179
- {"shape":"ResourceNotFoundException"}
180
- ]
181
- },
182
- "CreateFacet":{
183
- "name":"CreateFacet",
184
- "http":{
185
- "method":"PUT",
186
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/create",
187
- "responseCode":200
188
- },
189
- "input":{"shape":"CreateFacetRequest"},
190
- "output":{"shape":"CreateFacetResponse"},
191
- "errors":[
192
- {"shape":"InternalServiceException"},
193
- {"shape":"InvalidArnException"},
194
- {"shape":"RetryableConflictException"},
195
- {"shape":"ValidationException"},
196
- {"shape":"LimitExceededException"},
197
- {"shape":"AccessDeniedException"},
198
- {"shape":"ResourceNotFoundException"},
199
- {"shape":"FacetAlreadyExistsException"},
200
- {"shape":"InvalidRuleException"}
201
- ]
202
- },
203
- "CreateIndex":{
204
- "name":"CreateIndex",
205
- "http":{
206
- "method":"PUT",
207
- "requestUri":"/amazonclouddirectory/2017-01-11/index",
208
- "responseCode":200
209
- },
210
- "input":{"shape":"CreateIndexRequest"},
211
- "output":{"shape":"CreateIndexResponse"},
212
- "errors":[
213
- {"shape":"InternalServiceException"},
214
- {"shape":"InvalidArnException"},
215
- {"shape":"RetryableConflictException"},
216
- {"shape":"ValidationException"},
217
- {"shape":"LimitExceededException"},
218
- {"shape":"AccessDeniedException"},
219
- {"shape":"DirectoryNotEnabledException"},
220
- {"shape":"ResourceNotFoundException"},
221
- {"shape":"FacetValidationException"},
222
- {"shape":"LinkNameAlreadyInUseException"},
223
- {"shape":"UnsupportedIndexTypeException"}
224
- ]
225
- },
226
- "CreateObject":{
227
- "name":"CreateObject",
228
- "http":{
229
- "method":"PUT",
230
- "requestUri":"/amazonclouddirectory/2017-01-11/object",
231
- "responseCode":200
232
- },
233
- "input":{"shape":"CreateObjectRequest"},
234
- "output":{"shape":"CreateObjectResponse"},
235
- "errors":[
236
- {"shape":"InternalServiceException"},
237
- {"shape":"InvalidArnException"},
238
- {"shape":"RetryableConflictException"},
239
- {"shape":"ValidationException"},
240
- {"shape":"LimitExceededException"},
241
- {"shape":"AccessDeniedException"},
242
- {"shape":"DirectoryNotEnabledException"},
243
- {"shape":"InvalidArnException"},
244
- {"shape":"ResourceNotFoundException"},
245
- {"shape":"FacetValidationException"},
246
- {"shape":"LinkNameAlreadyInUseException"},
247
- {"shape":"UnsupportedIndexTypeException"}
248
- ]
249
- },
250
- "CreateSchema":{
251
- "name":"CreateSchema",
252
- "http":{
253
- "method":"PUT",
254
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/create",
255
- "responseCode":200
256
- },
257
- "input":{"shape":"CreateSchemaRequest"},
258
- "output":{"shape":"CreateSchemaResponse"},
259
- "errors":[
260
- {"shape":"InternalServiceException"},
261
- {"shape":"InvalidArnException"},
262
- {"shape":"RetryableConflictException"},
263
- {"shape":"ValidationException"},
264
- {"shape":"LimitExceededException"},
265
- {"shape":"AccessDeniedException"},
266
- {"shape":"SchemaAlreadyExistsException"},
267
- {"shape":"AccessDeniedException"}
268
- ]
269
- },
270
- "DeleteDirectory":{
271
- "name":"DeleteDirectory",
272
- "http":{
273
- "method":"PUT",
274
- "requestUri":"/amazonclouddirectory/2017-01-11/directory",
275
- "responseCode":200
276
- },
277
- "input":{"shape":"DeleteDirectoryRequest"},
278
- "output":{"shape":"DeleteDirectoryResponse"},
279
- "errors":[
280
- {"shape":"ResourceNotFoundException"},
281
- {"shape":"DirectoryNotDisabledException"},
282
- {"shape":"InternalServiceException"},
283
- {"shape":"ValidationException"},
284
- {"shape":"LimitExceededException"},
285
- {"shape":"AccessDeniedException"},
286
- {"shape":"DirectoryDeletedException"},
287
- {"shape":"RetryableConflictException"}
288
- ]
289
- },
290
- "DeleteFacet":{
291
- "name":"DeleteFacet",
292
- "http":{
293
- "method":"PUT",
294
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/delete",
295
- "responseCode":200
296
- },
297
- "input":{"shape":"DeleteFacetRequest"},
298
- "output":{"shape":"DeleteFacetResponse"},
299
- "errors":[
300
- {"shape":"InternalServiceException"},
301
- {"shape":"InvalidArnException"},
302
- {"shape":"RetryableConflictException"},
303
- {"shape":"ValidationException"},
304
- {"shape":"LimitExceededException"},
305
- {"shape":"AccessDeniedException"},
306
- {"shape":"ResourceNotFoundException"},
307
- {"shape":"FacetNotFoundException"},
308
- {"shape":"FacetInUseException"}
309
- ]
310
- },
311
- "DeleteObject":{
312
- "name":"DeleteObject",
313
- "http":{
314
- "method":"PUT",
315
- "requestUri":"/amazonclouddirectory/2017-01-11/object/delete",
316
- "responseCode":200
317
- },
318
- "input":{"shape":"DeleteObjectRequest"},
319
- "output":{"shape":"DeleteObjectResponse"},
320
- "errors":[
321
- {"shape":"InternalServiceException"},
322
- {"shape":"InvalidArnException"},
323
- {"shape":"RetryableConflictException"},
324
- {"shape":"ValidationException"},
325
- {"shape":"LimitExceededException"},
326
- {"shape":"AccessDeniedException"},
327
- {"shape":"DirectoryNotEnabledException"},
328
- {"shape":"ResourceNotFoundException"},
329
- {"shape":"ObjectNotDetachedException"}
330
- ]
331
- },
332
- "DeleteSchema":{
333
- "name":"DeleteSchema",
334
- "http":{
335
- "method":"PUT",
336
- "requestUri":"/amazonclouddirectory/2017-01-11/schema",
337
- "responseCode":200
338
- },
339
- "input":{"shape":"DeleteSchemaRequest"},
340
- "output":{"shape":"DeleteSchemaResponse"},
341
- "errors":[
342
- {"shape":"InternalServiceException"},
343
- {"shape":"InvalidArnException"},
344
- {"shape":"RetryableConflictException"},
345
- {"shape":"ValidationException"},
346
- {"shape":"LimitExceededException"},
347
- {"shape":"AccessDeniedException"},
348
- {"shape":"ResourceNotFoundException"},
349
- {"shape":"StillContainsLinksException"}
350
- ]
351
- },
352
- "DetachFromIndex":{
353
- "name":"DetachFromIndex",
354
- "http":{
355
- "method":"PUT",
356
- "requestUri":"/amazonclouddirectory/2017-01-11/index/detach",
357
- "responseCode":200
358
- },
359
- "input":{"shape":"DetachFromIndexRequest"},
360
- "output":{"shape":"DetachFromIndexResponse"},
361
- "errors":[
362
- {"shape":"InternalServiceException"},
363
- {"shape":"InvalidArnException"},
364
- {"shape":"RetryableConflictException"},
365
- {"shape":"ValidationException"},
366
- {"shape":"LimitExceededException"},
367
- {"shape":"AccessDeniedException"},
368
- {"shape":"DirectoryNotEnabledException"},
369
- {"shape":"ResourceNotFoundException"},
370
- {"shape":"ObjectAlreadyDetachedException"},
371
- {"shape":"NotIndexException"}
372
- ]
373
- },
374
- "DetachObject":{
375
- "name":"DetachObject",
376
- "http":{
377
- "method":"PUT",
378
- "requestUri":"/amazonclouddirectory/2017-01-11/object/detach",
379
- "responseCode":200
380
- },
381
- "input":{"shape":"DetachObjectRequest"},
382
- "output":{"shape":"DetachObjectResponse"},
383
- "errors":[
384
- {"shape":"InternalServiceException"},
385
- {"shape":"InvalidArnException"},
386
- {"shape":"RetryableConflictException"},
387
- {"shape":"ValidationException"},
388
- {"shape":"LimitExceededException"},
389
- {"shape":"AccessDeniedException"},
390
- {"shape":"DirectoryNotEnabledException"},
391
- {"shape":"ResourceNotFoundException"}
392
- ]
393
- },
394
- "DetachPolicy":{
395
- "name":"DetachPolicy",
396
- "http":{
397
- "method":"PUT",
398
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/detach",
399
- "responseCode":200
400
- },
401
- "input":{"shape":"DetachPolicyRequest"},
402
- "output":{"shape":"DetachPolicyResponse"},
403
- "errors":[
404
- {"shape":"InternalServiceException"},
405
- {"shape":"InvalidArnException"},
406
- {"shape":"RetryableConflictException"},
407
- {"shape":"ValidationException"},
408
- {"shape":"LimitExceededException"},
409
- {"shape":"AccessDeniedException"},
410
- {"shape":"DirectoryNotEnabledException"},
411
- {"shape":"InvalidArnException"},
412
- {"shape":"ResourceNotFoundException"},
413
- {"shape":"NotPolicyException"}
414
- ]
415
- },
416
- "DisableDirectory":{
417
- "name":"DisableDirectory",
418
- "http":{
419
- "method":"PUT",
420
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/disable",
421
- "responseCode":200
422
- },
423
- "input":{"shape":"DisableDirectoryRequest"},
424
- "output":{"shape":"DisableDirectoryResponse"},
425
- "errors":[
426
- {"shape":"ResourceNotFoundException"},
427
- {"shape":"DirectoryDeletedException"},
428
- {"shape":"InternalServiceException"},
429
- {"shape":"ValidationException"},
430
- {"shape":"LimitExceededException"},
431
- {"shape":"AccessDeniedException"},
432
- {"shape":"RetryableConflictException"}
433
- ]
434
- },
435
- "EnableDirectory":{
436
- "name":"EnableDirectory",
437
- "http":{
438
- "method":"PUT",
439
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/enable",
440
- "responseCode":200
441
- },
442
- "input":{"shape":"EnableDirectoryRequest"},
443
- "output":{"shape":"EnableDirectoryResponse"},
444
- "errors":[
445
- {"shape":"ResourceNotFoundException"},
446
- {"shape":"DirectoryDeletedException"},
447
- {"shape":"InternalServiceException"},
448
- {"shape":"ValidationException"},
449
- {"shape":"LimitExceededException"},
450
- {"shape":"AccessDeniedException"},
451
- {"shape":"RetryableConflictException"}
452
- ]
453
- },
454
- "GetDirectory":{
455
- "name":"GetDirectory",
456
- "http":{
457
- "method":"POST",
458
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/get",
459
- "responseCode":200
460
- },
461
- "input":{"shape":"GetDirectoryRequest"},
462
- "output":{"shape":"GetDirectoryResponse"},
463
- "errors":[
464
- {"shape":"InternalServiceException"},
465
- {"shape":"InvalidArnException"},
466
- {"shape":"RetryableConflictException"},
467
- {"shape":"ValidationException"},
468
- {"shape":"LimitExceededException"},
469
- {"shape":"AccessDeniedException"}
470
- ]
471
- },
472
- "GetFacet":{
473
- "name":"GetFacet",
474
- "http":{
475
- "method":"POST",
476
- "requestUri":"/amazonclouddirectory/2017-01-11/facet",
477
- "responseCode":200
478
- },
479
- "input":{"shape":"GetFacetRequest"},
480
- "output":{"shape":"GetFacetResponse"},
481
- "errors":[
482
- {"shape":"InternalServiceException"},
483
- {"shape":"InvalidArnException"},
484
- {"shape":"RetryableConflictException"},
485
- {"shape":"ValidationException"},
486
- {"shape":"LimitExceededException"},
487
- {"shape":"AccessDeniedException"},
488
- {"shape":"ResourceNotFoundException"},
489
- {"shape":"FacetNotFoundException"}
490
- ]
491
- },
492
- "GetObjectInformation":{
493
- "name":"GetObjectInformation",
494
- "http":{
495
- "method":"POST",
496
- "requestUri":"/amazonclouddirectory/2017-01-11/object/information",
497
- "responseCode":200
498
- },
499
- "input":{"shape":"GetObjectInformationRequest"},
500
- "output":{"shape":"GetObjectInformationResponse"},
501
- "errors":[
502
- {"shape":"InternalServiceException"},
503
- {"shape":"InvalidArnException"},
504
- {"shape":"RetryableConflictException"},
505
- {"shape":"ValidationException"},
506
- {"shape":"LimitExceededException"},
507
- {"shape":"AccessDeniedException"},
508
- {"shape":"DirectoryNotEnabledException"},
509
- {"shape":"ResourceNotFoundException"}
510
- ]
511
- },
512
- "GetSchemaAsJson":{
513
- "name":"GetSchemaAsJson",
514
- "http":{
515
- "method":"POST",
516
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/json",
517
- "responseCode":200
518
- },
519
- "input":{"shape":"GetSchemaAsJsonRequest"},
520
- "output":{"shape":"GetSchemaAsJsonResponse"},
521
- "errors":[
522
- {"shape":"InternalServiceException"},
523
- {"shape":"InvalidArnException"},
524
- {"shape":"RetryableConflictException"},
525
- {"shape":"ValidationException"},
526
- {"shape":"LimitExceededException"},
527
- {"shape":"AccessDeniedException"},
528
- {"shape":"ResourceNotFoundException"},
529
- {"shape":"ValidationException"}
530
- ]
531
- },
532
- "ListAppliedSchemaArns":{
533
- "name":"ListAppliedSchemaArns",
534
- "http":{
535
- "method":"POST",
536
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/applied",
537
- "responseCode":200
538
- },
539
- "input":{"shape":"ListAppliedSchemaArnsRequest"},
540
- "output":{"shape":"ListAppliedSchemaArnsResponse"},
541
- "errors":[
542
- {"shape":"InternalServiceException"},
543
- {"shape":"InvalidArnException"},
544
- {"shape":"RetryableConflictException"},
545
- {"shape":"ValidationException"},
546
- {"shape":"LimitExceededException"},
547
- {"shape":"AccessDeniedException"},
548
- {"shape":"ResourceNotFoundException"},
549
- {"shape":"InvalidNextTokenException"}
550
- ]
551
- },
552
- "ListAttachedIndices":{
553
- "name":"ListAttachedIndices",
554
- "http":{
555
- "method":"POST",
556
- "requestUri":"/amazonclouddirectory/2017-01-11/object/indices",
557
- "responseCode":200
558
- },
559
- "input":{"shape":"ListAttachedIndicesRequest"},
560
- "output":{"shape":"ListAttachedIndicesResponse"},
561
- "errors":[
562
- {"shape":"InternalServiceException"},
563
- {"shape":"InvalidArnException"},
564
- {"shape":"RetryableConflictException"},
565
- {"shape":"ValidationException"},
566
- {"shape":"LimitExceededException"},
567
- {"shape":"AccessDeniedException"},
568
- {"shape":"DirectoryNotEnabledException"},
569
- {"shape":"ResourceNotFoundException"}
570
- ]
571
- },
572
- "ListDevelopmentSchemaArns":{
573
- "name":"ListDevelopmentSchemaArns",
574
- "http":{
575
- "method":"POST",
576
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/development",
577
- "responseCode":200
578
- },
579
- "input":{"shape":"ListDevelopmentSchemaArnsRequest"},
580
- "output":{"shape":"ListDevelopmentSchemaArnsResponse"},
581
- "errors":[
582
- {"shape":"InternalServiceException"},
583
- {"shape":"InvalidArnException"},
584
- {"shape":"RetryableConflictException"},
585
- {"shape":"ValidationException"},
586
- {"shape":"LimitExceededException"},
587
- {"shape":"AccessDeniedException"},
588
- {"shape":"ResourceNotFoundException"},
589
- {"shape":"InvalidNextTokenException"}
590
- ]
591
- },
592
- "ListDirectories":{
593
- "name":"ListDirectories",
594
- "http":{
595
- "method":"POST",
596
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/list",
597
- "responseCode":200
598
- },
599
- "input":{"shape":"ListDirectoriesRequest"},
600
- "output":{"shape":"ListDirectoriesResponse"},
601
- "errors":[
602
- {"shape":"InternalServiceException"},
603
- {"shape":"InvalidArnException"},
604
- {"shape":"RetryableConflictException"},
605
- {"shape":"ValidationException"},
606
- {"shape":"LimitExceededException"},
607
- {"shape":"AccessDeniedException"},
608
- {"shape":"InvalidNextTokenException"}
609
- ]
610
- },
611
- "ListFacetAttributes":{
612
- "name":"ListFacetAttributes",
613
- "http":{
614
- "method":"POST",
615
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/attributes",
616
- "responseCode":200
617
- },
618
- "input":{"shape":"ListFacetAttributesRequest"},
619
- "output":{"shape":"ListFacetAttributesResponse"},
620
- "errors":[
621
- {"shape":"InternalServiceException"},
622
- {"shape":"InvalidArnException"},
623
- {"shape":"RetryableConflictException"},
624
- {"shape":"ValidationException"},
625
- {"shape":"LimitExceededException"},
626
- {"shape":"AccessDeniedException"},
627
- {"shape":"ResourceNotFoundException"},
628
- {"shape":"FacetNotFoundException"},
629
- {"shape":"InvalidNextTokenException"}
630
- ]
631
- },
632
- "ListFacetNames":{
633
- "name":"ListFacetNames",
634
- "http":{
635
- "method":"POST",
636
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/list",
637
- "responseCode":200
638
- },
639
- "input":{"shape":"ListFacetNamesRequest"},
640
- "output":{"shape":"ListFacetNamesResponse"},
641
- "errors":[
642
- {"shape":"InternalServiceException"},
643
- {"shape":"InvalidArnException"},
644
- {"shape":"RetryableConflictException"},
645
- {"shape":"ValidationException"},
646
- {"shape":"LimitExceededException"},
647
- {"shape":"AccessDeniedException"},
648
- {"shape":"ResourceNotFoundException"},
649
- {"shape":"InvalidNextTokenException"}
650
- ]
651
- },
652
- "ListIndex":{
653
- "name":"ListIndex",
654
- "http":{
655
- "method":"POST",
656
- "requestUri":"/amazonclouddirectory/2017-01-11/index/targets",
657
- "responseCode":200
658
- },
659
- "input":{"shape":"ListIndexRequest"},
660
- "output":{"shape":"ListIndexResponse"},
661
- "errors":[
662
- {"shape":"InternalServiceException"},
663
- {"shape":"InvalidArnException"},
664
- {"shape":"RetryableConflictException"},
665
- {"shape":"ValidationException"},
666
- {"shape":"LimitExceededException"},
667
- {"shape":"AccessDeniedException"},
668
- {"shape":"DirectoryNotEnabledException"},
669
- {"shape":"ResourceNotFoundException"},
670
- {"shape":"NotIndexException"}
671
- ]
672
- },
673
- "ListObjectAttributes":{
674
- "name":"ListObjectAttributes",
675
- "http":{
676
- "method":"POST",
677
- "requestUri":"/amazonclouddirectory/2017-01-11/object/attributes",
678
- "responseCode":200
679
- },
680
- "input":{"shape":"ListObjectAttributesRequest"},
681
- "output":{"shape":"ListObjectAttributesResponse"},
682
- "errors":[
683
- {"shape":"InternalServiceException"},
684
- {"shape":"InvalidArnException"},
685
- {"shape":"RetryableConflictException"},
686
- {"shape":"ValidationException"},
687
- {"shape":"LimitExceededException"},
688
- {"shape":"AccessDeniedException"},
689
- {"shape":"DirectoryNotEnabledException"},
690
- {"shape":"InvalidArnException"},
691
- {"shape":"ResourceNotFoundException"},
692
- {"shape":"InvalidNextTokenException"}
693
- ]
694
- },
695
- "ListObjectChildren":{
696
- "name":"ListObjectChildren",
697
- "http":{
698
- "method":"POST",
699
- "requestUri":"/amazonclouddirectory/2017-01-11/object/children",
700
- "responseCode":200
701
- },
702
- "input":{"shape":"ListObjectChildrenRequest"},
703
- "output":{"shape":"ListObjectChildrenResponse"},
704
- "errors":[
705
- {"shape":"InternalServiceException"},
706
- {"shape":"InvalidArnException"},
707
- {"shape":"RetryableConflictException"},
708
- {"shape":"ValidationException"},
709
- {"shape":"LimitExceededException"},
710
- {"shape":"AccessDeniedException"},
711
- {"shape":"DirectoryNotEnabledException"},
712
- {"shape":"InvalidArnException"},
713
- {"shape":"ResourceNotFoundException"},
714
- {"shape":"InvalidNextTokenException"},
715
- {"shape":"NotNodeException"}
716
- ]
717
- },
718
- "ListObjectParentPaths":{
719
- "name":"ListObjectParentPaths",
720
- "http":{
721
- "method":"POST",
722
- "requestUri":"/amazonclouddirectory/2017-01-11/object/parentpaths",
723
- "responseCode":200
724
- },
725
- "input":{"shape":"ListObjectParentPathsRequest"},
726
- "output":{"shape":"ListObjectParentPathsResponse"},
727
- "errors":[
728
- {"shape":"InternalServiceException"},
729
- {"shape":"InvalidArnException"},
730
- {"shape":"RetryableConflictException"},
731
- {"shape":"ValidationException"},
732
- {"shape":"LimitExceededException"},
733
- {"shape":"AccessDeniedException"},
734
- {"shape":"DirectoryNotEnabledException"},
735
- {"shape":"InvalidNextTokenException"},
736
- {"shape":"ResourceNotFoundException"}
737
- ]
738
- },
739
- "ListObjectParents":{
740
- "name":"ListObjectParents",
741
- "http":{
742
- "method":"POST",
743
- "requestUri":"/amazonclouddirectory/2017-01-11/object/parent",
744
- "responseCode":200
745
- },
746
- "input":{"shape":"ListObjectParentsRequest"},
747
- "output":{"shape":"ListObjectParentsResponse"},
748
- "errors":[
749
- {"shape":"InternalServiceException"},
750
- {"shape":"InvalidArnException"},
751
- {"shape":"RetryableConflictException"},
752
- {"shape":"ValidationException"},
753
- {"shape":"LimitExceededException"},
754
- {"shape":"AccessDeniedException"},
755
- {"shape":"DirectoryNotEnabledException"},
756
- {"shape":"InvalidArnException"},
757
- {"shape":"ResourceNotFoundException"},
758
- {"shape":"InvalidNextTokenException"},
759
- {"shape":"CannotListParentOfRootException"}
760
- ]
761
- },
762
- "ListObjectPolicies":{
763
- "name":"ListObjectPolicies",
764
- "http":{
765
- "method":"POST",
766
- "requestUri":"/amazonclouddirectory/2017-01-11/object/policy",
767
- "responseCode":200
768
- },
769
- "input":{"shape":"ListObjectPoliciesRequest"},
770
- "output":{"shape":"ListObjectPoliciesResponse"},
771
- "errors":[
772
- {"shape":"InternalServiceException"},
773
- {"shape":"InvalidArnException"},
774
- {"shape":"RetryableConflictException"},
775
- {"shape":"ValidationException"},
776
- {"shape":"LimitExceededException"},
777
- {"shape":"AccessDeniedException"},
778
- {"shape":"DirectoryNotEnabledException"},
779
- {"shape":"ResourceNotFoundException"},
780
- {"shape":"InvalidNextTokenException"}
781
- ]
782
- },
783
- "ListPolicyAttachments":{
784
- "name":"ListPolicyAttachments",
785
- "http":{
786
- "method":"POST",
787
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/attachment",
788
- "responseCode":200
789
- },
790
- "input":{"shape":"ListPolicyAttachmentsRequest"},
791
- "output":{"shape":"ListPolicyAttachmentsResponse"},
792
- "errors":[
793
- {"shape":"InternalServiceException"},
794
- {"shape":"InvalidArnException"},
795
- {"shape":"RetryableConflictException"},
796
- {"shape":"ValidationException"},
797
- {"shape":"LimitExceededException"},
798
- {"shape":"AccessDeniedException"},
799
- {"shape":"DirectoryNotEnabledException"},
800
- {"shape":"InvalidArnException"},
801
- {"shape":"InvalidNextTokenException"},
802
- {"shape":"ResourceNotFoundException"},
803
- {"shape":"NotPolicyException"}
804
- ]
805
- },
806
- "ListPublishedSchemaArns":{
807
- "name":"ListPublishedSchemaArns",
808
- "http":{
809
- "method":"POST",
810
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/published",
811
- "responseCode":200
812
- },
813
- "input":{"shape":"ListPublishedSchemaArnsRequest"},
814
- "output":{"shape":"ListPublishedSchemaArnsResponse"},
815
- "errors":[
816
- {"shape":"InternalServiceException"},
817
- {"shape":"InvalidArnException"},
818
- {"shape":"RetryableConflictException"},
819
- {"shape":"ValidationException"},
820
- {"shape":"LimitExceededException"},
821
- {"shape":"AccessDeniedException"},
822
- {"shape":"ResourceNotFoundException"},
823
- {"shape":"InvalidNextTokenException"}
824
- ]
825
- },
826
- "ListTagsForResource":{
827
- "name":"ListTagsForResource",
828
- "http":{
829
- "method":"POST",
830
- "requestUri":"/amazonclouddirectory/2017-01-11/tags",
831
- "responseCode":200
832
- },
833
- "input":{"shape":"ListTagsForResourceRequest"},
834
- "output":{"shape":"ListTagsForResourceResponse"},
835
- "errors":[
836
- {"shape":"InternalServiceException"},
837
- {"shape":"InvalidArnException"},
838
- {"shape":"RetryableConflictException"},
839
- {"shape":"ValidationException"},
840
- {"shape":"LimitExceededException"},
841
- {"shape":"AccessDeniedException"},
842
- {"shape":"ResourceNotFoundException"},
843
- {"shape":"InvalidTaggingRequestException"}
844
- ]
845
- },
846
- "LookupPolicy":{
847
- "name":"LookupPolicy",
848
- "http":{
849
- "method":"POST",
850
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/lookup",
851
- "responseCode":200
852
- },
853
- "input":{"shape":"LookupPolicyRequest"},
854
- "output":{"shape":"LookupPolicyResponse"},
855
- "errors":[
856
- {"shape":"InternalServiceException"},
857
- {"shape":"InvalidArnException"},
858
- {"shape":"RetryableConflictException"},
859
- {"shape":"ValidationException"},
860
- {"shape":"LimitExceededException"},
861
- {"shape":"AccessDeniedException"},
862
- {"shape":"DirectoryNotEnabledException"},
863
- {"shape":"InvalidArnException"},
864
- {"shape":"InvalidNextTokenException"},
865
- {"shape":"ResourceNotFoundException"}
866
- ]
867
- },
868
- "PublishSchema":{
869
- "name":"PublishSchema",
870
- "http":{
871
- "method":"PUT",
872
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/publish",
873
- "responseCode":200
874
- },
875
- "input":{"shape":"PublishSchemaRequest"},
876
- "output":{"shape":"PublishSchemaResponse"},
877
- "errors":[
878
- {"shape":"InternalServiceException"},
879
- {"shape":"InvalidArnException"},
880
- {"shape":"RetryableConflictException"},
881
- {"shape":"ValidationException"},
882
- {"shape":"LimitExceededException"},
883
- {"shape":"AccessDeniedException"},
884
- {"shape":"ResourceNotFoundException"},
885
- {"shape":"SchemaAlreadyPublishedException"}
886
- ]
887
- },
888
- "PutSchemaFromJson":{
889
- "name":"PutSchemaFromJson",
890
- "http":{
891
- "method":"PUT",
892
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/json",
893
- "responseCode":200
894
- },
895
- "input":{"shape":"PutSchemaFromJsonRequest"},
896
- "output":{"shape":"PutSchemaFromJsonResponse"},
897
- "errors":[
898
- {"shape":"InternalServiceException"},
899
- {"shape":"InvalidArnException"},
900
- {"shape":"RetryableConflictException"},
901
- {"shape":"ValidationException"},
902
- {"shape":"LimitExceededException"},
903
- {"shape":"AccessDeniedException"},
904
- {"shape":"InvalidSchemaDocException"},
905
- {"shape":"InvalidRuleException"}
906
- ]
907
- },
908
- "RemoveFacetFromObject":{
909
- "name":"RemoveFacetFromObject",
910
- "http":{
911
- "method":"PUT",
912
- "requestUri":"/amazonclouddirectory/2017-01-11/object/facets/delete",
913
- "responseCode":200
914
- },
915
- "input":{"shape":"RemoveFacetFromObjectRequest"},
916
- "output":{"shape":"RemoveFacetFromObjectResponse"},
917
- "errors":[
918
- {"shape":"InternalServiceException"},
919
- {"shape":"InvalidArnException"},
920
- {"shape":"RetryableConflictException"},
921
- {"shape":"ValidationException"},
922
- {"shape":"LimitExceededException"},
923
- {"shape":"AccessDeniedException"},
924
- {"shape":"DirectoryNotEnabledException"},
925
- {"shape":"ResourceNotFoundException"},
926
- {"shape":"FacetValidationException"}
927
- ]
928
- },
929
- "TagResource":{
930
- "name":"TagResource",
931
- "http":{
932
- "method":"PUT",
933
- "requestUri":"/amazonclouddirectory/2017-01-11/tags/add",
934
- "responseCode":200
935
- },
936
- "input":{"shape":"TagResourceRequest"},
937
- "output":{"shape":"TagResourceResponse"},
938
- "errors":[
939
- {"shape":"InternalServiceException"},
940
- {"shape":"InvalidArnException"},
941
- {"shape":"RetryableConflictException"},
942
- {"shape":"ValidationException"},
943
- {"shape":"LimitExceededException"},
944
- {"shape":"AccessDeniedException"},
945
- {"shape":"ResourceNotFoundException"},
946
- {"shape":"InvalidTaggingRequestException"}
947
- ]
948
- },
949
- "UntagResource":{
950
- "name":"UntagResource",
951
- "http":{
952
- "method":"PUT",
953
- "requestUri":"/amazonclouddirectory/2017-01-11/tags/remove",
954
- "responseCode":200
955
- },
956
- "input":{"shape":"UntagResourceRequest"},
957
- "output":{"shape":"UntagResourceResponse"},
958
- "errors":[
959
- {"shape":"InternalServiceException"},
960
- {"shape":"InvalidArnException"},
961
- {"shape":"RetryableConflictException"},
962
- {"shape":"ValidationException"},
963
- {"shape":"LimitExceededException"},
964
- {"shape":"AccessDeniedException"},
965
- {"shape":"ResourceNotFoundException"},
966
- {"shape":"InvalidTaggingRequestException"}
967
- ]
968
- },
969
- "UpdateFacet":{
970
- "name":"UpdateFacet",
971
- "http":{
972
- "method":"PUT",
973
- "requestUri":"/amazonclouddirectory/2017-01-11/facet",
974
- "responseCode":200
975
- },
976
- "input":{"shape":"UpdateFacetRequest"},
977
- "output":{"shape":"UpdateFacetResponse"},
978
- "errors":[
979
- {"shape":"InternalServiceException"},
980
- {"shape":"InvalidArnException"},
981
- {"shape":"RetryableConflictException"},
982
- {"shape":"ValidationException"},
983
- {"shape":"LimitExceededException"},
984
- {"shape":"AccessDeniedException"},
985
- {"shape":"InvalidFacetUpdateException"},
986
- {"shape":"ResourceNotFoundException"},
987
- {"shape":"FacetNotFoundException"},
988
- {"shape":"InvalidRuleException"}
989
- ]
990
- },
991
- "UpdateObjectAttributes":{
992
- "name":"UpdateObjectAttributes",
993
- "http":{
994
- "method":"PUT",
995
- "requestUri":"/amazonclouddirectory/2017-01-11/object/update",
996
- "responseCode":200
997
- },
998
- "input":{"shape":"UpdateObjectAttributesRequest"},
999
- "output":{"shape":"UpdateObjectAttributesResponse"},
1000
- "errors":[
1001
- {"shape":"InternalServiceException"},
1002
- {"shape":"InvalidArnException"},
1003
- {"shape":"RetryableConflictException"},
1004
- {"shape":"ValidationException"},
1005
- {"shape":"LimitExceededException"},
1006
- {"shape":"AccessDeniedException"},
1007
- {"shape":"DirectoryNotEnabledException"},
1008
- {"shape":"ResourceNotFoundException"},
1009
- {"shape":"FacetValidationException"}
1010
- ]
1011
- },
1012
- "UpdateSchema":{
1013
- "name":"UpdateSchema",
1014
- "http":{
1015
- "method":"PUT",
1016
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/update",
1017
- "responseCode":200
1018
- },
1019
- "input":{"shape":"UpdateSchemaRequest"},
1020
- "output":{"shape":"UpdateSchemaResponse"},
1021
- "errors":[
1022
- {"shape":"InternalServiceException"},
1023
- {"shape":"InvalidArnException"},
1024
- {"shape":"RetryableConflictException"},
1025
- {"shape":"ValidationException"},
1026
- {"shape":"LimitExceededException"},
1027
- {"shape":"AccessDeniedException"},
1028
- {"shape":"ResourceNotFoundException"}
1029
- ]
1030
- }
1031
- },
1032
- "shapes":{
1033
- "AccessDeniedException":{
1034
- "type":"structure",
1035
- "members":{
1036
- "Message":{"shape":"ExceptionMessage"}
1037
- },
1038
- "error":{"httpStatusCode":403},
1039
- "exception":true
1040
- },
1041
- "AddFacetToObjectRequest":{
1042
- "type":"structure",
1043
- "required":[
1044
- "DirectoryArn",
1045
- "SchemaFacet",
1046
- "ObjectReference"
1047
- ],
1048
- "members":{
1049
- "DirectoryArn":{
1050
- "shape":"Arn",
1051
- "location":"header",
1052
- "locationName":"x-amz-data-partition"
1053
- },
1054
- "SchemaFacet":{"shape":"SchemaFacet"},
1055
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1056
- "ObjectReference":{"shape":"ObjectReference"}
1057
- }
1058
- },
1059
- "AddFacetToObjectResponse":{
1060
- "type":"structure",
1061
- "members":{
1062
- }
1063
- },
1064
- "ApplySchemaRequest":{
1065
- "type":"structure",
1066
- "required":[
1067
- "PublishedSchemaArn",
1068
- "DirectoryArn"
1069
- ],
1070
- "members":{
1071
- "PublishedSchemaArn":{"shape":"Arn"},
1072
- "DirectoryArn":{
1073
- "shape":"Arn",
1074
- "location":"header",
1075
- "locationName":"x-amz-data-partition"
1076
- }
1077
- }
1078
- },
1079
- "ApplySchemaResponse":{
1080
- "type":"structure",
1081
- "members":{
1082
- "AppliedSchemaArn":{"shape":"Arn"},
1083
- "DirectoryArn":{"shape":"Arn"}
1084
- }
1085
- },
1086
- "Arn":{"type":"string"},
1087
- "Arns":{
1088
- "type":"list",
1089
- "member":{"shape":"Arn"}
1090
- },
1091
- "AttachObjectRequest":{
1092
- "type":"structure",
1093
- "required":[
1094
- "DirectoryArn",
1095
- "ParentReference",
1096
- "ChildReference",
1097
- "LinkName"
1098
- ],
1099
- "members":{
1100
- "DirectoryArn":{
1101
- "shape":"Arn",
1102
- "location":"header",
1103
- "locationName":"x-amz-data-partition"
1104
- },
1105
- "ParentReference":{"shape":"ObjectReference"},
1106
- "ChildReference":{"shape":"ObjectReference"},
1107
- "LinkName":{"shape":"LinkName"}
1108
- }
1109
- },
1110
- "AttachObjectResponse":{
1111
- "type":"structure",
1112
- "members":{
1113
- "AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1114
- }
1115
- },
1116
- "AttachPolicyRequest":{
1117
- "type":"structure",
1118
- "required":[
1119
- "PolicyReference",
1120
- "ObjectReference"
1121
- ],
1122
- "members":{
1123
- "DirectoryArn":{
1124
- "shape":"Arn",
1125
- "location":"header",
1126
- "locationName":"x-amz-data-partition"
1127
- },
1128
- "PolicyReference":{"shape":"ObjectReference"},
1129
- "ObjectReference":{"shape":"ObjectReference"}
1130
- }
1131
- },
1132
- "AttachPolicyResponse":{
1133
- "type":"structure",
1134
- "members":{
1135
- }
1136
- },
1137
- "AttachToIndexRequest":{
1138
- "type":"structure",
1139
- "required":[
1140
- "DirectoryArn",
1141
- "IndexReference",
1142
- "TargetReference"
1143
- ],
1144
- "members":{
1145
- "DirectoryArn":{
1146
- "shape":"Arn",
1147
- "location":"header",
1148
- "locationName":"x-amz-data-partition"
1149
- },
1150
- "IndexReference":{"shape":"ObjectReference"},
1151
- "TargetReference":{"shape":"ObjectReference"}
1152
- }
1153
- },
1154
- "AttachToIndexResponse":{
1155
- "type":"structure",
1156
- "members":{
1157
- "AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1158
- }
1159
- },
1160
- "AttributeKey":{
1161
- "type":"structure",
1162
- "required":[
1163
- "SchemaArn",
1164
- "FacetName",
1165
- "Name"
1166
- ],
1167
- "members":{
1168
- "SchemaArn":{"shape":"Arn"},
1169
- "FacetName":{"shape":"FacetName"},
1170
- "Name":{"shape":"AttributeName"}
1171
- }
1172
- },
1173
- "AttributeKeyAndValue":{
1174
- "type":"structure",
1175
- "required":[
1176
- "Key",
1177
- "Value"
1178
- ],
1179
- "members":{
1180
- "Key":{"shape":"AttributeKey"},
1181
- "Value":{"shape":"TypedAttributeValue"}
1182
- }
1183
- },
1184
- "AttributeKeyAndValueList":{
1185
- "type":"list",
1186
- "member":{"shape":"AttributeKeyAndValue"}
1187
- },
1188
- "AttributeKeyList":{
1189
- "type":"list",
1190
- "member":{"shape":"AttributeKey"}
1191
- },
1192
- "AttributeName":{
1193
- "type":"string",
1194
- "max":64,
1195
- "min":1,
1196
- "pattern":"^[a-zA-Z0-9._-]*$"
1197
- },
1198
- "BatchAddFacetToObject":{
1199
- "type":"structure",
1200
- "required":[
1201
- "SchemaFacet",
1202
- "ObjectAttributeList",
1203
- "ObjectReference"
1204
- ],
1205
- "members":{
1206
- "SchemaFacet":{"shape":"SchemaFacet"},
1207
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1208
- "ObjectReference":{"shape":"ObjectReference"}
1209
- }
1210
- },
1211
- "BatchAddFacetToObjectResponse":{
1212
- "type":"structure",
1213
- "members":{
1214
- }
1215
- },
1216
- "BatchAttachObject":{
1217
- "type":"structure",
1218
- "required":[
1219
- "ParentReference",
1220
- "ChildReference",
1221
- "LinkName"
1222
- ],
1223
- "members":{
1224
- "ParentReference":{"shape":"ObjectReference"},
1225
- "ChildReference":{"shape":"ObjectReference"},
1226
- "LinkName":{"shape":"LinkName"}
1227
- }
1228
- },
1229
- "BatchAttachObjectResponse":{
1230
- "type":"structure",
1231
- "members":{
1232
- "attachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1233
- }
1234
- },
1235
- "BatchCreateObject":{
1236
- "type":"structure",
1237
- "required":[
1238
- "SchemaFacet",
1239
- "ObjectAttributeList",
1240
- "ParentReference",
1241
- "LinkName",
1242
- "BatchReferenceName"
1243
- ],
1244
- "members":{
1245
- "SchemaFacet":{"shape":"SchemaFacetList"},
1246
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1247
- "ParentReference":{"shape":"ObjectReference"},
1248
- "LinkName":{"shape":"LinkName"},
1249
- "BatchReferenceName":{"shape":"BatchReferenceName"}
1250
- }
1251
- },
1252
- "BatchCreateObjectResponse":{
1253
- "type":"structure",
1254
- "members":{
1255
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1256
- }
1257
- },
1258
- "BatchDeleteObject":{
1259
- "type":"structure",
1260
- "required":["ObjectReference"],
1261
- "members":{
1262
- "ObjectReference":{"shape":"ObjectReference"}
1263
- }
1264
- },
1265
- "BatchDeleteObjectResponse":{
1266
- "type":"structure",
1267
- "members":{
1268
- }
1269
- },
1270
- "BatchDetachObject":{
1271
- "type":"structure",
1272
- "required":[
1273
- "ParentReference",
1274
- "LinkName",
1275
- "BatchReferenceName"
1276
- ],
1277
- "members":{
1278
- "ParentReference":{"shape":"ObjectReference"},
1279
- "LinkName":{"shape":"LinkName"},
1280
- "BatchReferenceName":{"shape":"BatchReferenceName"}
1281
- }
1282
- },
1283
- "BatchDetachObjectResponse":{
1284
- "type":"structure",
1285
- "members":{
1286
- "detachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1287
- }
1288
- },
1289
- "BatchListObjectAttributes":{
1290
- "type":"structure",
1291
- "required":["ObjectReference"],
1292
- "members":{
1293
- "ObjectReference":{"shape":"ObjectReference"},
1294
- "NextToken":{"shape":"NextToken"},
1295
- "MaxResults":{"shape":"NumberResults"}
1296
- }
1297
- },
1298
- "BatchListObjectAttributesResponse":{
1299
- "type":"structure",
1300
- "members":{
1301
- "Attributes":{"shape":"AttributeKeyAndValueList"},
1302
- "NextToken":{"shape":"NextToken"}
1303
- }
1304
- },
1305
- "BatchListObjectChildren":{
1306
- "type":"structure",
1307
- "required":["ObjectReference"],
1308
- "members":{
1309
- "ObjectReference":{"shape":"ObjectReference"},
1310
- "NextToken":{"shape":"NextToken"},
1311
- "MaxResults":{"shape":"NumberResults"}
1312
- }
1313
- },
1314
- "BatchListObjectChildrenResponse":{
1315
- "type":"structure",
1316
- "members":{
1317
- "Children":{"shape":"LinkNameToObjectIdentifierMap"},
1318
- "NextToken":{"shape":"NextToken"}
1319
- }
1320
- },
1321
- "BatchOperationIndex":{"type":"integer"},
1322
- "BatchReadException":{
1323
- "type":"structure",
1324
- "members":{
1325
- "Type":{"shape":"BatchReadExceptionType"},
1326
- "Message":{"shape":"ExceptionMessage"}
1327
- }
1328
- },
1329
- "BatchReadExceptionType":{
1330
- "type":"string",
1331
- "enum":[
1332
- "ValidationException",
1333
- "InvalidArnException",
1334
- "ResourceNotFoundException",
1335
- "InvalidNextTokenException",
1336
- "AccessDeniedException",
1337
- "NotNodeException"
1338
- ]
1339
- },
1340
- "BatchReadOperation":{
1341
- "type":"structure",
1342
- "members":{
1343
- "ListObjectAttributes":{"shape":"BatchListObjectAttributes"},
1344
- "ListObjectChildren":{"shape":"BatchListObjectChildren"}
1345
- }
1346
- },
1347
- "BatchReadOperationList":{
1348
- "type":"list",
1349
- "member":{"shape":"BatchReadOperation"}
1350
- },
1351
- "BatchReadOperationResponse":{
1352
- "type":"structure",
1353
- "members":{
1354
- "SuccessfulResponse":{"shape":"BatchReadSuccessfulResponse"},
1355
- "ExceptionResponse":{"shape":"BatchReadException"}
1356
- }
1357
- },
1358
- "BatchReadOperationResponseList":{
1359
- "type":"list",
1360
- "member":{"shape":"BatchReadOperationResponse"}
1361
- },
1362
- "BatchReadRequest":{
1363
- "type":"structure",
1364
- "required":[
1365
- "DirectoryArn",
1366
- "Operations"
1367
- ],
1368
- "members":{
1369
- "DirectoryArn":{
1370
- "shape":"Arn",
1371
- "location":"header",
1372
- "locationName":"x-amz-data-partition"
1373
- },
1374
- "Operations":{"shape":"BatchReadOperationList"},
1375
- "ConsistencyLevel":{
1376
- "shape":"ConsistencyLevel",
1377
- "location":"header",
1378
- "locationName":"x-amz-consistency-level"
1379
- }
1380
- }
1381
- },
1382
- "BatchReadResponse":{
1383
- "type":"structure",
1384
- "members":{
1385
- "Responses":{"shape":"BatchReadOperationResponseList"}
1386
- }
1387
- },
1388
- "BatchReadSuccessfulResponse":{
1389
- "type":"structure",
1390
- "members":{
1391
- "ListObjectAttributes":{"shape":"BatchListObjectAttributesResponse"},
1392
- "ListObjectChildren":{"shape":"BatchListObjectChildrenResponse"}
1393
- }
1394
- },
1395
- "BatchReferenceName":{"type":"string"},
1396
- "BatchRemoveFacetFromObject":{
1397
- "type":"structure",
1398
- "required":[
1399
- "SchemaFacet",
1400
- "ObjectReference"
1401
- ],
1402
- "members":{
1403
- "SchemaFacet":{"shape":"SchemaFacet"},
1404
- "ObjectReference":{"shape":"ObjectReference"}
1405
- }
1406
- },
1407
- "BatchRemoveFacetFromObjectResponse":{
1408
- "type":"structure",
1409
- "members":{
1410
- }
1411
- },
1412
- "BatchUpdateObjectAttributes":{
1413
- "type":"structure",
1414
- "required":[
1415
- "ObjectReference",
1416
- "AttributeUpdates"
1417
- ],
1418
- "members":{
1419
- "ObjectReference":{"shape":"ObjectReference"},
1420
- "AttributeUpdates":{"shape":"ObjectAttributeUpdateList"}
1421
- }
1422
- },
1423
- "BatchUpdateObjectAttributesResponse":{
1424
- "type":"structure",
1425
- "members":{
1426
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1427
- }
1428
- },
1429
- "BatchWriteException":{
1430
- "type":"structure",
1431
- "members":{
1432
- "Index":{"shape":"BatchOperationIndex"},
1433
- "Type":{"shape":"BatchWriteExceptionType"},
1434
- "Message":{"shape":"ExceptionMessage"}
1435
- },
1436
- "exception":true
1437
- },
1438
- "BatchWriteExceptionType":{
1439
- "type":"string",
1440
- "enum":[
1441
- "InternalServiceException",
1442
- "ValidationException",
1443
- "InvalidArnException",
1444
- "LinkNameAlreadyInUseException",
1445
- "StillContainsLinksException",
1446
- "FacetValidationException",
1447
- "ObjectNotDetachedException",
1448
- "ResourceNotFoundException",
1449
- "AccessDeniedException"
1450
- ]
1451
- },
1452
- "BatchWriteOperation":{
1453
- "type":"structure",
1454
- "members":{
1455
- "CreateObject":{"shape":"BatchCreateObject"},
1456
- "AttachObject":{"shape":"BatchAttachObject"},
1457
- "DetachObject":{"shape":"BatchDetachObject"},
1458
- "UpdateObjectAttributes":{"shape":"BatchUpdateObjectAttributes"},
1459
- "DeleteObject":{"shape":"BatchDeleteObject"},
1460
- "AddFacetToObject":{"shape":"BatchAddFacetToObject"},
1461
- "RemoveFacetFromObject":{"shape":"BatchRemoveFacetFromObject"}
1462
- }
1463
- },
1464
- "BatchWriteOperationList":{
1465
- "type":"list",
1466
- "member":{"shape":"BatchWriteOperation"}
1467
- },
1468
- "BatchWriteOperationResponse":{
1469
- "type":"structure",
1470
- "members":{
1471
- "CreateObject":{"shape":"BatchCreateObjectResponse"},
1472
- "AttachObject":{"shape":"BatchAttachObjectResponse"},
1473
- "DetachObject":{"shape":"BatchDetachObjectResponse"},
1474
- "UpdateObjectAttributes":{"shape":"BatchUpdateObjectAttributesResponse"},
1475
- "DeleteObject":{"shape":"BatchDeleteObjectResponse"},
1476
- "AddFacetToObject":{"shape":"BatchAddFacetToObjectResponse"},
1477
- "RemoveFacetFromObject":{"shape":"BatchRemoveFacetFromObjectResponse"}
1478
- }
1479
- },
1480
- "BatchWriteOperationResponseList":{
1481
- "type":"list",
1482
- "member":{"shape":"BatchWriteOperationResponse"}
1483
- },
1484
- "BatchWriteRequest":{
1485
- "type":"structure",
1486
- "required":[
1487
- "DirectoryArn",
1488
- "Operations"
1489
- ],
1490
- "members":{
1491
- "DirectoryArn":{
1492
- "shape":"Arn",
1493
- "location":"header",
1494
- "locationName":"x-amz-data-partition"
1495
- },
1496
- "Operations":{"shape":"BatchWriteOperationList"}
1497
- }
1498
- },
1499
- "BatchWriteResponse":{
1500
- "type":"structure",
1501
- "members":{
1502
- "Responses":{"shape":"BatchWriteOperationResponseList"}
1503
- }
1504
- },
1505
- "BinaryAttributeValue":{"type":"blob"},
1506
- "Bool":{"type":"boolean"},
1507
- "BooleanAttributeValue":{"type":"boolean"},
1508
- "CannotListParentOfRootException":{
1509
- "type":"structure",
1510
- "members":{
1511
- "Message":{"shape":"ExceptionMessage"}
1512
- },
1513
- "error":{"httpStatusCode":400},
1514
- "exception":true
1515
- },
1516
- "ConsistencyLevel":{
1517
- "type":"string",
1518
- "enum":[
1519
- "SERIALIZABLE",
1520
- "EVENTUAL"
1521
- ]
1522
- },
1523
- "CreateDirectoryRequest":{
1524
- "type":"structure",
1525
- "required":[
1526
- "Name",
1527
- "SchemaArn"
1528
- ],
1529
- "members":{
1530
- "Name":{"shape":"DirectoryName"},
1531
- "SchemaArn":{
1532
- "shape":"Arn",
1533
- "location":"header",
1534
- "locationName":"x-amz-data-partition"
1535
- }
1536
- }
1537
- },
1538
- "CreateDirectoryResponse":{
1539
- "type":"structure",
1540
- "required":[
1541
- "DirectoryArn",
1542
- "Name",
1543
- "ObjectIdentifier",
1544
- "AppliedSchemaArn"
1545
- ],
1546
- "members":{
1547
- "DirectoryArn":{"shape":"DirectoryArn"},
1548
- "Name":{"shape":"DirectoryName"},
1549
- "ObjectIdentifier":{"shape":"ObjectIdentifier"},
1550
- "AppliedSchemaArn":{"shape":"Arn"}
1551
- }
1552
- },
1553
- "CreateFacetRequest":{
1554
- "type":"structure",
1555
- "required":[
1556
- "SchemaArn",
1557
- "Name",
1558
- "ObjectType"
1559
- ],
1560
- "members":{
1561
- "SchemaArn":{
1562
- "shape":"Arn",
1563
- "location":"header",
1564
- "locationName":"x-amz-data-partition"
1565
- },
1566
- "Name":{"shape":"FacetName"},
1567
- "Attributes":{"shape":"FacetAttributeList"},
1568
- "ObjectType":{"shape":"ObjectType"}
1569
- }
1570
- },
1571
- "CreateFacetResponse":{
1572
- "type":"structure",
1573
- "members":{
1574
- }
1575
- },
1576
- "CreateIndexRequest":{
1577
- "type":"structure",
1578
- "required":[
1579
- "DirectoryArn",
1580
- "OrderedIndexedAttributeList",
1581
- "IsUnique"
1582
- ],
1583
- "members":{
1584
- "DirectoryArn":{
1585
- "shape":"Arn",
1586
- "location":"header",
1587
- "locationName":"x-amz-data-partition"
1588
- },
1589
- "OrderedIndexedAttributeList":{"shape":"AttributeKeyList"},
1590
- "IsUnique":{"shape":"Bool"},
1591
- "ParentReference":{"shape":"ObjectReference"},
1592
- "LinkName":{"shape":"LinkName"}
1593
- }
1594
- },
1595
- "CreateIndexResponse":{
1596
- "type":"structure",
1597
- "members":{
1598
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1599
- }
1600
- },
1601
- "CreateObjectRequest":{
1602
- "type":"structure",
1603
- "required":[
1604
- "DirectoryArn",
1605
- "SchemaFacets"
1606
- ],
1607
- "members":{
1608
- "DirectoryArn":{
1609
- "shape":"Arn",
1610
- "location":"header",
1611
- "locationName":"x-amz-data-partition"
1612
- },
1613
- "SchemaFacets":{"shape":"SchemaFacetList"},
1614
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1615
- "ParentReference":{"shape":"ObjectReference"},
1616
- "LinkName":{"shape":"LinkName"}
1617
- }
1618
- },
1619
- "CreateObjectResponse":{
1620
- "type":"structure",
1621
- "members":{
1622
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1623
- }
1624
- },
1625
- "CreateSchemaRequest":{
1626
- "type":"structure",
1627
- "required":["Name"],
1628
- "members":{
1629
- "Name":{"shape":"SchemaName"}
1630
- }
1631
- },
1632
- "CreateSchemaResponse":{
1633
- "type":"structure",
1634
- "members":{
1635
- "SchemaArn":{"shape":"Arn"}
1636
- }
1637
- },
1638
- "Date":{"type":"timestamp"},
1639
- "DatetimeAttributeValue":{"type":"timestamp"},
1640
- "DeleteDirectoryRequest":{
1641
- "type":"structure",
1642
- "required":["DirectoryArn"],
1643
- "members":{
1644
- "DirectoryArn":{
1645
- "shape":"Arn",
1646
- "location":"header",
1647
- "locationName":"x-amz-data-partition"
1648
- }
1649
- }
1650
- },
1651
- "DeleteDirectoryResponse":{
1652
- "type":"structure",
1653
- "required":["DirectoryArn"],
1654
- "members":{
1655
- "DirectoryArn":{"shape":"Arn"}
1656
- }
1657
- },
1658
- "DeleteFacetRequest":{
1659
- "type":"structure",
1660
- "required":[
1661
- "SchemaArn",
1662
- "Name"
1663
- ],
1664
- "members":{
1665
- "SchemaArn":{
1666
- "shape":"Arn",
1667
- "location":"header",
1668
- "locationName":"x-amz-data-partition"
1669
- },
1670
- "Name":{"shape":"FacetName"}
1671
- }
1672
- },
1673
- "DeleteFacetResponse":{
1674
- "type":"structure",
1675
- "members":{
1676
- }
1677
- },
1678
- "DeleteObjectRequest":{
1679
- "type":"structure",
1680
- "required":[
1681
- "DirectoryArn",
1682
- "ObjectReference"
1683
- ],
1684
- "members":{
1685
- "DirectoryArn":{
1686
- "shape":"Arn",
1687
- "location":"header",
1688
- "locationName":"x-amz-data-partition"
1689
- },
1690
- "ObjectReference":{"shape":"ObjectReference"}
1691
- }
1692
- },
1693
- "DeleteObjectResponse":{
1694
- "type":"structure",
1695
- "members":{
1696
- }
1697
- },
1698
- "DeleteSchemaRequest":{
1699
- "type":"structure",
1700
- "required":["SchemaArn"],
1701
- "members":{
1702
- "SchemaArn":{
1703
- "shape":"Arn",
1704
- "location":"header",
1705
- "locationName":"x-amz-data-partition"
1706
- }
1707
- }
1708
- },
1709
- "DeleteSchemaResponse":{
1710
- "type":"structure",
1711
- "members":{
1712
- "SchemaArn":{"shape":"Arn"}
1713
- }
1714
- },
1715
- "DetachFromIndexRequest":{
1716
- "type":"structure",
1717
- "required":[
1718
- "DirectoryArn",
1719
- "IndexReference",
1720
- "TargetReference"
1721
- ],
1722
- "members":{
1723
- "DirectoryArn":{
1724
- "shape":"Arn",
1725
- "location":"header",
1726
- "locationName":"x-amz-data-partition"
1727
- },
1728
- "IndexReference":{"shape":"ObjectReference"},
1729
- "TargetReference":{"shape":"ObjectReference"}
1730
- }
1731
- },
1732
- "DetachFromIndexResponse":{
1733
- "type":"structure",
1734
- "members":{
1735
- "DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1736
- }
1737
- },
1738
- "DetachObjectRequest":{
1739
- "type":"structure",
1740
- "required":[
1741
- "DirectoryArn",
1742
- "ParentReference",
1743
- "LinkName"
1744
- ],
1745
- "members":{
1746
- "DirectoryArn":{
1747
- "shape":"Arn",
1748
- "location":"header",
1749
- "locationName":"x-amz-data-partition"
1750
- },
1751
- "ParentReference":{"shape":"ObjectReference"},
1752
- "LinkName":{"shape":"LinkName"}
1753
- }
1754
- },
1755
- "DetachObjectResponse":{
1756
- "type":"structure",
1757
- "members":{
1758
- "DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1759
- }
1760
- },
1761
- "DetachPolicyRequest":{
1762
- "type":"structure",
1763
- "required":[
1764
- "DirectoryArn",
1765
- "PolicyReference",
1766
- "ObjectReference"
1767
- ],
1768
- "members":{
1769
- "DirectoryArn":{
1770
- "shape":"Arn",
1771
- "location":"header",
1772
- "locationName":"x-amz-data-partition"
1773
- },
1774
- "PolicyReference":{"shape":"ObjectReference"},
1775
- "ObjectReference":{"shape":"ObjectReference"}
1776
- }
1777
- },
1778
- "DetachPolicyResponse":{
1779
- "type":"structure",
1780
- "members":{
1781
- }
1782
- },
1783
- "Directory":{
1784
- "type":"structure",
1785
- "members":{
1786
- "Name":{"shape":"DirectoryName"},
1787
- "DirectoryArn":{"shape":"DirectoryArn"},
1788
- "State":{"shape":"DirectoryState"},
1789
- "CreationDateTime":{"shape":"Date"}
1790
- }
1791
- },
1792
- "DirectoryAlreadyExistsException":{
1793
- "type":"structure",
1794
- "members":{
1795
- "Message":{"shape":"ExceptionMessage"}
1796
- },
1797
- "error":{"httpStatusCode":400},
1798
- "exception":true
1799
- },
1800
- "DirectoryArn":{"type":"string"},
1801
- "DirectoryDeletedException":{
1802
- "type":"structure",
1803
- "members":{
1804
- "Message":{"shape":"ExceptionMessage"}
1805
- },
1806
- "error":{"httpStatusCode":400},
1807
- "exception":true
1808
- },
1809
- "DirectoryList":{
1810
- "type":"list",
1811
- "member":{"shape":"Directory"}
1812
- },
1813
- "DirectoryName":{
1814
- "type":"string",
1815
- "max":64,
1816
- "min":1,
1817
- "pattern":"^[a-zA-Z0-9._-]*$"
1818
- },
1819
- "DirectoryNotDisabledException":{
1820
- "type":"structure",
1821
- "members":{
1822
- "Message":{"shape":"ExceptionMessage"}
1823
- },
1824
- "error":{"httpStatusCode":400},
1825
- "exception":true
1826
- },
1827
- "DirectoryNotEnabledException":{
1828
- "type":"structure",
1829
- "members":{
1830
- "Message":{"shape":"ExceptionMessage"}
1831
- },
1832
- "error":{"httpStatusCode":400},
1833
- "exception":true
1834
- },
1835
- "DirectoryState":{
1836
- "type":"string",
1837
- "enum":[
1838
- "ENABLED",
1839
- "DISABLED",
1840
- "DELETED"
1841
- ]
1842
- },
1843
- "DisableDirectoryRequest":{
1844
- "type":"structure",
1845
- "required":["DirectoryArn"],
1846
- "members":{
1847
- "DirectoryArn":{
1848
- "shape":"Arn",
1849
- "location":"header",
1850
- "locationName":"x-amz-data-partition"
1851
- }
1852
- }
1853
- },
1854
- "DisableDirectoryResponse":{
1855
- "type":"structure",
1856
- "required":["DirectoryArn"],
1857
- "members":{
1858
- "DirectoryArn":{"shape":"Arn"}
1859
- }
1860
- },
1861
- "EnableDirectoryRequest":{
1862
- "type":"structure",
1863
- "required":["DirectoryArn"],
1864
- "members":{
1865
- "DirectoryArn":{
1866
- "shape":"Arn",
1867
- "location":"header",
1868
- "locationName":"x-amz-data-partition"
1869
- }
1870
- }
1871
- },
1872
- "EnableDirectoryResponse":{
1873
- "type":"structure",
1874
- "required":["DirectoryArn"],
1875
- "members":{
1876
- "DirectoryArn":{"shape":"Arn"}
1877
- }
1878
- },
1879
- "ExceptionMessage":{"type":"string"},
1880
- "Facet":{
1881
- "type":"structure",
1882
- "members":{
1883
- "Name":{"shape":"FacetName"},
1884
- "ObjectType":{"shape":"ObjectType"}
1885
- }
1886
- },
1887
- "FacetAlreadyExistsException":{
1888
- "type":"structure",
1889
- "members":{
1890
- "Message":{"shape":"ExceptionMessage"}
1891
- },
1892
- "error":{"httpStatusCode":400},
1893
- "exception":true
1894
- },
1895
- "FacetAttribute":{
1896
- "type":"structure",
1897
- "required":["Name"],
1898
- "members":{
1899
- "Name":{"shape":"AttributeName"},
1900
- "AttributeDefinition":{"shape":"FacetAttributeDefinition"},
1901
- "AttributeReference":{"shape":"FacetAttributeReference"},
1902
- "RequiredBehavior":{"shape":"RequiredAttributeBehavior"}
1903
- }
1904
- },
1905
- "FacetAttributeDefinition":{
1906
- "type":"structure",
1907
- "required":["Type"],
1908
- "members":{
1909
- "Type":{"shape":"FacetAttributeType"},
1910
- "DefaultValue":{"shape":"TypedAttributeValue"},
1911
- "IsImmutable":{"shape":"Bool"},
1912
- "Rules":{"shape":"RuleMap"}
1913
- }
1914
- },
1915
- "FacetAttributeList":{
1916
- "type":"list",
1917
- "member":{"shape":"FacetAttribute"}
1918
- },
1919
- "FacetAttributeReference":{
1920
- "type":"structure",
1921
- "required":[
1922
- "TargetFacetName",
1923
- "TargetAttributeName"
1924
- ],
1925
- "members":{
1926
- "TargetFacetName":{"shape":"FacetName"},
1927
- "TargetAttributeName":{"shape":"AttributeName"}
1928
- }
1929
- },
1930
- "FacetAttributeType":{
1931
- "type":"string",
1932
- "enum":[
1933
- "STRING",
1934
- "BINARY",
1935
- "BOOLEAN",
1936
- "NUMBER",
1937
- "DATETIME"
1938
- ]
1939
- },
1940
- "FacetAttributeUpdate":{
1941
- "type":"structure",
1942
- "members":{
1943
- "Attribute":{"shape":"FacetAttribute"},
1944
- "Action":{"shape":"UpdateActionType"}
1945
- }
1946
- },
1947
- "FacetAttributeUpdateList":{
1948
- "type":"list",
1949
- "member":{"shape":"FacetAttributeUpdate"}
1950
- },
1951
- "FacetInUseException":{
1952
- "type":"structure",
1953
- "members":{
1954
- "Message":{"shape":"ExceptionMessage"}
1955
- },
1956
- "error":{"httpStatusCode":400},
1957
- "exception":true
1958
- },
1959
- "FacetName":{
1960
- "type":"string",
1961
- "max":64,
1962
- "min":1,
1963
- "pattern":"^[a-zA-Z0-9._-]*$"
1964
- },
1965
- "FacetNameList":{
1966
- "type":"list",
1967
- "member":{"shape":"FacetName"}
1968
- },
1969
- "FacetNotFoundException":{
1970
- "type":"structure",
1971
- "members":{
1972
- "Message":{"shape":"ExceptionMessage"}
1973
- },
1974
- "error":{"httpStatusCode":400},
1975
- "exception":true
1976
- },
1977
- "FacetValidationException":{
1978
- "type":"structure",
1979
- "members":{
1980
- "Message":{"shape":"ExceptionMessage"}
1981
- },
1982
- "error":{"httpStatusCode":400},
1983
- "exception":true
1984
- },
1985
- "GetDirectoryRequest":{
1986
- "type":"structure",
1987
- "required":["DirectoryArn"],
1988
- "members":{
1989
- "DirectoryArn":{
1990
- "shape":"DirectoryArn",
1991
- "location":"header",
1992
- "locationName":"x-amz-data-partition"
1993
- }
1994
- }
1995
- },
1996
- "GetDirectoryResponse":{
1997
- "type":"structure",
1998
- "required":["Directory"],
1999
- "members":{
2000
- "Directory":{"shape":"Directory"}
2001
- }
2002
- },
2003
- "GetFacetRequest":{
2004
- "type":"structure",
2005
- "required":[
2006
- "SchemaArn",
2007
- "Name"
2008
- ],
2009
- "members":{
2010
- "SchemaArn":{
2011
- "shape":"Arn",
2012
- "location":"header",
2013
- "locationName":"x-amz-data-partition"
2014
- },
2015
- "Name":{"shape":"FacetName"}
2016
- }
2017
- },
2018
- "GetFacetResponse":{
2019
- "type":"structure",
2020
- "members":{
2021
- "Facet":{"shape":"Facet"}
2022
- }
2023
- },
2024
- "GetObjectInformationRequest":{
2025
- "type":"structure",
2026
- "required":[
2027
- "DirectoryArn",
2028
- "ObjectReference"
2029
- ],
2030
- "members":{
2031
- "DirectoryArn":{
2032
- "shape":"Arn",
2033
- "location":"header",
2034
- "locationName":"x-amz-data-partition"
2035
- },
2036
- "ObjectReference":{"shape":"ObjectReference"},
2037
- "ConsistencyLevel":{
2038
- "shape":"ConsistencyLevel",
2039
- "location":"header",
2040
- "locationName":"x-amz-consistency-level"
2041
- }
2042
- }
2043
- },
2044
- "GetObjectInformationResponse":{
2045
- "type":"structure",
2046
- "members":{
2047
- "SchemaFacets":{"shape":"SchemaFacetList"},
2048
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2049
- }
2050
- },
2051
- "GetSchemaAsJsonRequest":{
2052
- "type":"structure",
2053
- "required":["SchemaArn"],
2054
- "members":{
2055
- "SchemaArn":{
2056
- "shape":"Arn",
2057
- "location":"header",
2058
- "locationName":"x-amz-data-partition"
2059
- }
2060
- }
2061
- },
2062
- "GetSchemaAsJsonResponse":{
2063
- "type":"structure",
2064
- "members":{
2065
- "Name":{"shape":"SchemaName"},
2066
- "Document":{"shape":"SchemaJsonDocument"}
2067
- }
2068
- },
2069
- "IndexAttachment":{
2070
- "type":"structure",
2071
- "members":{
2072
- "IndexedAttributes":{"shape":"AttributeKeyAndValueList"},
2073
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2074
- }
2075
- },
2076
- "IndexAttachmentList":{
2077
- "type":"list",
2078
- "member":{"shape":"IndexAttachment"}
2079
- },
2080
- "IndexedAttributeMissingException":{
2081
- "type":"structure",
2082
- "members":{
2083
- "Message":{"shape":"ExceptionMessage"}
2084
- },
2085
- "error":{"httpStatusCode":400},
2086
- "exception":true
2087
- },
2088
- "InternalServiceException":{
2089
- "type":"structure",
2090
- "members":{
2091
- "Message":{"shape":"ExceptionMessage"}
2092
- },
2093
- "error":{"httpStatusCode":500},
2094
- "exception":true
2095
- },
2096
- "InvalidArnException":{
2097
- "type":"structure",
2098
- "members":{
2099
- "Message":{"shape":"ExceptionMessage"}
2100
- },
2101
- "error":{"httpStatusCode":400},
2102
- "exception":true
2103
- },
2104
- "InvalidAttachmentException":{
2105
- "type":"structure",
2106
- "members":{
2107
- "Message":{"shape":"ExceptionMessage"}
2108
- },
2109
- "error":{"httpStatusCode":400},
2110
- "exception":true
2111
- },
2112
- "InvalidFacetUpdateException":{
2113
- "type":"structure",
2114
- "members":{
2115
- "Message":{"shape":"ExceptionMessage"}
2116
- },
2117
- "error":{"httpStatusCode":400},
2118
- "exception":true
2119
- },
2120
- "InvalidNextTokenException":{
2121
- "type":"structure",
2122
- "members":{
2123
- "Message":{"shape":"ExceptionMessage"}
2124
- },
2125
- "error":{"httpStatusCode":400},
2126
- "exception":true
2127
- },
2128
- "InvalidRuleException":{
2129
- "type":"structure",
2130
- "members":{
2131
- "Message":{"shape":"ExceptionMessage"}
2132
- },
2133
- "error":{"httpStatusCode":400},
2134
- "exception":true
2135
- },
2136
- "InvalidSchemaDocException":{
2137
- "type":"structure",
2138
- "members":{
2139
- "Message":{"shape":"ExceptionMessage"}
2140
- },
2141
- "error":{"httpStatusCode":400},
2142
- "exception":true
2143
- },
2144
- "InvalidTaggingRequestException":{
2145
- "type":"structure",
2146
- "members":{
2147
- "Message":{"shape":"ExceptionMessage"}
2148
- },
2149
- "error":{"httpStatusCode":400},
2150
- "exception":true
2151
- },
2152
- "LimitExceededException":{
2153
- "type":"structure",
2154
- "members":{
2155
- "Message":{"shape":"ExceptionMessage"}
2156
- },
2157
- "error":{"httpStatusCode":400},
2158
- "exception":true
2159
- },
2160
- "LinkName":{
2161
- "type":"string",
2162
- "max":64
2163
- },
2164
- "LinkNameAlreadyInUseException":{
2165
- "type":"structure",
2166
- "members":{
2167
- "Message":{"shape":"ExceptionMessage"}
2168
- },
2169
- "error":{"httpStatusCode":400},
2170
- "exception":true
2171
- },
2172
- "LinkNameToObjectIdentifierMap":{
2173
- "type":"map",
2174
- "key":{"shape":"LinkName"},
2175
- "value":{"shape":"ObjectIdentifier"}
2176
- },
2177
- "ListAppliedSchemaArnsRequest":{
2178
- "type":"structure",
2179
- "required":["DirectoryArn"],
2180
- "members":{
2181
- "DirectoryArn":{"shape":"Arn"},
2182
- "NextToken":{"shape":"NextToken"},
2183
- "MaxResults":{"shape":"NumberResults"}
2184
- }
2185
- },
2186
- "ListAppliedSchemaArnsResponse":{
2187
- "type":"structure",
2188
- "members":{
2189
- "SchemaArns":{"shape":"Arns"},
2190
- "NextToken":{"shape":"NextToken"}
2191
- }
2192
- },
2193
- "ListAttachedIndicesRequest":{
2194
- "type":"structure",
2195
- "required":[
2196
- "DirectoryArn",
2197
- "TargetReference"
2198
- ],
2199
- "members":{
2200
- "DirectoryArn":{
2201
- "shape":"Arn",
2202
- "location":"header",
2203
- "locationName":"x-amz-data-partition"
2204
- },
2205
- "TargetReference":{"shape":"ObjectReference"},
2206
- "NextToken":{"shape":"NextToken"},
2207
- "MaxResults":{"shape":"NumberResults"},
2208
- "ConsistencyLevel":{
2209
- "shape":"ConsistencyLevel",
2210
- "location":"header",
2211
- "locationName":"x-amz-consistency-level"
2212
- }
2213
- }
2214
- },
2215
- "ListAttachedIndicesResponse":{
2216
- "type":"structure",
2217
- "members":{
2218
- "IndexAttachments":{"shape":"IndexAttachmentList"},
2219
- "NextToken":{"shape":"NextToken"}
2220
- }
2221
- },
2222
- "ListDevelopmentSchemaArnsRequest":{
2223
- "type":"structure",
2224
- "members":{
2225
- "NextToken":{"shape":"NextToken"},
2226
- "MaxResults":{"shape":"NumberResults"}
2227
- }
2228
- },
2229
- "ListDevelopmentSchemaArnsResponse":{
2230
- "type":"structure",
2231
- "members":{
2232
- "SchemaArns":{"shape":"Arns"},
2233
- "NextToken":{"shape":"NextToken"}
2234
- }
2235
- },
2236
- "ListDirectoriesRequest":{
2237
- "type":"structure",
2238
- "members":{
2239
- "NextToken":{"shape":"NextToken"},
2240
- "MaxResults":{"shape":"NumberResults"},
2241
- "state":{"shape":"DirectoryState"}
2242
- }
2243
- },
2244
- "ListDirectoriesResponse":{
2245
- "type":"structure",
2246
- "required":["Directories"],
2247
- "members":{
2248
- "Directories":{"shape":"DirectoryList"},
2249
- "NextToken":{"shape":"NextToken"}
2250
- }
2251
- },
2252
- "ListFacetAttributesRequest":{
2253
- "type":"structure",
2254
- "required":[
2255
- "SchemaArn",
2256
- "Name"
2257
- ],
2258
- "members":{
2259
- "SchemaArn":{
2260
- "shape":"Arn",
2261
- "location":"header",
2262
- "locationName":"x-amz-data-partition"
2263
- },
2264
- "Name":{"shape":"FacetName"},
2265
- "NextToken":{"shape":"NextToken"},
2266
- "MaxResults":{"shape":"NumberResults"}
2267
- }
2268
- },
2269
- "ListFacetAttributesResponse":{
2270
- "type":"structure",
2271
- "members":{
2272
- "Attributes":{"shape":"FacetAttributeList"},
2273
- "NextToken":{"shape":"NextToken"}
2274
- }
2275
- },
2276
- "ListFacetNamesRequest":{
2277
- "type":"structure",
2278
- "required":["SchemaArn"],
2279
- "members":{
2280
- "SchemaArn":{
2281
- "shape":"Arn",
2282
- "location":"header",
2283
- "locationName":"x-amz-data-partition"
2284
- },
2285
- "NextToken":{"shape":"NextToken"},
2286
- "MaxResults":{"shape":"NumberResults"}
2287
- }
2288
- },
2289
- "ListFacetNamesResponse":{
2290
- "type":"structure",
2291
- "members":{
2292
- "FacetNames":{"shape":"FacetNameList"},
2293
- "NextToken":{"shape":"NextToken"}
2294
- }
2295
- },
2296
- "ListIndexRequest":{
2297
- "type":"structure",
2298
- "required":[
2299
- "DirectoryArn",
2300
- "IndexReference"
2301
- ],
2302
- "members":{
2303
- "DirectoryArn":{
2304
- "shape":"Arn",
2305
- "location":"header",
2306
- "locationName":"x-amz-data-partition"
2307
- },
2308
- "RangesOnIndexedValues":{"shape":"ObjectAttributeRangeList"},
2309
- "IndexReference":{"shape":"ObjectReference"},
2310
- "MaxResults":{"shape":"NumberResults"},
2311
- "NextToken":{"shape":"NextToken"},
2312
- "ConsistencyLevel":{
2313
- "shape":"ConsistencyLevel",
2314
- "location":"header",
2315
- "locationName":"x-amz-consistency-level"
2316
- }
2317
- }
2318
- },
2319
- "ListIndexResponse":{
2320
- "type":"structure",
2321
- "members":{
2322
- "IndexAttachments":{"shape":"IndexAttachmentList"},
2323
- "NextToken":{"shape":"NextToken"}
2324
- }
2325
- },
2326
- "ListObjectAttributesRequest":{
2327
- "type":"structure",
2328
- "required":[
2329
- "DirectoryArn",
2330
- "ObjectReference"
2331
- ],
2332
- "members":{
2333
- "DirectoryArn":{
2334
- "shape":"Arn",
2335
- "location":"header",
2336
- "locationName":"x-amz-data-partition"
2337
- },
2338
- "ObjectReference":{"shape":"ObjectReference"},
2339
- "NextToken":{"shape":"NextToken"},
2340
- "MaxResults":{"shape":"NumberResults"},
2341
- "ConsistencyLevel":{
2342
- "shape":"ConsistencyLevel",
2343
- "location":"header",
2344
- "locationName":"x-amz-consistency-level"
2345
- }
2346
- }
2347
- },
2348
- "ListObjectAttributesResponse":{
2349
- "type":"structure",
2350
- "members":{
2351
- "Attributes":{"shape":"AttributeKeyAndValueList"},
2352
- "NextToken":{"shape":"NextToken"}
2353
- }
2354
- },
2355
- "ListObjectChildrenRequest":{
2356
- "type":"structure",
2357
- "required":[
2358
- "DirectoryArn",
2359
- "ObjectReference"
2360
- ],
2361
- "members":{
2362
- "DirectoryArn":{
2363
- "shape":"Arn",
2364
- "location":"header",
2365
- "locationName":"x-amz-data-partition"
2366
- },
2367
- "ObjectReference":{"shape":"ObjectReference"},
2368
- "NextToken":{"shape":"NextToken"},
2369
- "MaxResults":{"shape":"NumberResults"},
2370
- "ConsistencyLevel":{
2371
- "shape":"ConsistencyLevel",
2372
- "location":"header",
2373
- "locationName":"x-amz-consistency-level"
2374
- }
2375
- }
2376
- },
2377
- "ListObjectChildrenResponse":{
2378
- "type":"structure",
2379
- "members":{
2380
- "Children":{"shape":"LinkNameToObjectIdentifierMap"},
2381
- "NextToken":{"shape":"NextToken"}
2382
- }
2383
- },
2384
- "ListObjectParentPathsRequest":{
2385
- "type":"structure",
2386
- "required":[
2387
- "DirectoryArn",
2388
- "ObjectReference"
2389
- ],
2390
- "members":{
2391
- "DirectoryArn":{
2392
- "shape":"Arn",
2393
- "location":"header",
2394
- "locationName":"x-amz-data-partition"
2395
- },
2396
- "ObjectReference":{"shape":"ObjectReference"},
2397
- "NextToken":{"shape":"NextToken"},
2398
- "MaxResults":{"shape":"NumberResults"}
2399
- }
2400
- },
2401
- "ListObjectParentPathsResponse":{
2402
- "type":"structure",
2403
- "members":{
2404
- "PathToObjectIdentifiersList":{"shape":"PathToObjectIdentifiersList"},
2405
- "NextToken":{"shape":"NextToken"}
2406
- }
2407
- },
2408
- "ListObjectParentsRequest":{
2409
- "type":"structure",
2410
- "required":[
2411
- "DirectoryArn",
2412
- "ObjectReference"
2413
- ],
2414
- "members":{
2415
- "DirectoryArn":{
2416
- "shape":"Arn",
2417
- "location":"header",
2418
- "locationName":"x-amz-data-partition"
2419
- },
2420
- "ObjectReference":{"shape":"ObjectReference"},
2421
- "NextToken":{"shape":"NextToken"},
2422
- "MaxResults":{"shape":"NumberResults"},
2423
- "ConsistencyLevel":{
2424
- "shape":"ConsistencyLevel",
2425
- "location":"header",
2426
- "locationName":"x-amz-consistency-level"
2427
- }
2428
- }
2429
- },
2430
- "ListObjectParentsResponse":{
2431
- "type":"structure",
2432
- "members":{
2433
- "Parents":{"shape":"ObjectIdentifierToLinkNameMap"},
2434
- "NextToken":{"shape":"NextToken"}
2435
- }
2436
- },
2437
- "ListObjectPoliciesRequest":{
2438
- "type":"structure",
2439
- "required":[
2440
- "DirectoryArn",
2441
- "ObjectReference"
2442
- ],
2443
- "members":{
2444
- "DirectoryArn":{
2445
- "shape":"Arn",
2446
- "location":"header",
2447
- "locationName":"x-amz-data-partition"
2448
- },
2449
- "ObjectReference":{"shape":"ObjectReference"},
2450
- "NextToken":{"shape":"NextToken"},
2451
- "MaxResults":{"shape":"NumberResults"},
2452
- "ConsistencyLevel":{
2453
- "shape":"ConsistencyLevel",
2454
- "location":"header",
2455
- "locationName":"x-amz-consistency-level"
2456
- }
2457
- }
2458
- },
2459
- "ListObjectPoliciesResponse":{
2460
- "type":"structure",
2461
- "members":{
2462
- "AttachedPolicyIds":{"shape":"ObjectIdentifierList"},
2463
- "NextToken":{"shape":"NextToken"}
2464
- }
2465
- },
2466
- "ListPolicyAttachmentsRequest":{
2467
- "type":"structure",
2468
- "required":[
2469
- "DirectoryArn",
2470
- "PolicyReference"
2471
- ],
2472
- "members":{
2473
- "DirectoryArn":{
2474
- "shape":"Arn",
2475
- "location":"header",
2476
- "locationName":"x-amz-data-partition"
2477
- },
2478
- "PolicyReference":{"shape":"ObjectReference"},
2479
- "NextToken":{"shape":"NextToken"},
2480
- "MaxResults":{"shape":"NumberResults"},
2481
- "ConsistencyLevel":{
2482
- "shape":"ConsistencyLevel",
2483
- "location":"header",
2484
- "locationName":"x-amz-consistency-level"
2485
- }
2486
- }
2487
- },
2488
- "ListPolicyAttachmentsResponse":{
2489
- "type":"structure",
2490
- "members":{
2491
- "ObjectIdentifiers":{"shape":"ObjectIdentifierList"},
2492
- "NextToken":{"shape":"NextToken"}
2493
- }
2494
- },
2495
- "ListPublishedSchemaArnsRequest":{
2496
- "type":"structure",
2497
- "members":{
2498
- "NextToken":{"shape":"NextToken"},
2499
- "MaxResults":{"shape":"NumberResults"}
2500
- }
2501
- },
2502
- "ListPublishedSchemaArnsResponse":{
2503
- "type":"structure",
2504
- "members":{
2505
- "SchemaArns":{"shape":"Arns"},
2506
- "NextToken":{"shape":"NextToken"}
2507
- }
2508
- },
2509
- "ListTagsForResourceRequest":{
2510
- "type":"structure",
2511
- "required":["ResourceArn"],
2512
- "members":{
2513
- "ResourceArn":{"shape":"Arn"},
2514
- "NextToken":{"shape":"NextToken"},
2515
- "MaxResults":{"shape":"TagsNumberResults"}
2516
- }
2517
- },
2518
- "ListTagsForResourceResponse":{
2519
- "type":"structure",
2520
- "members":{
2521
- "Tags":{"shape":"TagList"},
2522
- "NextToken":{"shape":"NextToken"}
2523
- }
2524
- },
2525
- "LookupPolicyRequest":{
2526
- "type":"structure",
2527
- "required":[
2528
- "DirectoryArn",
2529
- "ObjectReference"
2530
- ],
2531
- "members":{
2532
- "DirectoryArn":{
2533
- "shape":"Arn",
2534
- "location":"header",
2535
- "locationName":"x-amz-data-partition"
2536
- },
2537
- "ObjectReference":{"shape":"ObjectReference"},
2538
- "NextToken":{"shape":"NextToken"},
2539
- "MaxResults":{"shape":"NumberResults"}
2540
- }
2541
- },
2542
- "LookupPolicyResponse":{
2543
- "type":"structure",
2544
- "members":{
2545
- "PolicyToPathList":{"shape":"PolicyToPathList"},
2546
- "NextToken":{"shape":"NextToken"}
2547
- }
2548
- },
2549
- "NextToken":{"type":"string"},
2550
- "NotIndexException":{
2551
- "type":"structure",
2552
- "members":{
2553
- "Message":{"shape":"ExceptionMessage"}
2554
- },
2555
- "error":{"httpStatusCode":400},
2556
- "exception":true
2557
- },
2558
- "NotNodeException":{
2559
- "type":"structure",
2560
- "members":{
2561
- "Message":{"shape":"ExceptionMessage"}
2562
- },
2563
- "error":{"httpStatusCode":400},
2564
- "exception":true
2565
- },
2566
- "NotPolicyException":{
2567
- "type":"structure",
2568
- "members":{
2569
- "Message":{"shape":"ExceptionMessage"}
2570
- },
2571
- "error":{"httpStatusCode":400},
2572
- "exception":true
2573
- },
2574
- "NumberAttributeValue":{"type":"string"},
2575
- "NumberResults":{
2576
- "type":"integer",
2577
- "min":1
2578
- },
2579
- "ObjectAlreadyDetachedException":{
2580
- "type":"structure",
2581
- "members":{
2582
- "Message":{"shape":"ExceptionMessage"}
2583
- },
2584
- "error":{"httpStatusCode":400},
2585
- "exception":true
2586
- },
2587
- "ObjectAttributeAction":{
2588
- "type":"structure",
2589
- "members":{
2590
- "ObjectAttributeActionType":{"shape":"UpdateActionType"},
2591
- "ObjectAttributeUpdateValue":{"shape":"TypedAttributeValue"}
2592
- }
2593
- },
2594
- "ObjectAttributeRange":{
2595
- "type":"structure",
2596
- "members":{
2597
- "AttributeKey":{"shape":"AttributeKey"},
2598
- "Range":{"shape":"TypedAttributeValueRange"}
2599
- }
2600
- },
2601
- "ObjectAttributeRangeList":{
2602
- "type":"list",
2603
- "member":{"shape":"ObjectAttributeRange"}
2604
- },
2605
- "ObjectAttributeUpdate":{
2606
- "type":"structure",
2607
- "members":{
2608
- "ObjectAttributeKey":{"shape":"AttributeKey"},
2609
- "ObjectAttributeAction":{"shape":"ObjectAttributeAction"}
2610
- }
2611
- },
2612
- "ObjectAttributeUpdateList":{
2613
- "type":"list",
2614
- "member":{"shape":"ObjectAttributeUpdate"}
2615
- },
2616
- "ObjectIdentifier":{"type":"string"},
2617
- "ObjectIdentifierList":{
2618
- "type":"list",
2619
- "member":{"shape":"ObjectIdentifier"}
2620
- },
2621
- "ObjectIdentifierToLinkNameMap":{
2622
- "type":"map",
2623
- "key":{"shape":"ObjectIdentifier"},
2624
- "value":{"shape":"LinkName"}
2625
- },
2626
- "ObjectNotDetachedException":{
2627
- "type":"structure",
2628
- "members":{
2629
- "Message":{"shape":"ExceptionMessage"}
2630
- },
2631
- "error":{"httpStatusCode":400},
2632
- "exception":true
2633
- },
2634
- "ObjectReference":{
2635
- "type":"structure",
2636
- "members":{
2637
- "Selector":{"shape":"SelectorObjectReference"}
2638
- }
2639
- },
2640
- "ObjectType":{
2641
- "type":"string",
2642
- "enum":[
2643
- "NODE",
2644
- "LEAF_NODE",
2645
- "POLICY",
2646
- "INDEX"
2647
- ]
2648
- },
2649
- "PathString":{"type":"string"},
2650
- "PathToObjectIdentifiers":{
2651
- "type":"structure",
2652
- "members":{
2653
- "Path":{"shape":"PathString"},
2654
- "ObjectIdentifiers":{"shape":"ObjectIdentifierList"}
2655
- }
2656
- },
2657
- "PathToObjectIdentifiersList":{
2658
- "type":"list",
2659
- "member":{"shape":"PathToObjectIdentifiers"}
2660
- },
2661
- "PolicyAttachment":{
2662
- "type":"structure",
2663
- "members":{
2664
- "PolicyId":{"shape":"ObjectIdentifier"},
2665
- "ObjectIdentifier":{"shape":"ObjectIdentifier"},
2666
- "PolicyType":{"shape":"PolicyType"}
2667
- }
2668
- },
2669
- "PolicyAttachmentList":{
2670
- "type":"list",
2671
- "member":{"shape":"PolicyAttachment"}
2672
- },
2673
- "PolicyToPath":{
2674
- "type":"structure",
2675
- "members":{
2676
- "Path":{"shape":"PathString"},
2677
- "Policies":{"shape":"PolicyAttachmentList"}
2678
- }
2679
- },
2680
- "PolicyToPathList":{
2681
- "type":"list",
2682
- "member":{"shape":"PolicyToPath"}
2683
- },
2684
- "PolicyType":{"type":"string"},
2685
- "PublishSchemaRequest":{
2686
- "type":"structure",
2687
- "required":[
2688
- "DevelopmentSchemaArn",
2689
- "Version"
2690
- ],
2691
- "members":{
2692
- "DevelopmentSchemaArn":{
2693
- "shape":"Arn",
2694
- "location":"header",
2695
- "locationName":"x-amz-data-partition"
2696
- },
2697
- "Version":{"shape":"Version"},
2698
- "Name":{"shape":"SchemaName"}
2699
- }
2700
- },
2701
- "PublishSchemaResponse":{
2702
- "type":"structure",
2703
- "members":{
2704
- "PublishedSchemaArn":{"shape":"Arn"}
2705
- }
2706
- },
2707
- "PutSchemaFromJsonRequest":{
2708
- "type":"structure",
2709
- "required":[
2710
- "SchemaArn",
2711
- "Document"
2712
- ],
2713
- "members":{
2714
- "SchemaArn":{
2715
- "shape":"Arn",
2716
- "location":"header",
2717
- "locationName":"x-amz-data-partition"
2718
- },
2719
- "Document":{"shape":"SchemaJsonDocument"}
2720
- }
2721
- },
2722
- "PutSchemaFromJsonResponse":{
2723
- "type":"structure",
2724
- "members":{
2725
- "Arn":{"shape":"Arn"}
2726
- }
2727
- },
2728
- "RangeMode":{
2729
- "type":"string",
2730
- "enum":[
2731
- "FIRST",
2732
- "LAST",
2733
- "LAST_BEFORE_MISSING_VALUES",
2734
- "INCLUSIVE",
2735
- "EXCLUSIVE"
2736
- ]
2737
- },
2738
- "RemoveFacetFromObjectRequest":{
2739
- "type":"structure",
2740
- "required":[
2741
- "DirectoryArn",
2742
- "SchemaFacet",
2743
- "ObjectReference"
2744
- ],
2745
- "members":{
2746
- "DirectoryArn":{
2747
- "shape":"Arn",
2748
- "location":"header",
2749
- "locationName":"x-amz-data-partition"
2750
- },
2751
- "SchemaFacet":{"shape":"SchemaFacet"},
2752
- "ObjectReference":{"shape":"ObjectReference"}
2753
- }
2754
- },
2755
- "RemoveFacetFromObjectResponse":{
2756
- "type":"structure",
2757
- "members":{
2758
- }
2759
- },
2760
- "RequiredAttributeBehavior":{
2761
- "type":"string",
2762
- "enum":[
2763
- "REQUIRED_ALWAYS",
2764
- "NOT_REQUIRED"
2765
- ]
2766
- },
2767
- "ResourceNotFoundException":{
2768
- "type":"structure",
2769
- "members":{
2770
- "Message":{"shape":"ExceptionMessage"}
2771
- },
2772
- "error":{"httpStatusCode":404},
2773
- "exception":true
2774
- },
2775
- "RetryableConflictException":{
2776
- "type":"structure",
2777
- "members":{
2778
- "Message":{"shape":"ExceptionMessage"}
2779
- },
2780
- "error":{"httpStatusCode":409},
2781
- "exception":true
2782
- },
2783
- "Rule":{
2784
- "type":"structure",
2785
- "members":{
2786
- "Type":{"shape":"RuleType"},
2787
- "Parameters":{"shape":"RuleParameterMap"}
2788
- }
2789
- },
2790
- "RuleKey":{
2791
- "type":"string",
2792
- "max":64,
2793
- "min":1,
2794
- "pattern":"^[a-zA-Z0-9._-]*$"
2795
- },
2796
- "RuleMap":{
2797
- "type":"map",
2798
- "key":{"shape":"RuleKey"},
2799
- "value":{"shape":"Rule"}
2800
- },
2801
- "RuleParameterKey":{"type":"string"},
2802
- "RuleParameterMap":{
2803
- "type":"map",
2804
- "key":{"shape":"RuleParameterKey"},
2805
- "value":{"shape":"RuleParameterValue"}
2806
- },
2807
- "RuleParameterValue":{"type":"string"},
2808
- "RuleType":{
2809
- "type":"string",
2810
- "enum":[
2811
- "BINARY_LENGTH",
2812
- "NUMBER_COMPARISON",
2813
- "STRING_FROM_SET",
2814
- "STRING_LENGTH"
2815
- ]
2816
- },
2817
- "SchemaAlreadyExistsException":{
2818
- "type":"structure",
2819
- "members":{
2820
- "Message":{"shape":"ExceptionMessage"}
2821
- },
2822
- "error":{"httpStatusCode":400},
2823
- "exception":true
2824
- },
2825
- "SchemaAlreadyPublishedException":{
2826
- "type":"structure",
2827
- "members":{
2828
- "Message":{"shape":"ExceptionMessage"}
2829
- },
2830
- "error":{"httpStatusCode":400},
2831
- "exception":true
2832
- },
2833
- "SchemaFacet":{
2834
- "type":"structure",
2835
- "members":{
2836
- "SchemaArn":{"shape":"Arn"},
2837
- "FacetName":{"shape":"FacetName"}
2838
- }
2839
- },
2840
- "SchemaFacetList":{
2841
- "type":"list",
2842
- "member":{"shape":"SchemaFacet"}
2843
- },
2844
- "SchemaJsonDocument":{"type":"string"},
2845
- "SchemaName":{
2846
- "type":"string",
2847
- "max":32,
2848
- "min":1,
2849
- "pattern":"^[a-zA-Z0-9._-]*$"
2850
- },
2851
- "SelectorObjectReference":{"type":"string"},
2852
- "StillContainsLinksException":{
2853
- "type":"structure",
2854
- "members":{
2855
- "Message":{"shape":"ExceptionMessage"}
2856
- },
2857
- "error":{"httpStatusCode":400},
2858
- "exception":true
2859
- },
2860
- "StringAttributeValue":{"type":"string"},
2861
- "Tag":{
2862
- "type":"structure",
2863
- "members":{
2864
- "Key":{"shape":"TagKey"},
2865
- "Value":{"shape":"TagValue"}
2866
- }
2867
- },
2868
- "TagKey":{"type":"string"},
2869
- "TagKeyList":{
2870
- "type":"list",
2871
- "member":{"shape":"TagKey"}
2872
- },
2873
- "TagList":{
2874
- "type":"list",
2875
- "member":{"shape":"Tag"}
2876
- },
2877
- "TagResourceRequest":{
2878
- "type":"structure",
2879
- "required":[
2880
- "ResourceArn",
2881
- "Tags"
2882
- ],
2883
- "members":{
2884
- "ResourceArn":{"shape":"Arn"},
2885
- "Tags":{"shape":"TagList"}
2886
- }
2887
- },
2888
- "TagResourceResponse":{
2889
- "type":"structure",
2890
- "members":{
2891
- }
2892
- },
2893
- "TagValue":{"type":"string"},
2894
- "TagsNumberResults":{
2895
- "type":"integer",
2896
- "min":50
2897
- },
2898
- "TypedAttributeValue":{
2899
- "type":"structure",
2900
- "members":{
2901
- "StringValue":{"shape":"StringAttributeValue"},
2902
- "BinaryValue":{"shape":"BinaryAttributeValue"},
2903
- "BooleanValue":{"shape":"BooleanAttributeValue"},
2904
- "NumberValue":{"shape":"NumberAttributeValue"},
2905
- "DatetimeValue":{"shape":"DatetimeAttributeValue"}
2906
- }
2907
- },
2908
- "TypedAttributeValueRange":{
2909
- "type":"structure",
2910
- "required":[
2911
- "StartMode",
2912
- "EndMode"
2913
- ],
2914
- "members":{
2915
- "StartMode":{"shape":"RangeMode"},
2916
- "StartValue":{"shape":"TypedAttributeValue"},
2917
- "EndMode":{"shape":"RangeMode"},
2918
- "EndValue":{"shape":"TypedAttributeValue"}
2919
- }
2920
- },
2921
- "UnsupportedIndexTypeException":{
2922
- "type":"structure",
2923
- "members":{
2924
- "Message":{"shape":"ExceptionMessage"}
2925
- },
2926
- "error":{"httpStatusCode":400},
2927
- "exception":true
2928
- },
2929
- "UntagResourceRequest":{
2930
- "type":"structure",
2931
- "required":[
2932
- "ResourceArn",
2933
- "TagKeys"
2934
- ],
2935
- "members":{
2936
- "ResourceArn":{"shape":"Arn"},
2937
- "TagKeys":{"shape":"TagKeyList"}
2938
- }
2939
- },
2940
- "UntagResourceResponse":{
2941
- "type":"structure",
2942
- "members":{
2943
- }
2944
- },
2945
- "UpdateActionType":{
2946
- "type":"string",
2947
- "enum":[
2948
- "CREATE_OR_UPDATE",
2949
- "DELETE"
2950
- ]
2951
- },
2952
- "UpdateFacetRequest":{
2953
- "type":"structure",
2954
- "required":[
2955
- "SchemaArn",
2956
- "Name"
2957
- ],
2958
- "members":{
2959
- "SchemaArn":{
2960
- "shape":"Arn",
2961
- "location":"header",
2962
- "locationName":"x-amz-data-partition"
2963
- },
2964
- "Name":{"shape":"FacetName"},
2965
- "AttributeUpdates":{"shape":"FacetAttributeUpdateList"},
2966
- "ObjectType":{"shape":"ObjectType"}
2967
- }
2968
- },
2969
- "UpdateFacetResponse":{
2970
- "type":"structure",
2971
- "members":{
2972
- }
2973
- },
2974
- "UpdateObjectAttributesRequest":{
2975
- "type":"structure",
2976
- "required":[
2977
- "DirectoryArn",
2978
- "ObjectReference",
2979
- "AttributeUpdates"
2980
- ],
2981
- "members":{
2982
- "DirectoryArn":{
2983
- "shape":"Arn",
2984
- "location":"header",
2985
- "locationName":"x-amz-data-partition"
2986
- },
2987
- "ObjectReference":{"shape":"ObjectReference"},
2988
- "AttributeUpdates":{"shape":"ObjectAttributeUpdateList"}
2989
- }
2990
- },
2991
- "UpdateObjectAttributesResponse":{
2992
- "type":"structure",
2993
- "members":{
2994
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2995
- }
2996
- },
2997
- "UpdateSchemaRequest":{
2998
- "type":"structure",
2999
- "required":[
3000
- "SchemaArn",
3001
- "Name"
3002
- ],
3003
- "members":{
3004
- "SchemaArn":{
3005
- "shape":"Arn",
3006
- "location":"header",
3007
- "locationName":"x-amz-data-partition"
3008
- },
3009
- "Name":{"shape":"SchemaName"}
3010
- }
3011
- },
3012
- "UpdateSchemaResponse":{
3013
- "type":"structure",
3014
- "members":{
3015
- "SchemaArn":{"shape":"Arn"}
3016
- }
3017
- },
3018
- "ValidationException":{
3019
- "type":"structure",
3020
- "members":{
3021
- "Message":{"shape":"ExceptionMessage"}
3022
- },
3023
- "error":{"httpStatusCode":400},
3024
- "exception":true
3025
- },
3026
- "Version":{
3027
- "type":"string",
3028
- "max":10,
3029
- "min":1,
3030
- "pattern":"^[a-zA-Z0-9._-]*$"
3031
- }
3032
- }
3033
- }