@aws-sdk/client-clouddirectory 3.32.0 → 3.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1062) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist-cjs/CloudDirectory.js +1005 -0
  3. package/dist-cjs/CloudDirectoryClient.js +48 -0
  4. package/dist-cjs/commands/AddFacetToObjectCommand.js +60 -0
  5. package/dist-cjs/commands/ApplySchemaCommand.js +61 -0
  6. package/dist-cjs/commands/AttachObjectCommand.js +70 -0
  7. package/dist-cjs/commands/AttachPolicyCommand.js +61 -0
  8. package/dist-cjs/commands/AttachToIndexCommand.js +60 -0
  9. package/dist-cjs/commands/AttachTypedLinkCommand.js +60 -0
  10. package/dist-cjs/commands/BatchReadCommand.js +60 -0
  11. package/dist-cjs/commands/BatchWriteCommand.js +61 -0
  12. package/dist-cjs/commands/CreateDirectoryCommand.js +63 -0
  13. package/dist-cjs/commands/CreateFacetCommand.js +61 -0
  14. package/dist-cjs/commands/CreateIndexCommand.js +60 -0
  15. package/dist-cjs/commands/CreateObjectCommand.js +63 -0
  16. package/dist-cjs/commands/CreateSchemaCommand.js +80 -0
  17. package/dist-cjs/commands/CreateTypedLinkFacetCommand.js +60 -0
  18. package/dist-cjs/commands/DeleteDirectoryCommand.js +62 -0
  19. package/dist-cjs/commands/DeleteFacetCommand.js +62 -0
  20. package/dist-cjs/commands/DeleteObjectCommand.js +61 -0
  21. package/dist-cjs/commands/DeleteSchemaCommand.js +60 -0
  22. package/dist-cjs/commands/DeleteTypedLinkFacetCommand.js +60 -0
  23. package/dist-cjs/commands/DetachFromIndexCommand.js +60 -0
  24. package/dist-cjs/commands/DetachObjectCommand.js +61 -0
  25. package/dist-cjs/commands/DetachPolicyCommand.js +60 -0
  26. package/dist-cjs/commands/DetachTypedLinkCommand.js +60 -0
  27. package/dist-cjs/commands/DisableDirectoryCommand.js +61 -0
  28. package/dist-cjs/commands/EnableDirectoryCommand.js +61 -0
  29. package/dist-cjs/commands/GetAppliedSchemaVersionCommand.js +60 -0
  30. package/dist-cjs/commands/GetDirectoryCommand.js +60 -0
  31. package/dist-cjs/commands/GetFacetCommand.js +61 -0
  32. package/dist-cjs/commands/GetLinkAttributesCommand.js +60 -0
  33. package/dist-cjs/commands/GetObjectAttributesCommand.js +60 -0
  34. package/dist-cjs/commands/GetObjectInformationCommand.js +60 -0
  35. package/dist-cjs/commands/GetSchemaAsJsonCommand.js +60 -0
  36. package/dist-cjs/commands/GetTypedLinkFacetInformationCommand.js +60 -0
  37. package/dist-cjs/commands/ListAppliedSchemaArnsCommand.js +60 -0
  38. package/dist-cjs/commands/ListAttachedIndicesCommand.js +60 -0
  39. package/dist-cjs/commands/ListDevelopmentSchemaArnsCommand.js +61 -0
  40. package/dist-cjs/commands/ListDirectoriesCommand.js +60 -0
  41. package/dist-cjs/commands/ListFacetAttributesCommand.js +60 -0
  42. package/dist-cjs/commands/ListFacetNamesCommand.js +60 -0
  43. package/dist-cjs/commands/ListIncomingTypedLinksCommand.js +62 -0
  44. package/dist-cjs/commands/ListIndexCommand.js +60 -0
  45. package/dist-cjs/commands/ListManagedSchemaArnsCommand.js +60 -0
  46. package/dist-cjs/commands/ListObjectAttributesCommand.js +61 -0
  47. package/dist-cjs/commands/ListObjectChildrenCommand.js +61 -0
  48. package/dist-cjs/commands/ListObjectParentPathsCommand.js +67 -0
  49. package/dist-cjs/commands/ListObjectParentsCommand.js +61 -0
  50. package/dist-cjs/commands/ListObjectPoliciesCommand.js +60 -0
  51. package/dist-cjs/commands/ListOutgoingTypedLinksCommand.js +62 -0
  52. package/dist-cjs/commands/ListPolicyAttachmentsCommand.js +60 -0
  53. package/dist-cjs/commands/ListPublishedSchemaArnsCommand.js +60 -0
  54. package/dist-cjs/commands/ListTagsForResourceCommand.js +62 -0
  55. package/dist-cjs/commands/ListTypedLinkFacetAttributesCommand.js +60 -0
  56. package/dist-cjs/commands/ListTypedLinkFacetNamesCommand.js +61 -0
  57. package/dist-cjs/commands/LookupPolicyCommand.js +65 -0
  58. package/dist-cjs/commands/PublishSchemaCommand.js +60 -0
  59. package/dist-cjs/commands/PutSchemaFromJsonCommand.js +60 -0
  60. package/dist-cjs/commands/RemoveFacetFromObjectCommand.js +60 -0
  61. package/dist-cjs/commands/TagResourceCommand.js +60 -0
  62. package/dist-cjs/commands/UntagResourceCommand.js +60 -0
  63. package/dist-cjs/commands/UpdateFacetCommand.js +71 -0
  64. package/dist-cjs/commands/UpdateLinkAttributesCommand.js +60 -0
  65. package/dist-cjs/commands/UpdateObjectAttributesCommand.js +60 -0
  66. package/dist-cjs/commands/UpdateSchemaCommand.js +61 -0
  67. package/dist-cjs/commands/UpdateTypedLinkFacetCommand.js +60 -0
  68. package/dist-cjs/commands/UpgradeAppliedSchemaCommand.js +60 -0
  69. package/dist-cjs/commands/UpgradePublishedSchemaCommand.js +60 -0
  70. package/dist-cjs/endpoints.js +56 -0
  71. package/dist-cjs/index.js +92 -0
  72. package/dist-cjs/models/index.js +4 -0
  73. package/dist-cjs/models/models_0.js +2627 -0
  74. package/dist-cjs/pagination/Interfaces.js +2 -0
  75. package/dist-cjs/pagination/ListAppliedSchemaArnsPaginator.js +45 -0
  76. package/dist-cjs/pagination/ListAttachedIndicesPaginator.js +45 -0
  77. package/dist-cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +45 -0
  78. package/dist-cjs/pagination/ListDirectoriesPaginator.js +45 -0
  79. package/dist-cjs/pagination/ListFacetAttributesPaginator.js +45 -0
  80. package/dist-cjs/pagination/ListFacetNamesPaginator.js +45 -0
  81. package/dist-cjs/pagination/ListIndexPaginator.js +45 -0
  82. package/dist-cjs/pagination/ListManagedSchemaArnsPaginator.js +45 -0
  83. package/dist-cjs/pagination/ListObjectAttributesPaginator.js +45 -0
  84. package/dist-cjs/pagination/ListObjectChildrenPaginator.js +45 -0
  85. package/dist-cjs/pagination/ListObjectParentPathsPaginator.js +45 -0
  86. package/dist-cjs/pagination/ListObjectParentsPaginator.js +45 -0
  87. package/dist-cjs/pagination/ListObjectPoliciesPaginator.js +45 -0
  88. package/dist-cjs/pagination/ListPolicyAttachmentsPaginator.js +45 -0
  89. package/dist-cjs/pagination/ListPublishedSchemaArnsPaginator.js +45 -0
  90. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +45 -0
  91. package/dist-cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +45 -0
  92. package/dist-cjs/pagination/ListTypedLinkFacetNamesPaginator.js +45 -0
  93. package/dist-cjs/pagination/LookupPolicyPaginator.js +45 -0
  94. package/dist-cjs/protocols/Aws_restJson1.js +11264 -0
  95. package/dist-cjs/runtimeConfig.browser.js +41 -0
  96. package/dist-cjs/runtimeConfig.js +46 -0
  97. package/dist-cjs/runtimeConfig.native.js +19 -0
  98. package/dist-cjs/runtimeConfig.shared.js +20 -0
  99. package/dist-es/CloudDirectory.js +1000 -0
  100. package/dist-es/CloudDirectoryClient.js +37 -0
  101. package/dist-es/commands/AddFacetToObjectCommand.js +39 -0
  102. package/dist-es/commands/ApplySchemaCommand.js +39 -0
  103. package/dist-es/commands/AttachObjectCommand.js +39 -0
  104. package/dist-es/commands/AttachPolicyCommand.js +39 -0
  105. package/dist-es/commands/AttachToIndexCommand.js +39 -0
  106. package/dist-es/commands/AttachTypedLinkCommand.js +39 -0
  107. package/dist-es/commands/BatchReadCommand.js +39 -0
  108. package/dist-es/commands/BatchWriteCommand.js +39 -0
  109. package/dist-es/commands/CreateDirectoryCommand.js +39 -0
  110. package/dist-es/commands/CreateFacetCommand.js +39 -0
  111. package/dist-es/commands/CreateIndexCommand.js +39 -0
  112. package/dist-es/commands/CreateObjectCommand.js +39 -0
  113. package/dist-es/commands/CreateSchemaCommand.js +39 -0
  114. package/dist-es/commands/CreateTypedLinkFacetCommand.js +39 -0
  115. package/dist-es/commands/DeleteDirectoryCommand.js +39 -0
  116. package/dist-es/commands/DeleteFacetCommand.js +39 -0
  117. package/dist-es/commands/DeleteObjectCommand.js +39 -0
  118. package/dist-es/commands/DeleteSchemaCommand.js +39 -0
  119. package/dist-es/commands/DeleteTypedLinkFacetCommand.js +39 -0
  120. package/dist-es/commands/DetachFromIndexCommand.js +39 -0
  121. package/dist-es/commands/DetachObjectCommand.js +39 -0
  122. package/dist-es/commands/DetachPolicyCommand.js +39 -0
  123. package/dist-es/commands/DetachTypedLinkCommand.js +39 -0
  124. package/dist-es/commands/DisableDirectoryCommand.js +39 -0
  125. package/dist-es/commands/EnableDirectoryCommand.js +39 -0
  126. package/dist-es/commands/GetAppliedSchemaVersionCommand.js +39 -0
  127. package/dist-es/commands/GetDirectoryCommand.js +39 -0
  128. package/dist-es/commands/GetFacetCommand.js +39 -0
  129. package/dist-es/commands/GetLinkAttributesCommand.js +39 -0
  130. package/dist-es/commands/GetObjectAttributesCommand.js +39 -0
  131. package/dist-es/commands/GetObjectInformationCommand.js +39 -0
  132. package/dist-es/commands/GetSchemaAsJsonCommand.js +39 -0
  133. package/dist-es/commands/GetTypedLinkFacetInformationCommand.js +39 -0
  134. package/dist-es/commands/ListAppliedSchemaArnsCommand.js +39 -0
  135. package/dist-es/commands/ListAttachedIndicesCommand.js +39 -0
  136. package/dist-es/commands/ListDevelopmentSchemaArnsCommand.js +39 -0
  137. package/dist-es/commands/ListDirectoriesCommand.js +39 -0
  138. package/dist-es/commands/ListFacetAttributesCommand.js +39 -0
  139. package/dist-es/commands/ListFacetNamesCommand.js +39 -0
  140. package/dist-es/commands/ListIncomingTypedLinksCommand.js +39 -0
  141. package/dist-es/commands/ListIndexCommand.js +39 -0
  142. package/dist-es/commands/ListManagedSchemaArnsCommand.js +39 -0
  143. package/dist-es/commands/ListObjectAttributesCommand.js +39 -0
  144. package/dist-es/commands/ListObjectChildrenCommand.js +39 -0
  145. package/dist-es/commands/ListObjectParentPathsCommand.js +39 -0
  146. package/dist-es/commands/ListObjectParentsCommand.js +39 -0
  147. package/dist-es/commands/ListObjectPoliciesCommand.js +39 -0
  148. package/dist-es/commands/ListOutgoingTypedLinksCommand.js +39 -0
  149. package/dist-es/commands/ListPolicyAttachmentsCommand.js +39 -0
  150. package/dist-es/commands/ListPublishedSchemaArnsCommand.js +39 -0
  151. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  152. package/dist-es/commands/ListTypedLinkFacetAttributesCommand.js +39 -0
  153. package/dist-es/commands/ListTypedLinkFacetNamesCommand.js +39 -0
  154. package/dist-es/commands/LookupPolicyCommand.js +39 -0
  155. package/dist-es/commands/PublishSchemaCommand.js +39 -0
  156. package/dist-es/commands/PutSchemaFromJsonCommand.js +39 -0
  157. package/dist-es/commands/RemoveFacetFromObjectCommand.js +39 -0
  158. package/dist-es/commands/TagResourceCommand.js +39 -0
  159. package/dist-es/commands/UntagResourceCommand.js +39 -0
  160. package/dist-es/commands/UpdateFacetCommand.js +39 -0
  161. package/dist-es/commands/UpdateLinkAttributesCommand.js +39 -0
  162. package/dist-es/commands/UpdateObjectAttributesCommand.js +39 -0
  163. package/dist-es/commands/UpdateSchemaCommand.js +39 -0
  164. package/dist-es/commands/UpdateTypedLinkFacetCommand.js +39 -0
  165. package/dist-es/commands/UpgradeAppliedSchemaCommand.js +39 -0
  166. package/dist-es/commands/UpgradePublishedSchemaCommand.js +39 -0
  167. package/dist-es/endpoints.js +52 -0
  168. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  169. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  170. package/dist-es/models/models_0.js +1252 -0
  171. package/dist-es/pagination/Interfaces.js +1 -0
  172. package/dist-es/pagination/ListAppliedSchemaArnsPaginator.js +74 -0
  173. package/dist-es/pagination/ListAttachedIndicesPaginator.js +74 -0
  174. package/dist-es/pagination/ListDevelopmentSchemaArnsPaginator.js +74 -0
  175. package/dist-es/pagination/ListDirectoriesPaginator.js +74 -0
  176. package/dist-es/pagination/ListFacetAttributesPaginator.js +74 -0
  177. package/dist-es/pagination/ListFacetNamesPaginator.js +74 -0
  178. package/dist-es/pagination/ListIndexPaginator.js +74 -0
  179. package/dist-es/pagination/ListManagedSchemaArnsPaginator.js +74 -0
  180. package/dist-es/pagination/ListObjectAttributesPaginator.js +74 -0
  181. package/dist-es/pagination/ListObjectChildrenPaginator.js +74 -0
  182. package/dist-es/pagination/ListObjectParentPathsPaginator.js +74 -0
  183. package/dist-es/pagination/ListObjectParentsPaginator.js +74 -0
  184. package/dist-es/pagination/ListObjectPoliciesPaginator.js +74 -0
  185. package/dist-es/pagination/ListPolicyAttachmentsPaginator.js +74 -0
  186. package/dist-es/pagination/ListPublishedSchemaArnsPaginator.js +74 -0
  187. package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
  188. package/dist-es/pagination/ListTypedLinkFacetAttributesPaginator.js +74 -0
  189. package/dist-es/pagination/ListTypedLinkFacetNamesPaginator.js +74 -0
  190. package/dist-es/pagination/LookupPolicyPaginator.js +74 -0
  191. package/dist-es/protocols/Aws_restJson1.js +11983 -0
  192. package/dist-es/runtimeConfig.browser.js +16 -0
  193. package/dist-es/runtimeConfig.js +21 -0
  194. package/dist-es/runtimeConfig.native.js +8 -0
  195. package/dist-es/runtimeConfig.shared.js +13 -0
  196. package/dist-types/CloudDirectory.d.ts +558 -0
  197. package/dist-types/CloudDirectoryClient.d.ts +203 -0
  198. package/dist-types/commands/AddFacetToObjectCommand.d.ts +35 -0
  199. package/dist-types/commands/ApplySchemaCommand.d.ts +36 -0
  200. package/dist-types/commands/AttachObjectCommand.d.ts +45 -0
  201. package/dist-types/commands/AttachPolicyCommand.d.ts +36 -0
  202. package/dist-types/commands/AttachToIndexCommand.d.ts +35 -0
  203. package/dist-types/commands/AttachTypedLinkCommand.d.ts +35 -0
  204. package/dist-types/commands/BatchReadCommand.d.ts +35 -0
  205. package/dist-types/commands/BatchWriteCommand.d.ts +36 -0
  206. package/dist-types/commands/CreateDirectoryCommand.d.ts +38 -0
  207. package/dist-types/commands/CreateFacetCommand.d.ts +36 -0
  208. package/dist-types/commands/CreateIndexCommand.d.ts +35 -0
  209. package/dist-types/commands/CreateObjectCommand.d.ts +38 -0
  210. package/dist-types/commands/CreateSchemaCommand.d.ts +55 -0
  211. package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
  212. package/dist-types/commands/DeleteDirectoryCommand.d.ts +37 -0
  213. package/dist-types/commands/DeleteFacetCommand.d.ts +37 -0
  214. package/dist-types/commands/DeleteObjectCommand.d.ts +36 -0
  215. package/dist-types/commands/DeleteSchemaCommand.d.ts +35 -0
  216. package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
  217. package/dist-types/commands/DetachFromIndexCommand.d.ts +35 -0
  218. package/dist-types/commands/DetachObjectCommand.d.ts +36 -0
  219. package/dist-types/commands/DetachPolicyCommand.d.ts +35 -0
  220. package/dist-types/commands/DetachTypedLinkCommand.d.ts +35 -0
  221. package/dist-types/commands/DisableDirectoryCommand.d.ts +36 -0
  222. package/dist-types/commands/EnableDirectoryCommand.d.ts +36 -0
  223. package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
  224. package/dist-types/commands/GetDirectoryCommand.d.ts +35 -0
  225. package/dist-types/commands/GetFacetCommand.d.ts +36 -0
  226. package/dist-types/commands/GetLinkAttributesCommand.d.ts +35 -0
  227. package/dist-types/commands/GetObjectAttributesCommand.d.ts +35 -0
  228. package/dist-types/commands/GetObjectInformationCommand.d.ts +35 -0
  229. package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +35 -0
  230. package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
  231. package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
  232. package/dist-types/commands/ListAttachedIndicesCommand.d.ts +35 -0
  233. package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
  234. package/dist-types/commands/ListDirectoriesCommand.d.ts +35 -0
  235. package/dist-types/commands/ListFacetAttributesCommand.d.ts +35 -0
  236. package/dist-types/commands/ListFacetNamesCommand.d.ts +35 -0
  237. package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
  238. package/dist-types/commands/ListIndexCommand.d.ts +35 -0
  239. package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
  240. package/dist-types/commands/ListObjectAttributesCommand.d.ts +36 -0
  241. package/dist-types/commands/ListObjectChildrenCommand.d.ts +36 -0
  242. package/dist-types/commands/ListObjectParentPathsCommand.d.ts +42 -0
  243. package/dist-types/commands/ListObjectParentsCommand.d.ts +36 -0
  244. package/dist-types/commands/ListObjectPoliciesCommand.d.ts +35 -0
  245. package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
  246. package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
  247. package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
  248. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  249. package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
  250. package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
  251. package/dist-types/commands/LookupPolicyCommand.d.ts +40 -0
  252. package/dist-types/commands/PublishSchemaCommand.d.ts +35 -0
  253. package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +35 -0
  254. package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
  255. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  256. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  257. package/dist-types/commands/UpdateFacetCommand.d.ts +46 -0
  258. package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +35 -0
  259. package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +35 -0
  260. package/dist-types/commands/UpdateSchemaCommand.d.ts +36 -0
  261. package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
  262. package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
  263. package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
  264. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  265. package/{index.ts → dist-types/index.d.ts} +0 -0
  266. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  267. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  268. package/dist-types/pagination/Interfaces.d.ts +6 -0
  269. package/dist-types/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
  270. package/dist-types/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
  271. package/dist-types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
  272. package/dist-types/pagination/ListDirectoriesPaginator.d.ts +4 -0
  273. package/dist-types/pagination/ListFacetAttributesPaginator.d.ts +4 -0
  274. package/dist-types/pagination/ListFacetNamesPaginator.d.ts +4 -0
  275. package/dist-types/pagination/ListIndexPaginator.d.ts +4 -0
  276. package/dist-types/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
  277. package/dist-types/pagination/ListObjectAttributesPaginator.d.ts +4 -0
  278. package/dist-types/pagination/ListObjectChildrenPaginator.d.ts +4 -0
  279. package/dist-types/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
  280. package/dist-types/pagination/ListObjectParentsPaginator.d.ts +4 -0
  281. package/dist-types/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
  282. package/dist-types/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
  283. package/dist-types/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
  284. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  285. package/dist-types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
  286. package/dist-types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
  287. package/dist-types/pagination/LookupPolicyPaginator.d.ts +4 -0
  288. package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
  289. package/dist-types/runtimeConfig.browser.d.ts +37 -0
  290. package/dist-types/runtimeConfig.d.ts +37 -0
  291. package/dist-types/runtimeConfig.native.d.ts +36 -0
  292. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  293. package/dist-types/ts3.4/CloudDirectory.d.ts +558 -0
  294. package/dist-types/ts3.4/CloudDirectoryClient.d.ts +203 -0
  295. package/dist-types/ts3.4/commands/AddFacetToObjectCommand.d.ts +35 -0
  296. package/dist-types/ts3.4/commands/ApplySchemaCommand.d.ts +36 -0
  297. package/dist-types/ts3.4/commands/AttachObjectCommand.d.ts +45 -0
  298. package/dist-types/ts3.4/commands/AttachPolicyCommand.d.ts +36 -0
  299. package/dist-types/ts3.4/commands/AttachToIndexCommand.d.ts +35 -0
  300. package/dist-types/ts3.4/commands/AttachTypedLinkCommand.d.ts +35 -0
  301. package/dist-types/ts3.4/commands/BatchReadCommand.d.ts +35 -0
  302. package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +36 -0
  303. package/dist-types/ts3.4/commands/CreateDirectoryCommand.d.ts +38 -0
  304. package/dist-types/ts3.4/commands/CreateFacetCommand.d.ts +36 -0
  305. package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +35 -0
  306. package/dist-types/ts3.4/commands/CreateObjectCommand.d.ts +38 -0
  307. package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +55 -0
  308. package/dist-types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
  309. package/dist-types/ts3.4/commands/DeleteDirectoryCommand.d.ts +37 -0
  310. package/dist-types/ts3.4/commands/DeleteFacetCommand.d.ts +37 -0
  311. package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +36 -0
  312. package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +35 -0
  313. package/dist-types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
  314. package/dist-types/ts3.4/commands/DetachFromIndexCommand.d.ts +35 -0
  315. package/dist-types/ts3.4/commands/DetachObjectCommand.d.ts +36 -0
  316. package/dist-types/ts3.4/commands/DetachPolicyCommand.d.ts +35 -0
  317. package/dist-types/ts3.4/commands/DetachTypedLinkCommand.d.ts +35 -0
  318. package/dist-types/ts3.4/commands/DisableDirectoryCommand.d.ts +36 -0
  319. package/dist-types/ts3.4/commands/EnableDirectoryCommand.d.ts +36 -0
  320. package/dist-types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
  321. package/dist-types/ts3.4/commands/GetDirectoryCommand.d.ts +35 -0
  322. package/dist-types/ts3.4/commands/GetFacetCommand.d.ts +36 -0
  323. package/dist-types/ts3.4/commands/GetLinkAttributesCommand.d.ts +35 -0
  324. package/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +35 -0
  325. package/dist-types/ts3.4/commands/GetObjectInformationCommand.d.ts +35 -0
  326. package/dist-types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +35 -0
  327. package/dist-types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
  328. package/dist-types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
  329. package/dist-types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +35 -0
  330. package/dist-types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
  331. package/dist-types/ts3.4/commands/ListDirectoriesCommand.d.ts +35 -0
  332. package/dist-types/ts3.4/commands/ListFacetAttributesCommand.d.ts +35 -0
  333. package/dist-types/ts3.4/commands/ListFacetNamesCommand.d.ts +35 -0
  334. package/dist-types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
  335. package/dist-types/ts3.4/commands/ListIndexCommand.d.ts +35 -0
  336. package/dist-types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
  337. package/dist-types/ts3.4/commands/ListObjectAttributesCommand.d.ts +36 -0
  338. package/dist-types/ts3.4/commands/ListObjectChildrenCommand.d.ts +36 -0
  339. package/dist-types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +42 -0
  340. package/dist-types/ts3.4/commands/ListObjectParentsCommand.d.ts +36 -0
  341. package/dist-types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +35 -0
  342. package/dist-types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
  343. package/dist-types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
  344. package/dist-types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
  345. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -0
  346. package/dist-types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
  347. package/dist-types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
  348. package/dist-types/ts3.4/commands/LookupPolicyCommand.d.ts +40 -0
  349. package/dist-types/ts3.4/commands/PublishSchemaCommand.d.ts +35 -0
  350. package/dist-types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +35 -0
  351. package/dist-types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
  352. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  353. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  354. package/dist-types/ts3.4/commands/UpdateFacetCommand.d.ts +46 -0
  355. package/dist-types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +35 -0
  356. package/dist-types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +35 -0
  357. package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +36 -0
  358. package/dist-types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
  359. package/dist-types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
  360. package/dist-types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
  361. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  362. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  363. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  364. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  365. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  366. package/dist-types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
  367. package/dist-types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
  368. package/dist-types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
  369. package/dist-types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +4 -0
  370. package/dist-types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +4 -0
  371. package/dist-types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +4 -0
  372. package/dist-types/ts3.4/pagination/ListIndexPaginator.d.ts +4 -0
  373. package/dist-types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
  374. package/dist-types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +4 -0
  375. package/dist-types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +4 -0
  376. package/dist-types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
  377. package/dist-types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +4 -0
  378. package/dist-types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
  379. package/dist-types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
  380. package/dist-types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
  381. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  382. package/dist-types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
  383. package/dist-types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
  384. package/dist-types/ts3.4/pagination/LookupPolicyPaginator.d.ts +4 -0
  385. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +200 -0
  386. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  387. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  388. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  389. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  390. package/package.json +52 -49
  391. package/CloudDirectory.ts +0 -2405
  392. package/CloudDirectoryClient.ts +0 -516
  393. package/commands/AddFacetToObjectCommand.ts +0 -94
  394. package/commands/ApplySchemaCommand.ts +0 -95
  395. package/commands/AttachObjectCommand.ts +0 -104
  396. package/commands/AttachPolicyCommand.ts +0 -95
  397. package/commands/AttachToIndexCommand.ts +0 -94
  398. package/commands/AttachTypedLinkCommand.ts +0 -94
  399. package/commands/BatchReadCommand.ts +0 -94
  400. package/commands/BatchWriteCommand.ts +0 -95
  401. package/commands/CreateDirectoryCommand.ts +0 -97
  402. package/commands/CreateFacetCommand.ts +0 -95
  403. package/commands/CreateIndexCommand.ts +0 -94
  404. package/commands/CreateObjectCommand.ts +0 -97
  405. package/commands/CreateSchemaCommand.ts +0 -114
  406. package/commands/CreateTypedLinkFacetCommand.ts +0 -94
  407. package/commands/DeleteDirectoryCommand.ts +0 -96
  408. package/commands/DeleteFacetCommand.ts +0 -96
  409. package/commands/DeleteObjectCommand.ts +0 -95
  410. package/commands/DeleteSchemaCommand.ts +0 -94
  411. package/commands/DeleteTypedLinkFacetCommand.ts +0 -94
  412. package/commands/DetachFromIndexCommand.ts +0 -94
  413. package/commands/DetachObjectCommand.ts +0 -95
  414. package/commands/DetachPolicyCommand.ts +0 -94
  415. package/commands/DetachTypedLinkCommand.ts +0 -94
  416. package/commands/DisableDirectoryCommand.ts +0 -95
  417. package/commands/EnableDirectoryCommand.ts +0 -95
  418. package/commands/GetAppliedSchemaVersionCommand.ts +0 -94
  419. package/commands/GetDirectoryCommand.ts +0 -94
  420. package/commands/GetFacetCommand.ts +0 -95
  421. package/commands/GetLinkAttributesCommand.ts +0 -94
  422. package/commands/GetObjectAttributesCommand.ts +0 -94
  423. package/commands/GetObjectInformationCommand.ts +0 -94
  424. package/commands/GetSchemaAsJsonCommand.ts +0 -94
  425. package/commands/GetTypedLinkFacetInformationCommand.ts +0 -99
  426. package/commands/ListAppliedSchemaArnsCommand.ts +0 -94
  427. package/commands/ListAttachedIndicesCommand.ts +0 -94
  428. package/commands/ListDevelopmentSchemaArnsCommand.ts +0 -98
  429. package/commands/ListDirectoriesCommand.ts +0 -94
  430. package/commands/ListFacetAttributesCommand.ts +0 -94
  431. package/commands/ListFacetNamesCommand.ts +0 -94
  432. package/commands/ListIncomingTypedLinksCommand.ts +0 -96
  433. package/commands/ListIndexCommand.ts +0 -94
  434. package/commands/ListManagedSchemaArnsCommand.ts +0 -94
  435. package/commands/ListObjectAttributesCommand.ts +0 -95
  436. package/commands/ListObjectChildrenCommand.ts +0 -95
  437. package/commands/ListObjectParentPathsCommand.ts +0 -101
  438. package/commands/ListObjectParentsCommand.ts +0 -95
  439. package/commands/ListObjectPoliciesCommand.ts +0 -94
  440. package/commands/ListOutgoingTypedLinksCommand.ts +0 -96
  441. package/commands/ListPolicyAttachmentsCommand.ts +0 -94
  442. package/commands/ListPublishedSchemaArnsCommand.ts +0 -94
  443. package/commands/ListTagsForResourceCommand.ts +0 -96
  444. package/commands/ListTypedLinkFacetAttributesCommand.ts +0 -99
  445. package/commands/ListTypedLinkFacetNamesCommand.ts +0 -95
  446. package/commands/LookupPolicyCommand.ts +0 -99
  447. package/commands/PublishSchemaCommand.ts +0 -94
  448. package/commands/PutSchemaFromJsonCommand.ts +0 -94
  449. package/commands/RemoveFacetFromObjectCommand.ts +0 -94
  450. package/commands/TagResourceCommand.ts +0 -94
  451. package/commands/UntagResourceCommand.ts +0 -94
  452. package/commands/UpdateFacetCommand.ts +0 -105
  453. package/commands/UpdateLinkAttributesCommand.ts +0 -94
  454. package/commands/UpdateObjectAttributesCommand.ts +0 -94
  455. package/commands/UpdateSchemaCommand.ts +0 -95
  456. package/commands/UpdateTypedLinkFacetCommand.ts +0 -94
  457. package/commands/UpgradeAppliedSchemaCommand.ts +0 -94
  458. package/commands/UpgradePublishedSchemaCommand.ts +0 -94
  459. package/dist/cjs/CloudDirectory.js +0 -1006
  460. package/dist/cjs/CloudDirectory.js.map +0 -1
  461. package/dist/cjs/CloudDirectoryClient.js +0 -49
  462. package/dist/cjs/CloudDirectoryClient.js.map +0 -1
  463. package/dist/cjs/commands/AddFacetToObjectCommand.js +0 -61
  464. package/dist/cjs/commands/AddFacetToObjectCommand.js.map +0 -1
  465. package/dist/cjs/commands/ApplySchemaCommand.js +0 -62
  466. package/dist/cjs/commands/ApplySchemaCommand.js.map +0 -1
  467. package/dist/cjs/commands/AttachObjectCommand.js +0 -71
  468. package/dist/cjs/commands/AttachObjectCommand.js.map +0 -1
  469. package/dist/cjs/commands/AttachPolicyCommand.js +0 -62
  470. package/dist/cjs/commands/AttachPolicyCommand.js.map +0 -1
  471. package/dist/cjs/commands/AttachToIndexCommand.js +0 -61
  472. package/dist/cjs/commands/AttachToIndexCommand.js.map +0 -1
  473. package/dist/cjs/commands/AttachTypedLinkCommand.js +0 -61
  474. package/dist/cjs/commands/AttachTypedLinkCommand.js.map +0 -1
  475. package/dist/cjs/commands/BatchReadCommand.js +0 -61
  476. package/dist/cjs/commands/BatchReadCommand.js.map +0 -1
  477. package/dist/cjs/commands/BatchWriteCommand.js +0 -62
  478. package/dist/cjs/commands/BatchWriteCommand.js.map +0 -1
  479. package/dist/cjs/commands/CreateDirectoryCommand.js +0 -64
  480. package/dist/cjs/commands/CreateDirectoryCommand.js.map +0 -1
  481. package/dist/cjs/commands/CreateFacetCommand.js +0 -62
  482. package/dist/cjs/commands/CreateFacetCommand.js.map +0 -1
  483. package/dist/cjs/commands/CreateIndexCommand.js +0 -61
  484. package/dist/cjs/commands/CreateIndexCommand.js.map +0 -1
  485. package/dist/cjs/commands/CreateObjectCommand.js +0 -64
  486. package/dist/cjs/commands/CreateObjectCommand.js.map +0 -1
  487. package/dist/cjs/commands/CreateSchemaCommand.js +0 -81
  488. package/dist/cjs/commands/CreateSchemaCommand.js.map +0 -1
  489. package/dist/cjs/commands/CreateTypedLinkFacetCommand.js +0 -61
  490. package/dist/cjs/commands/CreateTypedLinkFacetCommand.js.map +0 -1
  491. package/dist/cjs/commands/DeleteDirectoryCommand.js +0 -63
  492. package/dist/cjs/commands/DeleteDirectoryCommand.js.map +0 -1
  493. package/dist/cjs/commands/DeleteFacetCommand.js +0 -63
  494. package/dist/cjs/commands/DeleteFacetCommand.js.map +0 -1
  495. package/dist/cjs/commands/DeleteObjectCommand.js +0 -62
  496. package/dist/cjs/commands/DeleteObjectCommand.js.map +0 -1
  497. package/dist/cjs/commands/DeleteSchemaCommand.js +0 -61
  498. package/dist/cjs/commands/DeleteSchemaCommand.js.map +0 -1
  499. package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js +0 -61
  500. package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
  501. package/dist/cjs/commands/DetachFromIndexCommand.js +0 -61
  502. package/dist/cjs/commands/DetachFromIndexCommand.js.map +0 -1
  503. package/dist/cjs/commands/DetachObjectCommand.js +0 -62
  504. package/dist/cjs/commands/DetachObjectCommand.js.map +0 -1
  505. package/dist/cjs/commands/DetachPolicyCommand.js +0 -61
  506. package/dist/cjs/commands/DetachPolicyCommand.js.map +0 -1
  507. package/dist/cjs/commands/DetachTypedLinkCommand.js +0 -61
  508. package/dist/cjs/commands/DetachTypedLinkCommand.js.map +0 -1
  509. package/dist/cjs/commands/DisableDirectoryCommand.js +0 -62
  510. package/dist/cjs/commands/DisableDirectoryCommand.js.map +0 -1
  511. package/dist/cjs/commands/EnableDirectoryCommand.js +0 -62
  512. package/dist/cjs/commands/EnableDirectoryCommand.js.map +0 -1
  513. package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js +0 -61
  514. package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
  515. package/dist/cjs/commands/GetDirectoryCommand.js +0 -61
  516. package/dist/cjs/commands/GetDirectoryCommand.js.map +0 -1
  517. package/dist/cjs/commands/GetFacetCommand.js +0 -62
  518. package/dist/cjs/commands/GetFacetCommand.js.map +0 -1
  519. package/dist/cjs/commands/GetLinkAttributesCommand.js +0 -61
  520. package/dist/cjs/commands/GetLinkAttributesCommand.js.map +0 -1
  521. package/dist/cjs/commands/GetObjectAttributesCommand.js +0 -61
  522. package/dist/cjs/commands/GetObjectAttributesCommand.js.map +0 -1
  523. package/dist/cjs/commands/GetObjectInformationCommand.js +0 -61
  524. package/dist/cjs/commands/GetObjectInformationCommand.js.map +0 -1
  525. package/dist/cjs/commands/GetSchemaAsJsonCommand.js +0 -61
  526. package/dist/cjs/commands/GetSchemaAsJsonCommand.js.map +0 -1
  527. package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js +0 -61
  528. package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
  529. package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js +0 -61
  530. package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
  531. package/dist/cjs/commands/ListAttachedIndicesCommand.js +0 -61
  532. package/dist/cjs/commands/ListAttachedIndicesCommand.js.map +0 -1
  533. package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js +0 -62
  534. package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
  535. package/dist/cjs/commands/ListDirectoriesCommand.js +0 -61
  536. package/dist/cjs/commands/ListDirectoriesCommand.js.map +0 -1
  537. package/dist/cjs/commands/ListFacetAttributesCommand.js +0 -61
  538. package/dist/cjs/commands/ListFacetAttributesCommand.js.map +0 -1
  539. package/dist/cjs/commands/ListFacetNamesCommand.js +0 -61
  540. package/dist/cjs/commands/ListFacetNamesCommand.js.map +0 -1
  541. package/dist/cjs/commands/ListIncomingTypedLinksCommand.js +0 -63
  542. package/dist/cjs/commands/ListIncomingTypedLinksCommand.js.map +0 -1
  543. package/dist/cjs/commands/ListIndexCommand.js +0 -61
  544. package/dist/cjs/commands/ListIndexCommand.js.map +0 -1
  545. package/dist/cjs/commands/ListManagedSchemaArnsCommand.js +0 -61
  546. package/dist/cjs/commands/ListManagedSchemaArnsCommand.js.map +0 -1
  547. package/dist/cjs/commands/ListObjectAttributesCommand.js +0 -62
  548. package/dist/cjs/commands/ListObjectAttributesCommand.js.map +0 -1
  549. package/dist/cjs/commands/ListObjectChildrenCommand.js +0 -62
  550. package/dist/cjs/commands/ListObjectChildrenCommand.js.map +0 -1
  551. package/dist/cjs/commands/ListObjectParentPathsCommand.js +0 -68
  552. package/dist/cjs/commands/ListObjectParentPathsCommand.js.map +0 -1
  553. package/dist/cjs/commands/ListObjectParentsCommand.js +0 -62
  554. package/dist/cjs/commands/ListObjectParentsCommand.js.map +0 -1
  555. package/dist/cjs/commands/ListObjectPoliciesCommand.js +0 -61
  556. package/dist/cjs/commands/ListObjectPoliciesCommand.js.map +0 -1
  557. package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js +0 -63
  558. package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
  559. package/dist/cjs/commands/ListPolicyAttachmentsCommand.js +0 -61
  560. package/dist/cjs/commands/ListPolicyAttachmentsCommand.js.map +0 -1
  561. package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js +0 -61
  562. package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
  563. package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -63
  564. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  565. package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js +0 -61
  566. package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
  567. package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js +0 -62
  568. package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
  569. package/dist/cjs/commands/LookupPolicyCommand.js +0 -66
  570. package/dist/cjs/commands/LookupPolicyCommand.js.map +0 -1
  571. package/dist/cjs/commands/PublishSchemaCommand.js +0 -61
  572. package/dist/cjs/commands/PublishSchemaCommand.js.map +0 -1
  573. package/dist/cjs/commands/PutSchemaFromJsonCommand.js +0 -61
  574. package/dist/cjs/commands/PutSchemaFromJsonCommand.js.map +0 -1
  575. package/dist/cjs/commands/RemoveFacetFromObjectCommand.js +0 -61
  576. package/dist/cjs/commands/RemoveFacetFromObjectCommand.js.map +0 -1
  577. package/dist/cjs/commands/TagResourceCommand.js +0 -61
  578. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  579. package/dist/cjs/commands/UntagResourceCommand.js +0 -61
  580. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  581. package/dist/cjs/commands/UpdateFacetCommand.js +0 -72
  582. package/dist/cjs/commands/UpdateFacetCommand.js.map +0 -1
  583. package/dist/cjs/commands/UpdateLinkAttributesCommand.js +0 -61
  584. package/dist/cjs/commands/UpdateLinkAttributesCommand.js.map +0 -1
  585. package/dist/cjs/commands/UpdateObjectAttributesCommand.js +0 -61
  586. package/dist/cjs/commands/UpdateObjectAttributesCommand.js.map +0 -1
  587. package/dist/cjs/commands/UpdateSchemaCommand.js +0 -62
  588. package/dist/cjs/commands/UpdateSchemaCommand.js.map +0 -1
  589. package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js +0 -61
  590. package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
  591. package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js +0 -61
  592. package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
  593. package/dist/cjs/commands/UpgradePublishedSchemaCommand.js +0 -61
  594. package/dist/cjs/commands/UpgradePublishedSchemaCommand.js.map +0 -1
  595. package/dist/cjs/endpoints.js +0 -57
  596. package/dist/cjs/endpoints.js.map +0 -1
  597. package/dist/cjs/index.js +0 -93
  598. package/dist/cjs/index.js.map +0 -1
  599. package/dist/cjs/models/index.js +0 -5
  600. package/dist/cjs/models/index.js.map +0 -1
  601. package/dist/cjs/models/models_0.js +0 -2628
  602. package/dist/cjs/models/models_0.js.map +0 -1
  603. package/dist/cjs/package.json +0 -91
  604. package/dist/cjs/pagination/Interfaces.js +0 -3
  605. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  606. package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js +0 -46
  607. package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
  608. package/dist/cjs/pagination/ListAttachedIndicesPaginator.js +0 -46
  609. package/dist/cjs/pagination/ListAttachedIndicesPaginator.js.map +0 -1
  610. package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -46
  611. package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
  612. package/dist/cjs/pagination/ListDirectoriesPaginator.js +0 -46
  613. package/dist/cjs/pagination/ListDirectoriesPaginator.js.map +0 -1
  614. package/dist/cjs/pagination/ListFacetAttributesPaginator.js +0 -46
  615. package/dist/cjs/pagination/ListFacetAttributesPaginator.js.map +0 -1
  616. package/dist/cjs/pagination/ListFacetNamesPaginator.js +0 -46
  617. package/dist/cjs/pagination/ListFacetNamesPaginator.js.map +0 -1
  618. package/dist/cjs/pagination/ListIndexPaginator.js +0 -46
  619. package/dist/cjs/pagination/ListIndexPaginator.js.map +0 -1
  620. package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js +0 -46
  621. package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
  622. package/dist/cjs/pagination/ListObjectAttributesPaginator.js +0 -46
  623. package/dist/cjs/pagination/ListObjectAttributesPaginator.js.map +0 -1
  624. package/dist/cjs/pagination/ListObjectChildrenPaginator.js +0 -46
  625. package/dist/cjs/pagination/ListObjectChildrenPaginator.js.map +0 -1
  626. package/dist/cjs/pagination/ListObjectParentPathsPaginator.js +0 -46
  627. package/dist/cjs/pagination/ListObjectParentPathsPaginator.js.map +0 -1
  628. package/dist/cjs/pagination/ListObjectParentsPaginator.js +0 -46
  629. package/dist/cjs/pagination/ListObjectParentsPaginator.js.map +0 -1
  630. package/dist/cjs/pagination/ListObjectPoliciesPaginator.js +0 -46
  631. package/dist/cjs/pagination/ListObjectPoliciesPaginator.js.map +0 -1
  632. package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js +0 -46
  633. package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
  634. package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js +0 -46
  635. package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
  636. package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
  637. package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
  638. package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -46
  639. package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
  640. package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js +0 -46
  641. package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
  642. package/dist/cjs/pagination/LookupPolicyPaginator.js +0 -46
  643. package/dist/cjs/pagination/LookupPolicyPaginator.js.map +0 -1
  644. package/dist/cjs/protocols/Aws_restJson1.js +0 -11265
  645. package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
  646. package/dist/cjs/runtimeConfig.browser.js +0 -41
  647. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  648. package/dist/cjs/runtimeConfig.js +0 -46
  649. package/dist/cjs/runtimeConfig.js.map +0 -1
  650. package/dist/cjs/runtimeConfig.native.js +0 -20
  651. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  652. package/dist/cjs/runtimeConfig.shared.js +0 -21
  653. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  654. package/dist/es/CloudDirectory.js +0 -1009
  655. package/dist/es/CloudDirectory.js.map +0 -1
  656. package/dist/es/CloudDirectoryClient.js +0 -51
  657. package/dist/es/CloudDirectoryClient.js.map +0 -1
  658. package/dist/es/commands/AddFacetToObjectCommand.js +0 -65
  659. package/dist/es/commands/AddFacetToObjectCommand.js.map +0 -1
  660. package/dist/es/commands/ApplySchemaCommand.js +0 -66
  661. package/dist/es/commands/ApplySchemaCommand.js.map +0 -1
  662. package/dist/es/commands/AttachObjectCommand.js +0 -75
  663. package/dist/es/commands/AttachObjectCommand.js.map +0 -1
  664. package/dist/es/commands/AttachPolicyCommand.js +0 -66
  665. package/dist/es/commands/AttachPolicyCommand.js.map +0 -1
  666. package/dist/es/commands/AttachToIndexCommand.js +0 -65
  667. package/dist/es/commands/AttachToIndexCommand.js.map +0 -1
  668. package/dist/es/commands/AttachTypedLinkCommand.js +0 -65
  669. package/dist/es/commands/AttachTypedLinkCommand.js.map +0 -1
  670. package/dist/es/commands/BatchReadCommand.js +0 -65
  671. package/dist/es/commands/BatchReadCommand.js.map +0 -1
  672. package/dist/es/commands/BatchWriteCommand.js +0 -66
  673. package/dist/es/commands/BatchWriteCommand.js.map +0 -1
  674. package/dist/es/commands/CreateDirectoryCommand.js +0 -68
  675. package/dist/es/commands/CreateDirectoryCommand.js.map +0 -1
  676. package/dist/es/commands/CreateFacetCommand.js +0 -66
  677. package/dist/es/commands/CreateFacetCommand.js.map +0 -1
  678. package/dist/es/commands/CreateIndexCommand.js +0 -65
  679. package/dist/es/commands/CreateIndexCommand.js.map +0 -1
  680. package/dist/es/commands/CreateObjectCommand.js +0 -68
  681. package/dist/es/commands/CreateObjectCommand.js.map +0 -1
  682. package/dist/es/commands/CreateSchemaCommand.js +0 -85
  683. package/dist/es/commands/CreateSchemaCommand.js.map +0 -1
  684. package/dist/es/commands/CreateTypedLinkFacetCommand.js +0 -65
  685. package/dist/es/commands/CreateTypedLinkFacetCommand.js.map +0 -1
  686. package/dist/es/commands/DeleteDirectoryCommand.js +0 -67
  687. package/dist/es/commands/DeleteDirectoryCommand.js.map +0 -1
  688. package/dist/es/commands/DeleteFacetCommand.js +0 -67
  689. package/dist/es/commands/DeleteFacetCommand.js.map +0 -1
  690. package/dist/es/commands/DeleteObjectCommand.js +0 -66
  691. package/dist/es/commands/DeleteObjectCommand.js.map +0 -1
  692. package/dist/es/commands/DeleteSchemaCommand.js +0 -65
  693. package/dist/es/commands/DeleteSchemaCommand.js.map +0 -1
  694. package/dist/es/commands/DeleteTypedLinkFacetCommand.js +0 -65
  695. package/dist/es/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
  696. package/dist/es/commands/DetachFromIndexCommand.js +0 -65
  697. package/dist/es/commands/DetachFromIndexCommand.js.map +0 -1
  698. package/dist/es/commands/DetachObjectCommand.js +0 -66
  699. package/dist/es/commands/DetachObjectCommand.js.map +0 -1
  700. package/dist/es/commands/DetachPolicyCommand.js +0 -65
  701. package/dist/es/commands/DetachPolicyCommand.js.map +0 -1
  702. package/dist/es/commands/DetachTypedLinkCommand.js +0 -65
  703. package/dist/es/commands/DetachTypedLinkCommand.js.map +0 -1
  704. package/dist/es/commands/DisableDirectoryCommand.js +0 -66
  705. package/dist/es/commands/DisableDirectoryCommand.js.map +0 -1
  706. package/dist/es/commands/EnableDirectoryCommand.js +0 -66
  707. package/dist/es/commands/EnableDirectoryCommand.js.map +0 -1
  708. package/dist/es/commands/GetAppliedSchemaVersionCommand.js +0 -65
  709. package/dist/es/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
  710. package/dist/es/commands/GetDirectoryCommand.js +0 -65
  711. package/dist/es/commands/GetDirectoryCommand.js.map +0 -1
  712. package/dist/es/commands/GetFacetCommand.js +0 -66
  713. package/dist/es/commands/GetFacetCommand.js.map +0 -1
  714. package/dist/es/commands/GetLinkAttributesCommand.js +0 -65
  715. package/dist/es/commands/GetLinkAttributesCommand.js.map +0 -1
  716. package/dist/es/commands/GetObjectAttributesCommand.js +0 -65
  717. package/dist/es/commands/GetObjectAttributesCommand.js.map +0 -1
  718. package/dist/es/commands/GetObjectInformationCommand.js +0 -65
  719. package/dist/es/commands/GetObjectInformationCommand.js.map +0 -1
  720. package/dist/es/commands/GetSchemaAsJsonCommand.js +0 -65
  721. package/dist/es/commands/GetSchemaAsJsonCommand.js.map +0 -1
  722. package/dist/es/commands/GetTypedLinkFacetInformationCommand.js +0 -65
  723. package/dist/es/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
  724. package/dist/es/commands/ListAppliedSchemaArnsCommand.js +0 -65
  725. package/dist/es/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
  726. package/dist/es/commands/ListAttachedIndicesCommand.js +0 -65
  727. package/dist/es/commands/ListAttachedIndicesCommand.js.map +0 -1
  728. package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js +0 -66
  729. package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
  730. package/dist/es/commands/ListDirectoriesCommand.js +0 -65
  731. package/dist/es/commands/ListDirectoriesCommand.js.map +0 -1
  732. package/dist/es/commands/ListFacetAttributesCommand.js +0 -65
  733. package/dist/es/commands/ListFacetAttributesCommand.js.map +0 -1
  734. package/dist/es/commands/ListFacetNamesCommand.js +0 -65
  735. package/dist/es/commands/ListFacetNamesCommand.js.map +0 -1
  736. package/dist/es/commands/ListIncomingTypedLinksCommand.js +0 -67
  737. package/dist/es/commands/ListIncomingTypedLinksCommand.js.map +0 -1
  738. package/dist/es/commands/ListIndexCommand.js +0 -65
  739. package/dist/es/commands/ListIndexCommand.js.map +0 -1
  740. package/dist/es/commands/ListManagedSchemaArnsCommand.js +0 -65
  741. package/dist/es/commands/ListManagedSchemaArnsCommand.js.map +0 -1
  742. package/dist/es/commands/ListObjectAttributesCommand.js +0 -66
  743. package/dist/es/commands/ListObjectAttributesCommand.js.map +0 -1
  744. package/dist/es/commands/ListObjectChildrenCommand.js +0 -66
  745. package/dist/es/commands/ListObjectChildrenCommand.js.map +0 -1
  746. package/dist/es/commands/ListObjectParentPathsCommand.js +0 -72
  747. package/dist/es/commands/ListObjectParentPathsCommand.js.map +0 -1
  748. package/dist/es/commands/ListObjectParentsCommand.js +0 -66
  749. package/dist/es/commands/ListObjectParentsCommand.js.map +0 -1
  750. package/dist/es/commands/ListObjectPoliciesCommand.js +0 -65
  751. package/dist/es/commands/ListObjectPoliciesCommand.js.map +0 -1
  752. package/dist/es/commands/ListOutgoingTypedLinksCommand.js +0 -67
  753. package/dist/es/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
  754. package/dist/es/commands/ListPolicyAttachmentsCommand.js +0 -65
  755. package/dist/es/commands/ListPolicyAttachmentsCommand.js.map +0 -1
  756. package/dist/es/commands/ListPublishedSchemaArnsCommand.js +0 -65
  757. package/dist/es/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
  758. package/dist/es/commands/ListTagsForResourceCommand.js +0 -67
  759. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  760. package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js +0 -65
  761. package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
  762. package/dist/es/commands/ListTypedLinkFacetNamesCommand.js +0 -66
  763. package/dist/es/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
  764. package/dist/es/commands/LookupPolicyCommand.js +0 -70
  765. package/dist/es/commands/LookupPolicyCommand.js.map +0 -1
  766. package/dist/es/commands/PublishSchemaCommand.js +0 -65
  767. package/dist/es/commands/PublishSchemaCommand.js.map +0 -1
  768. package/dist/es/commands/PutSchemaFromJsonCommand.js +0 -65
  769. package/dist/es/commands/PutSchemaFromJsonCommand.js.map +0 -1
  770. package/dist/es/commands/RemoveFacetFromObjectCommand.js +0 -65
  771. package/dist/es/commands/RemoveFacetFromObjectCommand.js.map +0 -1
  772. package/dist/es/commands/TagResourceCommand.js +0 -65
  773. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  774. package/dist/es/commands/UntagResourceCommand.js +0 -65
  775. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  776. package/dist/es/commands/UpdateFacetCommand.js +0 -76
  777. package/dist/es/commands/UpdateFacetCommand.js.map +0 -1
  778. package/dist/es/commands/UpdateLinkAttributesCommand.js +0 -65
  779. package/dist/es/commands/UpdateLinkAttributesCommand.js.map +0 -1
  780. package/dist/es/commands/UpdateObjectAttributesCommand.js +0 -65
  781. package/dist/es/commands/UpdateObjectAttributesCommand.js.map +0 -1
  782. package/dist/es/commands/UpdateSchemaCommand.js +0 -66
  783. package/dist/es/commands/UpdateSchemaCommand.js.map +0 -1
  784. package/dist/es/commands/UpdateTypedLinkFacetCommand.js +0 -65
  785. package/dist/es/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
  786. package/dist/es/commands/UpgradeAppliedSchemaCommand.js +0 -65
  787. package/dist/es/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
  788. package/dist/es/commands/UpgradePublishedSchemaCommand.js +0 -65
  789. package/dist/es/commands/UpgradePublishedSchemaCommand.js.map +0 -1
  790. package/dist/es/endpoints.js +0 -53
  791. package/dist/es/endpoints.js.map +0 -1
  792. package/dist/es/index.js +0 -90
  793. package/dist/es/index.js.map +0 -1
  794. package/dist/es/models/index.js +0 -2
  795. package/dist/es/models/index.js.map +0 -1
  796. package/dist/es/models/models_0.js +0 -2036
  797. package/dist/es/models/models_0.js.map +0 -1
  798. package/dist/es/package.json +0 -91
  799. package/dist/es/pagination/Interfaces.js +0 -2
  800. package/dist/es/pagination/Interfaces.js.map +0 -1
  801. package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js +0 -87
  802. package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
  803. package/dist/es/pagination/ListAttachedIndicesPaginator.js +0 -87
  804. package/dist/es/pagination/ListAttachedIndicesPaginator.js.map +0 -1
  805. package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -87
  806. package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
  807. package/dist/es/pagination/ListDirectoriesPaginator.js +0 -87
  808. package/dist/es/pagination/ListDirectoriesPaginator.js.map +0 -1
  809. package/dist/es/pagination/ListFacetAttributesPaginator.js +0 -87
  810. package/dist/es/pagination/ListFacetAttributesPaginator.js.map +0 -1
  811. package/dist/es/pagination/ListFacetNamesPaginator.js +0 -87
  812. package/dist/es/pagination/ListFacetNamesPaginator.js.map +0 -1
  813. package/dist/es/pagination/ListIndexPaginator.js +0 -87
  814. package/dist/es/pagination/ListIndexPaginator.js.map +0 -1
  815. package/dist/es/pagination/ListManagedSchemaArnsPaginator.js +0 -87
  816. package/dist/es/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
  817. package/dist/es/pagination/ListObjectAttributesPaginator.js +0 -87
  818. package/dist/es/pagination/ListObjectAttributesPaginator.js.map +0 -1
  819. package/dist/es/pagination/ListObjectChildrenPaginator.js +0 -87
  820. package/dist/es/pagination/ListObjectChildrenPaginator.js.map +0 -1
  821. package/dist/es/pagination/ListObjectParentPathsPaginator.js +0 -87
  822. package/dist/es/pagination/ListObjectParentPathsPaginator.js.map +0 -1
  823. package/dist/es/pagination/ListObjectParentsPaginator.js +0 -87
  824. package/dist/es/pagination/ListObjectParentsPaginator.js.map +0 -1
  825. package/dist/es/pagination/ListObjectPoliciesPaginator.js +0 -87
  826. package/dist/es/pagination/ListObjectPoliciesPaginator.js.map +0 -1
  827. package/dist/es/pagination/ListPolicyAttachmentsPaginator.js +0 -87
  828. package/dist/es/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
  829. package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js +0 -87
  830. package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
  831. package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -87
  832. package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
  833. package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -87
  834. package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
  835. package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js +0 -87
  836. package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
  837. package/dist/es/pagination/LookupPolicyPaginator.js +0 -87
  838. package/dist/es/pagination/LookupPolicyPaginator.js.map +0 -1
  839. package/dist/es/protocols/Aws_restJson1.js +0 -11989
  840. package/dist/es/protocols/Aws_restJson1.js.map +0 -1
  841. package/dist/es/runtimeConfig.browser.js +0 -20
  842. package/dist/es/runtimeConfig.browser.js.map +0 -1
  843. package/dist/es/runtimeConfig.js +0 -25
  844. package/dist/es/runtimeConfig.js.map +0 -1
  845. package/dist/es/runtimeConfig.native.js +0 -12
  846. package/dist/es/runtimeConfig.native.js.map +0 -1
  847. package/dist/es/runtimeConfig.shared.js +0 -17
  848. package/dist/es/runtimeConfig.shared.js.map +0 -1
  849. package/dist/types/CloudDirectory.d.ts +0 -558
  850. package/dist/types/CloudDirectoryClient.d.ts +0 -203
  851. package/dist/types/commands/AddFacetToObjectCommand.d.ts +0 -35
  852. package/dist/types/commands/ApplySchemaCommand.d.ts +0 -36
  853. package/dist/types/commands/AttachObjectCommand.d.ts +0 -45
  854. package/dist/types/commands/AttachPolicyCommand.d.ts +0 -36
  855. package/dist/types/commands/AttachToIndexCommand.d.ts +0 -35
  856. package/dist/types/commands/AttachTypedLinkCommand.d.ts +0 -35
  857. package/dist/types/commands/BatchReadCommand.d.ts +0 -35
  858. package/dist/types/commands/BatchWriteCommand.d.ts +0 -36
  859. package/dist/types/commands/CreateDirectoryCommand.d.ts +0 -38
  860. package/dist/types/commands/CreateFacetCommand.d.ts +0 -36
  861. package/dist/types/commands/CreateIndexCommand.d.ts +0 -35
  862. package/dist/types/commands/CreateObjectCommand.d.ts +0 -38
  863. package/dist/types/commands/CreateSchemaCommand.d.ts +0 -55
  864. package/dist/types/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
  865. package/dist/types/commands/DeleteDirectoryCommand.d.ts +0 -37
  866. package/dist/types/commands/DeleteFacetCommand.d.ts +0 -37
  867. package/dist/types/commands/DeleteObjectCommand.d.ts +0 -36
  868. package/dist/types/commands/DeleteSchemaCommand.d.ts +0 -35
  869. package/dist/types/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
  870. package/dist/types/commands/DetachFromIndexCommand.d.ts +0 -35
  871. package/dist/types/commands/DetachObjectCommand.d.ts +0 -36
  872. package/dist/types/commands/DetachPolicyCommand.d.ts +0 -35
  873. package/dist/types/commands/DetachTypedLinkCommand.d.ts +0 -35
  874. package/dist/types/commands/DisableDirectoryCommand.d.ts +0 -36
  875. package/dist/types/commands/EnableDirectoryCommand.d.ts +0 -36
  876. package/dist/types/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
  877. package/dist/types/commands/GetDirectoryCommand.d.ts +0 -35
  878. package/dist/types/commands/GetFacetCommand.d.ts +0 -36
  879. package/dist/types/commands/GetLinkAttributesCommand.d.ts +0 -35
  880. package/dist/types/commands/GetObjectAttributesCommand.d.ts +0 -35
  881. package/dist/types/commands/GetObjectInformationCommand.d.ts +0 -35
  882. package/dist/types/commands/GetSchemaAsJsonCommand.d.ts +0 -35
  883. package/dist/types/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
  884. package/dist/types/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
  885. package/dist/types/commands/ListAttachedIndicesCommand.d.ts +0 -35
  886. package/dist/types/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
  887. package/dist/types/commands/ListDirectoriesCommand.d.ts +0 -35
  888. package/dist/types/commands/ListFacetAttributesCommand.d.ts +0 -35
  889. package/dist/types/commands/ListFacetNamesCommand.d.ts +0 -35
  890. package/dist/types/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
  891. package/dist/types/commands/ListIndexCommand.d.ts +0 -35
  892. package/dist/types/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
  893. package/dist/types/commands/ListObjectAttributesCommand.d.ts +0 -36
  894. package/dist/types/commands/ListObjectChildrenCommand.d.ts +0 -36
  895. package/dist/types/commands/ListObjectParentPathsCommand.d.ts +0 -42
  896. package/dist/types/commands/ListObjectParentsCommand.d.ts +0 -36
  897. package/dist/types/commands/ListObjectPoliciesCommand.d.ts +0 -35
  898. package/dist/types/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
  899. package/dist/types/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
  900. package/dist/types/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
  901. package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -37
  902. package/dist/types/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
  903. package/dist/types/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
  904. package/dist/types/commands/LookupPolicyCommand.d.ts +0 -40
  905. package/dist/types/commands/PublishSchemaCommand.d.ts +0 -35
  906. package/dist/types/commands/PutSchemaFromJsonCommand.d.ts +0 -35
  907. package/dist/types/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
  908. package/dist/types/commands/TagResourceCommand.d.ts +0 -35
  909. package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
  910. package/dist/types/commands/UpdateFacetCommand.d.ts +0 -46
  911. package/dist/types/commands/UpdateLinkAttributesCommand.d.ts +0 -35
  912. package/dist/types/commands/UpdateObjectAttributesCommand.d.ts +0 -35
  913. package/dist/types/commands/UpdateSchemaCommand.d.ts +0 -36
  914. package/dist/types/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
  915. package/dist/types/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
  916. package/dist/types/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
  917. package/dist/types/pagination/Interfaces.d.ts +0 -6
  918. package/dist/types/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
  919. package/dist/types/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
  920. package/dist/types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
  921. package/dist/types/pagination/ListDirectoriesPaginator.d.ts +0 -4
  922. package/dist/types/pagination/ListFacetAttributesPaginator.d.ts +0 -4
  923. package/dist/types/pagination/ListFacetNamesPaginator.d.ts +0 -4
  924. package/dist/types/pagination/ListIndexPaginator.d.ts +0 -4
  925. package/dist/types/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
  926. package/dist/types/pagination/ListObjectAttributesPaginator.d.ts +0 -4
  927. package/dist/types/pagination/ListObjectChildrenPaginator.d.ts +0 -4
  928. package/dist/types/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
  929. package/dist/types/pagination/ListObjectParentsPaginator.d.ts +0 -4
  930. package/dist/types/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
  931. package/dist/types/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
  932. package/dist/types/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
  933. package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
  934. package/dist/types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
  935. package/dist/types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
  936. package/dist/types/pagination/LookupPolicyPaginator.d.ts +0 -4
  937. package/dist/types/protocols/Aws_restJson1.d.ts +0 -200
  938. package/dist/types/runtimeConfig.browser.d.ts +0 -36
  939. package/dist/types/runtimeConfig.d.ts +0 -36
  940. package/dist/types/runtimeConfig.native.d.ts +0 -35
  941. package/dist/types/ts3.4/CloudDirectory.d.ts +0 -558
  942. package/dist/types/ts3.4/CloudDirectoryClient.d.ts +0 -203
  943. package/dist/types/ts3.4/commands/AddFacetToObjectCommand.d.ts +0 -35
  944. package/dist/types/ts3.4/commands/ApplySchemaCommand.d.ts +0 -36
  945. package/dist/types/ts3.4/commands/AttachObjectCommand.d.ts +0 -45
  946. package/dist/types/ts3.4/commands/AttachPolicyCommand.d.ts +0 -36
  947. package/dist/types/ts3.4/commands/AttachToIndexCommand.d.ts +0 -35
  948. package/dist/types/ts3.4/commands/AttachTypedLinkCommand.d.ts +0 -35
  949. package/dist/types/ts3.4/commands/BatchReadCommand.d.ts +0 -35
  950. package/dist/types/ts3.4/commands/BatchWriteCommand.d.ts +0 -36
  951. package/dist/types/ts3.4/commands/CreateDirectoryCommand.d.ts +0 -38
  952. package/dist/types/ts3.4/commands/CreateFacetCommand.d.ts +0 -36
  953. package/dist/types/ts3.4/commands/CreateIndexCommand.d.ts +0 -35
  954. package/dist/types/ts3.4/commands/CreateObjectCommand.d.ts +0 -38
  955. package/dist/types/ts3.4/commands/CreateSchemaCommand.d.ts +0 -55
  956. package/dist/types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
  957. package/dist/types/ts3.4/commands/DeleteDirectoryCommand.d.ts +0 -37
  958. package/dist/types/ts3.4/commands/DeleteFacetCommand.d.ts +0 -37
  959. package/dist/types/ts3.4/commands/DeleteObjectCommand.d.ts +0 -36
  960. package/dist/types/ts3.4/commands/DeleteSchemaCommand.d.ts +0 -35
  961. package/dist/types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
  962. package/dist/types/ts3.4/commands/DetachFromIndexCommand.d.ts +0 -35
  963. package/dist/types/ts3.4/commands/DetachObjectCommand.d.ts +0 -36
  964. package/dist/types/ts3.4/commands/DetachPolicyCommand.d.ts +0 -35
  965. package/dist/types/ts3.4/commands/DetachTypedLinkCommand.d.ts +0 -35
  966. package/dist/types/ts3.4/commands/DisableDirectoryCommand.d.ts +0 -36
  967. package/dist/types/ts3.4/commands/EnableDirectoryCommand.d.ts +0 -36
  968. package/dist/types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
  969. package/dist/types/ts3.4/commands/GetDirectoryCommand.d.ts +0 -35
  970. package/dist/types/ts3.4/commands/GetFacetCommand.d.ts +0 -36
  971. package/dist/types/ts3.4/commands/GetLinkAttributesCommand.d.ts +0 -35
  972. package/dist/types/ts3.4/commands/GetObjectAttributesCommand.d.ts +0 -35
  973. package/dist/types/ts3.4/commands/GetObjectInformationCommand.d.ts +0 -35
  974. package/dist/types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +0 -35
  975. package/dist/types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
  976. package/dist/types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
  977. package/dist/types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +0 -35
  978. package/dist/types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
  979. package/dist/types/ts3.4/commands/ListDirectoriesCommand.d.ts +0 -35
  980. package/dist/types/ts3.4/commands/ListFacetAttributesCommand.d.ts +0 -35
  981. package/dist/types/ts3.4/commands/ListFacetNamesCommand.d.ts +0 -35
  982. package/dist/types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
  983. package/dist/types/ts3.4/commands/ListIndexCommand.d.ts +0 -35
  984. package/dist/types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
  985. package/dist/types/ts3.4/commands/ListObjectAttributesCommand.d.ts +0 -36
  986. package/dist/types/ts3.4/commands/ListObjectChildrenCommand.d.ts +0 -36
  987. package/dist/types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +0 -42
  988. package/dist/types/ts3.4/commands/ListObjectParentsCommand.d.ts +0 -36
  989. package/dist/types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +0 -35
  990. package/dist/types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
  991. package/dist/types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
  992. package/dist/types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
  993. package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -37
  994. package/dist/types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
  995. package/dist/types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
  996. package/dist/types/ts3.4/commands/LookupPolicyCommand.d.ts +0 -40
  997. package/dist/types/ts3.4/commands/PublishSchemaCommand.d.ts +0 -35
  998. package/dist/types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +0 -35
  999. package/dist/types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
  1000. package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
  1001. package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
  1002. package/dist/types/ts3.4/commands/UpdateFacetCommand.d.ts +0 -46
  1003. package/dist/types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +0 -35
  1004. package/dist/types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +0 -35
  1005. package/dist/types/ts3.4/commands/UpdateSchemaCommand.d.ts +0 -36
  1006. package/dist/types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
  1007. package/dist/types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
  1008. package/dist/types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
  1009. package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
  1010. package/dist/types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
  1011. package/dist/types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
  1012. package/dist/types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
  1013. package/dist/types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +0 -4
  1014. package/dist/types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +0 -4
  1015. package/dist/types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +0 -4
  1016. package/dist/types/ts3.4/pagination/ListIndexPaginator.d.ts +0 -4
  1017. package/dist/types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
  1018. package/dist/types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +0 -4
  1019. package/dist/types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +0 -4
  1020. package/dist/types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
  1021. package/dist/types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +0 -4
  1022. package/dist/types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
  1023. package/dist/types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
  1024. package/dist/types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
  1025. package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
  1026. package/dist/types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
  1027. package/dist/types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
  1028. package/dist/types/ts3.4/pagination/LookupPolicyPaginator.d.ts +0 -4
  1029. package/dist/types/ts3.4/protocols/Aws_restJson1.d.ts +0 -200
  1030. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
  1031. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
  1032. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
  1033. package/endpoints.ts +0 -57
  1034. package/jest.config.js +0 -4
  1035. package/models/models_0.ts +0 -6731
  1036. package/pagination/Interfaces.ts +0 -7
  1037. package/pagination/ListAppliedSchemaArnsPaginator.ts +0 -58
  1038. package/pagination/ListAttachedIndicesPaginator.ts +0 -58
  1039. package/pagination/ListDevelopmentSchemaArnsPaginator.ts +0 -58
  1040. package/pagination/ListDirectoriesPaginator.ts +0 -58
  1041. package/pagination/ListFacetAttributesPaginator.ts +0 -58
  1042. package/pagination/ListFacetNamesPaginator.ts +0 -58
  1043. package/pagination/ListIndexPaginator.ts +0 -54
  1044. package/pagination/ListManagedSchemaArnsPaginator.ts +0 -58
  1045. package/pagination/ListObjectAttributesPaginator.ts +0 -58
  1046. package/pagination/ListObjectChildrenPaginator.ts +0 -58
  1047. package/pagination/ListObjectParentPathsPaginator.ts +0 -58
  1048. package/pagination/ListObjectParentsPaginator.ts +0 -58
  1049. package/pagination/ListObjectPoliciesPaginator.ts +0 -58
  1050. package/pagination/ListPolicyAttachmentsPaginator.ts +0 -58
  1051. package/pagination/ListPublishedSchemaArnsPaginator.ts +0 -58
  1052. package/pagination/ListTagsForResourcePaginator.ts +0 -58
  1053. package/pagination/ListTypedLinkFacetAttributesPaginator.ts +0 -58
  1054. package/pagination/ListTypedLinkFacetNamesPaginator.ts +0 -58
  1055. package/pagination/LookupPolicyPaginator.ts +0 -58
  1056. package/protocols/Aws_restJson1.ts +0 -12886
  1057. package/runtimeConfig.browser.ts +0 -40
  1058. package/runtimeConfig.native.ts +0 -16
  1059. package/runtimeConfig.shared.ts +0 -16
  1060. package/runtimeConfig.ts +0 -45
  1061. package/tsconfig.es.json +0 -12
  1062. package/tsconfig.json +0 -32
