aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -696
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -3179
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,315 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "CreateEnvironmentEC2": [
5
- {
6
- "input": {
7
- "name": "my-demo-environment",
8
- "automaticStopTimeMinutes": 60,
9
- "description": "This is my demonstration environment.",
10
- "instanceType": "t2.micro",
11
- "ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser",
12
- "subnetId": "subnet-1fab8aEX"
13
- },
14
- "output": {
15
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
16
- },
17
- "comments": {
18
- "input": {
19
- },
20
- "output": {
21
- }
22
- },
23
- "description": "",
24
- "id": "createenvironmentec2-1516821730547",
25
- "title": "CreateEnvironmentEC2"
26
- }
27
- ],
28
- "CreateEnvironmentMembership": [
29
- {
30
- "input": {
31
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
32
- "permissions": "read-write",
33
- "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser"
34
- },
35
- "output": {
36
- "membership": {
37
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
38
- "permissions": "read-write",
39
- "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser",
40
- "userId": "AIDAJ3BA6O2FMJWCWXHEX"
41
- }
42
- },
43
- "comments": {
44
- "input": {
45
- },
46
- "output": {
47
- }
48
- },
49
- "description": "",
50
- "id": "createenvironmentmembership-1516822583452",
51
- "title": "CreateEnvironmentMembership"
52
- }
53
- ],
54
- "DeleteEnvironment": [
55
- {
56
- "input": {
57
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
58
- },
59
- "output": {
60
- },
61
- "comments": {
62
- "input": {
63
- },
64
- "output": {
65
- }
66
- },
67
- "description": "",
68
- "id": "deleteenvironment-1516822903149",
69
- "title": "DeleteEnvironment"
70
- }
71
- ],
72
- "DeleteEnvironmentMembership": [
73
- {
74
- "input": {
75
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
76
- "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser"
77
- },
78
- "output": {
79
- },
80
- "comments": {
81
- "input": {
82
- },
83
- "output": {
84
- }
85
- },
86
- "description": "",
87
- "id": "deleteenvironmentmembership-1516822975655",
88
- "title": "DeleteEnvironmentMembership"
89
- }
90
- ],
91
- "DescribeEnvironmentMemberships": [
92
- {
93
- "input": {
94
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
95
- },
96
- "output": {
97
- "memberships": [
98
- {
99
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
100
- "permissions": "read-write",
101
- "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser",
102
- "userId": "AIDAJ3BA6O2FMJWCWXHEX"
103
- },
104
- {
105
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
106
- "permissions": "owner",
107
- "userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
108
- "userId": "AIDAJNUEDQAQWFELJDLEX"
109
- }
110
- ]
111
- },
112
- "comments": {
113
- "input": {
114
- },
115
- "output": {
116
- }
117
- },
118
- "description": "The following example gets information about all of the environment members for the specified AWS Cloud9 development environment.",
119
- "id": "describeenvironmentmemberships1-1516823070453",
120
- "title": "DescribeEnvironmentMemberships1"
121
- },
122
- {
123
- "input": {
124
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
125
- "permissions": [
126
- "owner"
127
- ]
128
- },
129
- "output": {
130
- "memberships": [
131
- {
132
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
133
- "permissions": "owner",
134
- "userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
135
- "userId": "AIDAJNUEDQAQWFELJDLEX"
136
- }
137
- ]
138
- },
139
- "comments": {
140
- "input": {
141
- },
142
- "output": {
143
- }
144
- },
145
- "description": "The following example gets information about the owner of the specified AWS Cloud9 development environment.",
146
- "id": "describeenvironmentmemberships2-1516823191355",
147
- "title": "DescribeEnvironmentMemberships2"
148
- },
149
- {
150
- "input": {
151
- "userArn": "arn:aws:iam::123456789012:user/MyDemoUser"
152
- },
153
- "output": {
154
- "memberships": [
155
- {
156
- "environmentId": "10a75714bd494714929e7f5ec4125aEX",
157
- "lastAccess": "2018-01-19T11:06:13Z",
158
- "permissions": "owner",
159
- "userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
160
- "userId": "AIDAJNUEDQAQWFELJDLEX"
161
- },
162
- {
163
- "environmentId": "12bfc3cd537f41cb9776f8af5525c9EX",
164
- "lastAccess": "2018-01-19T11:39:19Z",
165
- "permissions": "owner",
166
- "userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
167
- "userId": "AIDAJNUEDQAQWFELJDLEX"
168
- }
169
- ]
170
- },
171
- "comments": {
172
- "input": {
173
- },
174
- "output": {
175
- }
176
- },
177
- "description": "The following example gets AWS Cloud9 development environment membership information for the specified user.",
178
- "id": "describeenvironmentmemberships3-1516823268793",
179
- "title": "DescribeEnvironmentMemberships3"
180
- }
181
- ],
182
- "DescribeEnvironmentStatus": [
183
- {
184
- "input": {
185
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
186
- },
187
- "output": {
188
- "message": "Environment is ready to use",
189
- "status": "ready"
190
- },
191
- "comments": {
192
- "input": {
193
- },
194
- "output": {
195
- }
196
- },
197
- "description": "",
198
- "id": "describeenvironmentstatus-1516823462133",
199
- "title": "DescribeEnvironmentStatus"
200
- }
201
- ],
202
- "DescribeEnvironments": [
203
- {
204
- "input": {
205
- "environmentIds": [
206
- "8d9967e2f0624182b74e7690ad69ebEX",
207
- "349c86d4579e4e7298d500ff57a6b2EX"
208
- ]
209
- },
210
- "output": {
211
- "environments": [
212
- {
213
- "name": "my-demo-environment",
214
- "type": "ec2",
215
- "arn": "arn:aws:cloud9:us-east-2:123456789012:environment:8d9967e2f0624182b74e7690ad69ebEX",
216
- "description": "This is my demonstration environment.",
217
- "id": "8d9967e2f0624182b74e7690ad69ebEX",
218
- "lifecycle": {
219
- "status": "CREATED"
220
- },
221
- "ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser"
222
- },
223
- {
224
- "name": "another-demo-environment",
225
- "type": "ssh",
226
- "arn": "arn:aws:cloud9:us-east-2:123456789012:environment:349c86d4579e4e7298d500ff57a6b2EX",
227
- "description": "",
228
- "id": "349c86d4579e4e7298d500ff57a6b2EX",
229
- "lifecycle": {
230
- "status": "CREATED"
231
- },
232
- "ownerArn": "arn:aws:sts::123456789012:assumed-role/AnotherDemoUser/AnotherDemoUser"
233
- }
234
- ]
235
- },
236
- "comments": {
237
- "input": {
238
- },
239
- "output": {
240
- }
241
- },
242
- "description": "",
243
- "id": "describeenvironments-1516823568291",
244
- "title": "DescribeEnvironments"
245
- }
246
- ],
247
- "ListEnvironments": [
248
- {
249
- "input": {
250
- },
251
- "output": {
252
- "environmentIds": [
253
- "349c86d4579e4e7298d500ff57a6b2EX",
254
- "45a3da47af0840f2b0c0824f5ee232EX"
255
- ]
256
- },
257
- "comments": {
258
- "input": {
259
- },
260
- "output": {
261
- }
262
- },
263
- "description": "",
264
- "id": "listenvironments-1516823687205",
265
- "title": "ListEnvironments"
266
- }
267
- ],
268
- "UpdateEnvironment": [
269
- {
270
- "input": {
271
- "name": "my-changed-demo-environment",
272
- "description": "This is my changed demonstration environment.",
273
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
274
- },
275
- "output": {
276
- },
277
- "comments": {
278
- "input": {
279
- },
280
- "output": {
281
- }
282
- },
283
- "description": "",
284
- "id": "updateenvironment-1516823781910",
285
- "title": "UpdateEnvironment"
286
- }
287
- ],
288
- "UpdateEnvironmentMembership": [
289
- {
290
- "input": {
291
- "environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
292
- "permissions": "read-only",
293
- "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser"
294
- },
295
- "output": {
296
- "membership": {
297
- "environmentId": "8d9967e2f0624182b74e7690ad69eb31",
298
- "permissions": "read-only",
299
- "userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser",
300
- "userId": "AIDAJ3BA6O2FMJWCWXHEX"
301
- }
302
- },
303
- "comments": {
304
- "input": {
305
- },
306
- "output": {
307
- }
308
- },
309
- "description": "",
310
- "id": "updateenvironmentmembership-1516823876645",
311
- "title": "UpdateEnvironmentMembership"
312
- }
313
- ]
314
- }
315
- }
@@ -1,14 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeEnvironmentMemberships": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults"
7
- },
8
- "ListEnvironments": {
9
- "input_token": "nextToken",
10
- "output_token": "nextToken",
11
- "limit_key": "maxResults"
12
- }
13
- }
14
- }
@@ -1,4244 +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
- {"shape":"FacetValidationException"}
76
- ]
77
- },
78
- "AttachPolicy":{
79
- "name":"AttachPolicy",
80
- "http":{
81
- "method":"PUT",
82
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/attach",
83
- "responseCode":200
84
- },
85
- "input":{"shape":"AttachPolicyRequest"},
86
- "output":{"shape":"AttachPolicyResponse"},
87
- "errors":[
88
- {"shape":"InternalServiceException"},
89
- {"shape":"InvalidArnException"},
90
- {"shape":"RetryableConflictException"},
91
- {"shape":"ValidationException"},
92
- {"shape":"LimitExceededException"},
93
- {"shape":"AccessDeniedException"},
94
- {"shape":"DirectoryNotEnabledException"},
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":"InvalidAttachmentException"},
117
- {"shape":"ResourceNotFoundException"},
118
- {"shape":"LinkNameAlreadyInUseException"},
119
- {"shape":"IndexedAttributeMissingException"},
120
- {"shape":"NotIndexException"}
121
- ]
122
- },
123
- "AttachTypedLink":{
124
- "name":"AttachTypedLink",
125
- "http":{
126
- "method":"PUT",
127
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/attach",
128
- "responseCode":200
129
- },
130
- "input":{"shape":"AttachTypedLinkRequest"},
131
- "output":{"shape":"AttachTypedLinkResponse"},
132
- "errors":[
133
- {"shape":"InternalServiceException"},
134
- {"shape":"InvalidArnException"},
135
- {"shape":"RetryableConflictException"},
136
- {"shape":"ValidationException"},
137
- {"shape":"LimitExceededException"},
138
- {"shape":"AccessDeniedException"},
139
- {"shape":"DirectoryNotEnabledException"},
140
- {"shape":"ResourceNotFoundException"},
141
- {"shape":"InvalidAttachmentException"},
142
- {"shape":"ValidationException"},
143
- {"shape":"FacetValidationException"}
144
- ]
145
- },
146
- "BatchRead":{
147
- "name":"BatchRead",
148
- "http":{
149
- "method":"POST",
150
- "requestUri":"/amazonclouddirectory/2017-01-11/batchread",
151
- "responseCode":200
152
- },
153
- "input":{"shape":"BatchReadRequest"},
154
- "output":{"shape":"BatchReadResponse"},
155
- "errors":[
156
- {"shape":"InternalServiceException"},
157
- {"shape":"InvalidArnException"},
158
- {"shape":"RetryableConflictException"},
159
- {"shape":"ValidationException"},
160
- {"shape":"LimitExceededException"},
161
- {"shape":"AccessDeniedException"},
162
- {"shape":"DirectoryNotEnabledException"}
163
- ]
164
- },
165
- "BatchWrite":{
166
- "name":"BatchWrite",
167
- "http":{
168
- "method":"PUT",
169
- "requestUri":"/amazonclouddirectory/2017-01-11/batchwrite",
170
- "responseCode":200
171
- },
172
- "input":{"shape":"BatchWriteRequest"},
173
- "output":{"shape":"BatchWriteResponse"},
174
- "errors":[
175
- {"shape":"InternalServiceException"},
176
- {"shape":"InvalidArnException"},
177
- {"shape":"RetryableConflictException"},
178
- {"shape":"ValidationException"},
179
- {"shape":"LimitExceededException"},
180
- {"shape":"AccessDeniedException"},
181
- {"shape":"DirectoryNotEnabledException"},
182
- {"shape":"BatchWriteException"}
183
- ]
184
- },
185
- "CreateDirectory":{
186
- "name":"CreateDirectory",
187
- "http":{
188
- "method":"PUT",
189
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/create",
190
- "responseCode":200
191
- },
192
- "input":{"shape":"CreateDirectoryRequest"},
193
- "output":{"shape":"CreateDirectoryResponse"},
194
- "errors":[
195
- {"shape":"InternalServiceException"},
196
- {"shape":"InvalidArnException"},
197
- {"shape":"RetryableConflictException"},
198
- {"shape":"ValidationException"},
199
- {"shape":"LimitExceededException"},
200
- {"shape":"AccessDeniedException"},
201
- {"shape":"DirectoryAlreadyExistsException"},
202
- {"shape":"ResourceNotFoundException"}
203
- ]
204
- },
205
- "CreateFacet":{
206
- "name":"CreateFacet",
207
- "http":{
208
- "method":"PUT",
209
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/create",
210
- "responseCode":200
211
- },
212
- "input":{"shape":"CreateFacetRequest"},
213
- "output":{"shape":"CreateFacetResponse"},
214
- "errors":[
215
- {"shape":"InternalServiceException"},
216
- {"shape":"InvalidArnException"},
217
- {"shape":"RetryableConflictException"},
218
- {"shape":"ValidationException"},
219
- {"shape":"LimitExceededException"},
220
- {"shape":"AccessDeniedException"},
221
- {"shape":"ResourceNotFoundException"},
222
- {"shape":"FacetAlreadyExistsException"},
223
- {"shape":"InvalidRuleException"},
224
- {"shape":"FacetValidationException"}
225
- ]
226
- },
227
- "CreateIndex":{
228
- "name":"CreateIndex",
229
- "http":{
230
- "method":"PUT",
231
- "requestUri":"/amazonclouddirectory/2017-01-11/index",
232
- "responseCode":200
233
- },
234
- "input":{"shape":"CreateIndexRequest"},
235
- "output":{"shape":"CreateIndexResponse"},
236
- "errors":[
237
- {"shape":"InternalServiceException"},
238
- {"shape":"InvalidArnException"},
239
- {"shape":"RetryableConflictException"},
240
- {"shape":"ValidationException"},
241
- {"shape":"LimitExceededException"},
242
- {"shape":"AccessDeniedException"},
243
- {"shape":"DirectoryNotEnabledException"},
244
- {"shape":"ResourceNotFoundException"},
245
- {"shape":"FacetValidationException"},
246
- {"shape":"LinkNameAlreadyInUseException"},
247
- {"shape":"UnsupportedIndexTypeException"}
248
- ]
249
- },
250
- "CreateObject":{
251
- "name":"CreateObject",
252
- "http":{
253
- "method":"PUT",
254
- "requestUri":"/amazonclouddirectory/2017-01-11/object",
255
- "responseCode":200
256
- },
257
- "input":{"shape":"CreateObjectRequest"},
258
- "output":{"shape":"CreateObjectResponse"},
259
- "errors":[
260
- {"shape":"InternalServiceException"},
261
- {"shape":"InvalidArnException"},
262
- {"shape":"RetryableConflictException"},
263
- {"shape":"ValidationException"},
264
- {"shape":"LimitExceededException"},
265
- {"shape":"AccessDeniedException"},
266
- {"shape":"DirectoryNotEnabledException"},
267
- {"shape":"ResourceNotFoundException"},
268
- {"shape":"FacetValidationException"},
269
- {"shape":"LinkNameAlreadyInUseException"},
270
- {"shape":"UnsupportedIndexTypeException"}
271
- ]
272
- },
273
- "CreateSchema":{
274
- "name":"CreateSchema",
275
- "http":{
276
- "method":"PUT",
277
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/create",
278
- "responseCode":200
279
- },
280
- "input":{"shape":"CreateSchemaRequest"},
281
- "output":{"shape":"CreateSchemaResponse"},
282
- "errors":[
283
- {"shape":"InternalServiceException"},
284
- {"shape":"InvalidArnException"},
285
- {"shape":"RetryableConflictException"},
286
- {"shape":"ValidationException"},
287
- {"shape":"LimitExceededException"},
288
- {"shape":"AccessDeniedException"},
289
- {"shape":"SchemaAlreadyExistsException"},
290
- {"shape":"AccessDeniedException"}
291
- ]
292
- },
293
- "CreateTypedLinkFacet":{
294
- "name":"CreateTypedLinkFacet",
295
- "http":{
296
- "method":"PUT",
297
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/create",
298
- "responseCode":200
299
- },
300
- "input":{"shape":"CreateTypedLinkFacetRequest"},
301
- "output":{"shape":"CreateTypedLinkFacetResponse"},
302
- "errors":[
303
- {"shape":"InternalServiceException"},
304
- {"shape":"InvalidArnException"},
305
- {"shape":"RetryableConflictException"},
306
- {"shape":"ValidationException"},
307
- {"shape":"LimitExceededException"},
308
- {"shape":"AccessDeniedException"},
309
- {"shape":"ResourceNotFoundException"},
310
- {"shape":"FacetAlreadyExistsException"},
311
- {"shape":"InvalidRuleException"},
312
- {"shape":"FacetValidationException"}
313
- ]
314
- },
315
- "DeleteDirectory":{
316
- "name":"DeleteDirectory",
317
- "http":{
318
- "method":"PUT",
319
- "requestUri":"/amazonclouddirectory/2017-01-11/directory",
320
- "responseCode":200
321
- },
322
- "input":{"shape":"DeleteDirectoryRequest"},
323
- "output":{"shape":"DeleteDirectoryResponse"},
324
- "errors":[
325
- {"shape":"ResourceNotFoundException"},
326
- {"shape":"DirectoryNotDisabledException"},
327
- {"shape":"InternalServiceException"},
328
- {"shape":"ValidationException"},
329
- {"shape":"LimitExceededException"},
330
- {"shape":"AccessDeniedException"},
331
- {"shape":"DirectoryDeletedException"},
332
- {"shape":"RetryableConflictException"},
333
- {"shape":"InvalidArnException"}
334
- ]
335
- },
336
- "DeleteFacet":{
337
- "name":"DeleteFacet",
338
- "http":{
339
- "method":"PUT",
340
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/delete",
341
- "responseCode":200
342
- },
343
- "input":{"shape":"DeleteFacetRequest"},
344
- "output":{"shape":"DeleteFacetResponse"},
345
- "errors":[
346
- {"shape":"InternalServiceException"},
347
- {"shape":"InvalidArnException"},
348
- {"shape":"RetryableConflictException"},
349
- {"shape":"ValidationException"},
350
- {"shape":"LimitExceededException"},
351
- {"shape":"AccessDeniedException"},
352
- {"shape":"ResourceNotFoundException"},
353
- {"shape":"FacetNotFoundException"},
354
- {"shape":"FacetInUseException"}
355
- ]
356
- },
357
- "DeleteObject":{
358
- "name":"DeleteObject",
359
- "http":{
360
- "method":"PUT",
361
- "requestUri":"/amazonclouddirectory/2017-01-11/object/delete",
362
- "responseCode":200
363
- },
364
- "input":{"shape":"DeleteObjectRequest"},
365
- "output":{"shape":"DeleteObjectResponse"},
366
- "errors":[
367
- {"shape":"InternalServiceException"},
368
- {"shape":"InvalidArnException"},
369
- {"shape":"RetryableConflictException"},
370
- {"shape":"ValidationException"},
371
- {"shape":"LimitExceededException"},
372
- {"shape":"AccessDeniedException"},
373
- {"shape":"DirectoryNotEnabledException"},
374
- {"shape":"ResourceNotFoundException"},
375
- {"shape":"ObjectNotDetachedException"}
376
- ]
377
- },
378
- "DeleteSchema":{
379
- "name":"DeleteSchema",
380
- "http":{
381
- "method":"PUT",
382
- "requestUri":"/amazonclouddirectory/2017-01-11/schema",
383
- "responseCode":200
384
- },
385
- "input":{"shape":"DeleteSchemaRequest"},
386
- "output":{"shape":"DeleteSchemaResponse"},
387
- "errors":[
388
- {"shape":"InternalServiceException"},
389
- {"shape":"InvalidArnException"},
390
- {"shape":"RetryableConflictException"},
391
- {"shape":"ValidationException"},
392
- {"shape":"LimitExceededException"},
393
- {"shape":"AccessDeniedException"},
394
- {"shape":"ResourceNotFoundException"},
395
- {"shape":"StillContainsLinksException"}
396
- ]
397
- },
398
- "DeleteTypedLinkFacet":{
399
- "name":"DeleteTypedLinkFacet",
400
- "http":{
401
- "method":"PUT",
402
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/delete",
403
- "responseCode":200
404
- },
405
- "input":{"shape":"DeleteTypedLinkFacetRequest"},
406
- "output":{"shape":"DeleteTypedLinkFacetResponse"},
407
- "errors":[
408
- {"shape":"InternalServiceException"},
409
- {"shape":"InvalidArnException"},
410
- {"shape":"RetryableConflictException"},
411
- {"shape":"ValidationException"},
412
- {"shape":"LimitExceededException"},
413
- {"shape":"AccessDeniedException"},
414
- {"shape":"ResourceNotFoundException"},
415
- {"shape":"FacetNotFoundException"}
416
- ]
417
- },
418
- "DetachFromIndex":{
419
- "name":"DetachFromIndex",
420
- "http":{
421
- "method":"PUT",
422
- "requestUri":"/amazonclouddirectory/2017-01-11/index/detach",
423
- "responseCode":200
424
- },
425
- "input":{"shape":"DetachFromIndexRequest"},
426
- "output":{"shape":"DetachFromIndexResponse"},
427
- "errors":[
428
- {"shape":"InternalServiceException"},
429
- {"shape":"InvalidArnException"},
430
- {"shape":"RetryableConflictException"},
431
- {"shape":"ValidationException"},
432
- {"shape":"LimitExceededException"},
433
- {"shape":"AccessDeniedException"},
434
- {"shape":"DirectoryNotEnabledException"},
435
- {"shape":"ResourceNotFoundException"},
436
- {"shape":"ObjectAlreadyDetachedException"},
437
- {"shape":"NotIndexException"}
438
- ]
439
- },
440
- "DetachObject":{
441
- "name":"DetachObject",
442
- "http":{
443
- "method":"PUT",
444
- "requestUri":"/amazonclouddirectory/2017-01-11/object/detach",
445
- "responseCode":200
446
- },
447
- "input":{"shape":"DetachObjectRequest"},
448
- "output":{"shape":"DetachObjectResponse"},
449
- "errors":[
450
- {"shape":"InternalServiceException"},
451
- {"shape":"InvalidArnException"},
452
- {"shape":"RetryableConflictException"},
453
- {"shape":"ValidationException"},
454
- {"shape":"LimitExceededException"},
455
- {"shape":"AccessDeniedException"},
456
- {"shape":"DirectoryNotEnabledException"},
457
- {"shape":"ResourceNotFoundException"},
458
- {"shape":"NotNodeException"}
459
- ]
460
- },
461
- "DetachPolicy":{
462
- "name":"DetachPolicy",
463
- "http":{
464
- "method":"PUT",
465
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/detach",
466
- "responseCode":200
467
- },
468
- "input":{"shape":"DetachPolicyRequest"},
469
- "output":{"shape":"DetachPolicyResponse"},
470
- "errors":[
471
- {"shape":"InternalServiceException"},
472
- {"shape":"InvalidArnException"},
473
- {"shape":"RetryableConflictException"},
474
- {"shape":"ValidationException"},
475
- {"shape":"LimitExceededException"},
476
- {"shape":"AccessDeniedException"},
477
- {"shape":"DirectoryNotEnabledException"},
478
- {"shape":"ResourceNotFoundException"},
479
- {"shape":"NotPolicyException"}
480
- ]
481
- },
482
- "DetachTypedLink":{
483
- "name":"DetachTypedLink",
484
- "http":{
485
- "method":"PUT",
486
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/detach",
487
- "responseCode":200
488
- },
489
- "input":{"shape":"DetachTypedLinkRequest"},
490
- "errors":[
491
- {"shape":"InternalServiceException"},
492
- {"shape":"InvalidArnException"},
493
- {"shape":"RetryableConflictException"},
494
- {"shape":"ValidationException"},
495
- {"shape":"LimitExceededException"},
496
- {"shape":"AccessDeniedException"},
497
- {"shape":"DirectoryNotEnabledException"},
498
- {"shape":"ResourceNotFoundException"},
499
- {"shape":"FacetValidationException"}
500
- ]
501
- },
502
- "DisableDirectory":{
503
- "name":"DisableDirectory",
504
- "http":{
505
- "method":"PUT",
506
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/disable",
507
- "responseCode":200
508
- },
509
- "input":{"shape":"DisableDirectoryRequest"},
510
- "output":{"shape":"DisableDirectoryResponse"},
511
- "errors":[
512
- {"shape":"ResourceNotFoundException"},
513
- {"shape":"DirectoryDeletedException"},
514
- {"shape":"InternalServiceException"},
515
- {"shape":"ValidationException"},
516
- {"shape":"LimitExceededException"},
517
- {"shape":"AccessDeniedException"},
518
- {"shape":"RetryableConflictException"},
519
- {"shape":"InvalidArnException"}
520
- ]
521
- },
522
- "EnableDirectory":{
523
- "name":"EnableDirectory",
524
- "http":{
525
- "method":"PUT",
526
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/enable",
527
- "responseCode":200
528
- },
529
- "input":{"shape":"EnableDirectoryRequest"},
530
- "output":{"shape":"EnableDirectoryResponse"},
531
- "errors":[
532
- {"shape":"ResourceNotFoundException"},
533
- {"shape":"DirectoryDeletedException"},
534
- {"shape":"InternalServiceException"},
535
- {"shape":"ValidationException"},
536
- {"shape":"LimitExceededException"},
537
- {"shape":"AccessDeniedException"},
538
- {"shape":"RetryableConflictException"},
539
- {"shape":"InvalidArnException"}
540
- ]
541
- },
542
- "GetAppliedSchemaVersion":{
543
- "name":"GetAppliedSchemaVersion",
544
- "http":{
545
- "method":"POST",
546
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/getappliedschema",
547
- "responseCode":200
548
- },
549
- "input":{"shape":"GetAppliedSchemaVersionRequest"},
550
- "output":{"shape":"GetAppliedSchemaVersionResponse"},
551
- "errors":[
552
- {"shape":"InternalServiceException"},
553
- {"shape":"InvalidArnException"},
554
- {"shape":"RetryableConflictException"},
555
- {"shape":"ValidationException"},
556
- {"shape":"LimitExceededException"},
557
- {"shape":"AccessDeniedException"},
558
- {"shape":"ResourceNotFoundException"}
559
- ]
560
- },
561
- "GetDirectory":{
562
- "name":"GetDirectory",
563
- "http":{
564
- "method":"POST",
565
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/get",
566
- "responseCode":200
567
- },
568
- "input":{"shape":"GetDirectoryRequest"},
569
- "output":{"shape":"GetDirectoryResponse"},
570
- "errors":[
571
- {"shape":"InternalServiceException"},
572
- {"shape":"InvalidArnException"},
573
- {"shape":"RetryableConflictException"},
574
- {"shape":"ValidationException"},
575
- {"shape":"LimitExceededException"},
576
- {"shape":"AccessDeniedException"}
577
- ]
578
- },
579
- "GetFacet":{
580
- "name":"GetFacet",
581
- "http":{
582
- "method":"POST",
583
- "requestUri":"/amazonclouddirectory/2017-01-11/facet",
584
- "responseCode":200
585
- },
586
- "input":{"shape":"GetFacetRequest"},
587
- "output":{"shape":"GetFacetResponse"},
588
- "errors":[
589
- {"shape":"InternalServiceException"},
590
- {"shape":"InvalidArnException"},
591
- {"shape":"RetryableConflictException"},
592
- {"shape":"ValidationException"},
593
- {"shape":"LimitExceededException"},
594
- {"shape":"AccessDeniedException"},
595
- {"shape":"ResourceNotFoundException"},
596
- {"shape":"FacetNotFoundException"}
597
- ]
598
- },
599
- "GetLinkAttributes":{
600
- "name":"GetLinkAttributes",
601
- "http":{
602
- "method":"POST",
603
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/attributes/get",
604
- "responseCode":200
605
- },
606
- "input":{"shape":"GetLinkAttributesRequest"},
607
- "output":{"shape":"GetLinkAttributesResponse"},
608
- "errors":[
609
- {"shape":"InternalServiceException"},
610
- {"shape":"InvalidArnException"},
611
- {"shape":"RetryableConflictException"},
612
- {"shape":"ValidationException"},
613
- {"shape":"LimitExceededException"},
614
- {"shape":"AccessDeniedException"},
615
- {"shape":"DirectoryNotEnabledException"},
616
- {"shape":"ResourceNotFoundException"},
617
- {"shape":"FacetValidationException"}
618
- ]
619
- },
620
- "GetObjectAttributes":{
621
- "name":"GetObjectAttributes",
622
- "http":{
623
- "method":"POST",
624
- "requestUri":"/amazonclouddirectory/2017-01-11/object/attributes/get",
625
- "responseCode":200
626
- },
627
- "input":{"shape":"GetObjectAttributesRequest"},
628
- "output":{"shape":"GetObjectAttributesResponse"},
629
- "errors":[
630
- {"shape":"InternalServiceException"},
631
- {"shape":"InvalidArnException"},
632
- {"shape":"RetryableConflictException"},
633
- {"shape":"ValidationException"},
634
- {"shape":"LimitExceededException"},
635
- {"shape":"AccessDeniedException"},
636
- {"shape":"DirectoryNotEnabledException"},
637
- {"shape":"ResourceNotFoundException"},
638
- {"shape":"FacetValidationException"}
639
- ]
640
- },
641
- "GetObjectInformation":{
642
- "name":"GetObjectInformation",
643
- "http":{
644
- "method":"POST",
645
- "requestUri":"/amazonclouddirectory/2017-01-11/object/information",
646
- "responseCode":200
647
- },
648
- "input":{"shape":"GetObjectInformationRequest"},
649
- "output":{"shape":"GetObjectInformationResponse"},
650
- "errors":[
651
- {"shape":"InternalServiceException"},
652
- {"shape":"InvalidArnException"},
653
- {"shape":"RetryableConflictException"},
654
- {"shape":"ValidationException"},
655
- {"shape":"LimitExceededException"},
656
- {"shape":"AccessDeniedException"},
657
- {"shape":"DirectoryNotEnabledException"},
658
- {"shape":"ResourceNotFoundException"}
659
- ]
660
- },
661
- "GetSchemaAsJson":{
662
- "name":"GetSchemaAsJson",
663
- "http":{
664
- "method":"POST",
665
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/json",
666
- "responseCode":200
667
- },
668
- "input":{"shape":"GetSchemaAsJsonRequest"},
669
- "output":{"shape":"GetSchemaAsJsonResponse"},
670
- "errors":[
671
- {"shape":"InternalServiceException"},
672
- {"shape":"InvalidArnException"},
673
- {"shape":"RetryableConflictException"},
674
- {"shape":"ValidationException"},
675
- {"shape":"LimitExceededException"},
676
- {"shape":"AccessDeniedException"},
677
- {"shape":"ResourceNotFoundException"},
678
- {"shape":"ValidationException"}
679
- ]
680
- },
681
- "GetTypedLinkFacetInformation":{
682
- "name":"GetTypedLinkFacetInformation",
683
- "http":{
684
- "method":"POST",
685
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/get",
686
- "responseCode":200
687
- },
688
- "input":{"shape":"GetTypedLinkFacetInformationRequest"},
689
- "output":{"shape":"GetTypedLinkFacetInformationResponse"},
690
- "errors":[
691
- {"shape":"InternalServiceException"},
692
- {"shape":"InvalidArnException"},
693
- {"shape":"RetryableConflictException"},
694
- {"shape":"ValidationException"},
695
- {"shape":"LimitExceededException"},
696
- {"shape":"AccessDeniedException"},
697
- {"shape":"ResourceNotFoundException"},
698
- {"shape":"InvalidNextTokenException"},
699
- {"shape":"FacetNotFoundException"}
700
- ]
701
- },
702
- "ListAppliedSchemaArns":{
703
- "name":"ListAppliedSchemaArns",
704
- "http":{
705
- "method":"POST",
706
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/applied",
707
- "responseCode":200
708
- },
709
- "input":{"shape":"ListAppliedSchemaArnsRequest"},
710
- "output":{"shape":"ListAppliedSchemaArnsResponse"},
711
- "errors":[
712
- {"shape":"InternalServiceException"},
713
- {"shape":"InvalidArnException"},
714
- {"shape":"RetryableConflictException"},
715
- {"shape":"ValidationException"},
716
- {"shape":"LimitExceededException"},
717
- {"shape":"AccessDeniedException"},
718
- {"shape":"ResourceNotFoundException"},
719
- {"shape":"InvalidNextTokenException"}
720
- ]
721
- },
722
- "ListAttachedIndices":{
723
- "name":"ListAttachedIndices",
724
- "http":{
725
- "method":"POST",
726
- "requestUri":"/amazonclouddirectory/2017-01-11/object/indices",
727
- "responseCode":200
728
- },
729
- "input":{"shape":"ListAttachedIndicesRequest"},
730
- "output":{"shape":"ListAttachedIndicesResponse"},
731
- "errors":[
732
- {"shape":"InternalServiceException"},
733
- {"shape":"InvalidArnException"},
734
- {"shape":"RetryableConflictException"},
735
- {"shape":"ValidationException"},
736
- {"shape":"LimitExceededException"},
737
- {"shape":"AccessDeniedException"},
738
- {"shape":"DirectoryNotEnabledException"},
739
- {"shape":"ResourceNotFoundException"}
740
- ]
741
- },
742
- "ListDevelopmentSchemaArns":{
743
- "name":"ListDevelopmentSchemaArns",
744
- "http":{
745
- "method":"POST",
746
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/development",
747
- "responseCode":200
748
- },
749
- "input":{"shape":"ListDevelopmentSchemaArnsRequest"},
750
- "output":{"shape":"ListDevelopmentSchemaArnsResponse"},
751
- "errors":[
752
- {"shape":"InternalServiceException"},
753
- {"shape":"InvalidArnException"},
754
- {"shape":"RetryableConflictException"},
755
- {"shape":"ValidationException"},
756
- {"shape":"LimitExceededException"},
757
- {"shape":"AccessDeniedException"},
758
- {"shape":"ResourceNotFoundException"},
759
- {"shape":"InvalidNextTokenException"}
760
- ]
761
- },
762
- "ListDirectories":{
763
- "name":"ListDirectories",
764
- "http":{
765
- "method":"POST",
766
- "requestUri":"/amazonclouddirectory/2017-01-11/directory/list",
767
- "responseCode":200
768
- },
769
- "input":{"shape":"ListDirectoriesRequest"},
770
- "output":{"shape":"ListDirectoriesResponse"},
771
- "errors":[
772
- {"shape":"InternalServiceException"},
773
- {"shape":"InvalidArnException"},
774
- {"shape":"RetryableConflictException"},
775
- {"shape":"ValidationException"},
776
- {"shape":"LimitExceededException"},
777
- {"shape":"AccessDeniedException"},
778
- {"shape":"InvalidNextTokenException"}
779
- ]
780
- },
781
- "ListFacetAttributes":{
782
- "name":"ListFacetAttributes",
783
- "http":{
784
- "method":"POST",
785
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/attributes",
786
- "responseCode":200
787
- },
788
- "input":{"shape":"ListFacetAttributesRequest"},
789
- "output":{"shape":"ListFacetAttributesResponse"},
790
- "errors":[
791
- {"shape":"InternalServiceException"},
792
- {"shape":"InvalidArnException"},
793
- {"shape":"RetryableConflictException"},
794
- {"shape":"ValidationException"},
795
- {"shape":"LimitExceededException"},
796
- {"shape":"AccessDeniedException"},
797
- {"shape":"ResourceNotFoundException"},
798
- {"shape":"FacetNotFoundException"},
799
- {"shape":"InvalidNextTokenException"}
800
- ]
801
- },
802
- "ListFacetNames":{
803
- "name":"ListFacetNames",
804
- "http":{
805
- "method":"POST",
806
- "requestUri":"/amazonclouddirectory/2017-01-11/facet/list",
807
- "responseCode":200
808
- },
809
- "input":{"shape":"ListFacetNamesRequest"},
810
- "output":{"shape":"ListFacetNamesResponse"},
811
- "errors":[
812
- {"shape":"InternalServiceException"},
813
- {"shape":"InvalidArnException"},
814
- {"shape":"RetryableConflictException"},
815
- {"shape":"ValidationException"},
816
- {"shape":"LimitExceededException"},
817
- {"shape":"AccessDeniedException"},
818
- {"shape":"ResourceNotFoundException"},
819
- {"shape":"InvalidNextTokenException"}
820
- ]
821
- },
822
- "ListIncomingTypedLinks":{
823
- "name":"ListIncomingTypedLinks",
824
- "http":{
825
- "method":"POST",
826
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/incoming",
827
- "responseCode":200
828
- },
829
- "input":{"shape":"ListIncomingTypedLinksRequest"},
830
- "output":{"shape":"ListIncomingTypedLinksResponse"},
831
- "errors":[
832
- {"shape":"InternalServiceException"},
833
- {"shape":"InvalidArnException"},
834
- {"shape":"RetryableConflictException"},
835
- {"shape":"ValidationException"},
836
- {"shape":"LimitExceededException"},
837
- {"shape":"AccessDeniedException"},
838
- {"shape":"DirectoryNotEnabledException"},
839
- {"shape":"ResourceNotFoundException"},
840
- {"shape":"InvalidNextTokenException"},
841
- {"shape":"FacetValidationException"}
842
- ]
843
- },
844
- "ListIndex":{
845
- "name":"ListIndex",
846
- "http":{
847
- "method":"POST",
848
- "requestUri":"/amazonclouddirectory/2017-01-11/index/targets",
849
- "responseCode":200
850
- },
851
- "input":{"shape":"ListIndexRequest"},
852
- "output":{"shape":"ListIndexResponse"},
853
- "errors":[
854
- {"shape":"InternalServiceException"},
855
- {"shape":"InvalidArnException"},
856
- {"shape":"RetryableConflictException"},
857
- {"shape":"FacetValidationException"},
858
- {"shape":"ValidationException"},
859
- {"shape":"LimitExceededException"},
860
- {"shape":"AccessDeniedException"},
861
- {"shape":"DirectoryNotEnabledException"},
862
- {"shape":"InvalidNextTokenException"},
863
- {"shape":"ResourceNotFoundException"},
864
- {"shape":"NotIndexException"}
865
- ]
866
- },
867
- "ListObjectAttributes":{
868
- "name":"ListObjectAttributes",
869
- "http":{
870
- "method":"POST",
871
- "requestUri":"/amazonclouddirectory/2017-01-11/object/attributes",
872
- "responseCode":200
873
- },
874
- "input":{"shape":"ListObjectAttributesRequest"},
875
- "output":{"shape":"ListObjectAttributesResponse"},
876
- "errors":[
877
- {"shape":"InternalServiceException"},
878
- {"shape":"InvalidArnException"},
879
- {"shape":"RetryableConflictException"},
880
- {"shape":"ValidationException"},
881
- {"shape":"LimitExceededException"},
882
- {"shape":"AccessDeniedException"},
883
- {"shape":"DirectoryNotEnabledException"},
884
- {"shape":"ResourceNotFoundException"},
885
- {"shape":"InvalidNextTokenException"},
886
- {"shape":"FacetValidationException"}
887
- ]
888
- },
889
- "ListObjectChildren":{
890
- "name":"ListObjectChildren",
891
- "http":{
892
- "method":"POST",
893
- "requestUri":"/amazonclouddirectory/2017-01-11/object/children",
894
- "responseCode":200
895
- },
896
- "input":{"shape":"ListObjectChildrenRequest"},
897
- "output":{"shape":"ListObjectChildrenResponse"},
898
- "errors":[
899
- {"shape":"InternalServiceException"},
900
- {"shape":"InvalidArnException"},
901
- {"shape":"RetryableConflictException"},
902
- {"shape":"ValidationException"},
903
- {"shape":"LimitExceededException"},
904
- {"shape":"AccessDeniedException"},
905
- {"shape":"DirectoryNotEnabledException"},
906
- {"shape":"ResourceNotFoundException"},
907
- {"shape":"InvalidNextTokenException"},
908
- {"shape":"NotNodeException"}
909
- ]
910
- },
911
- "ListObjectParentPaths":{
912
- "name":"ListObjectParentPaths",
913
- "http":{
914
- "method":"POST",
915
- "requestUri":"/amazonclouddirectory/2017-01-11/object/parentpaths",
916
- "responseCode":200
917
- },
918
- "input":{"shape":"ListObjectParentPathsRequest"},
919
- "output":{"shape":"ListObjectParentPathsResponse"},
920
- "errors":[
921
- {"shape":"InternalServiceException"},
922
- {"shape":"InvalidArnException"},
923
- {"shape":"RetryableConflictException"},
924
- {"shape":"ValidationException"},
925
- {"shape":"LimitExceededException"},
926
- {"shape":"AccessDeniedException"},
927
- {"shape":"DirectoryNotEnabledException"},
928
- {"shape":"InvalidNextTokenException"},
929
- {"shape":"ResourceNotFoundException"}
930
- ]
931
- },
932
- "ListObjectParents":{
933
- "name":"ListObjectParents",
934
- "http":{
935
- "method":"POST",
936
- "requestUri":"/amazonclouddirectory/2017-01-11/object/parent",
937
- "responseCode":200
938
- },
939
- "input":{"shape":"ListObjectParentsRequest"},
940
- "output":{"shape":"ListObjectParentsResponse"},
941
- "errors":[
942
- {"shape":"InternalServiceException"},
943
- {"shape":"InvalidArnException"},
944
- {"shape":"RetryableConflictException"},
945
- {"shape":"ValidationException"},
946
- {"shape":"LimitExceededException"},
947
- {"shape":"AccessDeniedException"},
948
- {"shape":"DirectoryNotEnabledException"},
949
- {"shape":"ResourceNotFoundException"},
950
- {"shape":"InvalidNextTokenException"},
951
- {"shape":"CannotListParentOfRootException"}
952
- ]
953
- },
954
- "ListObjectPolicies":{
955
- "name":"ListObjectPolicies",
956
- "http":{
957
- "method":"POST",
958
- "requestUri":"/amazonclouddirectory/2017-01-11/object/policy",
959
- "responseCode":200
960
- },
961
- "input":{"shape":"ListObjectPoliciesRequest"},
962
- "output":{"shape":"ListObjectPoliciesResponse"},
963
- "errors":[
964
- {"shape":"InternalServiceException"},
965
- {"shape":"InvalidArnException"},
966
- {"shape":"RetryableConflictException"},
967
- {"shape":"ValidationException"},
968
- {"shape":"LimitExceededException"},
969
- {"shape":"AccessDeniedException"},
970
- {"shape":"DirectoryNotEnabledException"},
971
- {"shape":"ResourceNotFoundException"},
972
- {"shape":"InvalidNextTokenException"}
973
- ]
974
- },
975
- "ListOutgoingTypedLinks":{
976
- "name":"ListOutgoingTypedLinks",
977
- "http":{
978
- "method":"POST",
979
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/outgoing",
980
- "responseCode":200
981
- },
982
- "input":{"shape":"ListOutgoingTypedLinksRequest"},
983
- "output":{"shape":"ListOutgoingTypedLinksResponse"},
984
- "errors":[
985
- {"shape":"InternalServiceException"},
986
- {"shape":"InvalidArnException"},
987
- {"shape":"RetryableConflictException"},
988
- {"shape":"ValidationException"},
989
- {"shape":"LimitExceededException"},
990
- {"shape":"AccessDeniedException"},
991
- {"shape":"DirectoryNotEnabledException"},
992
- {"shape":"ResourceNotFoundException"},
993
- {"shape":"InvalidNextTokenException"},
994
- {"shape":"FacetValidationException"}
995
- ]
996
- },
997
- "ListPolicyAttachments":{
998
- "name":"ListPolicyAttachments",
999
- "http":{
1000
- "method":"POST",
1001
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/attachment",
1002
- "responseCode":200
1003
- },
1004
- "input":{"shape":"ListPolicyAttachmentsRequest"},
1005
- "output":{"shape":"ListPolicyAttachmentsResponse"},
1006
- "errors":[
1007
- {"shape":"InternalServiceException"},
1008
- {"shape":"InvalidArnException"},
1009
- {"shape":"RetryableConflictException"},
1010
- {"shape":"ValidationException"},
1011
- {"shape":"LimitExceededException"},
1012
- {"shape":"AccessDeniedException"},
1013
- {"shape":"DirectoryNotEnabledException"},
1014
- {"shape":"InvalidNextTokenException"},
1015
- {"shape":"ResourceNotFoundException"},
1016
- {"shape":"NotPolicyException"}
1017
- ]
1018
- },
1019
- "ListPublishedSchemaArns":{
1020
- "name":"ListPublishedSchemaArns",
1021
- "http":{
1022
- "method":"POST",
1023
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/published",
1024
- "responseCode":200
1025
- },
1026
- "input":{"shape":"ListPublishedSchemaArnsRequest"},
1027
- "output":{"shape":"ListPublishedSchemaArnsResponse"},
1028
- "errors":[
1029
- {"shape":"InternalServiceException"},
1030
- {"shape":"InvalidArnException"},
1031
- {"shape":"RetryableConflictException"},
1032
- {"shape":"ValidationException"},
1033
- {"shape":"LimitExceededException"},
1034
- {"shape":"AccessDeniedException"},
1035
- {"shape":"ResourceNotFoundException"},
1036
- {"shape":"InvalidNextTokenException"}
1037
- ]
1038
- },
1039
- "ListTagsForResource":{
1040
- "name":"ListTagsForResource",
1041
- "http":{
1042
- "method":"POST",
1043
- "requestUri":"/amazonclouddirectory/2017-01-11/tags",
1044
- "responseCode":200
1045
- },
1046
- "input":{"shape":"ListTagsForResourceRequest"},
1047
- "output":{"shape":"ListTagsForResourceResponse"},
1048
- "errors":[
1049
- {"shape":"InternalServiceException"},
1050
- {"shape":"InvalidArnException"},
1051
- {"shape":"RetryableConflictException"},
1052
- {"shape":"ValidationException"},
1053
- {"shape":"LimitExceededException"},
1054
- {"shape":"AccessDeniedException"},
1055
- {"shape":"ResourceNotFoundException"},
1056
- {"shape":"InvalidTaggingRequestException"}
1057
- ]
1058
- },
1059
- "ListTypedLinkFacetAttributes":{
1060
- "name":"ListTypedLinkFacetAttributes",
1061
- "http":{
1062
- "method":"POST",
1063
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/attributes",
1064
- "responseCode":200
1065
- },
1066
- "input":{"shape":"ListTypedLinkFacetAttributesRequest"},
1067
- "output":{"shape":"ListTypedLinkFacetAttributesResponse"},
1068
- "errors":[
1069
- {"shape":"InternalServiceException"},
1070
- {"shape":"InvalidArnException"},
1071
- {"shape":"RetryableConflictException"},
1072
- {"shape":"ValidationException"},
1073
- {"shape":"LimitExceededException"},
1074
- {"shape":"AccessDeniedException"},
1075
- {"shape":"ResourceNotFoundException"},
1076
- {"shape":"FacetNotFoundException"},
1077
- {"shape":"InvalidNextTokenException"}
1078
- ]
1079
- },
1080
- "ListTypedLinkFacetNames":{
1081
- "name":"ListTypedLinkFacetNames",
1082
- "http":{
1083
- "method":"POST",
1084
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/list",
1085
- "responseCode":200
1086
- },
1087
- "input":{"shape":"ListTypedLinkFacetNamesRequest"},
1088
- "output":{"shape":"ListTypedLinkFacetNamesResponse"},
1089
- "errors":[
1090
- {"shape":"InternalServiceException"},
1091
- {"shape":"InvalidArnException"},
1092
- {"shape":"RetryableConflictException"},
1093
- {"shape":"ValidationException"},
1094
- {"shape":"LimitExceededException"},
1095
- {"shape":"AccessDeniedException"},
1096
- {"shape":"ResourceNotFoundException"},
1097
- {"shape":"InvalidNextTokenException"}
1098
- ]
1099
- },
1100
- "LookupPolicy":{
1101
- "name":"LookupPolicy",
1102
- "http":{
1103
- "method":"POST",
1104
- "requestUri":"/amazonclouddirectory/2017-01-11/policy/lookup",
1105
- "responseCode":200
1106
- },
1107
- "input":{"shape":"LookupPolicyRequest"},
1108
- "output":{"shape":"LookupPolicyResponse"},
1109
- "errors":[
1110
- {"shape":"InternalServiceException"},
1111
- {"shape":"InvalidArnException"},
1112
- {"shape":"RetryableConflictException"},
1113
- {"shape":"ValidationException"},
1114
- {"shape":"LimitExceededException"},
1115
- {"shape":"AccessDeniedException"},
1116
- {"shape":"DirectoryNotEnabledException"},
1117
- {"shape":"InvalidNextTokenException"},
1118
- {"shape":"ResourceNotFoundException"}
1119
- ]
1120
- },
1121
- "PublishSchema":{
1122
- "name":"PublishSchema",
1123
- "http":{
1124
- "method":"PUT",
1125
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/publish",
1126
- "responseCode":200
1127
- },
1128
- "input":{"shape":"PublishSchemaRequest"},
1129
- "output":{"shape":"PublishSchemaResponse"},
1130
- "errors":[
1131
- {"shape":"InternalServiceException"},
1132
- {"shape":"InvalidArnException"},
1133
- {"shape":"RetryableConflictException"},
1134
- {"shape":"ValidationException"},
1135
- {"shape":"LimitExceededException"},
1136
- {"shape":"AccessDeniedException"},
1137
- {"shape":"ResourceNotFoundException"},
1138
- {"shape":"SchemaAlreadyPublishedException"}
1139
- ]
1140
- },
1141
- "PutSchemaFromJson":{
1142
- "name":"PutSchemaFromJson",
1143
- "http":{
1144
- "method":"PUT",
1145
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/json",
1146
- "responseCode":200
1147
- },
1148
- "input":{"shape":"PutSchemaFromJsonRequest"},
1149
- "output":{"shape":"PutSchemaFromJsonResponse"},
1150
- "errors":[
1151
- {"shape":"InternalServiceException"},
1152
- {"shape":"InvalidArnException"},
1153
- {"shape":"RetryableConflictException"},
1154
- {"shape":"ValidationException"},
1155
- {"shape":"LimitExceededException"},
1156
- {"shape":"AccessDeniedException"},
1157
- {"shape":"InvalidSchemaDocException"},
1158
- {"shape":"InvalidRuleException"}
1159
- ]
1160
- },
1161
- "RemoveFacetFromObject":{
1162
- "name":"RemoveFacetFromObject",
1163
- "http":{
1164
- "method":"PUT",
1165
- "requestUri":"/amazonclouddirectory/2017-01-11/object/facets/delete",
1166
- "responseCode":200
1167
- },
1168
- "input":{"shape":"RemoveFacetFromObjectRequest"},
1169
- "output":{"shape":"RemoveFacetFromObjectResponse"},
1170
- "errors":[
1171
- {"shape":"InternalServiceException"},
1172
- {"shape":"InvalidArnException"},
1173
- {"shape":"RetryableConflictException"},
1174
- {"shape":"ValidationException"},
1175
- {"shape":"LimitExceededException"},
1176
- {"shape":"AccessDeniedException"},
1177
- {"shape":"DirectoryNotEnabledException"},
1178
- {"shape":"ResourceNotFoundException"},
1179
- {"shape":"FacetValidationException"}
1180
- ]
1181
- },
1182
- "TagResource":{
1183
- "name":"TagResource",
1184
- "http":{
1185
- "method":"PUT",
1186
- "requestUri":"/amazonclouddirectory/2017-01-11/tags/add",
1187
- "responseCode":200
1188
- },
1189
- "input":{"shape":"TagResourceRequest"},
1190
- "output":{"shape":"TagResourceResponse"},
1191
- "errors":[
1192
- {"shape":"InternalServiceException"},
1193
- {"shape":"InvalidArnException"},
1194
- {"shape":"RetryableConflictException"},
1195
- {"shape":"ValidationException"},
1196
- {"shape":"LimitExceededException"},
1197
- {"shape":"AccessDeniedException"},
1198
- {"shape":"ResourceNotFoundException"},
1199
- {"shape":"InvalidTaggingRequestException"}
1200
- ]
1201
- },
1202
- "UntagResource":{
1203
- "name":"UntagResource",
1204
- "http":{
1205
- "method":"PUT",
1206
- "requestUri":"/amazonclouddirectory/2017-01-11/tags/remove",
1207
- "responseCode":200
1208
- },
1209
- "input":{"shape":"UntagResourceRequest"},
1210
- "output":{"shape":"UntagResourceResponse"},
1211
- "errors":[
1212
- {"shape":"InternalServiceException"},
1213
- {"shape":"InvalidArnException"},
1214
- {"shape":"RetryableConflictException"},
1215
- {"shape":"ValidationException"},
1216
- {"shape":"LimitExceededException"},
1217
- {"shape":"AccessDeniedException"},
1218
- {"shape":"ResourceNotFoundException"},
1219
- {"shape":"InvalidTaggingRequestException"}
1220
- ]
1221
- },
1222
- "UpdateFacet":{
1223
- "name":"UpdateFacet",
1224
- "http":{
1225
- "method":"PUT",
1226
- "requestUri":"/amazonclouddirectory/2017-01-11/facet",
1227
- "responseCode":200
1228
- },
1229
- "input":{"shape":"UpdateFacetRequest"},
1230
- "output":{"shape":"UpdateFacetResponse"},
1231
- "errors":[
1232
- {"shape":"InternalServiceException"},
1233
- {"shape":"InvalidArnException"},
1234
- {"shape":"RetryableConflictException"},
1235
- {"shape":"ValidationException"},
1236
- {"shape":"LimitExceededException"},
1237
- {"shape":"AccessDeniedException"},
1238
- {"shape":"InvalidFacetUpdateException"},
1239
- {"shape":"ResourceNotFoundException"},
1240
- {"shape":"FacetNotFoundException"},
1241
- {"shape":"InvalidRuleException"}
1242
- ]
1243
- },
1244
- "UpdateLinkAttributes":{
1245
- "name":"UpdateLinkAttributes",
1246
- "http":{
1247
- "method":"POST",
1248
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/attributes/update",
1249
- "responseCode":200
1250
- },
1251
- "input":{"shape":"UpdateLinkAttributesRequest"},
1252
- "output":{"shape":"UpdateLinkAttributesResponse"},
1253
- "errors":[
1254
- {"shape":"InternalServiceException"},
1255
- {"shape":"InvalidArnException"},
1256
- {"shape":"RetryableConflictException"},
1257
- {"shape":"ValidationException"},
1258
- {"shape":"LimitExceededException"},
1259
- {"shape":"AccessDeniedException"},
1260
- {"shape":"DirectoryNotEnabledException"},
1261
- {"shape":"ResourceNotFoundException"},
1262
- {"shape":"FacetValidationException"}
1263
- ]
1264
- },
1265
- "UpdateObjectAttributes":{
1266
- "name":"UpdateObjectAttributes",
1267
- "http":{
1268
- "method":"PUT",
1269
- "requestUri":"/amazonclouddirectory/2017-01-11/object/update",
1270
- "responseCode":200
1271
- },
1272
- "input":{"shape":"UpdateObjectAttributesRequest"},
1273
- "output":{"shape":"UpdateObjectAttributesResponse"},
1274
- "errors":[
1275
- {"shape":"InternalServiceException"},
1276
- {"shape":"InvalidArnException"},
1277
- {"shape":"RetryableConflictException"},
1278
- {"shape":"ValidationException"},
1279
- {"shape":"LimitExceededException"},
1280
- {"shape":"AccessDeniedException"},
1281
- {"shape":"DirectoryNotEnabledException"},
1282
- {"shape":"ResourceNotFoundException"},
1283
- {"shape":"LinkNameAlreadyInUseException"},
1284
- {"shape":"FacetValidationException"}
1285
- ]
1286
- },
1287
- "UpdateSchema":{
1288
- "name":"UpdateSchema",
1289
- "http":{
1290
- "method":"PUT",
1291
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/update",
1292
- "responseCode":200
1293
- },
1294
- "input":{"shape":"UpdateSchemaRequest"},
1295
- "output":{"shape":"UpdateSchemaResponse"},
1296
- "errors":[
1297
- {"shape":"InternalServiceException"},
1298
- {"shape":"InvalidArnException"},
1299
- {"shape":"RetryableConflictException"},
1300
- {"shape":"ValidationException"},
1301
- {"shape":"LimitExceededException"},
1302
- {"shape":"AccessDeniedException"},
1303
- {"shape":"ResourceNotFoundException"}
1304
- ]
1305
- },
1306
- "UpdateTypedLinkFacet":{
1307
- "name":"UpdateTypedLinkFacet",
1308
- "http":{
1309
- "method":"PUT",
1310
- "requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet",
1311
- "responseCode":200
1312
- },
1313
- "input":{"shape":"UpdateTypedLinkFacetRequest"},
1314
- "output":{"shape":"UpdateTypedLinkFacetResponse"},
1315
- "errors":[
1316
- {"shape":"InternalServiceException"},
1317
- {"shape":"InvalidArnException"},
1318
- {"shape":"RetryableConflictException"},
1319
- {"shape":"ValidationException"},
1320
- {"shape":"LimitExceededException"},
1321
- {"shape":"AccessDeniedException"},
1322
- {"shape":"FacetValidationException"},
1323
- {"shape":"InvalidFacetUpdateException"},
1324
- {"shape":"ResourceNotFoundException"},
1325
- {"shape":"FacetNotFoundException"},
1326
- {"shape":"InvalidRuleException"}
1327
- ]
1328
- },
1329
- "UpgradeAppliedSchema":{
1330
- "name":"UpgradeAppliedSchema",
1331
- "http":{
1332
- "method":"PUT",
1333
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/upgradeapplied",
1334
- "responseCode":200
1335
- },
1336
- "input":{"shape":"UpgradeAppliedSchemaRequest"},
1337
- "output":{"shape":"UpgradeAppliedSchemaResponse"},
1338
- "errors":[
1339
- {"shape":"InternalServiceException"},
1340
- {"shape":"InvalidArnException"},
1341
- {"shape":"RetryableConflictException"},
1342
- {"shape":"ValidationException"},
1343
- {"shape":"IncompatibleSchemaException"},
1344
- {"shape":"AccessDeniedException"},
1345
- {"shape":"ResourceNotFoundException"},
1346
- {"shape":"InvalidAttachmentException"}
1347
- ]
1348
- },
1349
- "UpgradePublishedSchema":{
1350
- "name":"UpgradePublishedSchema",
1351
- "http":{
1352
- "method":"PUT",
1353
- "requestUri":"/amazonclouddirectory/2017-01-11/schema/upgradepublished",
1354
- "responseCode":200
1355
- },
1356
- "input":{"shape":"UpgradePublishedSchemaRequest"},
1357
- "output":{"shape":"UpgradePublishedSchemaResponse"},
1358
- "errors":[
1359
- {"shape":"InternalServiceException"},
1360
- {"shape":"InvalidArnException"},
1361
- {"shape":"RetryableConflictException"},
1362
- {"shape":"ValidationException"},
1363
- {"shape":"IncompatibleSchemaException"},
1364
- {"shape":"AccessDeniedException"},
1365
- {"shape":"ResourceNotFoundException"},
1366
- {"shape":"InvalidAttachmentException"},
1367
- {"shape":"LimitExceededException"}
1368
- ]
1369
- }
1370
- },
1371
- "shapes":{
1372
- "AccessDeniedException":{
1373
- "type":"structure",
1374
- "members":{
1375
- "Message":{"shape":"ExceptionMessage"}
1376
- },
1377
- "error":{"httpStatusCode":403},
1378
- "exception":true
1379
- },
1380
- "AddFacetToObjectRequest":{
1381
- "type":"structure",
1382
- "required":[
1383
- "DirectoryArn",
1384
- "SchemaFacet",
1385
- "ObjectReference"
1386
- ],
1387
- "members":{
1388
- "DirectoryArn":{
1389
- "shape":"Arn",
1390
- "location":"header",
1391
- "locationName":"x-amz-data-partition"
1392
- },
1393
- "SchemaFacet":{"shape":"SchemaFacet"},
1394
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1395
- "ObjectReference":{"shape":"ObjectReference"}
1396
- }
1397
- },
1398
- "AddFacetToObjectResponse":{
1399
- "type":"structure",
1400
- "members":{
1401
- }
1402
- },
1403
- "ApplySchemaRequest":{
1404
- "type":"structure",
1405
- "required":[
1406
- "PublishedSchemaArn",
1407
- "DirectoryArn"
1408
- ],
1409
- "members":{
1410
- "PublishedSchemaArn":{"shape":"Arn"},
1411
- "DirectoryArn":{
1412
- "shape":"Arn",
1413
- "location":"header",
1414
- "locationName":"x-amz-data-partition"
1415
- }
1416
- }
1417
- },
1418
- "ApplySchemaResponse":{
1419
- "type":"structure",
1420
- "members":{
1421
- "AppliedSchemaArn":{"shape":"Arn"},
1422
- "DirectoryArn":{"shape":"Arn"}
1423
- }
1424
- },
1425
- "Arn":{"type":"string"},
1426
- "Arns":{
1427
- "type":"list",
1428
- "member":{"shape":"Arn"}
1429
- },
1430
- "AttachObjectRequest":{
1431
- "type":"structure",
1432
- "required":[
1433
- "DirectoryArn",
1434
- "ParentReference",
1435
- "ChildReference",
1436
- "LinkName"
1437
- ],
1438
- "members":{
1439
- "DirectoryArn":{
1440
- "shape":"Arn",
1441
- "location":"header",
1442
- "locationName":"x-amz-data-partition"
1443
- },
1444
- "ParentReference":{"shape":"ObjectReference"},
1445
- "ChildReference":{"shape":"ObjectReference"},
1446
- "LinkName":{"shape":"LinkName"}
1447
- }
1448
- },
1449
- "AttachObjectResponse":{
1450
- "type":"structure",
1451
- "members":{
1452
- "AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1453
- }
1454
- },
1455
- "AttachPolicyRequest":{
1456
- "type":"structure",
1457
- "required":[
1458
- "DirectoryArn",
1459
- "PolicyReference",
1460
- "ObjectReference"
1461
- ],
1462
- "members":{
1463
- "DirectoryArn":{
1464
- "shape":"Arn",
1465
- "location":"header",
1466
- "locationName":"x-amz-data-partition"
1467
- },
1468
- "PolicyReference":{"shape":"ObjectReference"},
1469
- "ObjectReference":{"shape":"ObjectReference"}
1470
- }
1471
- },
1472
- "AttachPolicyResponse":{
1473
- "type":"structure",
1474
- "members":{
1475
- }
1476
- },
1477
- "AttachToIndexRequest":{
1478
- "type":"structure",
1479
- "required":[
1480
- "DirectoryArn",
1481
- "IndexReference",
1482
- "TargetReference"
1483
- ],
1484
- "members":{
1485
- "DirectoryArn":{
1486
- "shape":"Arn",
1487
- "location":"header",
1488
- "locationName":"x-amz-data-partition"
1489
- },
1490
- "IndexReference":{"shape":"ObjectReference"},
1491
- "TargetReference":{"shape":"ObjectReference"}
1492
- }
1493
- },
1494
- "AttachToIndexResponse":{
1495
- "type":"structure",
1496
- "members":{
1497
- "AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1498
- }
1499
- },
1500
- "AttachTypedLinkRequest":{
1501
- "type":"structure",
1502
- "required":[
1503
- "DirectoryArn",
1504
- "SourceObjectReference",
1505
- "TargetObjectReference",
1506
- "TypedLinkFacet",
1507
- "Attributes"
1508
- ],
1509
- "members":{
1510
- "DirectoryArn":{
1511
- "shape":"Arn",
1512
- "location":"header",
1513
- "locationName":"x-amz-data-partition"
1514
- },
1515
- "SourceObjectReference":{"shape":"ObjectReference"},
1516
- "TargetObjectReference":{"shape":"ObjectReference"},
1517
- "TypedLinkFacet":{"shape":"TypedLinkSchemaAndFacetName"},
1518
- "Attributes":{"shape":"AttributeNameAndValueList"}
1519
- }
1520
- },
1521
- "AttachTypedLinkResponse":{
1522
- "type":"structure",
1523
- "members":{
1524
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
1525
- }
1526
- },
1527
- "AttributeKey":{
1528
- "type":"structure",
1529
- "required":[
1530
- "SchemaArn",
1531
- "FacetName",
1532
- "Name"
1533
- ],
1534
- "members":{
1535
- "SchemaArn":{"shape":"Arn"},
1536
- "FacetName":{"shape":"FacetName"},
1537
- "Name":{"shape":"AttributeName"}
1538
- }
1539
- },
1540
- "AttributeKeyAndValue":{
1541
- "type":"structure",
1542
- "required":[
1543
- "Key",
1544
- "Value"
1545
- ],
1546
- "members":{
1547
- "Key":{"shape":"AttributeKey"},
1548
- "Value":{"shape":"TypedAttributeValue"}
1549
- }
1550
- },
1551
- "AttributeKeyAndValueList":{
1552
- "type":"list",
1553
- "member":{"shape":"AttributeKeyAndValue"}
1554
- },
1555
- "AttributeKeyList":{
1556
- "type":"list",
1557
- "member":{"shape":"AttributeKey"}
1558
- },
1559
- "AttributeName":{
1560
- "type":"string",
1561
- "max":64,
1562
- "min":1,
1563
- "pattern":"^[a-zA-Z0-9._-]*$"
1564
- },
1565
- "AttributeNameAndValue":{
1566
- "type":"structure",
1567
- "required":[
1568
- "AttributeName",
1569
- "Value"
1570
- ],
1571
- "members":{
1572
- "AttributeName":{"shape":"AttributeName"},
1573
- "Value":{"shape":"TypedAttributeValue"}
1574
- }
1575
- },
1576
- "AttributeNameAndValueList":{
1577
- "type":"list",
1578
- "member":{"shape":"AttributeNameAndValue"}
1579
- },
1580
- "AttributeNameList":{
1581
- "type":"list",
1582
- "member":{"shape":"AttributeName"}
1583
- },
1584
- "BatchAddFacetToObject":{
1585
- "type":"structure",
1586
- "required":[
1587
- "SchemaFacet",
1588
- "ObjectAttributeList",
1589
- "ObjectReference"
1590
- ],
1591
- "members":{
1592
- "SchemaFacet":{"shape":"SchemaFacet"},
1593
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1594
- "ObjectReference":{"shape":"ObjectReference"}
1595
- }
1596
- },
1597
- "BatchAddFacetToObjectResponse":{
1598
- "type":"structure",
1599
- "members":{
1600
- }
1601
- },
1602
- "BatchAttachObject":{
1603
- "type":"structure",
1604
- "required":[
1605
- "ParentReference",
1606
- "ChildReference",
1607
- "LinkName"
1608
- ],
1609
- "members":{
1610
- "ParentReference":{"shape":"ObjectReference"},
1611
- "ChildReference":{"shape":"ObjectReference"},
1612
- "LinkName":{"shape":"LinkName"}
1613
- }
1614
- },
1615
- "BatchAttachObjectResponse":{
1616
- "type":"structure",
1617
- "members":{
1618
- "attachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1619
- }
1620
- },
1621
- "BatchAttachPolicy":{
1622
- "type":"structure",
1623
- "required":[
1624
- "PolicyReference",
1625
- "ObjectReference"
1626
- ],
1627
- "members":{
1628
- "PolicyReference":{"shape":"ObjectReference"},
1629
- "ObjectReference":{"shape":"ObjectReference"}
1630
- }
1631
- },
1632
- "BatchAttachPolicyResponse":{
1633
- "type":"structure",
1634
- "members":{
1635
- }
1636
- },
1637
- "BatchAttachToIndex":{
1638
- "type":"structure",
1639
- "required":[
1640
- "IndexReference",
1641
- "TargetReference"
1642
- ],
1643
- "members":{
1644
- "IndexReference":{"shape":"ObjectReference"},
1645
- "TargetReference":{"shape":"ObjectReference"}
1646
- }
1647
- },
1648
- "BatchAttachToIndexResponse":{
1649
- "type":"structure",
1650
- "members":{
1651
- "AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1652
- }
1653
- },
1654
- "BatchAttachTypedLink":{
1655
- "type":"structure",
1656
- "required":[
1657
- "SourceObjectReference",
1658
- "TargetObjectReference",
1659
- "TypedLinkFacet",
1660
- "Attributes"
1661
- ],
1662
- "members":{
1663
- "SourceObjectReference":{"shape":"ObjectReference"},
1664
- "TargetObjectReference":{"shape":"ObjectReference"},
1665
- "TypedLinkFacet":{"shape":"TypedLinkSchemaAndFacetName"},
1666
- "Attributes":{"shape":"AttributeNameAndValueList"}
1667
- }
1668
- },
1669
- "BatchAttachTypedLinkResponse":{
1670
- "type":"structure",
1671
- "members":{
1672
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
1673
- }
1674
- },
1675
- "BatchCreateIndex":{
1676
- "type":"structure",
1677
- "required":[
1678
- "OrderedIndexedAttributeList",
1679
- "IsUnique"
1680
- ],
1681
- "members":{
1682
- "OrderedIndexedAttributeList":{"shape":"AttributeKeyList"},
1683
- "IsUnique":{"shape":"Bool"},
1684
- "ParentReference":{"shape":"ObjectReference"},
1685
- "LinkName":{"shape":"LinkName"},
1686
- "BatchReferenceName":{"shape":"BatchReferenceName"}
1687
- }
1688
- },
1689
- "BatchCreateIndexResponse":{
1690
- "type":"structure",
1691
- "members":{
1692
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1693
- }
1694
- },
1695
- "BatchCreateObject":{
1696
- "type":"structure",
1697
- "required":[
1698
- "SchemaFacet",
1699
- "ObjectAttributeList"
1700
- ],
1701
- "members":{
1702
- "SchemaFacet":{"shape":"SchemaFacetList"},
1703
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
1704
- "ParentReference":{"shape":"ObjectReference"},
1705
- "LinkName":{"shape":"LinkName"},
1706
- "BatchReferenceName":{"shape":"BatchReferenceName"}
1707
- }
1708
- },
1709
- "BatchCreateObjectResponse":{
1710
- "type":"structure",
1711
- "members":{
1712
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1713
- }
1714
- },
1715
- "BatchDeleteObject":{
1716
- "type":"structure",
1717
- "required":["ObjectReference"],
1718
- "members":{
1719
- "ObjectReference":{"shape":"ObjectReference"}
1720
- }
1721
- },
1722
- "BatchDeleteObjectResponse":{
1723
- "type":"structure",
1724
- "members":{
1725
- }
1726
- },
1727
- "BatchDetachFromIndex":{
1728
- "type":"structure",
1729
- "required":[
1730
- "IndexReference",
1731
- "TargetReference"
1732
- ],
1733
- "members":{
1734
- "IndexReference":{"shape":"ObjectReference"},
1735
- "TargetReference":{"shape":"ObjectReference"}
1736
- }
1737
- },
1738
- "BatchDetachFromIndexResponse":{
1739
- "type":"structure",
1740
- "members":{
1741
- "DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1742
- }
1743
- },
1744
- "BatchDetachObject":{
1745
- "type":"structure",
1746
- "required":[
1747
- "ParentReference",
1748
- "LinkName"
1749
- ],
1750
- "members":{
1751
- "ParentReference":{"shape":"ObjectReference"},
1752
- "LinkName":{"shape":"LinkName"},
1753
- "BatchReferenceName":{"shape":"BatchReferenceName"}
1754
- }
1755
- },
1756
- "BatchDetachObjectResponse":{
1757
- "type":"structure",
1758
- "members":{
1759
- "detachedObjectIdentifier":{"shape":"ObjectIdentifier"}
1760
- }
1761
- },
1762
- "BatchDetachPolicy":{
1763
- "type":"structure",
1764
- "required":[
1765
- "PolicyReference",
1766
- "ObjectReference"
1767
- ],
1768
- "members":{
1769
- "PolicyReference":{"shape":"ObjectReference"},
1770
- "ObjectReference":{"shape":"ObjectReference"}
1771
- }
1772
- },
1773
- "BatchDetachPolicyResponse":{
1774
- "type":"structure",
1775
- "members":{
1776
- }
1777
- },
1778
- "BatchDetachTypedLink":{
1779
- "type":"structure",
1780
- "required":["TypedLinkSpecifier"],
1781
- "members":{
1782
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
1783
- }
1784
- },
1785
- "BatchDetachTypedLinkResponse":{
1786
- "type":"structure",
1787
- "members":{
1788
- }
1789
- },
1790
- "BatchGetLinkAttributes":{
1791
- "type":"structure",
1792
- "required":[
1793
- "TypedLinkSpecifier",
1794
- "AttributeNames"
1795
- ],
1796
- "members":{
1797
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
1798
- "AttributeNames":{"shape":"AttributeNameList"}
1799
- }
1800
- },
1801
- "BatchGetLinkAttributesResponse":{
1802
- "type":"structure",
1803
- "members":{
1804
- "Attributes":{"shape":"AttributeKeyAndValueList"}
1805
- }
1806
- },
1807
- "BatchGetObjectAttributes":{
1808
- "type":"structure",
1809
- "required":[
1810
- "ObjectReference",
1811
- "SchemaFacet",
1812
- "AttributeNames"
1813
- ],
1814
- "members":{
1815
- "ObjectReference":{"shape":"ObjectReference"},
1816
- "SchemaFacet":{"shape":"SchemaFacet"},
1817
- "AttributeNames":{"shape":"AttributeNameList"}
1818
- }
1819
- },
1820
- "BatchGetObjectAttributesResponse":{
1821
- "type":"structure",
1822
- "members":{
1823
- "Attributes":{"shape":"AttributeKeyAndValueList"}
1824
- }
1825
- },
1826
- "BatchGetObjectInformation":{
1827
- "type":"structure",
1828
- "required":["ObjectReference"],
1829
- "members":{
1830
- "ObjectReference":{"shape":"ObjectReference"}
1831
- }
1832
- },
1833
- "BatchGetObjectInformationResponse":{
1834
- "type":"structure",
1835
- "members":{
1836
- "SchemaFacets":{"shape":"SchemaFacetList"},
1837
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
1838
- }
1839
- },
1840
- "BatchListAttachedIndices":{
1841
- "type":"structure",
1842
- "required":["TargetReference"],
1843
- "members":{
1844
- "TargetReference":{"shape":"ObjectReference"},
1845
- "NextToken":{"shape":"NextToken"},
1846
- "MaxResults":{"shape":"NumberResults"}
1847
- }
1848
- },
1849
- "BatchListAttachedIndicesResponse":{
1850
- "type":"structure",
1851
- "members":{
1852
- "IndexAttachments":{"shape":"IndexAttachmentList"},
1853
- "NextToken":{"shape":"NextToken"}
1854
- }
1855
- },
1856
- "BatchListIncomingTypedLinks":{
1857
- "type":"structure",
1858
- "required":["ObjectReference"],
1859
- "members":{
1860
- "ObjectReference":{"shape":"ObjectReference"},
1861
- "FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
1862
- "FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
1863
- "NextToken":{"shape":"NextToken"},
1864
- "MaxResults":{"shape":"NumberResults"}
1865
- }
1866
- },
1867
- "BatchListIncomingTypedLinksResponse":{
1868
- "type":"structure",
1869
- "members":{
1870
- "LinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
1871
- "NextToken":{"shape":"NextToken"}
1872
- }
1873
- },
1874
- "BatchListIndex":{
1875
- "type":"structure",
1876
- "required":["IndexReference"],
1877
- "members":{
1878
- "RangesOnIndexedValues":{"shape":"ObjectAttributeRangeList"},
1879
- "IndexReference":{"shape":"ObjectReference"},
1880
- "MaxResults":{"shape":"NumberResults"},
1881
- "NextToken":{"shape":"NextToken"}
1882
- }
1883
- },
1884
- "BatchListIndexResponse":{
1885
- "type":"structure",
1886
- "members":{
1887
- "IndexAttachments":{"shape":"IndexAttachmentList"},
1888
- "NextToken":{"shape":"NextToken"}
1889
- }
1890
- },
1891
- "BatchListObjectAttributes":{
1892
- "type":"structure",
1893
- "required":["ObjectReference"],
1894
- "members":{
1895
- "ObjectReference":{"shape":"ObjectReference"},
1896
- "NextToken":{"shape":"NextToken"},
1897
- "MaxResults":{"shape":"NumberResults"},
1898
- "FacetFilter":{"shape":"SchemaFacet"}
1899
- }
1900
- },
1901
- "BatchListObjectAttributesResponse":{
1902
- "type":"structure",
1903
- "members":{
1904
- "Attributes":{"shape":"AttributeKeyAndValueList"},
1905
- "NextToken":{"shape":"NextToken"}
1906
- }
1907
- },
1908
- "BatchListObjectChildren":{
1909
- "type":"structure",
1910
- "required":["ObjectReference"],
1911
- "members":{
1912
- "ObjectReference":{"shape":"ObjectReference"},
1913
- "NextToken":{"shape":"NextToken"},
1914
- "MaxResults":{"shape":"NumberResults"}
1915
- }
1916
- },
1917
- "BatchListObjectChildrenResponse":{
1918
- "type":"structure",
1919
- "members":{
1920
- "Children":{"shape":"LinkNameToObjectIdentifierMap"},
1921
- "NextToken":{"shape":"NextToken"}
1922
- }
1923
- },
1924
- "BatchListObjectParentPaths":{
1925
- "type":"structure",
1926
- "required":["ObjectReference"],
1927
- "members":{
1928
- "ObjectReference":{"shape":"ObjectReference"},
1929
- "NextToken":{"shape":"NextToken"},
1930
- "MaxResults":{"shape":"NumberResults"}
1931
- }
1932
- },
1933
- "BatchListObjectParentPathsResponse":{
1934
- "type":"structure",
1935
- "members":{
1936
- "PathToObjectIdentifiersList":{"shape":"PathToObjectIdentifiersList"},
1937
- "NextToken":{"shape":"NextToken"}
1938
- }
1939
- },
1940
- "BatchListObjectPolicies":{
1941
- "type":"structure",
1942
- "required":["ObjectReference"],
1943
- "members":{
1944
- "ObjectReference":{"shape":"ObjectReference"},
1945
- "NextToken":{"shape":"NextToken"},
1946
- "MaxResults":{"shape":"NumberResults"}
1947
- }
1948
- },
1949
- "BatchListObjectPoliciesResponse":{
1950
- "type":"structure",
1951
- "members":{
1952
- "AttachedPolicyIds":{"shape":"ObjectIdentifierList"},
1953
- "NextToken":{"shape":"NextToken"}
1954
- }
1955
- },
1956
- "BatchListOutgoingTypedLinks":{
1957
- "type":"structure",
1958
- "required":["ObjectReference"],
1959
- "members":{
1960
- "ObjectReference":{"shape":"ObjectReference"},
1961
- "FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
1962
- "FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
1963
- "NextToken":{"shape":"NextToken"},
1964
- "MaxResults":{"shape":"NumberResults"}
1965
- }
1966
- },
1967
- "BatchListOutgoingTypedLinksResponse":{
1968
- "type":"structure",
1969
- "members":{
1970
- "TypedLinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
1971
- "NextToken":{"shape":"NextToken"}
1972
- }
1973
- },
1974
- "BatchListPolicyAttachments":{
1975
- "type":"structure",
1976
- "required":["PolicyReference"],
1977
- "members":{
1978
- "PolicyReference":{"shape":"ObjectReference"},
1979
- "NextToken":{"shape":"NextToken"},
1980
- "MaxResults":{"shape":"NumberResults"}
1981
- }
1982
- },
1983
- "BatchListPolicyAttachmentsResponse":{
1984
- "type":"structure",
1985
- "members":{
1986
- "ObjectIdentifiers":{"shape":"ObjectIdentifierList"},
1987
- "NextToken":{"shape":"NextToken"}
1988
- }
1989
- },
1990
- "BatchLookupPolicy":{
1991
- "type":"structure",
1992
- "required":["ObjectReference"],
1993
- "members":{
1994
- "ObjectReference":{"shape":"ObjectReference"},
1995
- "NextToken":{"shape":"NextToken"},
1996
- "MaxResults":{"shape":"NumberResults"}
1997
- }
1998
- },
1999
- "BatchLookupPolicyResponse":{
2000
- "type":"structure",
2001
- "members":{
2002
- "PolicyToPathList":{"shape":"PolicyToPathList"},
2003
- "NextToken":{"shape":"NextToken"}
2004
- }
2005
- },
2006
- "BatchOperationIndex":{"type":"integer"},
2007
- "BatchReadException":{
2008
- "type":"structure",
2009
- "members":{
2010
- "Type":{"shape":"BatchReadExceptionType"},
2011
- "Message":{"shape":"ExceptionMessage"}
2012
- }
2013
- },
2014
- "BatchReadExceptionType":{
2015
- "type":"string",
2016
- "enum":[
2017
- "ValidationException",
2018
- "InvalidArnException",
2019
- "ResourceNotFoundException",
2020
- "InvalidNextTokenException",
2021
- "AccessDeniedException",
2022
- "NotNodeException",
2023
- "FacetValidationException",
2024
- "CannotListParentOfRootException",
2025
- "NotIndexException",
2026
- "NotPolicyException",
2027
- "DirectoryNotEnabledException",
2028
- "LimitExceededException",
2029
- "InternalServiceException"
2030
- ]
2031
- },
2032
- "BatchReadOperation":{
2033
- "type":"structure",
2034
- "members":{
2035
- "ListObjectAttributes":{"shape":"BatchListObjectAttributes"},
2036
- "ListObjectChildren":{"shape":"BatchListObjectChildren"},
2037
- "ListAttachedIndices":{"shape":"BatchListAttachedIndices"},
2038
- "ListObjectParentPaths":{"shape":"BatchListObjectParentPaths"},
2039
- "GetObjectInformation":{"shape":"BatchGetObjectInformation"},
2040
- "GetObjectAttributes":{"shape":"BatchGetObjectAttributes"},
2041
- "ListObjectPolicies":{"shape":"BatchListObjectPolicies"},
2042
- "ListPolicyAttachments":{"shape":"BatchListPolicyAttachments"},
2043
- "LookupPolicy":{"shape":"BatchLookupPolicy"},
2044
- "ListIndex":{"shape":"BatchListIndex"},
2045
- "ListOutgoingTypedLinks":{"shape":"BatchListOutgoingTypedLinks"},
2046
- "ListIncomingTypedLinks":{"shape":"BatchListIncomingTypedLinks"},
2047
- "GetLinkAttributes":{"shape":"BatchGetLinkAttributes"}
2048
- }
2049
- },
2050
- "BatchReadOperationList":{
2051
- "type":"list",
2052
- "member":{"shape":"BatchReadOperation"}
2053
- },
2054
- "BatchReadOperationResponse":{
2055
- "type":"structure",
2056
- "members":{
2057
- "SuccessfulResponse":{"shape":"BatchReadSuccessfulResponse"},
2058
- "ExceptionResponse":{"shape":"BatchReadException"}
2059
- }
2060
- },
2061
- "BatchReadOperationResponseList":{
2062
- "type":"list",
2063
- "member":{"shape":"BatchReadOperationResponse"}
2064
- },
2065
- "BatchReadRequest":{
2066
- "type":"structure",
2067
- "required":[
2068
- "DirectoryArn",
2069
- "Operations"
2070
- ],
2071
- "members":{
2072
- "DirectoryArn":{
2073
- "shape":"Arn",
2074
- "location":"header",
2075
- "locationName":"x-amz-data-partition"
2076
- },
2077
- "Operations":{"shape":"BatchReadOperationList"},
2078
- "ConsistencyLevel":{
2079
- "shape":"ConsistencyLevel",
2080
- "location":"header",
2081
- "locationName":"x-amz-consistency-level"
2082
- }
2083
- }
2084
- },
2085
- "BatchReadResponse":{
2086
- "type":"structure",
2087
- "members":{
2088
- "Responses":{"shape":"BatchReadOperationResponseList"}
2089
- }
2090
- },
2091
- "BatchReadSuccessfulResponse":{
2092
- "type":"structure",
2093
- "members":{
2094
- "ListObjectAttributes":{"shape":"BatchListObjectAttributesResponse"},
2095
- "ListObjectChildren":{"shape":"BatchListObjectChildrenResponse"},
2096
- "GetObjectInformation":{"shape":"BatchGetObjectInformationResponse"},
2097
- "GetObjectAttributes":{"shape":"BatchGetObjectAttributesResponse"},
2098
- "ListAttachedIndices":{"shape":"BatchListAttachedIndicesResponse"},
2099
- "ListObjectParentPaths":{"shape":"BatchListObjectParentPathsResponse"},
2100
- "ListObjectPolicies":{"shape":"BatchListObjectPoliciesResponse"},
2101
- "ListPolicyAttachments":{"shape":"BatchListPolicyAttachmentsResponse"},
2102
- "LookupPolicy":{"shape":"BatchLookupPolicyResponse"},
2103
- "ListIndex":{"shape":"BatchListIndexResponse"},
2104
- "ListOutgoingTypedLinks":{"shape":"BatchListOutgoingTypedLinksResponse"},
2105
- "ListIncomingTypedLinks":{"shape":"BatchListIncomingTypedLinksResponse"},
2106
- "GetLinkAttributes":{"shape":"BatchGetLinkAttributesResponse"}
2107
- }
2108
- },
2109
- "BatchReferenceName":{"type":"string"},
2110
- "BatchRemoveFacetFromObject":{
2111
- "type":"structure",
2112
- "required":[
2113
- "SchemaFacet",
2114
- "ObjectReference"
2115
- ],
2116
- "members":{
2117
- "SchemaFacet":{"shape":"SchemaFacet"},
2118
- "ObjectReference":{"shape":"ObjectReference"}
2119
- }
2120
- },
2121
- "BatchRemoveFacetFromObjectResponse":{
2122
- "type":"structure",
2123
- "members":{
2124
- }
2125
- },
2126
- "BatchUpdateLinkAttributes":{
2127
- "type":"structure",
2128
- "required":[
2129
- "TypedLinkSpecifier",
2130
- "AttributeUpdates"
2131
- ],
2132
- "members":{
2133
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
2134
- "AttributeUpdates":{"shape":"LinkAttributeUpdateList"}
2135
- }
2136
- },
2137
- "BatchUpdateLinkAttributesResponse":{
2138
- "type":"structure",
2139
- "members":{
2140
- }
2141
- },
2142
- "BatchUpdateObjectAttributes":{
2143
- "type":"structure",
2144
- "required":[
2145
- "ObjectReference",
2146
- "AttributeUpdates"
2147
- ],
2148
- "members":{
2149
- "ObjectReference":{"shape":"ObjectReference"},
2150
- "AttributeUpdates":{"shape":"ObjectAttributeUpdateList"}
2151
- }
2152
- },
2153
- "BatchUpdateObjectAttributesResponse":{
2154
- "type":"structure",
2155
- "members":{
2156
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2157
- }
2158
- },
2159
- "BatchWriteException":{
2160
- "type":"structure",
2161
- "members":{
2162
- "Index":{"shape":"BatchOperationIndex"},
2163
- "Type":{"shape":"BatchWriteExceptionType"},
2164
- "Message":{"shape":"ExceptionMessage"}
2165
- },
2166
- "exception":true
2167
- },
2168
- "BatchWriteExceptionType":{
2169
- "type":"string",
2170
- "enum":[
2171
- "InternalServiceException",
2172
- "ValidationException",
2173
- "InvalidArnException",
2174
- "LinkNameAlreadyInUseException",
2175
- "StillContainsLinksException",
2176
- "FacetValidationException",
2177
- "ObjectNotDetachedException",
2178
- "ResourceNotFoundException",
2179
- "AccessDeniedException",
2180
- "InvalidAttachmentException",
2181
- "NotIndexException",
2182
- "NotNodeException",
2183
- "IndexedAttributeMissingException",
2184
- "ObjectAlreadyDetachedException",
2185
- "NotPolicyException",
2186
- "DirectoryNotEnabledException",
2187
- "LimitExceededException",
2188
- "UnsupportedIndexTypeException"
2189
- ]
2190
- },
2191
- "BatchWriteOperation":{
2192
- "type":"structure",
2193
- "members":{
2194
- "CreateObject":{"shape":"BatchCreateObject"},
2195
- "AttachObject":{"shape":"BatchAttachObject"},
2196
- "DetachObject":{"shape":"BatchDetachObject"},
2197
- "UpdateObjectAttributes":{"shape":"BatchUpdateObjectAttributes"},
2198
- "DeleteObject":{"shape":"BatchDeleteObject"},
2199
- "AddFacetToObject":{"shape":"BatchAddFacetToObject"},
2200
- "RemoveFacetFromObject":{"shape":"BatchRemoveFacetFromObject"},
2201
- "AttachPolicy":{"shape":"BatchAttachPolicy"},
2202
- "DetachPolicy":{"shape":"BatchDetachPolicy"},
2203
- "CreateIndex":{"shape":"BatchCreateIndex"},
2204
- "AttachToIndex":{"shape":"BatchAttachToIndex"},
2205
- "DetachFromIndex":{"shape":"BatchDetachFromIndex"},
2206
- "AttachTypedLink":{"shape":"BatchAttachTypedLink"},
2207
- "DetachTypedLink":{"shape":"BatchDetachTypedLink"},
2208
- "UpdateLinkAttributes":{"shape":"BatchUpdateLinkAttributes"}
2209
- }
2210
- },
2211
- "BatchWriteOperationList":{
2212
- "type":"list",
2213
- "member":{"shape":"BatchWriteOperation"}
2214
- },
2215
- "BatchWriteOperationResponse":{
2216
- "type":"structure",
2217
- "members":{
2218
- "CreateObject":{"shape":"BatchCreateObjectResponse"},
2219
- "AttachObject":{"shape":"BatchAttachObjectResponse"},
2220
- "DetachObject":{"shape":"BatchDetachObjectResponse"},
2221
- "UpdateObjectAttributes":{"shape":"BatchUpdateObjectAttributesResponse"},
2222
- "DeleteObject":{"shape":"BatchDeleteObjectResponse"},
2223
- "AddFacetToObject":{"shape":"BatchAddFacetToObjectResponse"},
2224
- "RemoveFacetFromObject":{"shape":"BatchRemoveFacetFromObjectResponse"},
2225
- "AttachPolicy":{"shape":"BatchAttachPolicyResponse"},
2226
- "DetachPolicy":{"shape":"BatchDetachPolicyResponse"},
2227
- "CreateIndex":{"shape":"BatchCreateIndexResponse"},
2228
- "AttachToIndex":{"shape":"BatchAttachToIndexResponse"},
2229
- "DetachFromIndex":{"shape":"BatchDetachFromIndexResponse"},
2230
- "AttachTypedLink":{"shape":"BatchAttachTypedLinkResponse"},
2231
- "DetachTypedLink":{"shape":"BatchDetachTypedLinkResponse"},
2232
- "UpdateLinkAttributes":{"shape":"BatchUpdateLinkAttributesResponse"}
2233
- }
2234
- },
2235
- "BatchWriteOperationResponseList":{
2236
- "type":"list",
2237
- "member":{"shape":"BatchWriteOperationResponse"}
2238
- },
2239
- "BatchWriteRequest":{
2240
- "type":"structure",
2241
- "required":[
2242
- "DirectoryArn",
2243
- "Operations"
2244
- ],
2245
- "members":{
2246
- "DirectoryArn":{
2247
- "shape":"Arn",
2248
- "location":"header",
2249
- "locationName":"x-amz-data-partition"
2250
- },
2251
- "Operations":{"shape":"BatchWriteOperationList"}
2252
- }
2253
- },
2254
- "BatchWriteResponse":{
2255
- "type":"structure",
2256
- "members":{
2257
- "Responses":{"shape":"BatchWriteOperationResponseList"}
2258
- }
2259
- },
2260
- "BinaryAttributeValue":{"type":"blob"},
2261
- "Bool":{"type":"boolean"},
2262
- "BooleanAttributeValue":{"type":"boolean"},
2263
- "CannotListParentOfRootException":{
2264
- "type":"structure",
2265
- "members":{
2266
- "Message":{"shape":"ExceptionMessage"}
2267
- },
2268
- "error":{"httpStatusCode":400},
2269
- "exception":true
2270
- },
2271
- "ConsistencyLevel":{
2272
- "type":"string",
2273
- "enum":[
2274
- "SERIALIZABLE",
2275
- "EVENTUAL"
2276
- ]
2277
- },
2278
- "CreateDirectoryRequest":{
2279
- "type":"structure",
2280
- "required":[
2281
- "Name",
2282
- "SchemaArn"
2283
- ],
2284
- "members":{
2285
- "Name":{"shape":"DirectoryName"},
2286
- "SchemaArn":{
2287
- "shape":"Arn",
2288
- "location":"header",
2289
- "locationName":"x-amz-data-partition"
2290
- }
2291
- }
2292
- },
2293
- "CreateDirectoryResponse":{
2294
- "type":"structure",
2295
- "required":[
2296
- "DirectoryArn",
2297
- "Name",
2298
- "ObjectIdentifier",
2299
- "AppliedSchemaArn"
2300
- ],
2301
- "members":{
2302
- "DirectoryArn":{"shape":"DirectoryArn"},
2303
- "Name":{"shape":"DirectoryName"},
2304
- "ObjectIdentifier":{"shape":"ObjectIdentifier"},
2305
- "AppliedSchemaArn":{"shape":"Arn"}
2306
- }
2307
- },
2308
- "CreateFacetRequest":{
2309
- "type":"structure",
2310
- "required":[
2311
- "SchemaArn",
2312
- "Name",
2313
- "ObjectType"
2314
- ],
2315
- "members":{
2316
- "SchemaArn":{
2317
- "shape":"Arn",
2318
- "location":"header",
2319
- "locationName":"x-amz-data-partition"
2320
- },
2321
- "Name":{"shape":"FacetName"},
2322
- "Attributes":{"shape":"FacetAttributeList"},
2323
- "ObjectType":{"shape":"ObjectType"}
2324
- }
2325
- },
2326
- "CreateFacetResponse":{
2327
- "type":"structure",
2328
- "members":{
2329
- }
2330
- },
2331
- "CreateIndexRequest":{
2332
- "type":"structure",
2333
- "required":[
2334
- "DirectoryArn",
2335
- "OrderedIndexedAttributeList",
2336
- "IsUnique"
2337
- ],
2338
- "members":{
2339
- "DirectoryArn":{
2340
- "shape":"Arn",
2341
- "location":"header",
2342
- "locationName":"x-amz-data-partition"
2343
- },
2344
- "OrderedIndexedAttributeList":{"shape":"AttributeKeyList"},
2345
- "IsUnique":{"shape":"Bool"},
2346
- "ParentReference":{"shape":"ObjectReference"},
2347
- "LinkName":{"shape":"LinkName"}
2348
- }
2349
- },
2350
- "CreateIndexResponse":{
2351
- "type":"structure",
2352
- "members":{
2353
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2354
- }
2355
- },
2356
- "CreateObjectRequest":{
2357
- "type":"structure",
2358
- "required":[
2359
- "DirectoryArn",
2360
- "SchemaFacets"
2361
- ],
2362
- "members":{
2363
- "DirectoryArn":{
2364
- "shape":"Arn",
2365
- "location":"header",
2366
- "locationName":"x-amz-data-partition"
2367
- },
2368
- "SchemaFacets":{"shape":"SchemaFacetList"},
2369
- "ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
2370
- "ParentReference":{"shape":"ObjectReference"},
2371
- "LinkName":{"shape":"LinkName"}
2372
- }
2373
- },
2374
- "CreateObjectResponse":{
2375
- "type":"structure",
2376
- "members":{
2377
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2378
- }
2379
- },
2380
- "CreateSchemaRequest":{
2381
- "type":"structure",
2382
- "required":["Name"],
2383
- "members":{
2384
- "Name":{"shape":"SchemaName"}
2385
- }
2386
- },
2387
- "CreateSchemaResponse":{
2388
- "type":"structure",
2389
- "members":{
2390
- "SchemaArn":{"shape":"Arn"}
2391
- }
2392
- },
2393
- "CreateTypedLinkFacetRequest":{
2394
- "type":"structure",
2395
- "required":[
2396
- "SchemaArn",
2397
- "Facet"
2398
- ],
2399
- "members":{
2400
- "SchemaArn":{
2401
- "shape":"Arn",
2402
- "location":"header",
2403
- "locationName":"x-amz-data-partition"
2404
- },
2405
- "Facet":{"shape":"TypedLinkFacet"}
2406
- }
2407
- },
2408
- "CreateTypedLinkFacetResponse":{
2409
- "type":"structure",
2410
- "members":{
2411
- }
2412
- },
2413
- "Date":{"type":"timestamp"},
2414
- "DatetimeAttributeValue":{"type":"timestamp"},
2415
- "DeleteDirectoryRequest":{
2416
- "type":"structure",
2417
- "required":["DirectoryArn"],
2418
- "members":{
2419
- "DirectoryArn":{
2420
- "shape":"Arn",
2421
- "location":"header",
2422
- "locationName":"x-amz-data-partition"
2423
- }
2424
- }
2425
- },
2426
- "DeleteDirectoryResponse":{
2427
- "type":"structure",
2428
- "required":["DirectoryArn"],
2429
- "members":{
2430
- "DirectoryArn":{"shape":"Arn"}
2431
- }
2432
- },
2433
- "DeleteFacetRequest":{
2434
- "type":"structure",
2435
- "required":[
2436
- "SchemaArn",
2437
- "Name"
2438
- ],
2439
- "members":{
2440
- "SchemaArn":{
2441
- "shape":"Arn",
2442
- "location":"header",
2443
- "locationName":"x-amz-data-partition"
2444
- },
2445
- "Name":{"shape":"FacetName"}
2446
- }
2447
- },
2448
- "DeleteFacetResponse":{
2449
- "type":"structure",
2450
- "members":{
2451
- }
2452
- },
2453
- "DeleteObjectRequest":{
2454
- "type":"structure",
2455
- "required":[
2456
- "DirectoryArn",
2457
- "ObjectReference"
2458
- ],
2459
- "members":{
2460
- "DirectoryArn":{
2461
- "shape":"Arn",
2462
- "location":"header",
2463
- "locationName":"x-amz-data-partition"
2464
- },
2465
- "ObjectReference":{"shape":"ObjectReference"}
2466
- }
2467
- },
2468
- "DeleteObjectResponse":{
2469
- "type":"structure",
2470
- "members":{
2471
- }
2472
- },
2473
- "DeleteSchemaRequest":{
2474
- "type":"structure",
2475
- "required":["SchemaArn"],
2476
- "members":{
2477
- "SchemaArn":{
2478
- "shape":"Arn",
2479
- "location":"header",
2480
- "locationName":"x-amz-data-partition"
2481
- }
2482
- }
2483
- },
2484
- "DeleteSchemaResponse":{
2485
- "type":"structure",
2486
- "members":{
2487
- "SchemaArn":{"shape":"Arn"}
2488
- }
2489
- },
2490
- "DeleteTypedLinkFacetRequest":{
2491
- "type":"structure",
2492
- "required":[
2493
- "SchemaArn",
2494
- "Name"
2495
- ],
2496
- "members":{
2497
- "SchemaArn":{
2498
- "shape":"Arn",
2499
- "location":"header",
2500
- "locationName":"x-amz-data-partition"
2501
- },
2502
- "Name":{"shape":"TypedLinkName"}
2503
- }
2504
- },
2505
- "DeleteTypedLinkFacetResponse":{
2506
- "type":"structure",
2507
- "members":{
2508
- }
2509
- },
2510
- "DetachFromIndexRequest":{
2511
- "type":"structure",
2512
- "required":[
2513
- "DirectoryArn",
2514
- "IndexReference",
2515
- "TargetReference"
2516
- ],
2517
- "members":{
2518
- "DirectoryArn":{
2519
- "shape":"Arn",
2520
- "location":"header",
2521
- "locationName":"x-amz-data-partition"
2522
- },
2523
- "IndexReference":{"shape":"ObjectReference"},
2524
- "TargetReference":{"shape":"ObjectReference"}
2525
- }
2526
- },
2527
- "DetachFromIndexResponse":{
2528
- "type":"structure",
2529
- "members":{
2530
- "DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
2531
- }
2532
- },
2533
- "DetachObjectRequest":{
2534
- "type":"structure",
2535
- "required":[
2536
- "DirectoryArn",
2537
- "ParentReference",
2538
- "LinkName"
2539
- ],
2540
- "members":{
2541
- "DirectoryArn":{
2542
- "shape":"Arn",
2543
- "location":"header",
2544
- "locationName":"x-amz-data-partition"
2545
- },
2546
- "ParentReference":{"shape":"ObjectReference"},
2547
- "LinkName":{"shape":"LinkName"}
2548
- }
2549
- },
2550
- "DetachObjectResponse":{
2551
- "type":"structure",
2552
- "members":{
2553
- "DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
2554
- }
2555
- },
2556
- "DetachPolicyRequest":{
2557
- "type":"structure",
2558
- "required":[
2559
- "DirectoryArn",
2560
- "PolicyReference",
2561
- "ObjectReference"
2562
- ],
2563
- "members":{
2564
- "DirectoryArn":{
2565
- "shape":"Arn",
2566
- "location":"header",
2567
- "locationName":"x-amz-data-partition"
2568
- },
2569
- "PolicyReference":{"shape":"ObjectReference"},
2570
- "ObjectReference":{"shape":"ObjectReference"}
2571
- }
2572
- },
2573
- "DetachPolicyResponse":{
2574
- "type":"structure",
2575
- "members":{
2576
- }
2577
- },
2578
- "DetachTypedLinkRequest":{
2579
- "type":"structure",
2580
- "required":[
2581
- "DirectoryArn",
2582
- "TypedLinkSpecifier"
2583
- ],
2584
- "members":{
2585
- "DirectoryArn":{
2586
- "shape":"Arn",
2587
- "location":"header",
2588
- "locationName":"x-amz-data-partition"
2589
- },
2590
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
2591
- }
2592
- },
2593
- "Directory":{
2594
- "type":"structure",
2595
- "members":{
2596
- "Name":{"shape":"DirectoryName"},
2597
- "DirectoryArn":{"shape":"DirectoryArn"},
2598
- "State":{"shape":"DirectoryState"},
2599
- "CreationDateTime":{"shape":"Date"}
2600
- }
2601
- },
2602
- "DirectoryAlreadyExistsException":{
2603
- "type":"structure",
2604
- "members":{
2605
- "Message":{"shape":"ExceptionMessage"}
2606
- },
2607
- "error":{"httpStatusCode":400},
2608
- "exception":true
2609
- },
2610
- "DirectoryArn":{"type":"string"},
2611
- "DirectoryDeletedException":{
2612
- "type":"structure",
2613
- "members":{
2614
- "Message":{"shape":"ExceptionMessage"}
2615
- },
2616
- "error":{"httpStatusCode":400},
2617
- "exception":true
2618
- },
2619
- "DirectoryList":{
2620
- "type":"list",
2621
- "member":{"shape":"Directory"}
2622
- },
2623
- "DirectoryName":{
2624
- "type":"string",
2625
- "max":64,
2626
- "min":1,
2627
- "pattern":"^[a-zA-Z0-9._-]*$"
2628
- },
2629
- "DirectoryNotDisabledException":{
2630
- "type":"structure",
2631
- "members":{
2632
- "Message":{"shape":"ExceptionMessage"}
2633
- },
2634
- "error":{"httpStatusCode":400},
2635
- "exception":true
2636
- },
2637
- "DirectoryNotEnabledException":{
2638
- "type":"structure",
2639
- "members":{
2640
- "Message":{"shape":"ExceptionMessage"}
2641
- },
2642
- "error":{"httpStatusCode":400},
2643
- "exception":true
2644
- },
2645
- "DirectoryState":{
2646
- "type":"string",
2647
- "enum":[
2648
- "ENABLED",
2649
- "DISABLED",
2650
- "DELETED"
2651
- ]
2652
- },
2653
- "DisableDirectoryRequest":{
2654
- "type":"structure",
2655
- "required":["DirectoryArn"],
2656
- "members":{
2657
- "DirectoryArn":{
2658
- "shape":"Arn",
2659
- "location":"header",
2660
- "locationName":"x-amz-data-partition"
2661
- }
2662
- }
2663
- },
2664
- "DisableDirectoryResponse":{
2665
- "type":"structure",
2666
- "required":["DirectoryArn"],
2667
- "members":{
2668
- "DirectoryArn":{"shape":"Arn"}
2669
- }
2670
- },
2671
- "EnableDirectoryRequest":{
2672
- "type":"structure",
2673
- "required":["DirectoryArn"],
2674
- "members":{
2675
- "DirectoryArn":{
2676
- "shape":"Arn",
2677
- "location":"header",
2678
- "locationName":"x-amz-data-partition"
2679
- }
2680
- }
2681
- },
2682
- "EnableDirectoryResponse":{
2683
- "type":"structure",
2684
- "required":["DirectoryArn"],
2685
- "members":{
2686
- "DirectoryArn":{"shape":"Arn"}
2687
- }
2688
- },
2689
- "ExceptionMessage":{"type":"string"},
2690
- "Facet":{
2691
- "type":"structure",
2692
- "members":{
2693
- "Name":{"shape":"FacetName"},
2694
- "ObjectType":{"shape":"ObjectType"}
2695
- }
2696
- },
2697
- "FacetAlreadyExistsException":{
2698
- "type":"structure",
2699
- "members":{
2700
- "Message":{"shape":"ExceptionMessage"}
2701
- },
2702
- "error":{"httpStatusCode":400},
2703
- "exception":true
2704
- },
2705
- "FacetAttribute":{
2706
- "type":"structure",
2707
- "required":["Name"],
2708
- "members":{
2709
- "Name":{"shape":"AttributeName"},
2710
- "AttributeDefinition":{"shape":"FacetAttributeDefinition"},
2711
- "AttributeReference":{"shape":"FacetAttributeReference"},
2712
- "RequiredBehavior":{"shape":"RequiredAttributeBehavior"}
2713
- }
2714
- },
2715
- "FacetAttributeDefinition":{
2716
- "type":"structure",
2717
- "required":["Type"],
2718
- "members":{
2719
- "Type":{"shape":"FacetAttributeType"},
2720
- "DefaultValue":{"shape":"TypedAttributeValue"},
2721
- "IsImmutable":{"shape":"Bool"},
2722
- "Rules":{"shape":"RuleMap"}
2723
- }
2724
- },
2725
- "FacetAttributeList":{
2726
- "type":"list",
2727
- "member":{"shape":"FacetAttribute"}
2728
- },
2729
- "FacetAttributeReference":{
2730
- "type":"structure",
2731
- "required":[
2732
- "TargetFacetName",
2733
- "TargetAttributeName"
2734
- ],
2735
- "members":{
2736
- "TargetFacetName":{"shape":"FacetName"},
2737
- "TargetAttributeName":{"shape":"AttributeName"}
2738
- }
2739
- },
2740
- "FacetAttributeType":{
2741
- "type":"string",
2742
- "enum":[
2743
- "STRING",
2744
- "BINARY",
2745
- "BOOLEAN",
2746
- "NUMBER",
2747
- "DATETIME"
2748
- ]
2749
- },
2750
- "FacetAttributeUpdate":{
2751
- "type":"structure",
2752
- "members":{
2753
- "Attribute":{"shape":"FacetAttribute"},
2754
- "Action":{"shape":"UpdateActionType"}
2755
- }
2756
- },
2757
- "FacetAttributeUpdateList":{
2758
- "type":"list",
2759
- "member":{"shape":"FacetAttributeUpdate"}
2760
- },
2761
- "FacetInUseException":{
2762
- "type":"structure",
2763
- "members":{
2764
- "Message":{"shape":"ExceptionMessage"}
2765
- },
2766
- "error":{"httpStatusCode":400},
2767
- "exception":true
2768
- },
2769
- "FacetName":{
2770
- "type":"string",
2771
- "max":64,
2772
- "min":1,
2773
- "pattern":"^[a-zA-Z0-9._-]*$"
2774
- },
2775
- "FacetNameList":{
2776
- "type":"list",
2777
- "member":{"shape":"FacetName"}
2778
- },
2779
- "FacetNotFoundException":{
2780
- "type":"structure",
2781
- "members":{
2782
- "Message":{"shape":"ExceptionMessage"}
2783
- },
2784
- "error":{"httpStatusCode":400},
2785
- "exception":true
2786
- },
2787
- "FacetValidationException":{
2788
- "type":"structure",
2789
- "members":{
2790
- "Message":{"shape":"ExceptionMessage"}
2791
- },
2792
- "error":{"httpStatusCode":400},
2793
- "exception":true
2794
- },
2795
- "GetAppliedSchemaVersionRequest":{
2796
- "type":"structure",
2797
- "required":["SchemaArn"],
2798
- "members":{
2799
- "SchemaArn":{"shape":"Arn"}
2800
- }
2801
- },
2802
- "GetAppliedSchemaVersionResponse":{
2803
- "type":"structure",
2804
- "members":{
2805
- "AppliedSchemaArn":{"shape":"Arn"}
2806
- }
2807
- },
2808
- "GetDirectoryRequest":{
2809
- "type":"structure",
2810
- "required":["DirectoryArn"],
2811
- "members":{
2812
- "DirectoryArn":{
2813
- "shape":"DirectoryArn",
2814
- "location":"header",
2815
- "locationName":"x-amz-data-partition"
2816
- }
2817
- }
2818
- },
2819
- "GetDirectoryResponse":{
2820
- "type":"structure",
2821
- "required":["Directory"],
2822
- "members":{
2823
- "Directory":{"shape":"Directory"}
2824
- }
2825
- },
2826
- "GetFacetRequest":{
2827
- "type":"structure",
2828
- "required":[
2829
- "SchemaArn",
2830
- "Name"
2831
- ],
2832
- "members":{
2833
- "SchemaArn":{
2834
- "shape":"Arn",
2835
- "location":"header",
2836
- "locationName":"x-amz-data-partition"
2837
- },
2838
- "Name":{"shape":"FacetName"}
2839
- }
2840
- },
2841
- "GetFacetResponse":{
2842
- "type":"structure",
2843
- "members":{
2844
- "Facet":{"shape":"Facet"}
2845
- }
2846
- },
2847
- "GetLinkAttributesRequest":{
2848
- "type":"structure",
2849
- "required":[
2850
- "DirectoryArn",
2851
- "TypedLinkSpecifier",
2852
- "AttributeNames"
2853
- ],
2854
- "members":{
2855
- "DirectoryArn":{
2856
- "shape":"Arn",
2857
- "location":"header",
2858
- "locationName":"x-amz-data-partition"
2859
- },
2860
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
2861
- "AttributeNames":{"shape":"AttributeNameList"},
2862
- "ConsistencyLevel":{"shape":"ConsistencyLevel"}
2863
- }
2864
- },
2865
- "GetLinkAttributesResponse":{
2866
- "type":"structure",
2867
- "members":{
2868
- "Attributes":{"shape":"AttributeKeyAndValueList"}
2869
- }
2870
- },
2871
- "GetObjectAttributesRequest":{
2872
- "type":"structure",
2873
- "required":[
2874
- "DirectoryArn",
2875
- "ObjectReference",
2876
- "SchemaFacet",
2877
- "AttributeNames"
2878
- ],
2879
- "members":{
2880
- "DirectoryArn":{
2881
- "shape":"Arn",
2882
- "location":"header",
2883
- "locationName":"x-amz-data-partition"
2884
- },
2885
- "ObjectReference":{"shape":"ObjectReference"},
2886
- "ConsistencyLevel":{
2887
- "shape":"ConsistencyLevel",
2888
- "location":"header",
2889
- "locationName":"x-amz-consistency-level"
2890
- },
2891
- "SchemaFacet":{"shape":"SchemaFacet"},
2892
- "AttributeNames":{"shape":"AttributeNameList"}
2893
- }
2894
- },
2895
- "GetObjectAttributesResponse":{
2896
- "type":"structure",
2897
- "members":{
2898
- "Attributes":{"shape":"AttributeKeyAndValueList"}
2899
- }
2900
- },
2901
- "GetObjectInformationRequest":{
2902
- "type":"structure",
2903
- "required":[
2904
- "DirectoryArn",
2905
- "ObjectReference"
2906
- ],
2907
- "members":{
2908
- "DirectoryArn":{
2909
- "shape":"Arn",
2910
- "location":"header",
2911
- "locationName":"x-amz-data-partition"
2912
- },
2913
- "ObjectReference":{"shape":"ObjectReference"},
2914
- "ConsistencyLevel":{
2915
- "shape":"ConsistencyLevel",
2916
- "location":"header",
2917
- "locationName":"x-amz-consistency-level"
2918
- }
2919
- }
2920
- },
2921
- "GetObjectInformationResponse":{
2922
- "type":"structure",
2923
- "members":{
2924
- "SchemaFacets":{"shape":"SchemaFacetList"},
2925
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2926
- }
2927
- },
2928
- "GetSchemaAsJsonRequest":{
2929
- "type":"structure",
2930
- "required":["SchemaArn"],
2931
- "members":{
2932
- "SchemaArn":{
2933
- "shape":"Arn",
2934
- "location":"header",
2935
- "locationName":"x-amz-data-partition"
2936
- }
2937
- }
2938
- },
2939
- "GetSchemaAsJsonResponse":{
2940
- "type":"structure",
2941
- "members":{
2942
- "Name":{"shape":"SchemaName"},
2943
- "Document":{"shape":"SchemaJsonDocument"}
2944
- }
2945
- },
2946
- "GetTypedLinkFacetInformationRequest":{
2947
- "type":"structure",
2948
- "required":[
2949
- "SchemaArn",
2950
- "Name"
2951
- ],
2952
- "members":{
2953
- "SchemaArn":{
2954
- "shape":"Arn",
2955
- "location":"header",
2956
- "locationName":"x-amz-data-partition"
2957
- },
2958
- "Name":{"shape":"TypedLinkName"}
2959
- }
2960
- },
2961
- "GetTypedLinkFacetInformationResponse":{
2962
- "type":"structure",
2963
- "members":{
2964
- "IdentityAttributeOrder":{"shape":"AttributeNameList"}
2965
- }
2966
- },
2967
- "IncompatibleSchemaException":{
2968
- "type":"structure",
2969
- "members":{
2970
- "Message":{"shape":"ExceptionMessage"}
2971
- },
2972
- "error":{"httpStatusCode":400},
2973
- "exception":true
2974
- },
2975
- "IndexAttachment":{
2976
- "type":"structure",
2977
- "members":{
2978
- "IndexedAttributes":{"shape":"AttributeKeyAndValueList"},
2979
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
2980
- }
2981
- },
2982
- "IndexAttachmentList":{
2983
- "type":"list",
2984
- "member":{"shape":"IndexAttachment"}
2985
- },
2986
- "IndexedAttributeMissingException":{
2987
- "type":"structure",
2988
- "members":{
2989
- "Message":{"shape":"ExceptionMessage"}
2990
- },
2991
- "error":{"httpStatusCode":400},
2992
- "exception":true
2993
- },
2994
- "InternalServiceException":{
2995
- "type":"structure",
2996
- "members":{
2997
- "Message":{"shape":"ExceptionMessage"}
2998
- },
2999
- "error":{"httpStatusCode":500},
3000
- "exception":true
3001
- },
3002
- "InvalidArnException":{
3003
- "type":"structure",
3004
- "members":{
3005
- "Message":{"shape":"ExceptionMessage"}
3006
- },
3007
- "error":{"httpStatusCode":400},
3008
- "exception":true
3009
- },
3010
- "InvalidAttachmentException":{
3011
- "type":"structure",
3012
- "members":{
3013
- "Message":{"shape":"ExceptionMessage"}
3014
- },
3015
- "error":{"httpStatusCode":400},
3016
- "exception":true
3017
- },
3018
- "InvalidFacetUpdateException":{
3019
- "type":"structure",
3020
- "members":{
3021
- "Message":{"shape":"ExceptionMessage"}
3022
- },
3023
- "error":{"httpStatusCode":400},
3024
- "exception":true
3025
- },
3026
- "InvalidNextTokenException":{
3027
- "type":"structure",
3028
- "members":{
3029
- "Message":{"shape":"ExceptionMessage"}
3030
- },
3031
- "error":{"httpStatusCode":400},
3032
- "exception":true
3033
- },
3034
- "InvalidRuleException":{
3035
- "type":"structure",
3036
- "members":{
3037
- "Message":{"shape":"ExceptionMessage"}
3038
- },
3039
- "error":{"httpStatusCode":400},
3040
- "exception":true
3041
- },
3042
- "InvalidSchemaDocException":{
3043
- "type":"structure",
3044
- "members":{
3045
- "Message":{"shape":"ExceptionMessage"}
3046
- },
3047
- "error":{"httpStatusCode":400},
3048
- "exception":true
3049
- },
3050
- "InvalidTaggingRequestException":{
3051
- "type":"structure",
3052
- "members":{
3053
- "Message":{"shape":"ExceptionMessage"}
3054
- },
3055
- "error":{"httpStatusCode":400},
3056
- "exception":true
3057
- },
3058
- "LimitExceededException":{
3059
- "type":"structure",
3060
- "members":{
3061
- "Message":{"shape":"ExceptionMessage"}
3062
- },
3063
- "error":{"httpStatusCode":400},
3064
- "exception":true
3065
- },
3066
- "LinkAttributeAction":{
3067
- "type":"structure",
3068
- "members":{
3069
- "AttributeActionType":{"shape":"UpdateActionType"},
3070
- "AttributeUpdateValue":{"shape":"TypedAttributeValue"}
3071
- }
3072
- },
3073
- "LinkAttributeUpdate":{
3074
- "type":"structure",
3075
- "members":{
3076
- "AttributeKey":{"shape":"AttributeKey"},
3077
- "AttributeAction":{"shape":"LinkAttributeAction"}
3078
- }
3079
- },
3080
- "LinkAttributeUpdateList":{
3081
- "type":"list",
3082
- "member":{"shape":"LinkAttributeUpdate"}
3083
- },
3084
- "LinkName":{
3085
- "type":"string",
3086
- "max":64,
3087
- "min":1,
3088
- "pattern":"[^\\/\\[\\]\\(\\):\\{\\}#@!?\\s\\\\;]+"
3089
- },
3090
- "LinkNameAlreadyInUseException":{
3091
- "type":"structure",
3092
- "members":{
3093
- "Message":{"shape":"ExceptionMessage"}
3094
- },
3095
- "error":{"httpStatusCode":400},
3096
- "exception":true
3097
- },
3098
- "LinkNameToObjectIdentifierMap":{
3099
- "type":"map",
3100
- "key":{"shape":"LinkName"},
3101
- "value":{"shape":"ObjectIdentifier"}
3102
- },
3103
- "ListAppliedSchemaArnsRequest":{
3104
- "type":"structure",
3105
- "required":["DirectoryArn"],
3106
- "members":{
3107
- "DirectoryArn":{"shape":"Arn"},
3108
- "SchemaArn":{"shape":"Arn"},
3109
- "NextToken":{"shape":"NextToken"},
3110
- "MaxResults":{"shape":"NumberResults"}
3111
- }
3112
- },
3113
- "ListAppliedSchemaArnsResponse":{
3114
- "type":"structure",
3115
- "members":{
3116
- "SchemaArns":{"shape":"Arns"},
3117
- "NextToken":{"shape":"NextToken"}
3118
- }
3119
- },
3120
- "ListAttachedIndicesRequest":{
3121
- "type":"structure",
3122
- "required":[
3123
- "DirectoryArn",
3124
- "TargetReference"
3125
- ],
3126
- "members":{
3127
- "DirectoryArn":{
3128
- "shape":"Arn",
3129
- "location":"header",
3130
- "locationName":"x-amz-data-partition"
3131
- },
3132
- "TargetReference":{"shape":"ObjectReference"},
3133
- "NextToken":{"shape":"NextToken"},
3134
- "MaxResults":{"shape":"NumberResults"},
3135
- "ConsistencyLevel":{
3136
- "shape":"ConsistencyLevel",
3137
- "location":"header",
3138
- "locationName":"x-amz-consistency-level"
3139
- }
3140
- }
3141
- },
3142
- "ListAttachedIndicesResponse":{
3143
- "type":"structure",
3144
- "members":{
3145
- "IndexAttachments":{"shape":"IndexAttachmentList"},
3146
- "NextToken":{"shape":"NextToken"}
3147
- }
3148
- },
3149
- "ListDevelopmentSchemaArnsRequest":{
3150
- "type":"structure",
3151
- "members":{
3152
- "NextToken":{"shape":"NextToken"},
3153
- "MaxResults":{"shape":"NumberResults"}
3154
- }
3155
- },
3156
- "ListDevelopmentSchemaArnsResponse":{
3157
- "type":"structure",
3158
- "members":{
3159
- "SchemaArns":{"shape":"Arns"},
3160
- "NextToken":{"shape":"NextToken"}
3161
- }
3162
- },
3163
- "ListDirectoriesRequest":{
3164
- "type":"structure",
3165
- "members":{
3166
- "NextToken":{"shape":"NextToken"},
3167
- "MaxResults":{"shape":"NumberResults"},
3168
- "state":{"shape":"DirectoryState"}
3169
- }
3170
- },
3171
- "ListDirectoriesResponse":{
3172
- "type":"structure",
3173
- "required":["Directories"],
3174
- "members":{
3175
- "Directories":{"shape":"DirectoryList"},
3176
- "NextToken":{"shape":"NextToken"}
3177
- }
3178
- },
3179
- "ListFacetAttributesRequest":{
3180
- "type":"structure",
3181
- "required":[
3182
- "SchemaArn",
3183
- "Name"
3184
- ],
3185
- "members":{
3186
- "SchemaArn":{
3187
- "shape":"Arn",
3188
- "location":"header",
3189
- "locationName":"x-amz-data-partition"
3190
- },
3191
- "Name":{"shape":"FacetName"},
3192
- "NextToken":{"shape":"NextToken"},
3193
- "MaxResults":{"shape":"NumberResults"}
3194
- }
3195
- },
3196
- "ListFacetAttributesResponse":{
3197
- "type":"structure",
3198
- "members":{
3199
- "Attributes":{"shape":"FacetAttributeList"},
3200
- "NextToken":{"shape":"NextToken"}
3201
- }
3202
- },
3203
- "ListFacetNamesRequest":{
3204
- "type":"structure",
3205
- "required":["SchemaArn"],
3206
- "members":{
3207
- "SchemaArn":{
3208
- "shape":"Arn",
3209
- "location":"header",
3210
- "locationName":"x-amz-data-partition"
3211
- },
3212
- "NextToken":{"shape":"NextToken"},
3213
- "MaxResults":{"shape":"NumberResults"}
3214
- }
3215
- },
3216
- "ListFacetNamesResponse":{
3217
- "type":"structure",
3218
- "members":{
3219
- "FacetNames":{"shape":"FacetNameList"},
3220
- "NextToken":{"shape":"NextToken"}
3221
- }
3222
- },
3223
- "ListIncomingTypedLinksRequest":{
3224
- "type":"structure",
3225
- "required":[
3226
- "DirectoryArn",
3227
- "ObjectReference"
3228
- ],
3229
- "members":{
3230
- "DirectoryArn":{
3231
- "shape":"Arn",
3232
- "location":"header",
3233
- "locationName":"x-amz-data-partition"
3234
- },
3235
- "ObjectReference":{"shape":"ObjectReference"},
3236
- "FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
3237
- "FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
3238
- "NextToken":{"shape":"NextToken"},
3239
- "MaxResults":{"shape":"NumberResults"},
3240
- "ConsistencyLevel":{"shape":"ConsistencyLevel"}
3241
- }
3242
- },
3243
- "ListIncomingTypedLinksResponse":{
3244
- "type":"structure",
3245
- "members":{
3246
- "LinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
3247
- "NextToken":{"shape":"NextToken"}
3248
- }
3249
- },
3250
- "ListIndexRequest":{
3251
- "type":"structure",
3252
- "required":[
3253
- "DirectoryArn",
3254
- "IndexReference"
3255
- ],
3256
- "members":{
3257
- "DirectoryArn":{
3258
- "shape":"Arn",
3259
- "location":"header",
3260
- "locationName":"x-amz-data-partition"
3261
- },
3262
- "RangesOnIndexedValues":{"shape":"ObjectAttributeRangeList"},
3263
- "IndexReference":{"shape":"ObjectReference"},
3264
- "MaxResults":{"shape":"NumberResults"},
3265
- "NextToken":{"shape":"NextToken"},
3266
- "ConsistencyLevel":{
3267
- "shape":"ConsistencyLevel",
3268
- "location":"header",
3269
- "locationName":"x-amz-consistency-level"
3270
- }
3271
- }
3272
- },
3273
- "ListIndexResponse":{
3274
- "type":"structure",
3275
- "members":{
3276
- "IndexAttachments":{"shape":"IndexAttachmentList"},
3277
- "NextToken":{"shape":"NextToken"}
3278
- }
3279
- },
3280
- "ListObjectAttributesRequest":{
3281
- "type":"structure",
3282
- "required":[
3283
- "DirectoryArn",
3284
- "ObjectReference"
3285
- ],
3286
- "members":{
3287
- "DirectoryArn":{
3288
- "shape":"Arn",
3289
- "location":"header",
3290
- "locationName":"x-amz-data-partition"
3291
- },
3292
- "ObjectReference":{"shape":"ObjectReference"},
3293
- "NextToken":{"shape":"NextToken"},
3294
- "MaxResults":{"shape":"NumberResults"},
3295
- "ConsistencyLevel":{
3296
- "shape":"ConsistencyLevel",
3297
- "location":"header",
3298
- "locationName":"x-amz-consistency-level"
3299
- },
3300
- "FacetFilter":{"shape":"SchemaFacet"}
3301
- }
3302
- },
3303
- "ListObjectAttributesResponse":{
3304
- "type":"structure",
3305
- "members":{
3306
- "Attributes":{"shape":"AttributeKeyAndValueList"},
3307
- "NextToken":{"shape":"NextToken"}
3308
- }
3309
- },
3310
- "ListObjectChildrenRequest":{
3311
- "type":"structure",
3312
- "required":[
3313
- "DirectoryArn",
3314
- "ObjectReference"
3315
- ],
3316
- "members":{
3317
- "DirectoryArn":{
3318
- "shape":"Arn",
3319
- "location":"header",
3320
- "locationName":"x-amz-data-partition"
3321
- },
3322
- "ObjectReference":{"shape":"ObjectReference"},
3323
- "NextToken":{"shape":"NextToken"},
3324
- "MaxResults":{"shape":"NumberResults"},
3325
- "ConsistencyLevel":{
3326
- "shape":"ConsistencyLevel",
3327
- "location":"header",
3328
- "locationName":"x-amz-consistency-level"
3329
- }
3330
- }
3331
- },
3332
- "ListObjectChildrenResponse":{
3333
- "type":"structure",
3334
- "members":{
3335
- "Children":{"shape":"LinkNameToObjectIdentifierMap"},
3336
- "NextToken":{"shape":"NextToken"}
3337
- }
3338
- },
3339
- "ListObjectParentPathsRequest":{
3340
- "type":"structure",
3341
- "required":[
3342
- "DirectoryArn",
3343
- "ObjectReference"
3344
- ],
3345
- "members":{
3346
- "DirectoryArn":{
3347
- "shape":"Arn",
3348
- "location":"header",
3349
- "locationName":"x-amz-data-partition"
3350
- },
3351
- "ObjectReference":{"shape":"ObjectReference"},
3352
- "NextToken":{"shape":"NextToken"},
3353
- "MaxResults":{"shape":"NumberResults"}
3354
- }
3355
- },
3356
- "ListObjectParentPathsResponse":{
3357
- "type":"structure",
3358
- "members":{
3359
- "PathToObjectIdentifiersList":{"shape":"PathToObjectIdentifiersList"},
3360
- "NextToken":{"shape":"NextToken"}
3361
- }
3362
- },
3363
- "ListObjectParentsRequest":{
3364
- "type":"structure",
3365
- "required":[
3366
- "DirectoryArn",
3367
- "ObjectReference"
3368
- ],
3369
- "members":{
3370
- "DirectoryArn":{
3371
- "shape":"Arn",
3372
- "location":"header",
3373
- "locationName":"x-amz-data-partition"
3374
- },
3375
- "ObjectReference":{"shape":"ObjectReference"},
3376
- "NextToken":{"shape":"NextToken"},
3377
- "MaxResults":{"shape":"NumberResults"},
3378
- "ConsistencyLevel":{
3379
- "shape":"ConsistencyLevel",
3380
- "location":"header",
3381
- "locationName":"x-amz-consistency-level"
3382
- }
3383
- }
3384
- },
3385
- "ListObjectParentsResponse":{
3386
- "type":"structure",
3387
- "members":{
3388
- "Parents":{"shape":"ObjectIdentifierToLinkNameMap"},
3389
- "NextToken":{"shape":"NextToken"}
3390
- }
3391
- },
3392
- "ListObjectPoliciesRequest":{
3393
- "type":"structure",
3394
- "required":[
3395
- "DirectoryArn",
3396
- "ObjectReference"
3397
- ],
3398
- "members":{
3399
- "DirectoryArn":{
3400
- "shape":"Arn",
3401
- "location":"header",
3402
- "locationName":"x-amz-data-partition"
3403
- },
3404
- "ObjectReference":{"shape":"ObjectReference"},
3405
- "NextToken":{"shape":"NextToken"},
3406
- "MaxResults":{"shape":"NumberResults"},
3407
- "ConsistencyLevel":{
3408
- "shape":"ConsistencyLevel",
3409
- "location":"header",
3410
- "locationName":"x-amz-consistency-level"
3411
- }
3412
- }
3413
- },
3414
- "ListObjectPoliciesResponse":{
3415
- "type":"structure",
3416
- "members":{
3417
- "AttachedPolicyIds":{"shape":"ObjectIdentifierList"},
3418
- "NextToken":{"shape":"NextToken"}
3419
- }
3420
- },
3421
- "ListOutgoingTypedLinksRequest":{
3422
- "type":"structure",
3423
- "required":[
3424
- "DirectoryArn",
3425
- "ObjectReference"
3426
- ],
3427
- "members":{
3428
- "DirectoryArn":{
3429
- "shape":"Arn",
3430
- "location":"header",
3431
- "locationName":"x-amz-data-partition"
3432
- },
3433
- "ObjectReference":{"shape":"ObjectReference"},
3434
- "FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
3435
- "FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
3436
- "NextToken":{"shape":"NextToken"},
3437
- "MaxResults":{"shape":"NumberResults"},
3438
- "ConsistencyLevel":{"shape":"ConsistencyLevel"}
3439
- }
3440
- },
3441
- "ListOutgoingTypedLinksResponse":{
3442
- "type":"structure",
3443
- "members":{
3444
- "TypedLinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
3445
- "NextToken":{"shape":"NextToken"}
3446
- }
3447
- },
3448
- "ListPolicyAttachmentsRequest":{
3449
- "type":"structure",
3450
- "required":[
3451
- "DirectoryArn",
3452
- "PolicyReference"
3453
- ],
3454
- "members":{
3455
- "DirectoryArn":{
3456
- "shape":"Arn",
3457
- "location":"header",
3458
- "locationName":"x-amz-data-partition"
3459
- },
3460
- "PolicyReference":{"shape":"ObjectReference"},
3461
- "NextToken":{"shape":"NextToken"},
3462
- "MaxResults":{"shape":"NumberResults"},
3463
- "ConsistencyLevel":{
3464
- "shape":"ConsistencyLevel",
3465
- "location":"header",
3466
- "locationName":"x-amz-consistency-level"
3467
- }
3468
- }
3469
- },
3470
- "ListPolicyAttachmentsResponse":{
3471
- "type":"structure",
3472
- "members":{
3473
- "ObjectIdentifiers":{"shape":"ObjectIdentifierList"},
3474
- "NextToken":{"shape":"NextToken"}
3475
- }
3476
- },
3477
- "ListPublishedSchemaArnsRequest":{
3478
- "type":"structure",
3479
- "members":{
3480
- "SchemaArn":{"shape":"Arn"},
3481
- "NextToken":{"shape":"NextToken"},
3482
- "MaxResults":{"shape":"NumberResults"}
3483
- }
3484
- },
3485
- "ListPublishedSchemaArnsResponse":{
3486
- "type":"structure",
3487
- "members":{
3488
- "SchemaArns":{"shape":"Arns"},
3489
- "NextToken":{"shape":"NextToken"}
3490
- }
3491
- },
3492
- "ListTagsForResourceRequest":{
3493
- "type":"structure",
3494
- "required":["ResourceArn"],
3495
- "members":{
3496
- "ResourceArn":{"shape":"Arn"},
3497
- "NextToken":{"shape":"NextToken"},
3498
- "MaxResults":{"shape":"TagsNumberResults"}
3499
- }
3500
- },
3501
- "ListTagsForResourceResponse":{
3502
- "type":"structure",
3503
- "members":{
3504
- "Tags":{"shape":"TagList"},
3505
- "NextToken":{"shape":"NextToken"}
3506
- }
3507
- },
3508
- "ListTypedLinkFacetAttributesRequest":{
3509
- "type":"structure",
3510
- "required":[
3511
- "SchemaArn",
3512
- "Name"
3513
- ],
3514
- "members":{
3515
- "SchemaArn":{
3516
- "shape":"Arn",
3517
- "location":"header",
3518
- "locationName":"x-amz-data-partition"
3519
- },
3520
- "Name":{"shape":"TypedLinkName"},
3521
- "NextToken":{"shape":"NextToken"},
3522
- "MaxResults":{"shape":"NumberResults"}
3523
- }
3524
- },
3525
- "ListTypedLinkFacetAttributesResponse":{
3526
- "type":"structure",
3527
- "members":{
3528
- "Attributes":{"shape":"TypedLinkAttributeDefinitionList"},
3529
- "NextToken":{"shape":"NextToken"}
3530
- }
3531
- },
3532
- "ListTypedLinkFacetNamesRequest":{
3533
- "type":"structure",
3534
- "required":["SchemaArn"],
3535
- "members":{
3536
- "SchemaArn":{
3537
- "shape":"Arn",
3538
- "location":"header",
3539
- "locationName":"x-amz-data-partition"
3540
- },
3541
- "NextToken":{"shape":"NextToken"},
3542
- "MaxResults":{"shape":"NumberResults"}
3543
- }
3544
- },
3545
- "ListTypedLinkFacetNamesResponse":{
3546
- "type":"structure",
3547
- "members":{
3548
- "FacetNames":{"shape":"TypedLinkNameList"},
3549
- "NextToken":{"shape":"NextToken"}
3550
- }
3551
- },
3552
- "LookupPolicyRequest":{
3553
- "type":"structure",
3554
- "required":[
3555
- "DirectoryArn",
3556
- "ObjectReference"
3557
- ],
3558
- "members":{
3559
- "DirectoryArn":{
3560
- "shape":"Arn",
3561
- "location":"header",
3562
- "locationName":"x-amz-data-partition"
3563
- },
3564
- "ObjectReference":{"shape":"ObjectReference"},
3565
- "NextToken":{"shape":"NextToken"},
3566
- "MaxResults":{"shape":"NumberResults"}
3567
- }
3568
- },
3569
- "LookupPolicyResponse":{
3570
- "type":"structure",
3571
- "members":{
3572
- "PolicyToPathList":{"shape":"PolicyToPathList"},
3573
- "NextToken":{"shape":"NextToken"}
3574
- }
3575
- },
3576
- "NextToken":{"type":"string"},
3577
- "NotIndexException":{
3578
- "type":"structure",
3579
- "members":{
3580
- "Message":{"shape":"ExceptionMessage"}
3581
- },
3582
- "error":{"httpStatusCode":400},
3583
- "exception":true
3584
- },
3585
- "NotNodeException":{
3586
- "type":"structure",
3587
- "members":{
3588
- "Message":{"shape":"ExceptionMessage"}
3589
- },
3590
- "error":{"httpStatusCode":400},
3591
- "exception":true
3592
- },
3593
- "NotPolicyException":{
3594
- "type":"structure",
3595
- "members":{
3596
- "Message":{"shape":"ExceptionMessage"}
3597
- },
3598
- "error":{"httpStatusCode":400},
3599
- "exception":true
3600
- },
3601
- "NumberAttributeValue":{"type":"string"},
3602
- "NumberResults":{
3603
- "type":"integer",
3604
- "min":1
3605
- },
3606
- "ObjectAlreadyDetachedException":{
3607
- "type":"structure",
3608
- "members":{
3609
- "Message":{"shape":"ExceptionMessage"}
3610
- },
3611
- "error":{"httpStatusCode":400},
3612
- "exception":true
3613
- },
3614
- "ObjectAttributeAction":{
3615
- "type":"structure",
3616
- "members":{
3617
- "ObjectAttributeActionType":{"shape":"UpdateActionType"},
3618
- "ObjectAttributeUpdateValue":{"shape":"TypedAttributeValue"}
3619
- }
3620
- },
3621
- "ObjectAttributeRange":{
3622
- "type":"structure",
3623
- "members":{
3624
- "AttributeKey":{"shape":"AttributeKey"},
3625
- "Range":{"shape":"TypedAttributeValueRange"}
3626
- }
3627
- },
3628
- "ObjectAttributeRangeList":{
3629
- "type":"list",
3630
- "member":{"shape":"ObjectAttributeRange"}
3631
- },
3632
- "ObjectAttributeUpdate":{
3633
- "type":"structure",
3634
- "members":{
3635
- "ObjectAttributeKey":{"shape":"AttributeKey"},
3636
- "ObjectAttributeAction":{"shape":"ObjectAttributeAction"}
3637
- }
3638
- },
3639
- "ObjectAttributeUpdateList":{
3640
- "type":"list",
3641
- "member":{"shape":"ObjectAttributeUpdate"}
3642
- },
3643
- "ObjectIdentifier":{"type":"string"},
3644
- "ObjectIdentifierList":{
3645
- "type":"list",
3646
- "member":{"shape":"ObjectIdentifier"}
3647
- },
3648
- "ObjectIdentifierToLinkNameMap":{
3649
- "type":"map",
3650
- "key":{"shape":"ObjectIdentifier"},
3651
- "value":{"shape":"LinkName"}
3652
- },
3653
- "ObjectNotDetachedException":{
3654
- "type":"structure",
3655
- "members":{
3656
- "Message":{"shape":"ExceptionMessage"}
3657
- },
3658
- "error":{"httpStatusCode":400},
3659
- "exception":true
3660
- },
3661
- "ObjectReference":{
3662
- "type":"structure",
3663
- "members":{
3664
- "Selector":{"shape":"SelectorObjectReference"}
3665
- }
3666
- },
3667
- "ObjectType":{
3668
- "type":"string",
3669
- "enum":[
3670
- "NODE",
3671
- "LEAF_NODE",
3672
- "POLICY",
3673
- "INDEX"
3674
- ]
3675
- },
3676
- "PathString":{"type":"string"},
3677
- "PathToObjectIdentifiers":{
3678
- "type":"structure",
3679
- "members":{
3680
- "Path":{"shape":"PathString"},
3681
- "ObjectIdentifiers":{"shape":"ObjectIdentifierList"}
3682
- }
3683
- },
3684
- "PathToObjectIdentifiersList":{
3685
- "type":"list",
3686
- "member":{"shape":"PathToObjectIdentifiers"}
3687
- },
3688
- "PolicyAttachment":{
3689
- "type":"structure",
3690
- "members":{
3691
- "PolicyId":{"shape":"ObjectIdentifier"},
3692
- "ObjectIdentifier":{"shape":"ObjectIdentifier"},
3693
- "PolicyType":{"shape":"PolicyType"}
3694
- }
3695
- },
3696
- "PolicyAttachmentList":{
3697
- "type":"list",
3698
- "member":{"shape":"PolicyAttachment"}
3699
- },
3700
- "PolicyToPath":{
3701
- "type":"structure",
3702
- "members":{
3703
- "Path":{"shape":"PathString"},
3704
- "Policies":{"shape":"PolicyAttachmentList"}
3705
- }
3706
- },
3707
- "PolicyToPathList":{
3708
- "type":"list",
3709
- "member":{"shape":"PolicyToPath"}
3710
- },
3711
- "PolicyType":{"type":"string"},
3712
- "PublishSchemaRequest":{
3713
- "type":"structure",
3714
- "required":[
3715
- "DevelopmentSchemaArn",
3716
- "Version"
3717
- ],
3718
- "members":{
3719
- "DevelopmentSchemaArn":{
3720
- "shape":"Arn",
3721
- "location":"header",
3722
- "locationName":"x-amz-data-partition"
3723
- },
3724
- "Version":{"shape":"Version"},
3725
- "MinorVersion":{"shape":"Version"},
3726
- "Name":{"shape":"SchemaName"}
3727
- }
3728
- },
3729
- "PublishSchemaResponse":{
3730
- "type":"structure",
3731
- "members":{
3732
- "PublishedSchemaArn":{"shape":"Arn"}
3733
- }
3734
- },
3735
- "PutSchemaFromJsonRequest":{
3736
- "type":"structure",
3737
- "required":[
3738
- "SchemaArn",
3739
- "Document"
3740
- ],
3741
- "members":{
3742
- "SchemaArn":{
3743
- "shape":"Arn",
3744
- "location":"header",
3745
- "locationName":"x-amz-data-partition"
3746
- },
3747
- "Document":{"shape":"SchemaJsonDocument"}
3748
- }
3749
- },
3750
- "PutSchemaFromJsonResponse":{
3751
- "type":"structure",
3752
- "members":{
3753
- "Arn":{"shape":"Arn"}
3754
- }
3755
- },
3756
- "RangeMode":{
3757
- "type":"string",
3758
- "enum":[
3759
- "FIRST",
3760
- "LAST",
3761
- "LAST_BEFORE_MISSING_VALUES",
3762
- "INCLUSIVE",
3763
- "EXCLUSIVE"
3764
- ]
3765
- },
3766
- "RemoveFacetFromObjectRequest":{
3767
- "type":"structure",
3768
- "required":[
3769
- "DirectoryArn",
3770
- "SchemaFacet",
3771
- "ObjectReference"
3772
- ],
3773
- "members":{
3774
- "DirectoryArn":{
3775
- "shape":"Arn",
3776
- "location":"header",
3777
- "locationName":"x-amz-data-partition"
3778
- },
3779
- "SchemaFacet":{"shape":"SchemaFacet"},
3780
- "ObjectReference":{"shape":"ObjectReference"}
3781
- }
3782
- },
3783
- "RemoveFacetFromObjectResponse":{
3784
- "type":"structure",
3785
- "members":{
3786
- }
3787
- },
3788
- "RequiredAttributeBehavior":{
3789
- "type":"string",
3790
- "enum":[
3791
- "REQUIRED_ALWAYS",
3792
- "NOT_REQUIRED"
3793
- ]
3794
- },
3795
- "ResourceNotFoundException":{
3796
- "type":"structure",
3797
- "members":{
3798
- "Message":{"shape":"ExceptionMessage"}
3799
- },
3800
- "error":{"httpStatusCode":404},
3801
- "exception":true
3802
- },
3803
- "RetryableConflictException":{
3804
- "type":"structure",
3805
- "members":{
3806
- "Message":{"shape":"ExceptionMessage"}
3807
- },
3808
- "error":{"httpStatusCode":409},
3809
- "exception":true
3810
- },
3811
- "Rule":{
3812
- "type":"structure",
3813
- "members":{
3814
- "Type":{"shape":"RuleType"},
3815
- "Parameters":{"shape":"RuleParameterMap"}
3816
- }
3817
- },
3818
- "RuleKey":{
3819
- "type":"string",
3820
- "max":64,
3821
- "min":1,
3822
- "pattern":"^[a-zA-Z0-9._-]*$"
3823
- },
3824
- "RuleMap":{
3825
- "type":"map",
3826
- "key":{"shape":"RuleKey"},
3827
- "value":{"shape":"Rule"}
3828
- },
3829
- "RuleParameterKey":{"type":"string"},
3830
- "RuleParameterMap":{
3831
- "type":"map",
3832
- "key":{"shape":"RuleParameterKey"},
3833
- "value":{"shape":"RuleParameterValue"}
3834
- },
3835
- "RuleParameterValue":{"type":"string"},
3836
- "RuleType":{
3837
- "type":"string",
3838
- "enum":[
3839
- "BINARY_LENGTH",
3840
- "NUMBER_COMPARISON",
3841
- "STRING_FROM_SET",
3842
- "STRING_LENGTH"
3843
- ]
3844
- },
3845
- "SchemaAlreadyExistsException":{
3846
- "type":"structure",
3847
- "members":{
3848
- "Message":{"shape":"ExceptionMessage"}
3849
- },
3850
- "error":{"httpStatusCode":400},
3851
- "exception":true
3852
- },
3853
- "SchemaAlreadyPublishedException":{
3854
- "type":"structure",
3855
- "members":{
3856
- "Message":{"shape":"ExceptionMessage"}
3857
- },
3858
- "error":{"httpStatusCode":400},
3859
- "exception":true
3860
- },
3861
- "SchemaFacet":{
3862
- "type":"structure",
3863
- "members":{
3864
- "SchemaArn":{"shape":"Arn"},
3865
- "FacetName":{"shape":"FacetName"}
3866
- }
3867
- },
3868
- "SchemaFacetList":{
3869
- "type":"list",
3870
- "member":{"shape":"SchemaFacet"}
3871
- },
3872
- "SchemaJsonDocument":{"type":"string"},
3873
- "SchemaName":{
3874
- "type":"string",
3875
- "max":32,
3876
- "min":1,
3877
- "pattern":"^[a-zA-Z0-9._-]*$"
3878
- },
3879
- "SelectorObjectReference":{"type":"string"},
3880
- "StillContainsLinksException":{
3881
- "type":"structure",
3882
- "members":{
3883
- "Message":{"shape":"ExceptionMessage"}
3884
- },
3885
- "error":{"httpStatusCode":400},
3886
- "exception":true
3887
- },
3888
- "StringAttributeValue":{"type":"string"},
3889
- "Tag":{
3890
- "type":"structure",
3891
- "members":{
3892
- "Key":{"shape":"TagKey"},
3893
- "Value":{"shape":"TagValue"}
3894
- }
3895
- },
3896
- "TagKey":{"type":"string"},
3897
- "TagKeyList":{
3898
- "type":"list",
3899
- "member":{"shape":"TagKey"}
3900
- },
3901
- "TagList":{
3902
- "type":"list",
3903
- "member":{"shape":"Tag"}
3904
- },
3905
- "TagResourceRequest":{
3906
- "type":"structure",
3907
- "required":[
3908
- "ResourceArn",
3909
- "Tags"
3910
- ],
3911
- "members":{
3912
- "ResourceArn":{"shape":"Arn"},
3913
- "Tags":{"shape":"TagList"}
3914
- }
3915
- },
3916
- "TagResourceResponse":{
3917
- "type":"structure",
3918
- "members":{
3919
- }
3920
- },
3921
- "TagValue":{"type":"string"},
3922
- "TagsNumberResults":{
3923
- "type":"integer",
3924
- "min":50
3925
- },
3926
- "TypedAttributeValue":{
3927
- "type":"structure",
3928
- "members":{
3929
- "StringValue":{"shape":"StringAttributeValue"},
3930
- "BinaryValue":{"shape":"BinaryAttributeValue"},
3931
- "BooleanValue":{"shape":"BooleanAttributeValue"},
3932
- "NumberValue":{"shape":"NumberAttributeValue"},
3933
- "DatetimeValue":{"shape":"DatetimeAttributeValue"}
3934
- }
3935
- },
3936
- "TypedAttributeValueRange":{
3937
- "type":"structure",
3938
- "required":[
3939
- "StartMode",
3940
- "EndMode"
3941
- ],
3942
- "members":{
3943
- "StartMode":{"shape":"RangeMode"},
3944
- "StartValue":{"shape":"TypedAttributeValue"},
3945
- "EndMode":{"shape":"RangeMode"},
3946
- "EndValue":{"shape":"TypedAttributeValue"}
3947
- }
3948
- },
3949
- "TypedLinkAttributeDefinition":{
3950
- "type":"structure",
3951
- "required":[
3952
- "Name",
3953
- "Type",
3954
- "RequiredBehavior"
3955
- ],
3956
- "members":{
3957
- "Name":{"shape":"AttributeName"},
3958
- "Type":{"shape":"FacetAttributeType"},
3959
- "DefaultValue":{"shape":"TypedAttributeValue"},
3960
- "IsImmutable":{"shape":"Bool"},
3961
- "Rules":{"shape":"RuleMap"},
3962
- "RequiredBehavior":{"shape":"RequiredAttributeBehavior"}
3963
- }
3964
- },
3965
- "TypedLinkAttributeDefinitionList":{
3966
- "type":"list",
3967
- "member":{"shape":"TypedLinkAttributeDefinition"}
3968
- },
3969
- "TypedLinkAttributeRange":{
3970
- "type":"structure",
3971
- "required":["Range"],
3972
- "members":{
3973
- "AttributeName":{"shape":"AttributeName"},
3974
- "Range":{"shape":"TypedAttributeValueRange"}
3975
- }
3976
- },
3977
- "TypedLinkAttributeRangeList":{
3978
- "type":"list",
3979
- "member":{"shape":"TypedLinkAttributeRange"}
3980
- },
3981
- "TypedLinkFacet":{
3982
- "type":"structure",
3983
- "required":[
3984
- "Name",
3985
- "Attributes",
3986
- "IdentityAttributeOrder"
3987
- ],
3988
- "members":{
3989
- "Name":{"shape":"TypedLinkName"},
3990
- "Attributes":{"shape":"TypedLinkAttributeDefinitionList"},
3991
- "IdentityAttributeOrder":{"shape":"AttributeNameList"}
3992
- }
3993
- },
3994
- "TypedLinkFacetAttributeUpdate":{
3995
- "type":"structure",
3996
- "required":[
3997
- "Attribute",
3998
- "Action"
3999
- ],
4000
- "members":{
4001
- "Attribute":{"shape":"TypedLinkAttributeDefinition"},
4002
- "Action":{"shape":"UpdateActionType"}
4003
- }
4004
- },
4005
- "TypedLinkFacetAttributeUpdateList":{
4006
- "type":"list",
4007
- "member":{"shape":"TypedLinkFacetAttributeUpdate"}
4008
- },
4009
- "TypedLinkName":{
4010
- "type":"string",
4011
- "pattern":"^[a-zA-Z0-9._-]*$"
4012
- },
4013
- "TypedLinkNameList":{
4014
- "type":"list",
4015
- "member":{"shape":"TypedLinkName"}
4016
- },
4017
- "TypedLinkSchemaAndFacetName":{
4018
- "type":"structure",
4019
- "required":[
4020
- "SchemaArn",
4021
- "TypedLinkName"
4022
- ],
4023
- "members":{
4024
- "SchemaArn":{"shape":"Arn"},
4025
- "TypedLinkName":{"shape":"TypedLinkName"}
4026
- }
4027
- },
4028
- "TypedLinkSpecifier":{
4029
- "type":"structure",
4030
- "required":[
4031
- "TypedLinkFacet",
4032
- "SourceObjectReference",
4033
- "TargetObjectReference",
4034
- "IdentityAttributeValues"
4035
- ],
4036
- "members":{
4037
- "TypedLinkFacet":{"shape":"TypedLinkSchemaAndFacetName"},
4038
- "SourceObjectReference":{"shape":"ObjectReference"},
4039
- "TargetObjectReference":{"shape":"ObjectReference"},
4040
- "IdentityAttributeValues":{"shape":"AttributeNameAndValueList"}
4041
- }
4042
- },
4043
- "TypedLinkSpecifierList":{
4044
- "type":"list",
4045
- "member":{"shape":"TypedLinkSpecifier"}
4046
- },
4047
- "UnsupportedIndexTypeException":{
4048
- "type":"structure",
4049
- "members":{
4050
- "Message":{"shape":"ExceptionMessage"}
4051
- },
4052
- "error":{"httpStatusCode":400},
4053
- "exception":true
4054
- },
4055
- "UntagResourceRequest":{
4056
- "type":"structure",
4057
- "required":[
4058
- "ResourceArn",
4059
- "TagKeys"
4060
- ],
4061
- "members":{
4062
- "ResourceArn":{"shape":"Arn"},
4063
- "TagKeys":{"shape":"TagKeyList"}
4064
- }
4065
- },
4066
- "UntagResourceResponse":{
4067
- "type":"structure",
4068
- "members":{
4069
- }
4070
- },
4071
- "UpdateActionType":{
4072
- "type":"string",
4073
- "enum":[
4074
- "CREATE_OR_UPDATE",
4075
- "DELETE"
4076
- ]
4077
- },
4078
- "UpdateFacetRequest":{
4079
- "type":"structure",
4080
- "required":[
4081
- "SchemaArn",
4082
- "Name"
4083
- ],
4084
- "members":{
4085
- "SchemaArn":{
4086
- "shape":"Arn",
4087
- "location":"header",
4088
- "locationName":"x-amz-data-partition"
4089
- },
4090
- "Name":{"shape":"FacetName"},
4091
- "AttributeUpdates":{"shape":"FacetAttributeUpdateList"},
4092
- "ObjectType":{"shape":"ObjectType"}
4093
- }
4094
- },
4095
- "UpdateFacetResponse":{
4096
- "type":"structure",
4097
- "members":{
4098
- }
4099
- },
4100
- "UpdateLinkAttributesRequest":{
4101
- "type":"structure",
4102
- "required":[
4103
- "DirectoryArn",
4104
- "TypedLinkSpecifier",
4105
- "AttributeUpdates"
4106
- ],
4107
- "members":{
4108
- "DirectoryArn":{
4109
- "shape":"Arn",
4110
- "location":"header",
4111
- "locationName":"x-amz-data-partition"
4112
- },
4113
- "TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
4114
- "AttributeUpdates":{"shape":"LinkAttributeUpdateList"}
4115
- }
4116
- },
4117
- "UpdateLinkAttributesResponse":{
4118
- "type":"structure",
4119
- "members":{
4120
- }
4121
- },
4122
- "UpdateObjectAttributesRequest":{
4123
- "type":"structure",
4124
- "required":[
4125
- "DirectoryArn",
4126
- "ObjectReference",
4127
- "AttributeUpdates"
4128
- ],
4129
- "members":{
4130
- "DirectoryArn":{
4131
- "shape":"Arn",
4132
- "location":"header",
4133
- "locationName":"x-amz-data-partition"
4134
- },
4135
- "ObjectReference":{"shape":"ObjectReference"},
4136
- "AttributeUpdates":{"shape":"ObjectAttributeUpdateList"}
4137
- }
4138
- },
4139
- "UpdateObjectAttributesResponse":{
4140
- "type":"structure",
4141
- "members":{
4142
- "ObjectIdentifier":{"shape":"ObjectIdentifier"}
4143
- }
4144
- },
4145
- "UpdateSchemaRequest":{
4146
- "type":"structure",
4147
- "required":[
4148
- "SchemaArn",
4149
- "Name"
4150
- ],
4151
- "members":{
4152
- "SchemaArn":{
4153
- "shape":"Arn",
4154
- "location":"header",
4155
- "locationName":"x-amz-data-partition"
4156
- },
4157
- "Name":{"shape":"SchemaName"}
4158
- }
4159
- },
4160
- "UpdateSchemaResponse":{
4161
- "type":"structure",
4162
- "members":{
4163
- "SchemaArn":{"shape":"Arn"}
4164
- }
4165
- },
4166
- "UpdateTypedLinkFacetRequest":{
4167
- "type":"structure",
4168
- "required":[
4169
- "SchemaArn",
4170
- "Name",
4171
- "AttributeUpdates",
4172
- "IdentityAttributeOrder"
4173
- ],
4174
- "members":{
4175
- "SchemaArn":{
4176
- "shape":"Arn",
4177
- "location":"header",
4178
- "locationName":"x-amz-data-partition"
4179
- },
4180
- "Name":{"shape":"TypedLinkName"},
4181
- "AttributeUpdates":{"shape":"TypedLinkFacetAttributeUpdateList"},
4182
- "IdentityAttributeOrder":{"shape":"AttributeNameList"}
4183
- }
4184
- },
4185
- "UpdateTypedLinkFacetResponse":{
4186
- "type":"structure",
4187
- "members":{
4188
- }
4189
- },
4190
- "UpgradeAppliedSchemaRequest":{
4191
- "type":"structure",
4192
- "required":[
4193
- "PublishedSchemaArn",
4194
- "DirectoryArn"
4195
- ],
4196
- "members":{
4197
- "PublishedSchemaArn":{"shape":"Arn"},
4198
- "DirectoryArn":{"shape":"Arn"},
4199
- "DryRun":{"shape":"Bool"}
4200
- }
4201
- },
4202
- "UpgradeAppliedSchemaResponse":{
4203
- "type":"structure",
4204
- "members":{
4205
- "UpgradedSchemaArn":{"shape":"Arn"},
4206
- "DirectoryArn":{"shape":"Arn"}
4207
- }
4208
- },
4209
- "UpgradePublishedSchemaRequest":{
4210
- "type":"structure",
4211
- "required":[
4212
- "DevelopmentSchemaArn",
4213
- "PublishedSchemaArn",
4214
- "MinorVersion"
4215
- ],
4216
- "members":{
4217
- "DevelopmentSchemaArn":{"shape":"Arn"},
4218
- "PublishedSchemaArn":{"shape":"Arn"},
4219
- "MinorVersion":{"shape":"Version"},
4220
- "DryRun":{"shape":"Bool"}
4221
- }
4222
- },
4223
- "UpgradePublishedSchemaResponse":{
4224
- "type":"structure",
4225
- "members":{
4226
- "UpgradedSchemaArn":{"shape":"Arn"}
4227
- }
4228
- },
4229
- "ValidationException":{
4230
- "type":"structure",
4231
- "members":{
4232
- "Message":{"shape":"ExceptionMessage"}
4233
- },
4234
- "error":{"httpStatusCode":400},
4235
- "exception":true
4236
- },
4237
- "Version":{
4238
- "type":"string",
4239
- "max":10,
4240
- "min":1,
4241
- "pattern":"^[a-zA-Z0-9._-]*$"
4242
- }
4243
- }
4244
- }