@@ -0,0 +1,2627 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BatchListObjectParents = exports.BatchListObjectParentPaths = exports.BatchListObjectChildren = exports.BatchListObjectAttributes = exports.BatchListIndex = exports.ObjectAttributeRange = exports.BatchListIncomingTypedLinks = exports.TypedLinkAttributeRange = exports.TypedAttributeValueRange = exports.RangeMode = exports.BatchListAttachedIndices = exports.BatchGetObjectInformation = exports.BatchGetObjectAttributes = exports.BatchGetLinkAttributes = exports.ConsistencyLevel = exports.AttachTypedLinkResponse = exports.TypedLinkSpecifier = exports.AttachTypedLinkRequest = exports.TypedLinkSchemaAndFacetName = exports.AttributeNameAndValue = exports.NotIndexException = exports.IndexedAttributeMissingException = exports.AttachToIndexResponse = exports.AttachToIndexRequest = exports.NotPolicyException = exports.AttachPolicyResponse = exports.AttachPolicyRequest = exports.LinkNameAlreadyInUseException = exports.AttachObjectResponse = exports.AttachObjectRequest = exports.SchemaAlreadyExistsException = exports.InvalidAttachmentException = exports.ApplySchemaResponse = exports.ApplySchemaRequest = exports.ValidationException = exports.RetryableConflictException = exports.ResourceNotFoundException = exports.LimitExceededException = exports.InvalidArnException = exports.InternalServiceException = exports.FacetValidationException = exports.DirectoryNotEnabledException = exports.AddFacetToObjectResponse = exports.AddFacetToObjectRequest = exports.SchemaFacet = exports.ObjectReference = exports.AttributeKeyAndValue = exports.TypedAttributeValue = exports.AttributeKey = exports.AccessDeniedException = void 0;
4
+ exports.ObjectAttributeAction = exports.BatchUpdateLinkAttributes = exports.LinkAttributeUpdate = exports.LinkAttributeAction = exports.UpdateActionType = exports.BatchRemoveFacetFromObject = exports.BatchDetachTypedLink = exports.BatchDetachPolicy = exports.BatchDetachObject = exports.BatchDetachFromIndex = exports.BatchDeleteObject = exports.BatchCreateObject = exports.BatchCreateIndex = exports.BatchAttachTypedLink = exports.BatchAttachToIndex = exports.BatchAttachPolicy = exports.BatchAttachObject = exports.BatchAddFacetToObject = exports.BatchWriteException = exports.BatchWriteExceptionType = exports.BatchReadResponse = exports.BatchReadOperationResponse = exports.BatchReadSuccessfulResponse = exports.BatchLookupPolicyResponse = exports.PolicyToPath = exports.PolicyAttachment = exports.BatchListPolicyAttachmentsResponse = exports.BatchListOutgoingTypedLinksResponse = exports.BatchListObjectPoliciesResponse = exports.BatchListObjectParentsResponse = exports.ObjectIdentifierAndLinkNameTuple = exports.BatchListObjectParentPathsResponse = exports.PathToObjectIdentifiers = exports.BatchListObjectChildrenResponse = exports.BatchListObjectAttributesResponse = exports.BatchListIndexResponse = exports.BatchListIncomingTypedLinksResponse = exports.BatchListAttachedIndicesResponse = exports.IndexAttachment = exports.BatchGetObjectInformationResponse = exports.BatchGetObjectAttributesResponse = exports.BatchGetLinkAttributesResponse = exports.BatchReadException = exports.BatchReadExceptionType = exports.BatchReadRequest = exports.BatchReadOperation = exports.BatchLookupPolicy = exports.BatchListPolicyAttachments = exports.BatchListOutgoingTypedLinks = exports.BatchListObjectPolicies = void 0;
5
+ exports.DeleteDirectoryResponse = exports.DeleteDirectoryRequest = exports.CreateTypedLinkFacetResponse = exports.CreateTypedLinkFacetRequest = exports.TypedLinkFacet = exports.TypedLinkAttributeDefinition = exports.CreateSchemaResponse = exports.CreateSchemaRequest = exports.CreateObjectResponse = exports.CreateObjectRequest = exports.UnsupportedIndexTypeException = exports.CreateIndexResponse = exports.CreateIndexRequest = exports.InvalidRuleException = exports.FacetAlreadyExistsException = exports.CreateFacetResponse = exports.CreateFacetRequest = exports.ObjectType = exports.FacetStyle = exports.FacetAttribute = exports.RequiredAttributeBehavior = exports.FacetAttributeReference = exports.FacetAttributeDefinition = exports.FacetAttributeType = exports.Rule = exports.RuleType = exports.DirectoryAlreadyExistsException = exports.CreateDirectoryResponse = exports.CreateDirectoryRequest = exports.BatchWriteResponse = exports.BatchWriteOperationResponse = exports.BatchUpdateObjectAttributesResponse = exports.BatchUpdateLinkAttributesResponse = exports.BatchRemoveFacetFromObjectResponse = exports.BatchDetachTypedLinkResponse = exports.BatchDetachPolicyResponse = exports.BatchDetachObjectResponse = exports.BatchDetachFromIndexResponse = exports.BatchDeleteObjectResponse = exports.BatchCreateObjectResponse = exports.BatchCreateIndexResponse = exports.BatchAttachTypedLinkResponse = exports.BatchAttachToIndexResponse = exports.BatchAttachPolicyResponse = exports.BatchAttachObjectResponse = exports.BatchAddFacetToObjectResponse = exports.BatchWriteRequest = exports.BatchWriteOperation = exports.BatchUpdateObjectAttributes = exports.ObjectAttributeUpdate = void 0;
6
+ exports.ListAttachedIndicesRequest = exports.ListAppliedSchemaArnsResponse = exports.ListAppliedSchemaArnsRequest = exports.InvalidNextTokenException = exports.GetTypedLinkFacetInformationResponse = exports.GetTypedLinkFacetInformationRequest = exports.GetSchemaAsJsonResponse = exports.GetSchemaAsJsonRequest = exports.GetObjectInformationResponse = exports.GetObjectInformationRequest = exports.GetObjectAttributesResponse = exports.GetObjectAttributesRequest = exports.GetLinkAttributesResponse = exports.GetLinkAttributesRequest = exports.GetFacetResponse = exports.Facet = exports.GetFacetRequest = exports.GetDirectoryResponse = exports.Directory = exports.DirectoryState = exports.GetDirectoryRequest = exports.GetAppliedSchemaVersionResponse = exports.GetAppliedSchemaVersionRequest = exports.EnableDirectoryResponse = exports.EnableDirectoryRequest = exports.DisableDirectoryResponse = exports.DisableDirectoryRequest = exports.DetachTypedLinkRequest = exports.DetachPolicyResponse = exports.DetachPolicyRequest = exports.NotNodeException = exports.DetachObjectResponse = exports.DetachObjectRequest = exports.ObjectAlreadyDetachedException = exports.DetachFromIndexResponse = exports.DetachFromIndexRequest = exports.DeleteTypedLinkFacetResponse = exports.DeleteTypedLinkFacetRequest = exports.StillContainsLinksException = exports.DeleteSchemaResponse = exports.DeleteSchemaRequest = exports.ObjectNotDetachedException = exports.DeleteObjectResponse = exports.DeleteObjectRequest = exports.FacetNotFoundException = exports.FacetInUseException = exports.DeleteFacetResponse = exports.DeleteFacetRequest = exports.DirectoryNotDisabledException = exports.DirectoryDeletedException = void 0;
7
+ exports.RemoveFacetFromObjectResponse = exports.RemoveFacetFromObjectRequest = exports.PutSchemaFromJsonResponse = exports.PutSchemaFromJsonRequest = exports.InvalidSchemaDocException = exports.SchemaAlreadyPublishedException = exports.PublishSchemaResponse = exports.PublishSchemaRequest = exports.LookupPolicyResponse = exports.LookupPolicyRequest = exports.ListTypedLinkFacetNamesResponse = exports.ListTypedLinkFacetNamesRequest = exports.ListTypedLinkFacetAttributesResponse = exports.ListTypedLinkFacetAttributesRequest = exports.ListTagsForResourceResponse = exports.Tag = exports.ListTagsForResourceRequest = exports.InvalidTaggingRequestException = exports.ListPublishedSchemaArnsResponse = exports.ListPublishedSchemaArnsRequest = exports.ListPolicyAttachmentsResponse = exports.ListPolicyAttachmentsRequest = exports.ListOutgoingTypedLinksResponse = exports.ListOutgoingTypedLinksRequest = exports.ListObjectPoliciesResponse = exports.ListObjectPoliciesRequest = exports.ListObjectParentsResponse = exports.ListObjectParentsRequest = exports.CannotListParentOfRootException = exports.ListObjectParentPathsResponse = exports.ListObjectParentPathsRequest = exports.ListObjectChildrenResponse = exports.ListObjectChildrenRequest = exports.ListObjectAttributesResponse = exports.ListObjectAttributesRequest = exports.ListManagedSchemaArnsResponse = exports.ListManagedSchemaArnsRequest = exports.ListIndexResponse = exports.ListIndexRequest = exports.ListIncomingTypedLinksResponse = exports.ListIncomingTypedLinksRequest = exports.ListFacetNamesResponse = exports.ListFacetNamesRequest = exports.ListFacetAttributesResponse = exports.ListFacetAttributesRequest = exports.ListDirectoriesResponse = exports.ListDirectoriesRequest = exports.ListDevelopmentSchemaArnsResponse = exports.ListDevelopmentSchemaArnsRequest = exports.ListAttachedIndicesResponse = void 0;
8
+ exports.UpgradePublishedSchemaResponse = exports.UpgradePublishedSchemaRequest = exports.UpgradeAppliedSchemaResponse = exports.UpgradeAppliedSchemaRequest = exports.IncompatibleSchemaException = exports.UpdateTypedLinkFacetResponse = exports.UpdateTypedLinkFacetRequest = exports.TypedLinkFacetAttributeUpdate = exports.UpdateSchemaResponse = exports.UpdateSchemaRequest = exports.UpdateObjectAttributesResponse = exports.UpdateObjectAttributesRequest = exports.UpdateLinkAttributesResponse = exports.UpdateLinkAttributesRequest = exports.UpdateFacetResponse = exports.UpdateFacetRequest = exports.FacetAttributeUpdate = exports.InvalidFacetUpdateException = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = void 0;
9
+ var AccessDeniedException;
10
+ (function (AccessDeniedException) {
11
+ /**
12
+ * @internal
13
+ */
14
+ AccessDeniedException.filterSensitiveLog = (obj) => ({
15
+ ...obj,
16
+ });
17
+ })(AccessDeniedException = exports.AccessDeniedException || (exports.AccessDeniedException = {}));
18
+ var AttributeKey;
19
+ (function (AttributeKey) {
20
+ /**
21
+ * @internal
22
+ */
23
+ AttributeKey.filterSensitiveLog = (obj) => ({
24
+ ...obj,
25
+ });
26
+ })(AttributeKey = exports.AttributeKey || (exports.AttributeKey = {}));
27
+ var TypedAttributeValue;
28
+ (function (TypedAttributeValue) {
29
+ TypedAttributeValue.visit = (value, visitor) => {
30
+ if (value.StringValue !== undefined)
31
+ return visitor.StringValue(value.StringValue);
32
+ if (value.BinaryValue !== undefined)
33
+ return visitor.BinaryValue(value.BinaryValue);
34
+ if (value.BooleanValue !== undefined)
35
+ return visitor.BooleanValue(value.BooleanValue);
36
+ if (value.NumberValue !== undefined)
37
+ return visitor.NumberValue(value.NumberValue);
38
+ if (value.DatetimeValue !== undefined)
39
+ return visitor.DatetimeValue(value.DatetimeValue);
40
+ return visitor._(value.$unknown[0], value.$unknown[1]);
41
+ };
42
+ /**
43
+ * @internal
44
+ */
45
+ TypedAttributeValue.filterSensitiveLog = (obj) => {
46
+ if (obj.StringValue !== undefined)
47
+ return { StringValue: obj.StringValue };
48
+ if (obj.BinaryValue !== undefined)
49
+ return { BinaryValue: obj.BinaryValue };
50
+ if (obj.BooleanValue !== undefined)
51
+ return { BooleanValue: obj.BooleanValue };
52
+ if (obj.NumberValue !== undefined)
53
+ return { NumberValue: obj.NumberValue };
54
+ if (obj.DatetimeValue !== undefined)
55
+ return { DatetimeValue: obj.DatetimeValue };
56
+ if (obj.$unknown !== undefined)
57
+ return { [obj.$unknown[0]]: "UNKNOWN" };
58
+ };
59
+ })(TypedAttributeValue = exports.TypedAttributeValue || (exports.TypedAttributeValue = {}));
60
+ var AttributeKeyAndValue;
61
+ (function (AttributeKeyAndValue) {
62
+ /**
63
+ * @internal
64
+ */
65
+ AttributeKeyAndValue.filterSensitiveLog = (obj) => ({
66
+ ...obj,
67
+ ...(obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }),
68
+ });
69
+ })(AttributeKeyAndValue = exports.AttributeKeyAndValue || (exports.AttributeKeyAndValue = {}));
70
+ var ObjectReference;
71
+ (function (ObjectReference) {
72
+ /**
73
+ * @internal
74
+ */
75
+ ObjectReference.filterSensitiveLog = (obj) => ({
76
+ ...obj,
77
+ });
78
+ })(ObjectReference = exports.ObjectReference || (exports.ObjectReference = {}));
79
+ var SchemaFacet;
80
+ (function (SchemaFacet) {
81
+ /**
82
+ * @internal
83
+ */
84
+ SchemaFacet.filterSensitiveLog = (obj) => ({
85
+ ...obj,
86
+ });
87
+ })(SchemaFacet = exports.SchemaFacet || (exports.SchemaFacet = {}));
88
+ var AddFacetToObjectRequest;
89
+ (function (AddFacetToObjectRequest) {
90
+ /**
91
+ * @internal
92
+ */
93
+ AddFacetToObjectRequest.filterSensitiveLog = (obj) => ({
94
+ ...obj,
95
+ ...(obj.ObjectAttributeList && {
96
+ ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
97
+ }),
98
+ });
99
+ })(AddFacetToObjectRequest = exports.AddFacetToObjectRequest || (exports.AddFacetToObjectRequest = {}));
100
+ var AddFacetToObjectResponse;
101
+ (function (AddFacetToObjectResponse) {
102
+ /**
103
+ * @internal
104
+ */
105
+ AddFacetToObjectResponse.filterSensitiveLog = (obj) => ({
106
+ ...obj,
107
+ });
108
+ })(AddFacetToObjectResponse = exports.AddFacetToObjectResponse || (exports.AddFacetToObjectResponse = {}));
109
+ var DirectoryNotEnabledException;
110
+ (function (DirectoryNotEnabledException) {
111
+ /**
112
+ * @internal
113
+ */
114
+ DirectoryNotEnabledException.filterSensitiveLog = (obj) => ({
115
+ ...obj,
116
+ });
117
+ })(DirectoryNotEnabledException = exports.DirectoryNotEnabledException || (exports.DirectoryNotEnabledException = {}));
118
+ var FacetValidationException;
119
+ (function (FacetValidationException) {
120
+ /**
121
+ * @internal
122
+ */
123
+ FacetValidationException.filterSensitiveLog = (obj) => ({
124
+ ...obj,
125
+ });
126
+ })(FacetValidationException = exports.FacetValidationException || (exports.FacetValidationException = {}));
127
+ var InternalServiceException;
128
+ (function (InternalServiceException) {
129
+ /**
130
+ * @internal
131
+ */
132
+ InternalServiceException.filterSensitiveLog = (obj) => ({
133
+ ...obj,
134
+ });
135
+ })(InternalServiceException = exports.InternalServiceException || (exports.InternalServiceException = {}));
136
+ var InvalidArnException;
137
+ (function (InvalidArnException) {
138
+ /**
139
+ * @internal
140
+ */
141
+ InvalidArnException.filterSensitiveLog = (obj) => ({
142
+ ...obj,
143
+ });
144
+ })(InvalidArnException = exports.InvalidArnException || (exports.InvalidArnException = {}));
145
+ var LimitExceededException;
146
+ (function (LimitExceededException) {
147
+ /**
148
+ * @internal
149
+ */
150
+ LimitExceededException.filterSensitiveLog = (obj) => ({
151
+ ...obj,
152
+ });
153
+ })(LimitExceededException = exports.LimitExceededException || (exports.LimitExceededException = {}));
154
+ var ResourceNotFoundException;
155
+ (function (ResourceNotFoundException) {
156
+ /**
157
+ * @internal
158
+ */
159
+ ResourceNotFoundException.filterSensitiveLog = (obj) => ({
160
+ ...obj,
161
+ });
162
+ })(ResourceNotFoundException = exports.ResourceNotFoundException || (exports.ResourceNotFoundException = {}));
163
+ var RetryableConflictException;
164
+ (function (RetryableConflictException) {
165
+ /**
166
+ * @internal
167
+ */
168
+ RetryableConflictException.filterSensitiveLog = (obj) => ({
169
+ ...obj,
170
+ });
171
+ })(RetryableConflictException = exports.RetryableConflictException || (exports.RetryableConflictException = {}));
172
+ var ValidationException;
173
+ (function (ValidationException) {
174
+ /**
175
+ * @internal
176
+ */
177
+ ValidationException.filterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ });
180
+ })(ValidationException = exports.ValidationException || (exports.ValidationException = {}));
181
+ var ApplySchemaRequest;
182
+ (function (ApplySchemaRequest) {
183
+ /**
184
+ * @internal
185
+ */
186
+ ApplySchemaRequest.filterSensitiveLog = (obj) => ({
187
+ ...obj,
188
+ });
189
+ })(ApplySchemaRequest = exports.ApplySchemaRequest || (exports.ApplySchemaRequest = {}));
190
+ var ApplySchemaResponse;
191
+ (function (ApplySchemaResponse) {
192
+ /**
193
+ * @internal
194
+ */
195
+ ApplySchemaResponse.filterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ })(ApplySchemaResponse = exports.ApplySchemaResponse || (exports.ApplySchemaResponse = {}));
199
+ var InvalidAttachmentException;
200
+ (function (InvalidAttachmentException) {
201
+ /**
202
+ * @internal
203
+ */
204
+ InvalidAttachmentException.filterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ })(InvalidAttachmentException = exports.InvalidAttachmentException || (exports.InvalidAttachmentException = {}));
208
+ var SchemaAlreadyExistsException;
209
+ (function (SchemaAlreadyExistsException) {
210
+ /**
211
+ * @internal
212
+ */
213
+ SchemaAlreadyExistsException.filterSensitiveLog = (obj) => ({
214
+ ...obj,
215
+ });
216
+ })(SchemaAlreadyExistsException = exports.SchemaAlreadyExistsException || (exports.SchemaAlreadyExistsException = {}));
217
+ var AttachObjectRequest;
218
+ (function (AttachObjectRequest) {
219
+ /**
220
+ * @internal
221
+ */
222
+ AttachObjectRequest.filterSensitiveLog = (obj) => ({
223
+ ...obj,
224
+ });
225
+ })(AttachObjectRequest = exports.AttachObjectRequest || (exports.AttachObjectRequest = {}));
226
+ var AttachObjectResponse;
227
+ (function (AttachObjectResponse) {
228
+ /**
229
+ * @internal
230
+ */
231
+ AttachObjectResponse.filterSensitiveLog = (obj) => ({
232
+ ...obj,
233
+ });
234
+ })(AttachObjectResponse = exports.AttachObjectResponse || (exports.AttachObjectResponse = {}));
235
+ var LinkNameAlreadyInUseException;
236
+ (function (LinkNameAlreadyInUseException) {
237
+ /**
238
+ * @internal
239
+ */
240
+ LinkNameAlreadyInUseException.filterSensitiveLog = (obj) => ({
241
+ ...obj,
242
+ });
243
+ })(LinkNameAlreadyInUseException = exports.LinkNameAlreadyInUseException || (exports.LinkNameAlreadyInUseException = {}));
244
+ var AttachPolicyRequest;
245
+ (function (AttachPolicyRequest) {
246
+ /**
247
+ * @internal
248
+ */
249
+ AttachPolicyRequest.filterSensitiveLog = (obj) => ({
250
+ ...obj,
251
+ });
252
+ })(AttachPolicyRequest = exports.AttachPolicyRequest || (exports.AttachPolicyRequest = {}));
253
+ var AttachPolicyResponse;
254
+ (function (AttachPolicyResponse) {
255
+ /**
256
+ * @internal
257
+ */
258
+ AttachPolicyResponse.filterSensitiveLog = (obj) => ({
259
+ ...obj,
260
+ });
261
+ })(AttachPolicyResponse = exports.AttachPolicyResponse || (exports.AttachPolicyResponse = {}));
262
+ var NotPolicyException;
263
+ (function (NotPolicyException) {
264
+ /**
265
+ * @internal
266
+ */
267
+ NotPolicyException.filterSensitiveLog = (obj) => ({
268
+ ...obj,
269
+ });
270
+ })(NotPolicyException = exports.NotPolicyException || (exports.NotPolicyException = {}));
271
+ var AttachToIndexRequest;
272
+ (function (AttachToIndexRequest) {
273
+ /**
274
+ * @internal
275
+ */
276
+ AttachToIndexRequest.filterSensitiveLog = (obj) => ({
277
+ ...obj,
278
+ });
279
+ })(AttachToIndexRequest = exports.AttachToIndexRequest || (exports.AttachToIndexRequest = {}));
280
+ var AttachToIndexResponse;
281
+ (function (AttachToIndexResponse) {
282
+ /**
283
+ * @internal
284
+ */
285
+ AttachToIndexResponse.filterSensitiveLog = (obj) => ({
286
+ ...obj,
287
+ });
288
+ })(AttachToIndexResponse = exports.AttachToIndexResponse || (exports.AttachToIndexResponse = {}));
289
+ var IndexedAttributeMissingException;
290
+ (function (IndexedAttributeMissingException) {
291
+ /**
292
+ * @internal
293
+ */
294
+ IndexedAttributeMissingException.filterSensitiveLog = (obj) => ({
295
+ ...obj,
296
+ });
297
+ })(IndexedAttributeMissingException = exports.IndexedAttributeMissingException || (exports.IndexedAttributeMissingException = {}));
298
+ var NotIndexException;
299
+ (function (NotIndexException) {
300
+ /**
301
+ * @internal
302
+ */
303
+ NotIndexException.filterSensitiveLog = (obj) => ({
304
+ ...obj,
305
+ });
306
+ })(NotIndexException = exports.NotIndexException || (exports.NotIndexException = {}));
307
+ var AttributeNameAndValue;
308
+ (function (AttributeNameAndValue) {
309
+ /**
310
+ * @internal
311
+ */
312
+ AttributeNameAndValue.filterSensitiveLog = (obj) => ({
313
+ ...obj,
314
+ ...(obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }),
315
+ });
316
+ })(AttributeNameAndValue = exports.AttributeNameAndValue || (exports.AttributeNameAndValue = {}));
317
+ var TypedLinkSchemaAndFacetName;
318
+ (function (TypedLinkSchemaAndFacetName) {
319
+ /**
320
+ * @internal
321
+ */
322
+ TypedLinkSchemaAndFacetName.filterSensitiveLog = (obj) => ({
323
+ ...obj,
324
+ });
325
+ })(TypedLinkSchemaAndFacetName = exports.TypedLinkSchemaAndFacetName || (exports.TypedLinkSchemaAndFacetName = {}));
326
+ var AttachTypedLinkRequest;
327
+ (function (AttachTypedLinkRequest) {
328
+ /**
329
+ * @internal
330
+ */
331
+ AttachTypedLinkRequest.filterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeNameAndValue.filterSensitiveLog(item)) }),
334
+ });
335
+ })(AttachTypedLinkRequest = exports.AttachTypedLinkRequest || (exports.AttachTypedLinkRequest = {}));
336
+ var TypedLinkSpecifier;
337
+ (function (TypedLinkSpecifier) {
338
+ /**
339
+ * @internal
340
+ */
341
+ TypedLinkSpecifier.filterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ ...(obj.IdentityAttributeValues && {
344
+ IdentityAttributeValues: obj.IdentityAttributeValues.map((item) => AttributeNameAndValue.filterSensitiveLog(item)),
345
+ }),
346
+ });
347
+ })(TypedLinkSpecifier = exports.TypedLinkSpecifier || (exports.TypedLinkSpecifier = {}));
348
+ var AttachTypedLinkResponse;
349
+ (function (AttachTypedLinkResponse) {
350
+ /**
351
+ * @internal
352
+ */
353
+ AttachTypedLinkResponse.filterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ ...(obj.TypedLinkSpecifier && {
356
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
357
+ }),
358
+ });
359
+ })(AttachTypedLinkResponse = exports.AttachTypedLinkResponse || (exports.AttachTypedLinkResponse = {}));
360
+ var ConsistencyLevel;
361
+ (function (ConsistencyLevel) {
362
+ ConsistencyLevel["EVENTUAL"] = "EVENTUAL";
363
+ ConsistencyLevel["SERIALIZABLE"] = "SERIALIZABLE";
364
+ })(ConsistencyLevel = exports.ConsistencyLevel || (exports.ConsistencyLevel = {}));
365
+ var BatchGetLinkAttributes;
366
+ (function (BatchGetLinkAttributes) {
367
+ /**
368
+ * @internal
369
+ */
370
+ BatchGetLinkAttributes.filterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ ...(obj.TypedLinkSpecifier && {
373
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
374
+ }),
375
+ });
376
+ })(BatchGetLinkAttributes = exports.BatchGetLinkAttributes || (exports.BatchGetLinkAttributes = {}));
377
+ var BatchGetObjectAttributes;
378
+ (function (BatchGetObjectAttributes) {
379
+ /**
380
+ * @internal
381
+ */
382
+ BatchGetObjectAttributes.filterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ });
385
+ })(BatchGetObjectAttributes = exports.BatchGetObjectAttributes || (exports.BatchGetObjectAttributes = {}));
386
+ var BatchGetObjectInformation;
387
+ (function (BatchGetObjectInformation) {
388
+ /**
389
+ * @internal
390
+ */
391
+ BatchGetObjectInformation.filterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ })(BatchGetObjectInformation = exports.BatchGetObjectInformation || (exports.BatchGetObjectInformation = {}));
395
+ var BatchListAttachedIndices;
396
+ (function (BatchListAttachedIndices) {
397
+ /**
398
+ * @internal
399
+ */
400
+ BatchListAttachedIndices.filterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ })(BatchListAttachedIndices = exports.BatchListAttachedIndices || (exports.BatchListAttachedIndices = {}));
404
+ var RangeMode;
405
+ (function (RangeMode) {
406
+ RangeMode["EXCLUSIVE"] = "EXCLUSIVE";
407
+ RangeMode["FIRST"] = "FIRST";
408
+ RangeMode["INCLUSIVE"] = "INCLUSIVE";
409
+ RangeMode["LAST"] = "LAST";
410
+ RangeMode["LAST_BEFORE_MISSING_VALUES"] = "LAST_BEFORE_MISSING_VALUES";
411
+ })(RangeMode = exports.RangeMode || (exports.RangeMode = {}));
412
+ var TypedAttributeValueRange;
413
+ (function (TypedAttributeValueRange) {
414
+ /**
415
+ * @internal
416
+ */
417
+ TypedAttributeValueRange.filterSensitiveLog = (obj) => ({
418
+ ...obj,
419
+ ...(obj.StartValue && { StartValue: TypedAttributeValue.filterSensitiveLog(obj.StartValue) }),
420
+ ...(obj.EndValue && { EndValue: TypedAttributeValue.filterSensitiveLog(obj.EndValue) }),
421
+ });
422
+ })(TypedAttributeValueRange = exports.TypedAttributeValueRange || (exports.TypedAttributeValueRange = {}));
423
+ var TypedLinkAttributeRange;
424
+ (function (TypedLinkAttributeRange) {
425
+ /**
426
+ * @internal
427
+ */
428
+ TypedLinkAttributeRange.filterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ ...(obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }),
431
+ });
432
+ })(TypedLinkAttributeRange = exports.TypedLinkAttributeRange || (exports.TypedLinkAttributeRange = {}));
433
+ var BatchListIncomingTypedLinks;
434
+ (function (BatchListIncomingTypedLinks) {
435
+ /**
436
+ * @internal
437
+ */
438
+ BatchListIncomingTypedLinks.filterSensitiveLog = (obj) => ({
439
+ ...obj,
440
+ ...(obj.FilterAttributeRanges && {
441
+ FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
442
+ }),
443
+ });
444
+ })(BatchListIncomingTypedLinks = exports.BatchListIncomingTypedLinks || (exports.BatchListIncomingTypedLinks = {}));
445
+ var ObjectAttributeRange;
446
+ (function (ObjectAttributeRange) {
447
+ /**
448
+ * @internal
449
+ */
450
+ ObjectAttributeRange.filterSensitiveLog = (obj) => ({
451
+ ...obj,
452
+ ...(obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }),
453
+ });
454
+ })(ObjectAttributeRange = exports.ObjectAttributeRange || (exports.ObjectAttributeRange = {}));
455
+ var BatchListIndex;
456
+ (function (BatchListIndex) {
457
+ /**
458
+ * @internal
459
+ */
460
+ BatchListIndex.filterSensitiveLog = (obj) => ({
461
+ ...obj,
462
+ ...(obj.RangesOnIndexedValues && {
463
+ RangesOnIndexedValues: obj.RangesOnIndexedValues.map((item) => ObjectAttributeRange.filterSensitiveLog(item)),
464
+ }),
465
+ });
466
+ })(BatchListIndex = exports.BatchListIndex || (exports.BatchListIndex = {}));
467
+ var BatchListObjectAttributes;
468
+ (function (BatchListObjectAttributes) {
469
+ /**
470
+ * @internal
471
+ */
472
+ BatchListObjectAttributes.filterSensitiveLog = (obj) => ({
473
+ ...obj,
474
+ });
475
+ })(BatchListObjectAttributes = exports.BatchListObjectAttributes || (exports.BatchListObjectAttributes = {}));
476
+ var BatchListObjectChildren;
477
+ (function (BatchListObjectChildren) {
478
+ /**
479
+ * @internal
480
+ */
481
+ BatchListObjectChildren.filterSensitiveLog = (obj) => ({
482
+ ...obj,
483
+ });
484
+ })(BatchListObjectChildren = exports.BatchListObjectChildren || (exports.BatchListObjectChildren = {}));
485
+ var BatchListObjectParentPaths;
486
+ (function (BatchListObjectParentPaths) {
487
+ /**
488
+ * @internal
489
+ */
490
+ BatchListObjectParentPaths.filterSensitiveLog = (obj) => ({
491
+ ...obj,
492
+ });
493
+ })(BatchListObjectParentPaths = exports.BatchListObjectParentPaths || (exports.BatchListObjectParentPaths = {}));
494
+ var BatchListObjectParents;
495
+ (function (BatchListObjectParents) {
496
+ /**
497
+ * @internal
498
+ */
499
+ BatchListObjectParents.filterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ })(BatchListObjectParents = exports.BatchListObjectParents || (exports.BatchListObjectParents = {}));
503
+ var BatchListObjectPolicies;
504
+ (function (BatchListObjectPolicies) {
505
+ /**
506
+ * @internal
507
+ */
508
+ BatchListObjectPolicies.filterSensitiveLog = (obj) => ({
509
+ ...obj,
510
+ });
511
+ })(BatchListObjectPolicies = exports.BatchListObjectPolicies || (exports.BatchListObjectPolicies = {}));
512
+ var BatchListOutgoingTypedLinks;
513
+ (function (BatchListOutgoingTypedLinks) {
514
+ /**
515
+ * @internal
516
+ */
517
+ BatchListOutgoingTypedLinks.filterSensitiveLog = (obj) => ({
518
+ ...obj,
519
+ ...(obj.FilterAttributeRanges && {
520
+ FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
521
+ }),
522
+ });
523
+ })(BatchListOutgoingTypedLinks = exports.BatchListOutgoingTypedLinks || (exports.BatchListOutgoingTypedLinks = {}));
524
+ var BatchListPolicyAttachments;
525
+ (function (BatchListPolicyAttachments) {
526
+ /**
527
+ * @internal
528
+ */
529
+ BatchListPolicyAttachments.filterSensitiveLog = (obj) => ({
530
+ ...obj,
531
+ });
532
+ })(BatchListPolicyAttachments = exports.BatchListPolicyAttachments || (exports.BatchListPolicyAttachments = {}));
533
+ var BatchLookupPolicy;
534
+ (function (BatchLookupPolicy) {
535
+ /**
536
+ * @internal
537
+ */
538
+ BatchLookupPolicy.filterSensitiveLog = (obj) => ({
539
+ ...obj,
540
+ });
541
+ })(BatchLookupPolicy = exports.BatchLookupPolicy || (exports.BatchLookupPolicy = {}));
542
+ var BatchReadOperation;
543
+ (function (BatchReadOperation) {
544
+ /**
545
+ * @internal
546
+ */
547
+ BatchReadOperation.filterSensitiveLog = (obj) => ({
548
+ ...obj,
549
+ ...(obj.ListIndex && { ListIndex: BatchListIndex.filterSensitiveLog(obj.ListIndex) }),
550
+ ...(obj.ListOutgoingTypedLinks && {
551
+ ListOutgoingTypedLinks: BatchListOutgoingTypedLinks.filterSensitiveLog(obj.ListOutgoingTypedLinks),
552
+ }),
553
+ ...(obj.ListIncomingTypedLinks && {
554
+ ListIncomingTypedLinks: BatchListIncomingTypedLinks.filterSensitiveLog(obj.ListIncomingTypedLinks),
555
+ }),
556
+ ...(obj.GetLinkAttributes && {
557
+ GetLinkAttributes: BatchGetLinkAttributes.filterSensitiveLog(obj.GetLinkAttributes),
558
+ }),
559
+ });
560
+ })(BatchReadOperation = exports.BatchReadOperation || (exports.BatchReadOperation = {}));
561
+ var BatchReadRequest;
562
+ (function (BatchReadRequest) {
563
+ /**
564
+ * @internal
565
+ */
566
+ BatchReadRequest.filterSensitiveLog = (obj) => ({
567
+ ...obj,
568
+ });
569
+ })(BatchReadRequest = exports.BatchReadRequest || (exports.BatchReadRequest = {}));
570
+ var BatchReadExceptionType;
571
+ (function (BatchReadExceptionType) {
572
+ BatchReadExceptionType["AccessDeniedException"] = "AccessDeniedException";
573
+ BatchReadExceptionType["CannotListParentOfRootException"] = "CannotListParentOfRootException";
574
+ BatchReadExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
575
+ BatchReadExceptionType["FacetValidationException"] = "FacetValidationException";
576
+ BatchReadExceptionType["InternalServiceException"] = "InternalServiceException";
577
+ BatchReadExceptionType["InvalidArnException"] = "InvalidArnException";
578
+ BatchReadExceptionType["InvalidNextTokenException"] = "InvalidNextTokenException";
579
+ BatchReadExceptionType["LimitExceededException"] = "LimitExceededException";
580
+ BatchReadExceptionType["NotIndexException"] = "NotIndexException";
581
+ BatchReadExceptionType["NotNodeException"] = "NotNodeException";
582
+ BatchReadExceptionType["NotPolicyException"] = "NotPolicyException";
583
+ BatchReadExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
584
+ BatchReadExceptionType["ValidationException"] = "ValidationException";
585
+ })(BatchReadExceptionType = exports.BatchReadExceptionType || (exports.BatchReadExceptionType = {}));
586
+ var BatchReadException;
587
+ (function (BatchReadException) {
588
+ /**
589
+ * @internal
590
+ */
591
+ BatchReadException.filterSensitiveLog = (obj) => ({
592
+ ...obj,
593
+ });
594
+ })(BatchReadException = exports.BatchReadException || (exports.BatchReadException = {}));
595
+ var BatchGetLinkAttributesResponse;
596
+ (function (BatchGetLinkAttributesResponse) {
597
+ /**
598
+ * @internal
599
+ */
600
+ BatchGetLinkAttributesResponse.filterSensitiveLog = (obj) => ({
601
+ ...obj,
602
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
603
+ });
604
+ })(BatchGetLinkAttributesResponse = exports.BatchGetLinkAttributesResponse || (exports.BatchGetLinkAttributesResponse = {}));
605
+ var BatchGetObjectAttributesResponse;
606
+ (function (BatchGetObjectAttributesResponse) {
607
+ /**
608
+ * @internal
609
+ */
610
+ BatchGetObjectAttributesResponse.filterSensitiveLog = (obj) => ({
611
+ ...obj,
612
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
613
+ });
614
+ })(BatchGetObjectAttributesResponse = exports.BatchGetObjectAttributesResponse || (exports.BatchGetObjectAttributesResponse = {}));
615
+ var BatchGetObjectInformationResponse;
616
+ (function (BatchGetObjectInformationResponse) {
617
+ /**
618
+ * @internal
619
+ */
620
+ BatchGetObjectInformationResponse.filterSensitiveLog = (obj) => ({
621
+ ...obj,
622
+ });
623
+ })(BatchGetObjectInformationResponse = exports.BatchGetObjectInformationResponse || (exports.BatchGetObjectInformationResponse = {}));
624
+ var IndexAttachment;
625
+ (function (IndexAttachment) {
626
+ /**
627
+ * @internal
628
+ */
629
+ IndexAttachment.filterSensitiveLog = (obj) => ({
630
+ ...obj,
631
+ ...(obj.IndexedAttributes && {
632
+ IndexedAttributes: obj.IndexedAttributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
633
+ }),
634
+ });
635
+ })(IndexAttachment = exports.IndexAttachment || (exports.IndexAttachment = {}));
636
+ var BatchListAttachedIndicesResponse;
637
+ (function (BatchListAttachedIndicesResponse) {
638
+ /**
639
+ * @internal
640
+ */
641
+ BatchListAttachedIndicesResponse.filterSensitiveLog = (obj) => ({
642
+ ...obj,
643
+ });
644
+ })(BatchListAttachedIndicesResponse = exports.BatchListAttachedIndicesResponse || (exports.BatchListAttachedIndicesResponse = {}));
645
+ var BatchListIncomingTypedLinksResponse;
646
+ (function (BatchListIncomingTypedLinksResponse) {
647
+ /**
648
+ * @internal
649
+ */
650
+ BatchListIncomingTypedLinksResponse.filterSensitiveLog = (obj) => ({
651
+ ...obj,
652
+ });
653
+ })(BatchListIncomingTypedLinksResponse = exports.BatchListIncomingTypedLinksResponse || (exports.BatchListIncomingTypedLinksResponse = {}));
654
+ var BatchListIndexResponse;
655
+ (function (BatchListIndexResponse) {
656
+ /**
657
+ * @internal
658
+ */
659
+ BatchListIndexResponse.filterSensitiveLog = (obj) => ({
660
+ ...obj,
661
+ });
662
+ })(BatchListIndexResponse = exports.BatchListIndexResponse || (exports.BatchListIndexResponse = {}));
663
+ var BatchListObjectAttributesResponse;
664
+ (function (BatchListObjectAttributesResponse) {
665
+ /**
666
+ * @internal
667
+ */
668
+ BatchListObjectAttributesResponse.filterSensitiveLog = (obj) => ({
669
+ ...obj,
670
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
671
+ });
672
+ })(BatchListObjectAttributesResponse = exports.BatchListObjectAttributesResponse || (exports.BatchListObjectAttributesResponse = {}));
673
+ var BatchListObjectChildrenResponse;
674
+ (function (BatchListObjectChildrenResponse) {
675
+ /**
676
+ * @internal
677
+ */
678
+ BatchListObjectChildrenResponse.filterSensitiveLog = (obj) => ({
679
+ ...obj,
680
+ });
681
+ })(BatchListObjectChildrenResponse = exports.BatchListObjectChildrenResponse || (exports.BatchListObjectChildrenResponse = {}));
682
+ var PathToObjectIdentifiers;
683
+ (function (PathToObjectIdentifiers) {
684
+ /**
685
+ * @internal
686
+ */
687
+ PathToObjectIdentifiers.filterSensitiveLog = (obj) => ({
688
+ ...obj,
689
+ });
690
+ })(PathToObjectIdentifiers = exports.PathToObjectIdentifiers || (exports.PathToObjectIdentifiers = {}));
691
+ var BatchListObjectParentPathsResponse;
692
+ (function (BatchListObjectParentPathsResponse) {
693
+ /**
694
+ * @internal
695
+ */
696
+ BatchListObjectParentPathsResponse.filterSensitiveLog = (obj) => ({
697
+ ...obj,
698
+ });
699
+ })(BatchListObjectParentPathsResponse = exports.BatchListObjectParentPathsResponse || (exports.BatchListObjectParentPathsResponse = {}));
700
+ var ObjectIdentifierAndLinkNameTuple;
701
+ (function (ObjectIdentifierAndLinkNameTuple) {
702
+ /**
703
+ * @internal
704
+ */
705
+ ObjectIdentifierAndLinkNameTuple.filterSensitiveLog = (obj) => ({
706
+ ...obj,
707
+ });
708
+ })(ObjectIdentifierAndLinkNameTuple = exports.ObjectIdentifierAndLinkNameTuple || (exports.ObjectIdentifierAndLinkNameTuple = {}));
709
+ var BatchListObjectParentsResponse;
710
+ (function (BatchListObjectParentsResponse) {
711
+ /**
712
+ * @internal
713
+ */
714
+ BatchListObjectParentsResponse.filterSensitiveLog = (obj) => ({
715
+ ...obj,
716
+ });
717
+ })(BatchListObjectParentsResponse = exports.BatchListObjectParentsResponse || (exports.BatchListObjectParentsResponse = {}));
718
+ var BatchListObjectPoliciesResponse;
719
+ (function (BatchListObjectPoliciesResponse) {
720
+ /**
721
+ * @internal
722
+ */
723
+ BatchListObjectPoliciesResponse.filterSensitiveLog = (obj) => ({
724
+ ...obj,
725
+ });
726
+ })(BatchListObjectPoliciesResponse = exports.BatchListObjectPoliciesResponse || (exports.BatchListObjectPoliciesResponse = {}));
727
+ var BatchListOutgoingTypedLinksResponse;
728
+ (function (BatchListOutgoingTypedLinksResponse) {
729
+ /**
730
+ * @internal
731
+ */
732
+ BatchListOutgoingTypedLinksResponse.filterSensitiveLog = (obj) => ({
733
+ ...obj,
734
+ });
735
+ })(BatchListOutgoingTypedLinksResponse = exports.BatchListOutgoingTypedLinksResponse || (exports.BatchListOutgoingTypedLinksResponse = {}));
736
+ var BatchListPolicyAttachmentsResponse;
737
+ (function (BatchListPolicyAttachmentsResponse) {
738
+ /**
739
+ * @internal
740
+ */
741
+ BatchListPolicyAttachmentsResponse.filterSensitiveLog = (obj) => ({
742
+ ...obj,
743
+ });
744
+ })(BatchListPolicyAttachmentsResponse = exports.BatchListPolicyAttachmentsResponse || (exports.BatchListPolicyAttachmentsResponse = {}));
745
+ var PolicyAttachment;
746
+ (function (PolicyAttachment) {
747
+ /**
748
+ * @internal
749
+ */
750
+ PolicyAttachment.filterSensitiveLog = (obj) => ({
751
+ ...obj,
752
+ });
753
+ })(PolicyAttachment = exports.PolicyAttachment || (exports.PolicyAttachment = {}));
754
+ var PolicyToPath;
755
+ (function (PolicyToPath) {
756
+ /**
757
+ * @internal
758
+ */
759
+ PolicyToPath.filterSensitiveLog = (obj) => ({
760
+ ...obj,
761
+ });
762
+ })(PolicyToPath = exports.PolicyToPath || (exports.PolicyToPath = {}));
763
+ var BatchLookupPolicyResponse;
764
+ (function (BatchLookupPolicyResponse) {
765
+ /**
766
+ * @internal
767
+ */
768
+ BatchLookupPolicyResponse.filterSensitiveLog = (obj) => ({
769
+ ...obj,
770
+ });
771
+ })(BatchLookupPolicyResponse = exports.BatchLookupPolicyResponse || (exports.BatchLookupPolicyResponse = {}));
772
+ var BatchReadSuccessfulResponse;
773
+ (function (BatchReadSuccessfulResponse) {
774
+ /**
775
+ * @internal
776
+ */
777
+ BatchReadSuccessfulResponse.filterSensitiveLog = (obj) => ({
778
+ ...obj,
779
+ ...(obj.ListObjectAttributes && {
780
+ ListObjectAttributes: BatchListObjectAttributesResponse.filterSensitiveLog(obj.ListObjectAttributes),
781
+ }),
782
+ ...(obj.GetObjectAttributes && {
783
+ GetObjectAttributes: BatchGetObjectAttributesResponse.filterSensitiveLog(obj.GetObjectAttributes),
784
+ }),
785
+ ...(obj.GetLinkAttributes && {
786
+ GetLinkAttributes: BatchGetLinkAttributesResponse.filterSensitiveLog(obj.GetLinkAttributes),
787
+ }),
788
+ });
789
+ })(BatchReadSuccessfulResponse = exports.BatchReadSuccessfulResponse || (exports.BatchReadSuccessfulResponse = {}));
790
+ var BatchReadOperationResponse;
791
+ (function (BatchReadOperationResponse) {
792
+ /**
793
+ * @internal
794
+ */
795
+ BatchReadOperationResponse.filterSensitiveLog = (obj) => ({
796
+ ...obj,
797
+ ...(obj.SuccessfulResponse && {
798
+ SuccessfulResponse: BatchReadSuccessfulResponse.filterSensitiveLog(obj.SuccessfulResponse),
799
+ }),
800
+ });
801
+ })(BatchReadOperationResponse = exports.BatchReadOperationResponse || (exports.BatchReadOperationResponse = {}));
802
+ var BatchReadResponse;
803
+ (function (BatchReadResponse) {
804
+ /**
805
+ * @internal
806
+ */
807
+ BatchReadResponse.filterSensitiveLog = (obj) => ({
808
+ ...obj,
809
+ });
810
+ })(BatchReadResponse = exports.BatchReadResponse || (exports.BatchReadResponse = {}));
811
+ var BatchWriteExceptionType;
812
+ (function (BatchWriteExceptionType) {
813
+ BatchWriteExceptionType["AccessDeniedException"] = "AccessDeniedException";
814
+ BatchWriteExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
815
+ BatchWriteExceptionType["FacetValidationException"] = "FacetValidationException";
816
+ BatchWriteExceptionType["IndexedAttributeMissingException"] = "IndexedAttributeMissingException";
817
+ BatchWriteExceptionType["InternalServiceException"] = "InternalServiceException";
818
+ BatchWriteExceptionType["InvalidArnException"] = "InvalidArnException";
819
+ BatchWriteExceptionType["InvalidAttachmentException"] = "InvalidAttachmentException";
820
+ BatchWriteExceptionType["LimitExceededException"] = "LimitExceededException";
821
+ BatchWriteExceptionType["LinkNameAlreadyInUseException"] = "LinkNameAlreadyInUseException";
822
+ BatchWriteExceptionType["NotIndexException"] = "NotIndexException";
823
+ BatchWriteExceptionType["NotNodeException"] = "NotNodeException";
824
+ BatchWriteExceptionType["NotPolicyException"] = "NotPolicyException";
825
+ BatchWriteExceptionType["ObjectAlreadyDetachedException"] = "ObjectAlreadyDetachedException";
826
+ BatchWriteExceptionType["ObjectNotDetachedException"] = "ObjectNotDetachedException";
827
+ BatchWriteExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
828
+ BatchWriteExceptionType["StillContainsLinksException"] = "StillContainsLinksException";
829
+ BatchWriteExceptionType["UnsupportedIndexTypeException"] = "UnsupportedIndexTypeException";
830
+ BatchWriteExceptionType["ValidationException"] = "ValidationException";
831
+ })(BatchWriteExceptionType = exports.BatchWriteExceptionType || (exports.BatchWriteExceptionType = {}));
832
+ var BatchWriteException;
833
+ (function (BatchWriteException) {
834
+ /**
835
+ * @internal
836
+ */
837
+ BatchWriteException.filterSensitiveLog = (obj) => ({
838
+ ...obj,
839
+ });
840
+ })(BatchWriteException = exports.BatchWriteException || (exports.BatchWriteException = {}));
841
+ var BatchAddFacetToObject;
842
+ (function (BatchAddFacetToObject) {
843
+ /**
844
+ * @internal
845
+ */
846
+ BatchAddFacetToObject.filterSensitiveLog = (obj) => ({
847
+ ...obj,
848
+ ...(obj.ObjectAttributeList && {
849
+ ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
850
+ }),
851
+ });
852
+ })(BatchAddFacetToObject = exports.BatchAddFacetToObject || (exports.BatchAddFacetToObject = {}));
853
+ var BatchAttachObject;
854
+ (function (BatchAttachObject) {
855
+ /**
856
+ * @internal
857
+ */
858
+ BatchAttachObject.filterSensitiveLog = (obj) => ({
859
+ ...obj,
860
+ });
861
+ })(BatchAttachObject = exports.BatchAttachObject || (exports.BatchAttachObject = {}));
862
+ var BatchAttachPolicy;
863
+ (function (BatchAttachPolicy) {
864
+ /**
865
+ * @internal
866
+ */
867
+ BatchAttachPolicy.filterSensitiveLog = (obj) => ({
868
+ ...obj,
869
+ });
870
+ })(BatchAttachPolicy = exports.BatchAttachPolicy || (exports.BatchAttachPolicy = {}));
871
+ var BatchAttachToIndex;
872
+ (function (BatchAttachToIndex) {
873
+ /**
874
+ * @internal
875
+ */
876
+ BatchAttachToIndex.filterSensitiveLog = (obj) => ({
877
+ ...obj,
878
+ });
879
+ })(BatchAttachToIndex = exports.BatchAttachToIndex || (exports.BatchAttachToIndex = {}));
880
+ var BatchAttachTypedLink;
881
+ (function (BatchAttachTypedLink) {
882
+ /**
883
+ * @internal
884
+ */
885
+ BatchAttachTypedLink.filterSensitiveLog = (obj) => ({
886
+ ...obj,
887
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeNameAndValue.filterSensitiveLog(item)) }),
888
+ });
889
+ })(BatchAttachTypedLink = exports.BatchAttachTypedLink || (exports.BatchAttachTypedLink = {}));
890
+ var BatchCreateIndex;
891
+ (function (BatchCreateIndex) {
892
+ /**
893
+ * @internal
894
+ */
895
+ BatchCreateIndex.filterSensitiveLog = (obj) => ({
896
+ ...obj,
897
+ });
898
+ })(BatchCreateIndex = exports.BatchCreateIndex || (exports.BatchCreateIndex = {}));
899
+ var BatchCreateObject;
900
+ (function (BatchCreateObject) {
901
+ /**
902
+ * @internal
903
+ */
904
+ BatchCreateObject.filterSensitiveLog = (obj) => ({
905
+ ...obj,
906
+ ...(obj.ObjectAttributeList && {
907
+ ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
908
+ }),
909
+ });
910
+ })(BatchCreateObject = exports.BatchCreateObject || (exports.BatchCreateObject = {}));
911
+ var BatchDeleteObject;
912
+ (function (BatchDeleteObject) {
913
+ /**
914
+ * @internal
915
+ */
916
+ BatchDeleteObject.filterSensitiveLog = (obj) => ({
917
+ ...obj,
918
+ });
919
+ })(BatchDeleteObject = exports.BatchDeleteObject || (exports.BatchDeleteObject = {}));
920
+ var BatchDetachFromIndex;
921
+ (function (BatchDetachFromIndex) {
922
+ /**
923
+ * @internal
924
+ */
925
+ BatchDetachFromIndex.filterSensitiveLog = (obj) => ({
926
+ ...obj,
927
+ });
928
+ })(BatchDetachFromIndex = exports.BatchDetachFromIndex || (exports.BatchDetachFromIndex = {}));
929
+ var BatchDetachObject;
930
+ (function (BatchDetachObject) {
931
+ /**
932
+ * @internal
933
+ */
934
+ BatchDetachObject.filterSensitiveLog = (obj) => ({
935
+ ...obj,
936
+ });
937
+ })(BatchDetachObject = exports.BatchDetachObject || (exports.BatchDetachObject = {}));
938
+ var BatchDetachPolicy;
939
+ (function (BatchDetachPolicy) {
940
+ /**
941
+ * @internal
942
+ */
943
+ BatchDetachPolicy.filterSensitiveLog = (obj) => ({
944
+ ...obj,
945
+ });
946
+ })(BatchDetachPolicy = exports.BatchDetachPolicy || (exports.BatchDetachPolicy = {}));
947
+ var BatchDetachTypedLink;
948
+ (function (BatchDetachTypedLink) {
949
+ /**
950
+ * @internal
951
+ */
952
+ BatchDetachTypedLink.filterSensitiveLog = (obj) => ({
953
+ ...obj,
954
+ ...(obj.TypedLinkSpecifier && {
955
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
956
+ }),
957
+ });
958
+ })(BatchDetachTypedLink = exports.BatchDetachTypedLink || (exports.BatchDetachTypedLink = {}));
959
+ var BatchRemoveFacetFromObject;
960
+ (function (BatchRemoveFacetFromObject) {
961
+ /**
962
+ * @internal
963
+ */
964
+ BatchRemoveFacetFromObject.filterSensitiveLog = (obj) => ({
965
+ ...obj,
966
+ });
967
+ })(BatchRemoveFacetFromObject = exports.BatchRemoveFacetFromObject || (exports.BatchRemoveFacetFromObject = {}));
968
+ var UpdateActionType;
969
+ (function (UpdateActionType) {
970
+ UpdateActionType["CREATE_OR_UPDATE"] = "CREATE_OR_UPDATE";
971
+ UpdateActionType["DELETE"] = "DELETE";
972
+ })(UpdateActionType = exports.UpdateActionType || (exports.UpdateActionType = {}));
973
+ var LinkAttributeAction;
974
+ (function (LinkAttributeAction) {
975
+ /**
976
+ * @internal
977
+ */
978
+ LinkAttributeAction.filterSensitiveLog = (obj) => ({
979
+ ...obj,
980
+ ...(obj.AttributeUpdateValue && {
981
+ AttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.AttributeUpdateValue),
982
+ }),
983
+ });
984
+ })(LinkAttributeAction = exports.LinkAttributeAction || (exports.LinkAttributeAction = {}));
985
+ var LinkAttributeUpdate;
986
+ (function (LinkAttributeUpdate) {
987
+ /**
988
+ * @internal
989
+ */
990
+ LinkAttributeUpdate.filterSensitiveLog = (obj) => ({
991
+ ...obj,
992
+ ...(obj.AttributeAction && { AttributeAction: LinkAttributeAction.filterSensitiveLog(obj.AttributeAction) }),
993
+ });
994
+ })(LinkAttributeUpdate = exports.LinkAttributeUpdate || (exports.LinkAttributeUpdate = {}));
995
+ var BatchUpdateLinkAttributes;
996
+ (function (BatchUpdateLinkAttributes) {
997
+ /**
998
+ * @internal
999
+ */
1000
+ BatchUpdateLinkAttributes.filterSensitiveLog = (obj) => ({
1001
+ ...obj,
1002
+ ...(obj.TypedLinkSpecifier && {
1003
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1004
+ }),
1005
+ ...(obj.AttributeUpdates && {
1006
+ AttributeUpdates: obj.AttributeUpdates.map((item) => LinkAttributeUpdate.filterSensitiveLog(item)),
1007
+ }),
1008
+ });
1009
+ })(BatchUpdateLinkAttributes = exports.BatchUpdateLinkAttributes || (exports.BatchUpdateLinkAttributes = {}));
1010
+ var ObjectAttributeAction;
1011
+ (function (ObjectAttributeAction) {
1012
+ /**
1013
+ * @internal
1014
+ */
1015
+ ObjectAttributeAction.filterSensitiveLog = (obj) => ({
1016
+ ...obj,
1017
+ ...(obj.ObjectAttributeUpdateValue && {
1018
+ ObjectAttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.ObjectAttributeUpdateValue),
1019
+ }),
1020
+ });
1021
+ })(ObjectAttributeAction = exports.ObjectAttributeAction || (exports.ObjectAttributeAction = {}));
1022
+ var ObjectAttributeUpdate;
1023
+ (function (ObjectAttributeUpdate) {
1024
+ /**
1025
+ * @internal
1026
+ */
1027
+ ObjectAttributeUpdate.filterSensitiveLog = (obj) => ({
1028
+ ...obj,
1029
+ ...(obj.ObjectAttributeAction && {
1030
+ ObjectAttributeAction: ObjectAttributeAction.filterSensitiveLog(obj.ObjectAttributeAction),
1031
+ }),
1032
+ });
1033
+ })(ObjectAttributeUpdate = exports.ObjectAttributeUpdate || (exports.ObjectAttributeUpdate = {}));
1034
+ var BatchUpdateObjectAttributes;
1035
+ (function (BatchUpdateObjectAttributes) {
1036
+ /**
1037
+ * @internal
1038
+ */
1039
+ BatchUpdateObjectAttributes.filterSensitiveLog = (obj) => ({
1040
+ ...obj,
1041
+ ...(obj.AttributeUpdates && {
1042
+ AttributeUpdates: obj.AttributeUpdates.map((item) => ObjectAttributeUpdate.filterSensitiveLog(item)),
1043
+ }),
1044
+ });
1045
+ })(BatchUpdateObjectAttributes = exports.BatchUpdateObjectAttributes || (exports.BatchUpdateObjectAttributes = {}));
1046
+ var BatchWriteOperation;
1047
+ (function (BatchWriteOperation) {
1048
+ /**
1049
+ * @internal
1050
+ */
1051
+ BatchWriteOperation.filterSensitiveLog = (obj) => ({
1052
+ ...obj,
1053
+ ...(obj.UpdateObjectAttributes && {
1054
+ UpdateObjectAttributes: BatchUpdateObjectAttributes.filterSensitiveLog(obj.UpdateObjectAttributes),
1055
+ }),
1056
+ ...(obj.AddFacetToObject && { AddFacetToObject: BatchAddFacetToObject.filterSensitiveLog(obj.AddFacetToObject) }),
1057
+ ...(obj.AttachTypedLink && { AttachTypedLink: BatchAttachTypedLink.filterSensitiveLog(obj.AttachTypedLink) }),
1058
+ ...(obj.DetachTypedLink && { DetachTypedLink: BatchDetachTypedLink.filterSensitiveLog(obj.DetachTypedLink) }),
1059
+ ...(obj.UpdateLinkAttributes && {
1060
+ UpdateLinkAttributes: BatchUpdateLinkAttributes.filterSensitiveLog(obj.UpdateLinkAttributes),
1061
+ }),
1062
+ });
1063
+ })(BatchWriteOperation = exports.BatchWriteOperation || (exports.BatchWriteOperation = {}));
1064
+ var BatchWriteRequest;
1065
+ (function (BatchWriteRequest) {
1066
+ /**
1067
+ * @internal
1068
+ */
1069
+ BatchWriteRequest.filterSensitiveLog = (obj) => ({
1070
+ ...obj,
1071
+ });
1072
+ })(BatchWriteRequest = exports.BatchWriteRequest || (exports.BatchWriteRequest = {}));
1073
+ var BatchAddFacetToObjectResponse;
1074
+ (function (BatchAddFacetToObjectResponse) {
1075
+ /**
1076
+ * @internal
1077
+ */
1078
+ BatchAddFacetToObjectResponse.filterSensitiveLog = (obj) => ({
1079
+ ...obj,
1080
+ });
1081
+ })(BatchAddFacetToObjectResponse = exports.BatchAddFacetToObjectResponse || (exports.BatchAddFacetToObjectResponse = {}));
1082
+ var BatchAttachObjectResponse;
1083
+ (function (BatchAttachObjectResponse) {
1084
+ /**
1085
+ * @internal
1086
+ */
1087
+ BatchAttachObjectResponse.filterSensitiveLog = (obj) => ({
1088
+ ...obj,
1089
+ });
1090
+ })(BatchAttachObjectResponse = exports.BatchAttachObjectResponse || (exports.BatchAttachObjectResponse = {}));
1091
+ var BatchAttachPolicyResponse;
1092
+ (function (BatchAttachPolicyResponse) {
1093
+ /**
1094
+ * @internal
1095
+ */
1096
+ BatchAttachPolicyResponse.filterSensitiveLog = (obj) => ({
1097
+ ...obj,
1098
+ });
1099
+ })(BatchAttachPolicyResponse = exports.BatchAttachPolicyResponse || (exports.BatchAttachPolicyResponse = {}));
1100
+ var BatchAttachToIndexResponse;
1101
+ (function (BatchAttachToIndexResponse) {
1102
+ /**
1103
+ * @internal
1104
+ */
1105
+ BatchAttachToIndexResponse.filterSensitiveLog = (obj) => ({
1106
+ ...obj,
1107
+ });
1108
+ })(BatchAttachToIndexResponse = exports.BatchAttachToIndexResponse || (exports.BatchAttachToIndexResponse = {}));
1109
+ var BatchAttachTypedLinkResponse;
1110
+ (function (BatchAttachTypedLinkResponse) {
1111
+ /**
1112
+ * @internal
1113
+ */
1114
+ BatchAttachTypedLinkResponse.filterSensitiveLog = (obj) => ({
1115
+ ...obj,
1116
+ ...(obj.TypedLinkSpecifier && {
1117
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1118
+ }),
1119
+ });
1120
+ })(BatchAttachTypedLinkResponse = exports.BatchAttachTypedLinkResponse || (exports.BatchAttachTypedLinkResponse = {}));
1121
+ var BatchCreateIndexResponse;
1122
+ (function (BatchCreateIndexResponse) {
1123
+ /**
1124
+ * @internal
1125
+ */
1126
+ BatchCreateIndexResponse.filterSensitiveLog = (obj) => ({
1127
+ ...obj,
1128
+ });
1129
+ })(BatchCreateIndexResponse = exports.BatchCreateIndexResponse || (exports.BatchCreateIndexResponse = {}));
1130
+ var BatchCreateObjectResponse;
1131
+ (function (BatchCreateObjectResponse) {
1132
+ /**
1133
+ * @internal
1134
+ */
1135
+ BatchCreateObjectResponse.filterSensitiveLog = (obj) => ({
1136
+ ...obj,
1137
+ });
1138
+ })(BatchCreateObjectResponse = exports.BatchCreateObjectResponse || (exports.BatchCreateObjectResponse = {}));
1139
+ var BatchDeleteObjectResponse;
1140
+ (function (BatchDeleteObjectResponse) {
1141
+ /**
1142
+ * @internal
1143
+ */
1144
+ BatchDeleteObjectResponse.filterSensitiveLog = (obj) => ({
1145
+ ...obj,
1146
+ });
1147
+ })(BatchDeleteObjectResponse = exports.BatchDeleteObjectResponse || (exports.BatchDeleteObjectResponse = {}));
1148
+ var BatchDetachFromIndexResponse;
1149
+ (function (BatchDetachFromIndexResponse) {
1150
+ /**
1151
+ * @internal
1152
+ */
1153
+ BatchDetachFromIndexResponse.filterSensitiveLog = (obj) => ({
1154
+ ...obj,
1155
+ });
1156
+ })(BatchDetachFromIndexResponse = exports.BatchDetachFromIndexResponse || (exports.BatchDetachFromIndexResponse = {}));
1157
+ var BatchDetachObjectResponse;
1158
+ (function (BatchDetachObjectResponse) {
1159
+ /**
1160
+ * @internal
1161
+ */
1162
+ BatchDetachObjectResponse.filterSensitiveLog = (obj) => ({
1163
+ ...obj,
1164
+ });
1165
+ })(BatchDetachObjectResponse = exports.BatchDetachObjectResponse || (exports.BatchDetachObjectResponse = {}));
1166
+ var BatchDetachPolicyResponse;
1167
+ (function (BatchDetachPolicyResponse) {
1168
+ /**
1169
+ * @internal
1170
+ */
1171
+ BatchDetachPolicyResponse.filterSensitiveLog = (obj) => ({
1172
+ ...obj,
1173
+ });
1174
+ })(BatchDetachPolicyResponse = exports.BatchDetachPolicyResponse || (exports.BatchDetachPolicyResponse = {}));
1175
+ var BatchDetachTypedLinkResponse;
1176
+ (function (BatchDetachTypedLinkResponse) {
1177
+ /**
1178
+ * @internal
1179
+ */
1180
+ BatchDetachTypedLinkResponse.filterSensitiveLog = (obj) => ({
1181
+ ...obj,
1182
+ });
1183
+ })(BatchDetachTypedLinkResponse = exports.BatchDetachTypedLinkResponse || (exports.BatchDetachTypedLinkResponse = {}));
1184
+ var BatchRemoveFacetFromObjectResponse;
1185
+ (function (BatchRemoveFacetFromObjectResponse) {
1186
+ /**
1187
+ * @internal
1188
+ */
1189
+ BatchRemoveFacetFromObjectResponse.filterSensitiveLog = (obj) => ({
1190
+ ...obj,
1191
+ });
1192
+ })(BatchRemoveFacetFromObjectResponse = exports.BatchRemoveFacetFromObjectResponse || (exports.BatchRemoveFacetFromObjectResponse = {}));
1193
+ var BatchUpdateLinkAttributesResponse;
1194
+ (function (BatchUpdateLinkAttributesResponse) {
1195
+ /**
1196
+ * @internal
1197
+ */
1198
+ BatchUpdateLinkAttributesResponse.filterSensitiveLog = (obj) => ({
1199
+ ...obj,
1200
+ });
1201
+ })(BatchUpdateLinkAttributesResponse = exports.BatchUpdateLinkAttributesResponse || (exports.BatchUpdateLinkAttributesResponse = {}));
1202
+ var BatchUpdateObjectAttributesResponse;
1203
+ (function (BatchUpdateObjectAttributesResponse) {
1204
+ /**
1205
+ * @internal
1206
+ */
1207
+ BatchUpdateObjectAttributesResponse.filterSensitiveLog = (obj) => ({
1208
+ ...obj,
1209
+ });
1210
+ })(BatchUpdateObjectAttributesResponse = exports.BatchUpdateObjectAttributesResponse || (exports.BatchUpdateObjectAttributesResponse = {}));
1211
+ var BatchWriteOperationResponse;
1212
+ (function (BatchWriteOperationResponse) {
1213
+ /**
1214
+ * @internal
1215
+ */
1216
+ BatchWriteOperationResponse.filterSensitiveLog = (obj) => ({
1217
+ ...obj,
1218
+ ...(obj.AttachTypedLink && {
1219
+ AttachTypedLink: BatchAttachTypedLinkResponse.filterSensitiveLog(obj.AttachTypedLink),
1220
+ }),
1221
+ });
1222
+ })(BatchWriteOperationResponse = exports.BatchWriteOperationResponse || (exports.BatchWriteOperationResponse = {}));
1223
+ var BatchWriteResponse;
1224
+ (function (BatchWriteResponse) {
1225
+ /**
1226
+ * @internal
1227
+ */
1228
+ BatchWriteResponse.filterSensitiveLog = (obj) => ({
1229
+ ...obj,
1230
+ });
1231
+ })(BatchWriteResponse = exports.BatchWriteResponse || (exports.BatchWriteResponse = {}));
1232
+ var CreateDirectoryRequest;
1233
+ (function (CreateDirectoryRequest) {
1234
+ /**
1235
+ * @internal
1236
+ */
1237
+ CreateDirectoryRequest.filterSensitiveLog = (obj) => ({
1238
+ ...obj,
1239
+ });
1240
+ })(CreateDirectoryRequest = exports.CreateDirectoryRequest || (exports.CreateDirectoryRequest = {}));
1241
+ var CreateDirectoryResponse;
1242
+ (function (CreateDirectoryResponse) {
1243
+ /**
1244
+ * @internal
1245
+ */
1246
+ CreateDirectoryResponse.filterSensitiveLog = (obj) => ({
1247
+ ...obj,
1248
+ });
1249
+ })(CreateDirectoryResponse = exports.CreateDirectoryResponse || (exports.CreateDirectoryResponse = {}));
1250
+ var DirectoryAlreadyExistsException;
1251
+ (function (DirectoryAlreadyExistsException) {
1252
+ /**
1253
+ * @internal
1254
+ */
1255
+ DirectoryAlreadyExistsException.filterSensitiveLog = (obj) => ({
1256
+ ...obj,
1257
+ });
1258
+ })(DirectoryAlreadyExistsException = exports.DirectoryAlreadyExistsException || (exports.DirectoryAlreadyExistsException = {}));
1259
+ var RuleType;
1260
+ (function (RuleType) {
1261
+ RuleType["BINARY_LENGTH"] = "BINARY_LENGTH";
1262
+ RuleType["NUMBER_COMPARISON"] = "NUMBER_COMPARISON";
1263
+ RuleType["STRING_FROM_SET"] = "STRING_FROM_SET";
1264
+ RuleType["STRING_LENGTH"] = "STRING_LENGTH";
1265
+ })(RuleType = exports.RuleType || (exports.RuleType = {}));
1266
+ var Rule;
1267
+ (function (Rule) {
1268
+ /**
1269
+ * @internal
1270
+ */
1271
+ Rule.filterSensitiveLog = (obj) => ({
1272
+ ...obj,
1273
+ });
1274
+ })(Rule = exports.Rule || (exports.Rule = {}));
1275
+ var FacetAttributeType;
1276
+ (function (FacetAttributeType) {
1277
+ FacetAttributeType["BINARY"] = "BINARY";
1278
+ FacetAttributeType["BOOLEAN"] = "BOOLEAN";
1279
+ FacetAttributeType["DATETIME"] = "DATETIME";
1280
+ FacetAttributeType["NUMBER"] = "NUMBER";
1281
+ FacetAttributeType["STRING"] = "STRING";
1282
+ FacetAttributeType["VARIANT"] = "VARIANT";
1283
+ })(FacetAttributeType = exports.FacetAttributeType || (exports.FacetAttributeType = {}));
1284
+ var FacetAttributeDefinition;
1285
+ (function (FacetAttributeDefinition) {
1286
+ /**
1287
+ * @internal
1288
+ */
1289
+ FacetAttributeDefinition.filterSensitiveLog = (obj) => ({
1290
+ ...obj,
1291
+ ...(obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }),
1292
+ });
1293
+ })(FacetAttributeDefinition = exports.FacetAttributeDefinition || (exports.FacetAttributeDefinition = {}));
1294
+ var FacetAttributeReference;
1295
+ (function (FacetAttributeReference) {
1296
+ /**
1297
+ * @internal
1298
+ */
1299
+ FacetAttributeReference.filterSensitiveLog = (obj) => ({
1300
+ ...obj,
1301
+ });
1302
+ })(FacetAttributeReference = exports.FacetAttributeReference || (exports.FacetAttributeReference = {}));
1303
+ var RequiredAttributeBehavior;
1304
+ (function (RequiredAttributeBehavior) {
1305
+ RequiredAttributeBehavior["NOT_REQUIRED"] = "NOT_REQUIRED";
1306
+ RequiredAttributeBehavior["REQUIRED_ALWAYS"] = "REQUIRED_ALWAYS";
1307
+ })(RequiredAttributeBehavior = exports.RequiredAttributeBehavior || (exports.RequiredAttributeBehavior = {}));
1308
+ var FacetAttribute;
1309
+ (function (FacetAttribute) {
1310
+ /**
1311
+ * @internal
1312
+ */
1313
+ FacetAttribute.filterSensitiveLog = (obj) => ({
1314
+ ...obj,
1315
+ ...(obj.AttributeDefinition && {
1316
+ AttributeDefinition: FacetAttributeDefinition.filterSensitiveLog(obj.AttributeDefinition),
1317
+ }),
1318
+ });
1319
+ })(FacetAttribute = exports.FacetAttribute || (exports.FacetAttribute = {}));
1320
+ var FacetStyle;
1321
+ (function (FacetStyle) {
1322
+ FacetStyle["DYNAMIC"] = "DYNAMIC";
1323
+ FacetStyle["STATIC"] = "STATIC";
1324
+ })(FacetStyle = exports.FacetStyle || (exports.FacetStyle = {}));
1325
+ var ObjectType;
1326
+ (function (ObjectType) {
1327
+ ObjectType["INDEX"] = "INDEX";
1328
+ ObjectType["LEAF_NODE"] = "LEAF_NODE";
1329
+ ObjectType["NODE"] = "NODE";
1330
+ ObjectType["POLICY"] = "POLICY";
1331
+ })(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
1332
+ var CreateFacetRequest;
1333
+ (function (CreateFacetRequest) {
1334
+ /**
1335
+ * @internal
1336
+ */
1337
+ CreateFacetRequest.filterSensitiveLog = (obj) => ({
1338
+ ...obj,
1339
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => FacetAttribute.filterSensitiveLog(item)) }),
1340
+ });
1341
+ })(CreateFacetRequest = exports.CreateFacetRequest || (exports.CreateFacetRequest = {}));
1342
+ var CreateFacetResponse;
1343
+ (function (CreateFacetResponse) {
1344
+ /**
1345
+ * @internal
1346
+ */
1347
+ CreateFacetResponse.filterSensitiveLog = (obj) => ({
1348
+ ...obj,
1349
+ });
1350
+ })(CreateFacetResponse = exports.CreateFacetResponse || (exports.CreateFacetResponse = {}));
1351
+ var FacetAlreadyExistsException;
1352
+ (function (FacetAlreadyExistsException) {
1353
+ /**
1354
+ * @internal
1355
+ */
1356
+ FacetAlreadyExistsException.filterSensitiveLog = (obj) => ({
1357
+ ...obj,
1358
+ });
1359
+ })(FacetAlreadyExistsException = exports.FacetAlreadyExistsException || (exports.FacetAlreadyExistsException = {}));
1360
+ var InvalidRuleException;
1361
+ (function (InvalidRuleException) {
1362
+ /**
1363
+ * @internal
1364
+ */
1365
+ InvalidRuleException.filterSensitiveLog = (obj) => ({
1366
+ ...obj,
1367
+ });
1368
+ })(InvalidRuleException = exports.InvalidRuleException || (exports.InvalidRuleException = {}));
1369
+ var CreateIndexRequest;
1370
+ (function (CreateIndexRequest) {
1371
+ /**
1372
+ * @internal
1373
+ */
1374
+ CreateIndexRequest.filterSensitiveLog = (obj) => ({
1375
+ ...obj,
1376
+ });
1377
+ })(CreateIndexRequest = exports.CreateIndexRequest || (exports.CreateIndexRequest = {}));
1378
+ var CreateIndexResponse;
1379
+ (function (CreateIndexResponse) {
1380
+ /**
1381
+ * @internal
1382
+ */
1383
+ CreateIndexResponse.filterSensitiveLog = (obj) => ({
1384
+ ...obj,
1385
+ });
1386
+ })(CreateIndexResponse = exports.CreateIndexResponse || (exports.CreateIndexResponse = {}));
1387
+ var UnsupportedIndexTypeException;
1388
+ (function (UnsupportedIndexTypeException) {
1389
+ /**
1390
+ * @internal
1391
+ */
1392
+ UnsupportedIndexTypeException.filterSensitiveLog = (obj) => ({
1393
+ ...obj,
1394
+ });
1395
+ })(UnsupportedIndexTypeException = exports.UnsupportedIndexTypeException || (exports.UnsupportedIndexTypeException = {}));
1396
+ var CreateObjectRequest;
1397
+ (function (CreateObjectRequest) {
1398
+ /**
1399
+ * @internal
1400
+ */
1401
+ CreateObjectRequest.filterSensitiveLog = (obj) => ({
1402
+ ...obj,
1403
+ ...(obj.ObjectAttributeList && {
1404
+ ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
1405
+ }),
1406
+ });
1407
+ })(CreateObjectRequest = exports.CreateObjectRequest || (exports.CreateObjectRequest = {}));
1408
+ var CreateObjectResponse;
1409
+ (function (CreateObjectResponse) {
1410
+ /**
1411
+ * @internal
1412
+ */
1413
+ CreateObjectResponse.filterSensitiveLog = (obj) => ({
1414
+ ...obj,
1415
+ });
1416
+ })(CreateObjectResponse = exports.CreateObjectResponse || (exports.CreateObjectResponse = {}));
1417
+ var CreateSchemaRequest;
1418
+ (function (CreateSchemaRequest) {
1419
+ /**
1420
+ * @internal
1421
+ */
1422
+ CreateSchemaRequest.filterSensitiveLog = (obj) => ({
1423
+ ...obj,
1424
+ });
1425
+ })(CreateSchemaRequest = exports.CreateSchemaRequest || (exports.CreateSchemaRequest = {}));
1426
+ var CreateSchemaResponse;
1427
+ (function (CreateSchemaResponse) {
1428
+ /**
1429
+ * @internal
1430
+ */
1431
+ CreateSchemaResponse.filterSensitiveLog = (obj) => ({
1432
+ ...obj,
1433
+ });
1434
+ })(CreateSchemaResponse = exports.CreateSchemaResponse || (exports.CreateSchemaResponse = {}));
1435
+ var TypedLinkAttributeDefinition;
1436
+ (function (TypedLinkAttributeDefinition) {
1437
+ /**
1438
+ * @internal
1439
+ */
1440
+ TypedLinkAttributeDefinition.filterSensitiveLog = (obj) => ({
1441
+ ...obj,
1442
+ ...(obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }),
1443
+ });
1444
+ })(TypedLinkAttributeDefinition = exports.TypedLinkAttributeDefinition || (exports.TypedLinkAttributeDefinition = {}));
1445
+ var TypedLinkFacet;
1446
+ (function (TypedLinkFacet) {
1447
+ /**
1448
+ * @internal
1449
+ */
1450
+ TypedLinkFacet.filterSensitiveLog = (obj) => ({
1451
+ ...obj,
1452
+ ...(obj.Attributes && {
1453
+ Attributes: obj.Attributes.map((item) => TypedLinkAttributeDefinition.filterSensitiveLog(item)),
1454
+ }),
1455
+ });
1456
+ })(TypedLinkFacet = exports.TypedLinkFacet || (exports.TypedLinkFacet = {}));
1457
+ var CreateTypedLinkFacetRequest;
1458
+ (function (CreateTypedLinkFacetRequest) {
1459
+ /**
1460
+ * @internal
1461
+ */
1462
+ CreateTypedLinkFacetRequest.filterSensitiveLog = (obj) => ({
1463
+ ...obj,
1464
+ ...(obj.Facet && { Facet: TypedLinkFacet.filterSensitiveLog(obj.Facet) }),
1465
+ });
1466
+ })(CreateTypedLinkFacetRequest = exports.CreateTypedLinkFacetRequest || (exports.CreateTypedLinkFacetRequest = {}));
1467
+ var CreateTypedLinkFacetResponse;
1468
+ (function (CreateTypedLinkFacetResponse) {
1469
+ /**
1470
+ * @internal
1471
+ */
1472
+ CreateTypedLinkFacetResponse.filterSensitiveLog = (obj) => ({
1473
+ ...obj,
1474
+ });
1475
+ })(CreateTypedLinkFacetResponse = exports.CreateTypedLinkFacetResponse || (exports.CreateTypedLinkFacetResponse = {}));
1476
+ var DeleteDirectoryRequest;
1477
+ (function (DeleteDirectoryRequest) {
1478
+ /**
1479
+ * @internal
1480
+ */
1481
+ DeleteDirectoryRequest.filterSensitiveLog = (obj) => ({
1482
+ ...obj,
1483
+ });
1484
+ })(DeleteDirectoryRequest = exports.DeleteDirectoryRequest || (exports.DeleteDirectoryRequest = {}));
1485
+ var DeleteDirectoryResponse;
1486
+ (function (DeleteDirectoryResponse) {
1487
+ /**
1488
+ * @internal
1489
+ */
1490
+ DeleteDirectoryResponse.filterSensitiveLog = (obj) => ({
1491
+ ...obj,
1492
+ });
1493
+ })(DeleteDirectoryResponse = exports.DeleteDirectoryResponse || (exports.DeleteDirectoryResponse = {}));
1494
+ var DirectoryDeletedException;
1495
+ (function (DirectoryDeletedException) {
1496
+ /**
1497
+ * @internal
1498
+ */
1499
+ DirectoryDeletedException.filterSensitiveLog = (obj) => ({
1500
+ ...obj,
1501
+ });
1502
+ })(DirectoryDeletedException = exports.DirectoryDeletedException || (exports.DirectoryDeletedException = {}));
1503
+ var DirectoryNotDisabledException;
1504
+ (function (DirectoryNotDisabledException) {
1505
+ /**
1506
+ * @internal
1507
+ */
1508
+ DirectoryNotDisabledException.filterSensitiveLog = (obj) => ({
1509
+ ...obj,
1510
+ });
1511
+ })(DirectoryNotDisabledException = exports.DirectoryNotDisabledException || (exports.DirectoryNotDisabledException = {}));
1512
+ var DeleteFacetRequest;
1513
+ (function (DeleteFacetRequest) {
1514
+ /**
1515
+ * @internal
1516
+ */
1517
+ DeleteFacetRequest.filterSensitiveLog = (obj) => ({
1518
+ ...obj,
1519
+ });
1520
+ })(DeleteFacetRequest = exports.DeleteFacetRequest || (exports.DeleteFacetRequest = {}));
1521
+ var DeleteFacetResponse;
1522
+ (function (DeleteFacetResponse) {
1523
+ /**
1524
+ * @internal
1525
+ */
1526
+ DeleteFacetResponse.filterSensitiveLog = (obj) => ({
1527
+ ...obj,
1528
+ });
1529
+ })(DeleteFacetResponse = exports.DeleteFacetResponse || (exports.DeleteFacetResponse = {}));
1530
+ var FacetInUseException;
1531
+ (function (FacetInUseException) {
1532
+ /**
1533
+ * @internal
1534
+ */
1535
+ FacetInUseException.filterSensitiveLog = (obj) => ({
1536
+ ...obj,
1537
+ });
1538
+ })(FacetInUseException = exports.FacetInUseException || (exports.FacetInUseException = {}));
1539
+ var FacetNotFoundException;
1540
+ (function (FacetNotFoundException) {
1541
+ /**
1542
+ * @internal
1543
+ */
1544
+ FacetNotFoundException.filterSensitiveLog = (obj) => ({
1545
+ ...obj,
1546
+ });
1547
+ })(FacetNotFoundException = exports.FacetNotFoundException || (exports.FacetNotFoundException = {}));
1548
+ var DeleteObjectRequest;
1549
+ (function (DeleteObjectRequest) {
1550
+ /**
1551
+ * @internal
1552
+ */
1553
+ DeleteObjectRequest.filterSensitiveLog = (obj) => ({
1554
+ ...obj,
1555
+ });
1556
+ })(DeleteObjectRequest = exports.DeleteObjectRequest || (exports.DeleteObjectRequest = {}));
1557
+ var DeleteObjectResponse;
1558
+ (function (DeleteObjectResponse) {
1559
+ /**
1560
+ * @internal
1561
+ */
1562
+ DeleteObjectResponse.filterSensitiveLog = (obj) => ({
1563
+ ...obj,
1564
+ });
1565
+ })(DeleteObjectResponse = exports.DeleteObjectResponse || (exports.DeleteObjectResponse = {}));
1566
+ var ObjectNotDetachedException;
1567
+ (function (ObjectNotDetachedException) {
1568
+ /**
1569
+ * @internal
1570
+ */
1571
+ ObjectNotDetachedException.filterSensitiveLog = (obj) => ({
1572
+ ...obj,
1573
+ });
1574
+ })(ObjectNotDetachedException = exports.ObjectNotDetachedException || (exports.ObjectNotDetachedException = {}));
1575
+ var DeleteSchemaRequest;
1576
+ (function (DeleteSchemaRequest) {
1577
+ /**
1578
+ * @internal
1579
+ */
1580
+ DeleteSchemaRequest.filterSensitiveLog = (obj) => ({
1581
+ ...obj,
1582
+ });
1583
+ })(DeleteSchemaRequest = exports.DeleteSchemaRequest || (exports.DeleteSchemaRequest = {}));
1584
+ var DeleteSchemaResponse;
1585
+ (function (DeleteSchemaResponse) {
1586
+ /**
1587
+ * @internal
1588
+ */
1589
+ DeleteSchemaResponse.filterSensitiveLog = (obj) => ({
1590
+ ...obj,
1591
+ });
1592
+ })(DeleteSchemaResponse = exports.DeleteSchemaResponse || (exports.DeleteSchemaResponse = {}));
1593
+ var StillContainsLinksException;
1594
+ (function (StillContainsLinksException) {
1595
+ /**
1596
+ * @internal
1597
+ */
1598
+ StillContainsLinksException.filterSensitiveLog = (obj) => ({
1599
+ ...obj,
1600
+ });
1601
+ })(StillContainsLinksException = exports.StillContainsLinksException || (exports.StillContainsLinksException = {}));
1602
+ var DeleteTypedLinkFacetRequest;
1603
+ (function (DeleteTypedLinkFacetRequest) {
1604
+ /**
1605
+ * @internal
1606
+ */
1607
+ DeleteTypedLinkFacetRequest.filterSensitiveLog = (obj) => ({
1608
+ ...obj,
1609
+ });
1610
+ })(DeleteTypedLinkFacetRequest = exports.DeleteTypedLinkFacetRequest || (exports.DeleteTypedLinkFacetRequest = {}));
1611
+ var DeleteTypedLinkFacetResponse;
1612
+ (function (DeleteTypedLinkFacetResponse) {
1613
+ /**
1614
+ * @internal
1615
+ */
1616
+ DeleteTypedLinkFacetResponse.filterSensitiveLog = (obj) => ({
1617
+ ...obj,
1618
+ });
1619
+ })(DeleteTypedLinkFacetResponse = exports.DeleteTypedLinkFacetResponse || (exports.DeleteTypedLinkFacetResponse = {}));
1620
+ var DetachFromIndexRequest;
1621
+ (function (DetachFromIndexRequest) {
1622
+ /**
1623
+ * @internal
1624
+ */
1625
+ DetachFromIndexRequest.filterSensitiveLog = (obj) => ({
1626
+ ...obj,
1627
+ });
1628
+ })(DetachFromIndexRequest = exports.DetachFromIndexRequest || (exports.DetachFromIndexRequest = {}));
1629
+ var DetachFromIndexResponse;
1630
+ (function (DetachFromIndexResponse) {
1631
+ /**
1632
+ * @internal
1633
+ */
1634
+ DetachFromIndexResponse.filterSensitiveLog = (obj) => ({
1635
+ ...obj,
1636
+ });
1637
+ })(DetachFromIndexResponse = exports.DetachFromIndexResponse || (exports.DetachFromIndexResponse = {}));
1638
+ var ObjectAlreadyDetachedException;
1639
+ (function (ObjectAlreadyDetachedException) {
1640
+ /**
1641
+ * @internal
1642
+ */
1643
+ ObjectAlreadyDetachedException.filterSensitiveLog = (obj) => ({
1644
+ ...obj,
1645
+ });
1646
+ })(ObjectAlreadyDetachedException = exports.ObjectAlreadyDetachedException || (exports.ObjectAlreadyDetachedException = {}));
1647
+ var DetachObjectRequest;
1648
+ (function (DetachObjectRequest) {
1649
+ /**
1650
+ * @internal
1651
+ */
1652
+ DetachObjectRequest.filterSensitiveLog = (obj) => ({
1653
+ ...obj,
1654
+ });
1655
+ })(DetachObjectRequest = exports.DetachObjectRequest || (exports.DetachObjectRequest = {}));
1656
+ var DetachObjectResponse;
1657
+ (function (DetachObjectResponse) {
1658
+ /**
1659
+ * @internal
1660
+ */
1661
+ DetachObjectResponse.filterSensitiveLog = (obj) => ({
1662
+ ...obj,
1663
+ });
1664
+ })(DetachObjectResponse = exports.DetachObjectResponse || (exports.DetachObjectResponse = {}));
1665
+ var NotNodeException;
1666
+ (function (NotNodeException) {
1667
+ /**
1668
+ * @internal
1669
+ */
1670
+ NotNodeException.filterSensitiveLog = (obj) => ({
1671
+ ...obj,
1672
+ });
1673
+ })(NotNodeException = exports.NotNodeException || (exports.NotNodeException = {}));
1674
+ var DetachPolicyRequest;
1675
+ (function (DetachPolicyRequest) {
1676
+ /**
1677
+ * @internal
1678
+ */
1679
+ DetachPolicyRequest.filterSensitiveLog = (obj) => ({
1680
+ ...obj,
1681
+ });
1682
+ })(DetachPolicyRequest = exports.DetachPolicyRequest || (exports.DetachPolicyRequest = {}));
1683
+ var DetachPolicyResponse;
1684
+ (function (DetachPolicyResponse) {
1685
+ /**
1686
+ * @internal
1687
+ */
1688
+ DetachPolicyResponse.filterSensitiveLog = (obj) => ({
1689
+ ...obj,
1690
+ });
1691
+ })(DetachPolicyResponse = exports.DetachPolicyResponse || (exports.DetachPolicyResponse = {}));
1692
+ var DetachTypedLinkRequest;
1693
+ (function (DetachTypedLinkRequest) {
1694
+ /**
1695
+ * @internal
1696
+ */
1697
+ DetachTypedLinkRequest.filterSensitiveLog = (obj) => ({
1698
+ ...obj,
1699
+ ...(obj.TypedLinkSpecifier && {
1700
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1701
+ }),
1702
+ });
1703
+ })(DetachTypedLinkRequest = exports.DetachTypedLinkRequest || (exports.DetachTypedLinkRequest = {}));
1704
+ var DisableDirectoryRequest;
1705
+ (function (DisableDirectoryRequest) {
1706
+ /**
1707
+ * @internal
1708
+ */
1709
+ DisableDirectoryRequest.filterSensitiveLog = (obj) => ({
1710
+ ...obj,
1711
+ });
1712
+ })(DisableDirectoryRequest = exports.DisableDirectoryRequest || (exports.DisableDirectoryRequest = {}));
1713
+ var DisableDirectoryResponse;
1714
+ (function (DisableDirectoryResponse) {
1715
+ /**
1716
+ * @internal
1717
+ */
1718
+ DisableDirectoryResponse.filterSensitiveLog = (obj) => ({
1719
+ ...obj,
1720
+ });
1721
+ })(DisableDirectoryResponse = exports.DisableDirectoryResponse || (exports.DisableDirectoryResponse = {}));
1722
+ var EnableDirectoryRequest;
1723
+ (function (EnableDirectoryRequest) {
1724
+ /**
1725
+ * @internal
1726
+ */
1727
+ EnableDirectoryRequest.filterSensitiveLog = (obj) => ({
1728
+ ...obj,
1729
+ });
1730
+ })(EnableDirectoryRequest = exports.EnableDirectoryRequest || (exports.EnableDirectoryRequest = {}));
1731
+ var EnableDirectoryResponse;
1732
+ (function (EnableDirectoryResponse) {
1733
+ /**
1734
+ * @internal
1735
+ */
1736
+ EnableDirectoryResponse.filterSensitiveLog = (obj) => ({
1737
+ ...obj,
1738
+ });
1739
+ })(EnableDirectoryResponse = exports.EnableDirectoryResponse || (exports.EnableDirectoryResponse = {}));
1740
+ var GetAppliedSchemaVersionRequest;
1741
+ (function (GetAppliedSchemaVersionRequest) {
1742
+ /**
1743
+ * @internal
1744
+ */
1745
+ GetAppliedSchemaVersionRequest.filterSensitiveLog = (obj) => ({
1746
+ ...obj,
1747
+ });
1748
+ })(GetAppliedSchemaVersionRequest = exports.GetAppliedSchemaVersionRequest || (exports.GetAppliedSchemaVersionRequest = {}));
1749
+ var GetAppliedSchemaVersionResponse;
1750
+ (function (GetAppliedSchemaVersionResponse) {
1751
+ /**
1752
+ * @internal
1753
+ */
1754
+ GetAppliedSchemaVersionResponse.filterSensitiveLog = (obj) => ({
1755
+ ...obj,
1756
+ });
1757
+ })(GetAppliedSchemaVersionResponse = exports.GetAppliedSchemaVersionResponse || (exports.GetAppliedSchemaVersionResponse = {}));
1758
+ var GetDirectoryRequest;
1759
+ (function (GetDirectoryRequest) {
1760
+ /**
1761
+ * @internal
1762
+ */
1763
+ GetDirectoryRequest.filterSensitiveLog = (obj) => ({
1764
+ ...obj,
1765
+ });
1766
+ })(GetDirectoryRequest = exports.GetDirectoryRequest || (exports.GetDirectoryRequest = {}));
1767
+ var DirectoryState;
1768
+ (function (DirectoryState) {
1769
+ DirectoryState["DELETED"] = "DELETED";
1770
+ DirectoryState["DISABLED"] = "DISABLED";
1771
+ DirectoryState["ENABLED"] = "ENABLED";
1772
+ })(DirectoryState = exports.DirectoryState || (exports.DirectoryState = {}));
1773
+ var Directory;
1774
+ (function (Directory) {
1775
+ /**
1776
+ * @internal
1777
+ */
1778
+ Directory.filterSensitiveLog = (obj) => ({
1779
+ ...obj,
1780
+ });
1781
+ })(Directory = exports.Directory || (exports.Directory = {}));
1782
+ var GetDirectoryResponse;
1783
+ (function (GetDirectoryResponse) {
1784
+ /**
1785
+ * @internal
1786
+ */
1787
+ GetDirectoryResponse.filterSensitiveLog = (obj) => ({
1788
+ ...obj,
1789
+ });
1790
+ })(GetDirectoryResponse = exports.GetDirectoryResponse || (exports.GetDirectoryResponse = {}));
1791
+ var GetFacetRequest;
1792
+ (function (GetFacetRequest) {
1793
+ /**
1794
+ * @internal
1795
+ */
1796
+ GetFacetRequest.filterSensitiveLog = (obj) => ({
1797
+ ...obj,
1798
+ });
1799
+ })(GetFacetRequest = exports.GetFacetRequest || (exports.GetFacetRequest = {}));
1800
+ var Facet;
1801
+ (function (Facet) {
1802
+ /**
1803
+ * @internal
1804
+ */
1805
+ Facet.filterSensitiveLog = (obj) => ({
1806
+ ...obj,
1807
+ });
1808
+ })(Facet = exports.Facet || (exports.Facet = {}));
1809
+ var GetFacetResponse;
1810
+ (function (GetFacetResponse) {
1811
+ /**
1812
+ * @internal
1813
+ */
1814
+ GetFacetResponse.filterSensitiveLog = (obj) => ({
1815
+ ...obj,
1816
+ });
1817
+ })(GetFacetResponse = exports.GetFacetResponse || (exports.GetFacetResponse = {}));
1818
+ var GetLinkAttributesRequest;
1819
+ (function (GetLinkAttributesRequest) {
1820
+ /**
1821
+ * @internal
1822
+ */
1823
+ GetLinkAttributesRequest.filterSensitiveLog = (obj) => ({
1824
+ ...obj,
1825
+ ...(obj.TypedLinkSpecifier && {
1826
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1827
+ }),
1828
+ });
1829
+ })(GetLinkAttributesRequest = exports.GetLinkAttributesRequest || (exports.GetLinkAttributesRequest = {}));
1830
+ var GetLinkAttributesResponse;
1831
+ (function (GetLinkAttributesResponse) {
1832
+ /**
1833
+ * @internal
1834
+ */
1835
+ GetLinkAttributesResponse.filterSensitiveLog = (obj) => ({
1836
+ ...obj,
1837
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
1838
+ });
1839
+ })(GetLinkAttributesResponse = exports.GetLinkAttributesResponse || (exports.GetLinkAttributesResponse = {}));
1840
+ var GetObjectAttributesRequest;
1841
+ (function (GetObjectAttributesRequest) {
1842
+ /**
1843
+ * @internal
1844
+ */
1845
+ GetObjectAttributesRequest.filterSensitiveLog = (obj) => ({
1846
+ ...obj,
1847
+ });
1848
+ })(GetObjectAttributesRequest = exports.GetObjectAttributesRequest || (exports.GetObjectAttributesRequest = {}));
1849
+ var GetObjectAttributesResponse;
1850
+ (function (GetObjectAttributesResponse) {
1851
+ /**
1852
+ * @internal
1853
+ */
1854
+ GetObjectAttributesResponse.filterSensitiveLog = (obj) => ({
1855
+ ...obj,
1856
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
1857
+ });
1858
+ })(GetObjectAttributesResponse = exports.GetObjectAttributesResponse || (exports.GetObjectAttributesResponse = {}));
1859
+ var GetObjectInformationRequest;
1860
+ (function (GetObjectInformationRequest) {
1861
+ /**
1862
+ * @internal
1863
+ */
1864
+ GetObjectInformationRequest.filterSensitiveLog = (obj) => ({
1865
+ ...obj,
1866
+ });
1867
+ })(GetObjectInformationRequest = exports.GetObjectInformationRequest || (exports.GetObjectInformationRequest = {}));
1868
+ var GetObjectInformationResponse;
1869
+ (function (GetObjectInformationResponse) {
1870
+ /**
1871
+ * @internal
1872
+ */
1873
+ GetObjectInformationResponse.filterSensitiveLog = (obj) => ({
1874
+ ...obj,
1875
+ });
1876
+ })(GetObjectInformationResponse = exports.GetObjectInformationResponse || (exports.GetObjectInformationResponse = {}));
1877
+ var GetSchemaAsJsonRequest;
1878
+ (function (GetSchemaAsJsonRequest) {
1879
+ /**
1880
+ * @internal
1881
+ */
1882
+ GetSchemaAsJsonRequest.filterSensitiveLog = (obj) => ({
1883
+ ...obj,
1884
+ });
1885
+ })(GetSchemaAsJsonRequest = exports.GetSchemaAsJsonRequest || (exports.GetSchemaAsJsonRequest = {}));
1886
+ var GetSchemaAsJsonResponse;
1887
+ (function (GetSchemaAsJsonResponse) {
1888
+ /**
1889
+ * @internal
1890
+ */
1891
+ GetSchemaAsJsonResponse.filterSensitiveLog = (obj) => ({
1892
+ ...obj,
1893
+ });
1894
+ })(GetSchemaAsJsonResponse = exports.GetSchemaAsJsonResponse || (exports.GetSchemaAsJsonResponse = {}));
1895
+ var GetTypedLinkFacetInformationRequest;
1896
+ (function (GetTypedLinkFacetInformationRequest) {
1897
+ /**
1898
+ * @internal
1899
+ */
1900
+ GetTypedLinkFacetInformationRequest.filterSensitiveLog = (obj) => ({
1901
+ ...obj,
1902
+ });
1903
+ })(GetTypedLinkFacetInformationRequest = exports.GetTypedLinkFacetInformationRequest || (exports.GetTypedLinkFacetInformationRequest = {}));
1904
+ var GetTypedLinkFacetInformationResponse;
1905
+ (function (GetTypedLinkFacetInformationResponse) {
1906
+ /**
1907
+ * @internal
1908
+ */
1909
+ GetTypedLinkFacetInformationResponse.filterSensitiveLog = (obj) => ({
1910
+ ...obj,
1911
+ });
1912
+ })(GetTypedLinkFacetInformationResponse = exports.GetTypedLinkFacetInformationResponse || (exports.GetTypedLinkFacetInformationResponse = {}));
1913
+ var InvalidNextTokenException;
1914
+ (function (InvalidNextTokenException) {
1915
+ /**
1916
+ * @internal
1917
+ */
1918
+ InvalidNextTokenException.filterSensitiveLog = (obj) => ({
1919
+ ...obj,
1920
+ });
1921
+ })(InvalidNextTokenException = exports.InvalidNextTokenException || (exports.InvalidNextTokenException = {}));
1922
+ var ListAppliedSchemaArnsRequest;
1923
+ (function (ListAppliedSchemaArnsRequest) {
1924
+ /**
1925
+ * @internal
1926
+ */
1927
+ ListAppliedSchemaArnsRequest.filterSensitiveLog = (obj) => ({
1928
+ ...obj,
1929
+ });
1930
+ })(ListAppliedSchemaArnsRequest = exports.ListAppliedSchemaArnsRequest || (exports.ListAppliedSchemaArnsRequest = {}));
1931
+ var ListAppliedSchemaArnsResponse;
1932
+ (function (ListAppliedSchemaArnsResponse) {
1933
+ /**
1934
+ * @internal
1935
+ */
1936
+ ListAppliedSchemaArnsResponse.filterSensitiveLog = (obj) => ({
1937
+ ...obj,
1938
+ });
1939
+ })(ListAppliedSchemaArnsResponse = exports.ListAppliedSchemaArnsResponse || (exports.ListAppliedSchemaArnsResponse = {}));
1940
+ var ListAttachedIndicesRequest;
1941
+ (function (ListAttachedIndicesRequest) {
1942
+ /**
1943
+ * @internal
1944
+ */
1945
+ ListAttachedIndicesRequest.filterSensitiveLog = (obj) => ({
1946
+ ...obj,
1947
+ });
1948
+ })(ListAttachedIndicesRequest = exports.ListAttachedIndicesRequest || (exports.ListAttachedIndicesRequest = {}));
1949
+ var ListAttachedIndicesResponse;
1950
+ (function (ListAttachedIndicesResponse) {
1951
+ /**
1952
+ * @internal
1953
+ */
1954
+ ListAttachedIndicesResponse.filterSensitiveLog = (obj) => ({
1955
+ ...obj,
1956
+ });
1957
+ })(ListAttachedIndicesResponse = exports.ListAttachedIndicesResponse || (exports.ListAttachedIndicesResponse = {}));
1958
+ var ListDevelopmentSchemaArnsRequest;
1959
+ (function (ListDevelopmentSchemaArnsRequest) {
1960
+ /**
1961
+ * @internal
1962
+ */
1963
+ ListDevelopmentSchemaArnsRequest.filterSensitiveLog = (obj) => ({
1964
+ ...obj,
1965
+ });
1966
+ })(ListDevelopmentSchemaArnsRequest = exports.ListDevelopmentSchemaArnsRequest || (exports.ListDevelopmentSchemaArnsRequest = {}));
1967
+ var ListDevelopmentSchemaArnsResponse;
1968
+ (function (ListDevelopmentSchemaArnsResponse) {
1969
+ /**
1970
+ * @internal
1971
+ */
1972
+ ListDevelopmentSchemaArnsResponse.filterSensitiveLog = (obj) => ({
1973
+ ...obj,
1974
+ });
1975
+ })(ListDevelopmentSchemaArnsResponse = exports.ListDevelopmentSchemaArnsResponse || (exports.ListDevelopmentSchemaArnsResponse = {}));
1976
+ var ListDirectoriesRequest;
1977
+ (function (ListDirectoriesRequest) {
1978
+ /**
1979
+ * @internal
1980
+ */
1981
+ ListDirectoriesRequest.filterSensitiveLog = (obj) => ({
1982
+ ...obj,
1983
+ });
1984
+ })(ListDirectoriesRequest = exports.ListDirectoriesRequest || (exports.ListDirectoriesRequest = {}));
1985
+ var ListDirectoriesResponse;
1986
+ (function (ListDirectoriesResponse) {
1987
+ /**
1988
+ * @internal
1989
+ */
1990
+ ListDirectoriesResponse.filterSensitiveLog = (obj) => ({
1991
+ ...obj,
1992
+ });
1993
+ })(ListDirectoriesResponse = exports.ListDirectoriesResponse || (exports.ListDirectoriesResponse = {}));
1994
+ var ListFacetAttributesRequest;
1995
+ (function (ListFacetAttributesRequest) {
1996
+ /**
1997
+ * @internal
1998
+ */
1999
+ ListFacetAttributesRequest.filterSensitiveLog = (obj) => ({
2000
+ ...obj,
2001
+ });
2002
+ })(ListFacetAttributesRequest = exports.ListFacetAttributesRequest || (exports.ListFacetAttributesRequest = {}));
2003
+ var ListFacetAttributesResponse;
2004
+ (function (ListFacetAttributesResponse) {
2005
+ /**
2006
+ * @internal
2007
+ */
2008
+ ListFacetAttributesResponse.filterSensitiveLog = (obj) => ({
2009
+ ...obj,
2010
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => FacetAttribute.filterSensitiveLog(item)) }),
2011
+ });
2012
+ })(ListFacetAttributesResponse = exports.ListFacetAttributesResponse || (exports.ListFacetAttributesResponse = {}));
2013
+ var ListFacetNamesRequest;
2014
+ (function (ListFacetNamesRequest) {
2015
+ /**
2016
+ * @internal
2017
+ */
2018
+ ListFacetNamesRequest.filterSensitiveLog = (obj) => ({
2019
+ ...obj,
2020
+ });
2021
+ })(ListFacetNamesRequest = exports.ListFacetNamesRequest || (exports.ListFacetNamesRequest = {}));
2022
+ var ListFacetNamesResponse;
2023
+ (function (ListFacetNamesResponse) {
2024
+ /**
2025
+ * @internal
2026
+ */
2027
+ ListFacetNamesResponse.filterSensitiveLog = (obj) => ({
2028
+ ...obj,
2029
+ });
2030
+ })(ListFacetNamesResponse = exports.ListFacetNamesResponse || (exports.ListFacetNamesResponse = {}));
2031
+ var ListIncomingTypedLinksRequest;
2032
+ (function (ListIncomingTypedLinksRequest) {
2033
+ /**
2034
+ * @internal
2035
+ */
2036
+ ListIncomingTypedLinksRequest.filterSensitiveLog = (obj) => ({
2037
+ ...obj,
2038
+ ...(obj.FilterAttributeRanges && {
2039
+ FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
2040
+ }),
2041
+ });
2042
+ })(ListIncomingTypedLinksRequest = exports.ListIncomingTypedLinksRequest || (exports.ListIncomingTypedLinksRequest = {}));
2043
+ var ListIncomingTypedLinksResponse;
2044
+ (function (ListIncomingTypedLinksResponse) {
2045
+ /**
2046
+ * @internal
2047
+ */
2048
+ ListIncomingTypedLinksResponse.filterSensitiveLog = (obj) => ({
2049
+ ...obj,
2050
+ });
2051
+ })(ListIncomingTypedLinksResponse = exports.ListIncomingTypedLinksResponse || (exports.ListIncomingTypedLinksResponse = {}));
2052
+ var ListIndexRequest;
2053
+ (function (ListIndexRequest) {
2054
+ /**
2055
+ * @internal
2056
+ */
2057
+ ListIndexRequest.filterSensitiveLog = (obj) => ({
2058
+ ...obj,
2059
+ ...(obj.RangesOnIndexedValues && {
2060
+ RangesOnIndexedValues: obj.RangesOnIndexedValues.map((item) => ObjectAttributeRange.filterSensitiveLog(item)),
2061
+ }),
2062
+ });
2063
+ })(ListIndexRequest = exports.ListIndexRequest || (exports.ListIndexRequest = {}));
2064
+ var ListIndexResponse;
2065
+ (function (ListIndexResponse) {
2066
+ /**
2067
+ * @internal
2068
+ */
2069
+ ListIndexResponse.filterSensitiveLog = (obj) => ({
2070
+ ...obj,
2071
+ });
2072
+ })(ListIndexResponse = exports.ListIndexResponse || (exports.ListIndexResponse = {}));
2073
+ var ListManagedSchemaArnsRequest;
2074
+ (function (ListManagedSchemaArnsRequest) {
2075
+ /**
2076
+ * @internal
2077
+ */
2078
+ ListManagedSchemaArnsRequest.filterSensitiveLog = (obj) => ({
2079
+ ...obj,
2080
+ });
2081
+ })(ListManagedSchemaArnsRequest = exports.ListManagedSchemaArnsRequest || (exports.ListManagedSchemaArnsRequest = {}));
2082
+ var ListManagedSchemaArnsResponse;
2083
+ (function (ListManagedSchemaArnsResponse) {
2084
+ /**
2085
+ * @internal
2086
+ */
2087
+ ListManagedSchemaArnsResponse.filterSensitiveLog = (obj) => ({
2088
+ ...obj,
2089
+ });
2090
+ })(ListManagedSchemaArnsResponse = exports.ListManagedSchemaArnsResponse || (exports.ListManagedSchemaArnsResponse = {}));
2091
+ var ListObjectAttributesRequest;
2092
+ (function (ListObjectAttributesRequest) {
2093
+ /**
2094
+ * @internal
2095
+ */
2096
+ ListObjectAttributesRequest.filterSensitiveLog = (obj) => ({
2097
+ ...obj,
2098
+ });
2099
+ })(ListObjectAttributesRequest = exports.ListObjectAttributesRequest || (exports.ListObjectAttributesRequest = {}));
2100
+ var ListObjectAttributesResponse;
2101
+ (function (ListObjectAttributesResponse) {
2102
+ /**
2103
+ * @internal
2104
+ */
2105
+ ListObjectAttributesResponse.filterSensitiveLog = (obj) => ({
2106
+ ...obj,
2107
+ ...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
2108
+ });
2109
+ })(ListObjectAttributesResponse = exports.ListObjectAttributesResponse || (exports.ListObjectAttributesResponse = {}));
2110
+ var ListObjectChildrenRequest;
2111
+ (function (ListObjectChildrenRequest) {
2112
+ /**
2113
+ * @internal
2114
+ */
2115
+ ListObjectChildrenRequest.filterSensitiveLog = (obj) => ({
2116
+ ...obj,
2117
+ });
2118
+ })(ListObjectChildrenRequest = exports.ListObjectChildrenRequest || (exports.ListObjectChildrenRequest = {}));
2119
+ var ListObjectChildrenResponse;
2120
+ (function (ListObjectChildrenResponse) {
2121
+ /**
2122
+ * @internal
2123
+ */
2124
+ ListObjectChildrenResponse.filterSensitiveLog = (obj) => ({
2125
+ ...obj,
2126
+ });
2127
+ })(ListObjectChildrenResponse = exports.ListObjectChildrenResponse || (exports.ListObjectChildrenResponse = {}));
2128
+ var ListObjectParentPathsRequest;
2129
+ (function (ListObjectParentPathsRequest) {
2130
+ /**
2131
+ * @internal
2132
+ */
2133
+ ListObjectParentPathsRequest.filterSensitiveLog = (obj) => ({
2134
+ ...obj,
2135
+ });
2136
+ })(ListObjectParentPathsRequest = exports.ListObjectParentPathsRequest || (exports.ListObjectParentPathsRequest = {}));
2137
+ var ListObjectParentPathsResponse;
2138
+ (function (ListObjectParentPathsResponse) {
2139
+ /**
2140
+ * @internal
2141
+ */
2142
+ ListObjectParentPathsResponse.filterSensitiveLog = (obj) => ({
2143
+ ...obj,
2144
+ });
2145
+ })(ListObjectParentPathsResponse = exports.ListObjectParentPathsResponse || (exports.ListObjectParentPathsResponse = {}));
2146
+ var CannotListParentOfRootException;
2147
+ (function (CannotListParentOfRootException) {
2148
+ /**
2149
+ * @internal
2150
+ */
2151
+ CannotListParentOfRootException.filterSensitiveLog = (obj) => ({
2152
+ ...obj,
2153
+ });
2154
+ })(CannotListParentOfRootException = exports.CannotListParentOfRootException || (exports.CannotListParentOfRootException = {}));
2155
+ var ListObjectParentsRequest;
2156
+ (function (ListObjectParentsRequest) {
2157
+ /**
2158
+ * @internal
2159
+ */
2160
+ ListObjectParentsRequest.filterSensitiveLog = (obj) => ({
2161
+ ...obj,
2162
+ });
2163
+ })(ListObjectParentsRequest = exports.ListObjectParentsRequest || (exports.ListObjectParentsRequest = {}));
2164
+ var ListObjectParentsResponse;
2165
+ (function (ListObjectParentsResponse) {
2166
+ /**
2167
+ * @internal
2168
+ */
2169
+ ListObjectParentsResponse.filterSensitiveLog = (obj) => ({
2170
+ ...obj,
2171
+ });
2172
+ })(ListObjectParentsResponse = exports.ListObjectParentsResponse || (exports.ListObjectParentsResponse = {}));
2173
+ var ListObjectPoliciesRequest;
2174
+ (function (ListObjectPoliciesRequest) {
2175
+ /**
2176
+ * @internal
2177
+ */
2178
+ ListObjectPoliciesRequest.filterSensitiveLog = (obj) => ({
2179
+ ...obj,
2180
+ });
2181
+ })(ListObjectPoliciesRequest = exports.ListObjectPoliciesRequest || (exports.ListObjectPoliciesRequest = {}));
2182
+ var ListObjectPoliciesResponse;
2183
+ (function (ListObjectPoliciesResponse) {
2184
+ /**
2185
+ * @internal
2186
+ */
2187
+ ListObjectPoliciesResponse.filterSensitiveLog = (obj) => ({
2188
+ ...obj,
2189
+ });
2190
+ })(ListObjectPoliciesResponse = exports.ListObjectPoliciesResponse || (exports.ListObjectPoliciesResponse = {}));
2191
+ var ListOutgoingTypedLinksRequest;
2192
+ (function (ListOutgoingTypedLinksRequest) {
2193
+ /**
2194
+ * @internal
2195
+ */
2196
+ ListOutgoingTypedLinksRequest.filterSensitiveLog = (obj) => ({
2197
+ ...obj,
2198
+ ...(obj.FilterAttributeRanges && {
2199
+ FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
2200
+ }),
2201
+ });
2202
+ })(ListOutgoingTypedLinksRequest = exports.ListOutgoingTypedLinksRequest || (exports.ListOutgoingTypedLinksRequest = {}));
2203
+ var ListOutgoingTypedLinksResponse;
2204
+ (function (ListOutgoingTypedLinksResponse) {
2205
+ /**
2206
+ * @internal
2207
+ */
2208
+ ListOutgoingTypedLinksResponse.filterSensitiveLog = (obj) => ({
2209
+ ...obj,
2210
+ });
2211
+ })(ListOutgoingTypedLinksResponse = exports.ListOutgoingTypedLinksResponse || (exports.ListOutgoingTypedLinksResponse = {}));
2212
+ var ListPolicyAttachmentsRequest;
2213
+ (function (ListPolicyAttachmentsRequest) {
2214
+ /**
2215
+ * @internal
2216
+ */
2217
+ ListPolicyAttachmentsRequest.filterSensitiveLog = (obj) => ({
2218
+ ...obj,
2219
+ });
2220
+ })(ListPolicyAttachmentsRequest = exports.ListPolicyAttachmentsRequest || (exports.ListPolicyAttachmentsRequest = {}));
2221
+ var ListPolicyAttachmentsResponse;
2222
+ (function (ListPolicyAttachmentsResponse) {
2223
+ /**
2224
+ * @internal
2225
+ */
2226
+ ListPolicyAttachmentsResponse.filterSensitiveLog = (obj) => ({
2227
+ ...obj,
2228
+ });
2229
+ })(ListPolicyAttachmentsResponse = exports.ListPolicyAttachmentsResponse || (exports.ListPolicyAttachmentsResponse = {}));
2230
+ var ListPublishedSchemaArnsRequest;
2231
+ (function (ListPublishedSchemaArnsRequest) {
2232
+ /**
2233
+ * @internal
2234
+ */
2235
+ ListPublishedSchemaArnsRequest.filterSensitiveLog = (obj) => ({
2236
+ ...obj,
2237
+ });
2238
+ })(ListPublishedSchemaArnsRequest = exports.ListPublishedSchemaArnsRequest || (exports.ListPublishedSchemaArnsRequest = {}));
2239
+ var ListPublishedSchemaArnsResponse;
2240
+ (function (ListPublishedSchemaArnsResponse) {
2241
+ /**
2242
+ * @internal
2243
+ */
2244
+ ListPublishedSchemaArnsResponse.filterSensitiveLog = (obj) => ({
2245
+ ...obj,
2246
+ });
2247
+ })(ListPublishedSchemaArnsResponse = exports.ListPublishedSchemaArnsResponse || (exports.ListPublishedSchemaArnsResponse = {}));
2248
+ var InvalidTaggingRequestException;
2249
+ (function (InvalidTaggingRequestException) {
2250
+ /**
2251
+ * @internal
2252
+ */
2253
+ InvalidTaggingRequestException.filterSensitiveLog = (obj) => ({
2254
+ ...obj,
2255
+ });
2256
+ })(InvalidTaggingRequestException = exports.InvalidTaggingRequestException || (exports.InvalidTaggingRequestException = {}));
2257
+ var ListTagsForResourceRequest;
2258
+ (function (ListTagsForResourceRequest) {
2259
+ /**
2260
+ * @internal
2261
+ */
2262
+ ListTagsForResourceRequest.filterSensitiveLog = (obj) => ({
2263
+ ...obj,
2264
+ });
2265
+ })(ListTagsForResourceRequest = exports.ListTagsForResourceRequest || (exports.ListTagsForResourceRequest = {}));
2266
+ var Tag;
2267
+ (function (Tag) {
2268
+ /**
2269
+ * @internal
2270
+ */
2271
+ Tag.filterSensitiveLog = (obj) => ({
2272
+ ...obj,
2273
+ });
2274
+ })(Tag = exports.Tag || (exports.Tag = {}));
2275
+ var ListTagsForResourceResponse;
2276
+ (function (ListTagsForResourceResponse) {
2277
+ /**
2278
+ * @internal
2279
+ */
2280
+ ListTagsForResourceResponse.filterSensitiveLog = (obj) => ({
2281
+ ...obj,
2282
+ });
2283
+ })(ListTagsForResourceResponse = exports.ListTagsForResourceResponse || (exports.ListTagsForResourceResponse = {}));
2284
+ var ListTypedLinkFacetAttributesRequest;
2285
+ (function (ListTypedLinkFacetAttributesRequest) {
2286
+ /**
2287
+ * @internal
2288
+ */
2289
+ ListTypedLinkFacetAttributesRequest.filterSensitiveLog = (obj) => ({
2290
+ ...obj,
2291
+ });
2292
+ })(ListTypedLinkFacetAttributesRequest = exports.ListTypedLinkFacetAttributesRequest || (exports.ListTypedLinkFacetAttributesRequest = {}));
2293
+ var ListTypedLinkFacetAttributesResponse;
2294
+ (function (ListTypedLinkFacetAttributesResponse) {
2295
+ /**
2296
+ * @internal
2297
+ */
2298
+ ListTypedLinkFacetAttributesResponse.filterSensitiveLog = (obj) => ({
2299
+ ...obj,
2300
+ ...(obj.Attributes && {
2301
+ Attributes: obj.Attributes.map((item) => TypedLinkAttributeDefinition.filterSensitiveLog(item)),
2302
+ }),
2303
+ });
2304
+ })(ListTypedLinkFacetAttributesResponse = exports.ListTypedLinkFacetAttributesResponse || (exports.ListTypedLinkFacetAttributesResponse = {}));
2305
+ var ListTypedLinkFacetNamesRequest;
2306
+ (function (ListTypedLinkFacetNamesRequest) {
2307
+ /**
2308
+ * @internal
2309
+ */
2310
+ ListTypedLinkFacetNamesRequest.filterSensitiveLog = (obj) => ({
2311
+ ...obj,
2312
+ });
2313
+ })(ListTypedLinkFacetNamesRequest = exports.ListTypedLinkFacetNamesRequest || (exports.ListTypedLinkFacetNamesRequest = {}));
2314
+ var ListTypedLinkFacetNamesResponse;
2315
+ (function (ListTypedLinkFacetNamesResponse) {
2316
+ /**
2317
+ * @internal
2318
+ */
2319
+ ListTypedLinkFacetNamesResponse.filterSensitiveLog = (obj) => ({
2320
+ ...obj,
2321
+ });
2322
+ })(ListTypedLinkFacetNamesResponse = exports.ListTypedLinkFacetNamesResponse || (exports.ListTypedLinkFacetNamesResponse = {}));
2323
+ var LookupPolicyRequest;
2324
+ (function (LookupPolicyRequest) {
2325
+ /**
2326
+ * @internal
2327
+ */
2328
+ LookupPolicyRequest.filterSensitiveLog = (obj) => ({
2329
+ ...obj,
2330
+ });
2331
+ })(LookupPolicyRequest = exports.LookupPolicyRequest || (exports.LookupPolicyRequest = {}));
2332
+ var LookupPolicyResponse;
2333
+ (function (LookupPolicyResponse) {
2334
+ /**
2335
+ * @internal
2336
+ */
2337
+ LookupPolicyResponse.filterSensitiveLog = (obj) => ({
2338
+ ...obj,
2339
+ });
2340
+ })(LookupPolicyResponse = exports.LookupPolicyResponse || (exports.LookupPolicyResponse = {}));
2341
+ var PublishSchemaRequest;
2342
+ (function (PublishSchemaRequest) {
2343
+ /**
2344
+ * @internal
2345
+ */
2346
+ PublishSchemaRequest.filterSensitiveLog = (obj) => ({
2347
+ ...obj,
2348
+ });
2349
+ })(PublishSchemaRequest = exports.PublishSchemaRequest || (exports.PublishSchemaRequest = {}));
2350
+ var PublishSchemaResponse;
2351
+ (function (PublishSchemaResponse) {
2352
+ /**
2353
+ * @internal
2354
+ */
2355
+ PublishSchemaResponse.filterSensitiveLog = (obj) => ({
2356
+ ...obj,
2357
+ });
2358
+ })(PublishSchemaResponse = exports.PublishSchemaResponse || (exports.PublishSchemaResponse = {}));
2359
+ var SchemaAlreadyPublishedException;
2360
+ (function (SchemaAlreadyPublishedException) {
2361
+ /**
2362
+ * @internal
2363
+ */
2364
+ SchemaAlreadyPublishedException.filterSensitiveLog = (obj) => ({
2365
+ ...obj,
2366
+ });
2367
+ })(SchemaAlreadyPublishedException = exports.SchemaAlreadyPublishedException || (exports.SchemaAlreadyPublishedException = {}));
2368
+ var InvalidSchemaDocException;
2369
+ (function (InvalidSchemaDocException) {
2370
+ /**
2371
+ * @internal
2372
+ */
2373
+ InvalidSchemaDocException.filterSensitiveLog = (obj) => ({
2374
+ ...obj,
2375
+ });
2376
+ })(InvalidSchemaDocException = exports.InvalidSchemaDocException || (exports.InvalidSchemaDocException = {}));
2377
+ var PutSchemaFromJsonRequest;
2378
+ (function (PutSchemaFromJsonRequest) {
2379
+ /**
2380
+ * @internal
2381
+ */
2382
+ PutSchemaFromJsonRequest.filterSensitiveLog = (obj) => ({
2383
+ ...obj,
2384
+ });
2385
+ })(PutSchemaFromJsonRequest = exports.PutSchemaFromJsonRequest || (exports.PutSchemaFromJsonRequest = {}));
2386
+ var PutSchemaFromJsonResponse;
2387
+ (function (PutSchemaFromJsonResponse) {
2388
+ /**
2389
+ * @internal
2390
+ */
2391
+ PutSchemaFromJsonResponse.filterSensitiveLog = (obj) => ({
2392
+ ...obj,
2393
+ });
2394
+ })(PutSchemaFromJsonResponse = exports.PutSchemaFromJsonResponse || (exports.PutSchemaFromJsonResponse = {}));
2395
+ var RemoveFacetFromObjectRequest;
2396
+ (function (RemoveFacetFromObjectRequest) {
2397
+ /**
2398
+ * @internal
2399
+ */
2400
+ RemoveFacetFromObjectRequest.filterSensitiveLog = (obj) => ({
2401
+ ...obj,
2402
+ });
2403
+ })(RemoveFacetFromObjectRequest = exports.RemoveFacetFromObjectRequest || (exports.RemoveFacetFromObjectRequest = {}));
2404
+ var RemoveFacetFromObjectResponse;
2405
+ (function (RemoveFacetFromObjectResponse) {
2406
+ /**
2407
+ * @internal
2408
+ */
2409
+ RemoveFacetFromObjectResponse.filterSensitiveLog = (obj) => ({
2410
+ ...obj,
2411
+ });
2412
+ })(RemoveFacetFromObjectResponse = exports.RemoveFacetFromObjectResponse || (exports.RemoveFacetFromObjectResponse = {}));
2413
+ var TagResourceRequest;
2414
+ (function (TagResourceRequest) {
2415
+ /**
2416
+ * @internal
2417
+ */
2418
+ TagResourceRequest.filterSensitiveLog = (obj) => ({
2419
+ ...obj,
2420
+ });
2421
+ })(TagResourceRequest = exports.TagResourceRequest || (exports.TagResourceRequest = {}));
2422
+ var TagResourceResponse;
2423
+ (function (TagResourceResponse) {
2424
+ /**
2425
+ * @internal
2426
+ */
2427
+ TagResourceResponse.filterSensitiveLog = (obj) => ({
2428
+ ...obj,
2429
+ });
2430
+ })(TagResourceResponse = exports.TagResourceResponse || (exports.TagResourceResponse = {}));
2431
+ var UntagResourceRequest;
2432
+ (function (UntagResourceRequest) {
2433
+ /**
2434
+ * @internal
2435
+ */
2436
+ UntagResourceRequest.filterSensitiveLog = (obj) => ({
2437
+ ...obj,
2438
+ });
2439
+ })(UntagResourceRequest = exports.UntagResourceRequest || (exports.UntagResourceRequest = {}));
2440
+ var UntagResourceResponse;
2441
+ (function (UntagResourceResponse) {
2442
+ /**
2443
+ * @internal
2444
+ */
2445
+ UntagResourceResponse.filterSensitiveLog = (obj) => ({
2446
+ ...obj,
2447
+ });
2448
+ })(UntagResourceResponse = exports.UntagResourceResponse || (exports.UntagResourceResponse = {}));
2449
+ var InvalidFacetUpdateException;
2450
+ (function (InvalidFacetUpdateException) {
2451
+ /**
2452
+ * @internal
2453
+ */
2454
+ InvalidFacetUpdateException.filterSensitiveLog = (obj) => ({
2455
+ ...obj,
2456
+ });
2457
+ })(InvalidFacetUpdateException = exports.InvalidFacetUpdateException || (exports.InvalidFacetUpdateException = {}));
2458
+ var FacetAttributeUpdate;
2459
+ (function (FacetAttributeUpdate) {
2460
+ /**
2461
+ * @internal
2462
+ */
2463
+ FacetAttributeUpdate.filterSensitiveLog = (obj) => ({
2464
+ ...obj,
2465
+ ...(obj.Attribute && { Attribute: FacetAttribute.filterSensitiveLog(obj.Attribute) }),
2466
+ });
2467
+ })(FacetAttributeUpdate = exports.FacetAttributeUpdate || (exports.FacetAttributeUpdate = {}));
2468
+ var UpdateFacetRequest;
2469
+ (function (UpdateFacetRequest) {
2470
+ /**
2471
+ * @internal
2472
+ */
2473
+ UpdateFacetRequest.filterSensitiveLog = (obj) => ({
2474
+ ...obj,
2475
+ ...(obj.AttributeUpdates && {
2476
+ AttributeUpdates: obj.AttributeUpdates.map((item) => FacetAttributeUpdate.filterSensitiveLog(item)),
2477
+ }),
2478
+ });
2479
+ })(UpdateFacetRequest = exports.UpdateFacetRequest || (exports.UpdateFacetRequest = {}));
2480
+ var UpdateFacetResponse;
2481
+ (function (UpdateFacetResponse) {
2482
+ /**
2483
+ * @internal
2484
+ */
2485
+ UpdateFacetResponse.filterSensitiveLog = (obj) => ({
2486
+ ...obj,
2487
+ });
2488
+ })(UpdateFacetResponse = exports.UpdateFacetResponse || (exports.UpdateFacetResponse = {}));
2489
+ var UpdateLinkAttributesRequest;
2490
+ (function (UpdateLinkAttributesRequest) {
2491
+ /**
2492
+ * @internal
2493
+ */
2494
+ UpdateLinkAttributesRequest.filterSensitiveLog = (obj) => ({
2495
+ ...obj,
2496
+ ...(obj.TypedLinkSpecifier && {
2497
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
2498
+ }),
2499
+ ...(obj.AttributeUpdates && {
2500
+ AttributeUpdates: obj.AttributeUpdates.map((item) => LinkAttributeUpdate.filterSensitiveLog(item)),
2501
+ }),
2502
+ });
2503
+ })(UpdateLinkAttributesRequest = exports.UpdateLinkAttributesRequest || (exports.UpdateLinkAttributesRequest = {}));
2504
+ var UpdateLinkAttributesResponse;
2505
+ (function (UpdateLinkAttributesResponse) {
2506
+ /**
2507
+ * @internal
2508
+ */
2509
+ UpdateLinkAttributesResponse.filterSensitiveLog = (obj) => ({
2510
+ ...obj,
2511
+ });
2512
+ })(UpdateLinkAttributesResponse = exports.UpdateLinkAttributesResponse || (exports.UpdateLinkAttributesResponse = {}));
2513
+ var UpdateObjectAttributesRequest;
2514
+ (function (UpdateObjectAttributesRequest) {
2515
+ /**
2516
+ * @internal
2517
+ */
2518
+ UpdateObjectAttributesRequest.filterSensitiveLog = (obj) => ({
2519
+ ...obj,
2520
+ ...(obj.AttributeUpdates && {
2521
+ AttributeUpdates: obj.AttributeUpdates.map((item) => ObjectAttributeUpdate.filterSensitiveLog(item)),
2522
+ }),
2523
+ });
2524
+ })(UpdateObjectAttributesRequest = exports.UpdateObjectAttributesRequest || (exports.UpdateObjectAttributesRequest = {}));
2525
+ var UpdateObjectAttributesResponse;
2526
+ (function (UpdateObjectAttributesResponse) {
2527
+ /**
2528
+ * @internal
2529
+ */
2530
+ UpdateObjectAttributesResponse.filterSensitiveLog = (obj) => ({
2531
+ ...obj,
2532
+ });
2533
+ })(UpdateObjectAttributesResponse = exports.UpdateObjectAttributesResponse || (exports.UpdateObjectAttributesResponse = {}));
2534
+ var UpdateSchemaRequest;
2535
+ (function (UpdateSchemaRequest) {
2536
+ /**
2537
+ * @internal
2538
+ */
2539
+ UpdateSchemaRequest.filterSensitiveLog = (obj) => ({
2540
+ ...obj,
2541
+ });
2542
+ })(UpdateSchemaRequest = exports.UpdateSchemaRequest || (exports.UpdateSchemaRequest = {}));
2543
+ var UpdateSchemaResponse;
2544
+ (function (UpdateSchemaResponse) {
2545
+ /**
2546
+ * @internal
2547
+ */
2548
+ UpdateSchemaResponse.filterSensitiveLog = (obj) => ({
2549
+ ...obj,
2550
+ });
2551
+ })(UpdateSchemaResponse = exports.UpdateSchemaResponse || (exports.UpdateSchemaResponse = {}));
2552
+ var TypedLinkFacetAttributeUpdate;
2553
+ (function (TypedLinkFacetAttributeUpdate) {
2554
+ /**
2555
+ * @internal
2556
+ */
2557
+ TypedLinkFacetAttributeUpdate.filterSensitiveLog = (obj) => ({
2558
+ ...obj,
2559
+ ...(obj.Attribute && { Attribute: TypedLinkAttributeDefinition.filterSensitiveLog(obj.Attribute) }),
2560
+ });
2561
+ })(TypedLinkFacetAttributeUpdate = exports.TypedLinkFacetAttributeUpdate || (exports.TypedLinkFacetAttributeUpdate = {}));
2562
+ var UpdateTypedLinkFacetRequest;
2563
+ (function (UpdateTypedLinkFacetRequest) {
2564
+ /**
2565
+ * @internal
2566
+ */
2567
+ UpdateTypedLinkFacetRequest.filterSensitiveLog = (obj) => ({
2568
+ ...obj,
2569
+ ...(obj.AttributeUpdates && {
2570
+ AttributeUpdates: obj.AttributeUpdates.map((item) => TypedLinkFacetAttributeUpdate.filterSensitiveLog(item)),
2571
+ }),
2572
+ });
2573
+ })(UpdateTypedLinkFacetRequest = exports.UpdateTypedLinkFacetRequest || (exports.UpdateTypedLinkFacetRequest = {}));
2574
+ var UpdateTypedLinkFacetResponse;
2575
+ (function (UpdateTypedLinkFacetResponse) {
2576
+ /**
2577
+ * @internal
2578
+ */
2579
+ UpdateTypedLinkFacetResponse.filterSensitiveLog = (obj) => ({
2580
+ ...obj,
2581
+ });
2582
+ })(UpdateTypedLinkFacetResponse = exports.UpdateTypedLinkFacetResponse || (exports.UpdateTypedLinkFacetResponse = {}));
2583
+ var IncompatibleSchemaException;
2584
+ (function (IncompatibleSchemaException) {
2585
+ /**
2586
+ * @internal
2587
+ */
2588
+ IncompatibleSchemaException.filterSensitiveLog = (obj) => ({
2589
+ ...obj,
2590
+ });
2591
+ })(IncompatibleSchemaException = exports.IncompatibleSchemaException || (exports.IncompatibleSchemaException = {}));
2592
+ var UpgradeAppliedSchemaRequest;
2593
+ (function (UpgradeAppliedSchemaRequest) {
2594
+ /**
2595
+ * @internal
2596
+ */
2597
+ UpgradeAppliedSchemaRequest.filterSensitiveLog = (obj) => ({
2598
+ ...obj,
2599
+ });
2600
+ })(UpgradeAppliedSchemaRequest = exports.UpgradeAppliedSchemaRequest || (exports.UpgradeAppliedSchemaRequest = {}));
2601
+ var UpgradeAppliedSchemaResponse;
2602
+ (function (UpgradeAppliedSchemaResponse) {
2603
+ /**
2604
+ * @internal
2605
+ */
2606
+ UpgradeAppliedSchemaResponse.filterSensitiveLog = (obj) => ({
2607
+ ...obj,
2608
+ });
2609
+ })(UpgradeAppliedSchemaResponse = exports.UpgradeAppliedSchemaResponse || (exports.UpgradeAppliedSchemaResponse = {}));
2610
+ var UpgradePublishedSchemaRequest;
2611
+ (function (UpgradePublishedSchemaRequest) {
2612
+ /**
2613
+ * @internal
2614
+ */
2615
+ UpgradePublishedSchemaRequest.filterSensitiveLog = (obj) => ({
2616
+ ...obj,
2617
+ });
2618
+ })(UpgradePublishedSchemaRequest = exports.UpgradePublishedSchemaRequest || (exports.UpgradePublishedSchemaRequest = {}));
2619
+ var UpgradePublishedSchemaResponse;
2620
+ (function (UpgradePublishedSchemaResponse) {
2621
+ /**
2622
+ * @internal
2623
+ */
2624
+ UpgradePublishedSchemaResponse.filterSensitiveLog = (obj) => ({
2625
+ ...obj,
2626
+ });
2627
+ })(UpgradePublishedSchemaResponse = exports.UpgradePublishedSchemaResponse || (exports.UpgradePublishedSchemaResponse = {}));