clouddirectory.d.ts
132 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class CloudDirectory extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: CloudDirectory.Types.ClientConfiguration)
config: Config & CloudDirectory.Types.ClientConfiguration;
/**
* Adds a new Facet to an object. An object can have more than one facet applied on it.
*/
addFacetToObject(params: CloudDirectory.Types.AddFacetToObjectRequest, callback?: (err: AWSError, data: CloudDirectory.Types.AddFacetToObjectResponse) => void): Request<CloudDirectory.Types.AddFacetToObjectResponse, AWSError>;
/**
* Adds a new Facet to an object. An object can have more than one facet applied on it.
*/
addFacetToObject(callback?: (err: AWSError, data: CloudDirectory.Types.AddFacetToObjectResponse) => void): Request<CloudDirectory.Types.AddFacetToObjectResponse, AWSError>;
/**
* Copies the input published schema, at the specified version, into the Directory with the same name and version as that of the published schema.
*/
applySchema(params: CloudDirectory.Types.ApplySchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ApplySchemaResponse) => void): Request<CloudDirectory.Types.ApplySchemaResponse, AWSError>;
/**
* Copies the input published schema, at the specified version, into the Directory with the same name and version as that of the published schema.
*/
applySchema(callback?: (err: AWSError, data: CloudDirectory.Types.ApplySchemaResponse) => void): Request<CloudDirectory.Types.ApplySchemaResponse, AWSError>;
/**
* Attaches an existing object to another object. An object can be accessed in two ways: Using the path Using ObjectIdentifier
*/
attachObject(params: CloudDirectory.Types.AttachObjectRequest, callback?: (err: AWSError, data: CloudDirectory.Types.AttachObjectResponse) => void): Request<CloudDirectory.Types.AttachObjectResponse, AWSError>;
/**
* Attaches an existing object to another object. An object can be accessed in two ways: Using the path Using ObjectIdentifier
*/
attachObject(callback?: (err: AWSError, data: CloudDirectory.Types.AttachObjectResponse) => void): Request<CloudDirectory.Types.AttachObjectResponse, AWSError>;
/**
* Attaches a policy object to a regular object. An object can have a limited number of attached policies.
*/
attachPolicy(params: CloudDirectory.Types.AttachPolicyRequest, callback?: (err: AWSError, data: CloudDirectory.Types.AttachPolicyResponse) => void): Request<CloudDirectory.Types.AttachPolicyResponse, AWSError>;
/**
* Attaches a policy object to a regular object. An object can have a limited number of attached policies.
*/
attachPolicy(callback?: (err: AWSError, data: CloudDirectory.Types.AttachPolicyResponse) => void): Request<CloudDirectory.Types.AttachPolicyResponse, AWSError>;
/**
* Attaches the specified object to the specified index.
*/
attachToIndex(params: CloudDirectory.Types.AttachToIndexRequest, callback?: (err: AWSError, data: CloudDirectory.Types.AttachToIndexResponse) => void): Request<CloudDirectory.Types.AttachToIndexResponse, AWSError>;
/**
* Attaches the specified object to the specified index.
*/
attachToIndex(callback?: (err: AWSError, data: CloudDirectory.Types.AttachToIndexResponse) => void): Request<CloudDirectory.Types.AttachToIndexResponse, AWSError>;
/**
* Attaches a typed link to a specified source and target object. For more information, see Typed Links.
*/
attachTypedLink(params: CloudDirectory.Types.AttachTypedLinkRequest, callback?: (err: AWSError, data: CloudDirectory.Types.AttachTypedLinkResponse) => void): Request<CloudDirectory.Types.AttachTypedLinkResponse, AWSError>;
/**
* Attaches a typed link to a specified source and target object. For more information, see Typed Links.
*/
attachTypedLink(callback?: (err: AWSError, data: CloudDirectory.Types.AttachTypedLinkResponse) => void): Request<CloudDirectory.Types.AttachTypedLinkResponse, AWSError>;
/**
* Performs all the read operations in a batch.
*/
batchRead(params: CloudDirectory.Types.BatchReadRequest, callback?: (err: AWSError, data: CloudDirectory.Types.BatchReadResponse) => void): Request<CloudDirectory.Types.BatchReadResponse, AWSError>;
/**
* Performs all the read operations in a batch.
*/
batchRead(callback?: (err: AWSError, data: CloudDirectory.Types.BatchReadResponse) => void): Request<CloudDirectory.Types.BatchReadResponse, AWSError>;
/**
* Performs all the write operations in a batch. Either all the operations succeed or none.
*/
batchWrite(params: CloudDirectory.Types.BatchWriteRequest, callback?: (err: AWSError, data: CloudDirectory.Types.BatchWriteResponse) => void): Request<CloudDirectory.Types.BatchWriteResponse, AWSError>;
/**
* Performs all the write operations in a batch. Either all the operations succeed or none.
*/
batchWrite(callback?: (err: AWSError, data: CloudDirectory.Types.BatchWriteResponse) => void): Request<CloudDirectory.Types.BatchWriteResponse, AWSError>;
/**
* Creates a Directory by copying the published schema into the directory. A directory cannot be created without a schema. You can also quickly create a directory using a managed schema, called the QuickStartSchema. For more information, see Managed Schema in the Amazon Cloud Directory Developer Guide.
*/
createDirectory(params: CloudDirectory.Types.CreateDirectoryRequest, callback?: (err: AWSError, data: CloudDirectory.Types.CreateDirectoryResponse) => void): Request<CloudDirectory.Types.CreateDirectoryResponse, AWSError>;
/**
* Creates a Directory by copying the published schema into the directory. A directory cannot be created without a schema. You can also quickly create a directory using a managed schema, called the QuickStartSchema. For more information, see Managed Schema in the Amazon Cloud Directory Developer Guide.
*/
createDirectory(callback?: (err: AWSError, data: CloudDirectory.Types.CreateDirectoryResponse) => void): Request<CloudDirectory.Types.CreateDirectoryResponse, AWSError>;
/**
* Creates a new Facet in a schema. Facet creation is allowed only in development or applied schemas.
*/
createFacet(params: CloudDirectory.Types.CreateFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.CreateFacetResponse) => void): Request<CloudDirectory.Types.CreateFacetResponse, AWSError>;
/**
* Creates a new Facet in a schema. Facet creation is allowed only in development or applied schemas.
*/
createFacet(callback?: (err: AWSError, data: CloudDirectory.Types.CreateFacetResponse) => void): Request<CloudDirectory.Types.CreateFacetResponse, AWSError>;
/**
* Creates an index object. See Indexing and search for more information.
*/
createIndex(params: CloudDirectory.Types.CreateIndexRequest, callback?: (err: AWSError, data: CloudDirectory.Types.CreateIndexResponse) => void): Request<CloudDirectory.Types.CreateIndexResponse, AWSError>;
/**
* Creates an index object. See Indexing and search for more information.
*/
createIndex(callback?: (err: AWSError, data: CloudDirectory.Types.CreateIndexResponse) => void): Request<CloudDirectory.Types.CreateIndexResponse, AWSError>;
/**
* Creates an object in a Directory. Additionally attaches the object to a parent, if a parent reference and LinkName is specified. An object is simply a collection of Facet attributes. You can also use this API call to create a policy object, if the facet from which you create the object is a policy facet.
*/
createObject(params: CloudDirectory.Types.CreateObjectRequest, callback?: (err: AWSError, data: CloudDirectory.Types.CreateObjectResponse) => void): Request<CloudDirectory.Types.CreateObjectResponse, AWSError>;
/**
* Creates an object in a Directory. Additionally attaches the object to a parent, if a parent reference and LinkName is specified. An object is simply a collection of Facet attributes. You can also use this API call to create a policy object, if the facet from which you create the object is a policy facet.
*/
createObject(callback?: (err: AWSError, data: CloudDirectory.Types.CreateObjectResponse) => void): Request<CloudDirectory.Types.CreateObjectResponse, AWSError>;
/**
* Creates a new schema in a development state. A schema can exist in three phases: Development: This is a mutable phase of the schema. All new schemas are in the development phase. Once the schema is finalized, it can be published. Published: Published schemas are immutable and have a version associated with them. Applied: Applied schemas are mutable in a way that allows you to add new schema facets. You can also add new, nonrequired attributes to existing schema facets. You can apply only published schemas to directories.
*/
createSchema(params: CloudDirectory.Types.CreateSchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.CreateSchemaResponse) => void): Request<CloudDirectory.Types.CreateSchemaResponse, AWSError>;
/**
* Creates a new schema in a development state. A schema can exist in three phases: Development: This is a mutable phase of the schema. All new schemas are in the development phase. Once the schema is finalized, it can be published. Published: Published schemas are immutable and have a version associated with them. Applied: Applied schemas are mutable in a way that allows you to add new schema facets. You can also add new, nonrequired attributes to existing schema facets. You can apply only published schemas to directories.
*/
createSchema(callback?: (err: AWSError, data: CloudDirectory.Types.CreateSchemaResponse) => void): Request<CloudDirectory.Types.CreateSchemaResponse, AWSError>;
/**
* Creates a TypedLinkFacet. For more information, see Typed Links.
*/
createTypedLinkFacet(params: CloudDirectory.Types.CreateTypedLinkFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.CreateTypedLinkFacetResponse) => void): Request<CloudDirectory.Types.CreateTypedLinkFacetResponse, AWSError>;
/**
* Creates a TypedLinkFacet. For more information, see Typed Links.
*/
createTypedLinkFacet(callback?: (err: AWSError, data: CloudDirectory.Types.CreateTypedLinkFacetResponse) => void): Request<CloudDirectory.Types.CreateTypedLinkFacetResponse, AWSError>;
/**
* Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme caution when deleting directories.
*/
deleteDirectory(params: CloudDirectory.Types.DeleteDirectoryRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DeleteDirectoryResponse) => void): Request<CloudDirectory.Types.DeleteDirectoryResponse, AWSError>;
/**
* Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme caution when deleting directories.
*/
deleteDirectory(callback?: (err: AWSError, data: CloudDirectory.Types.DeleteDirectoryResponse) => void): Request<CloudDirectory.Types.DeleteDirectoryResponse, AWSError>;
/**
* Deletes a given Facet. All attributes and Rules that are associated with the facet will be deleted. Only development schema facets are allowed deletion.
*/
deleteFacet(params: CloudDirectory.Types.DeleteFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DeleteFacetResponse) => void): Request<CloudDirectory.Types.DeleteFacetResponse, AWSError>;
/**
* Deletes a given Facet. All attributes and Rules that are associated with the facet will be deleted. Only development schema facets are allowed deletion.
*/
deleteFacet(callback?: (err: AWSError, data: CloudDirectory.Types.DeleteFacetResponse) => void): Request<CloudDirectory.Types.DeleteFacetResponse, AWSError>;
/**
* Deletes an object and its associated attributes. Only objects with no children and no parents can be deleted. The maximum number of attributes that can be deleted during an object deletion is 30. For more information, see Amazon Cloud Directory Limits.
*/
deleteObject(params: CloudDirectory.Types.DeleteObjectRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DeleteObjectResponse) => void): Request<CloudDirectory.Types.DeleteObjectResponse, AWSError>;
/**
* Deletes an object and its associated attributes. Only objects with no children and no parents can be deleted. The maximum number of attributes that can be deleted during an object deletion is 30. For more information, see Amazon Cloud Directory Limits.
*/
deleteObject(callback?: (err: AWSError, data: CloudDirectory.Types.DeleteObjectResponse) => void): Request<CloudDirectory.Types.DeleteObjectResponse, AWSError>;
/**
* Deletes a given schema. Schemas in a development and published state can only be deleted.
*/
deleteSchema(params: CloudDirectory.Types.DeleteSchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DeleteSchemaResponse) => void): Request<CloudDirectory.Types.DeleteSchemaResponse, AWSError>;
/**
* Deletes a given schema. Schemas in a development and published state can only be deleted.
*/
deleteSchema(callback?: (err: AWSError, data: CloudDirectory.Types.DeleteSchemaResponse) => void): Request<CloudDirectory.Types.DeleteSchemaResponse, AWSError>;
/**
* Deletes a TypedLinkFacet. For more information, see Typed Links.
*/
deleteTypedLinkFacet(params: CloudDirectory.Types.DeleteTypedLinkFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DeleteTypedLinkFacetResponse) => void): Request<CloudDirectory.Types.DeleteTypedLinkFacetResponse, AWSError>;
/**
* Deletes a TypedLinkFacet. For more information, see Typed Links.
*/
deleteTypedLinkFacet(callback?: (err: AWSError, data: CloudDirectory.Types.DeleteTypedLinkFacetResponse) => void): Request<CloudDirectory.Types.DeleteTypedLinkFacetResponse, AWSError>;
/**
* Detaches the specified object from the specified index.
*/
detachFromIndex(params: CloudDirectory.Types.DetachFromIndexRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DetachFromIndexResponse) => void): Request<CloudDirectory.Types.DetachFromIndexResponse, AWSError>;
/**
* Detaches the specified object from the specified index.
*/
detachFromIndex(callback?: (err: AWSError, data: CloudDirectory.Types.DetachFromIndexResponse) => void): Request<CloudDirectory.Types.DetachFromIndexResponse, AWSError>;
/**
* Detaches a given object from the parent object. The object that is to be detached from the parent is specified by the link name.
*/
detachObject(params: CloudDirectory.Types.DetachObjectRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DetachObjectResponse) => void): Request<CloudDirectory.Types.DetachObjectResponse, AWSError>;
/**
* Detaches a given object from the parent object. The object that is to be detached from the parent is specified by the link name.
*/
detachObject(callback?: (err: AWSError, data: CloudDirectory.Types.DetachObjectResponse) => void): Request<CloudDirectory.Types.DetachObjectResponse, AWSError>;
/**
* Detaches a policy from an object.
*/
detachPolicy(params: CloudDirectory.Types.DetachPolicyRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DetachPolicyResponse) => void): Request<CloudDirectory.Types.DetachPolicyResponse, AWSError>;
/**
* Detaches a policy from an object.
*/
detachPolicy(callback?: (err: AWSError, data: CloudDirectory.Types.DetachPolicyResponse) => void): Request<CloudDirectory.Types.DetachPolicyResponse, AWSError>;
/**
* Detaches a typed link from a specified source and target object. For more information, see Typed Links.
*/
detachTypedLink(params: CloudDirectory.Types.DetachTypedLinkRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Detaches a typed link from a specified source and target object. For more information, see Typed Links.
*/
detachTypedLink(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Disables the specified directory. Disabled directories cannot be read or written to. Only enabled directories can be disabled. Disabled directories may be reenabled.
*/
disableDirectory(params: CloudDirectory.Types.DisableDirectoryRequest, callback?: (err: AWSError, data: CloudDirectory.Types.DisableDirectoryResponse) => void): Request<CloudDirectory.Types.DisableDirectoryResponse, AWSError>;
/**
* Disables the specified directory. Disabled directories cannot be read or written to. Only enabled directories can be disabled. Disabled directories may be reenabled.
*/
disableDirectory(callback?: (err: AWSError, data: CloudDirectory.Types.DisableDirectoryResponse) => void): Request<CloudDirectory.Types.DisableDirectoryResponse, AWSError>;
/**
* Enables the specified directory. Only disabled directories can be enabled. Once enabled, the directory can then be read and written to.
*/
enableDirectory(params: CloudDirectory.Types.EnableDirectoryRequest, callback?: (err: AWSError, data: CloudDirectory.Types.EnableDirectoryResponse) => void): Request<CloudDirectory.Types.EnableDirectoryResponse, AWSError>;
/**
* Enables the specified directory. Only disabled directories can be enabled. Once enabled, the directory can then be read and written to.
*/
enableDirectory(callback?: (err: AWSError, data: CloudDirectory.Types.EnableDirectoryResponse) => void): Request<CloudDirectory.Types.EnableDirectoryResponse, AWSError>;
/**
* Returns current applied schema version ARN, including the minor version in use.
*/
getAppliedSchemaVersion(params: CloudDirectory.Types.GetAppliedSchemaVersionRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetAppliedSchemaVersionResponse) => void): Request<CloudDirectory.Types.GetAppliedSchemaVersionResponse, AWSError>;
/**
* Returns current applied schema version ARN, including the minor version in use.
*/
getAppliedSchemaVersion(callback?: (err: AWSError, data: CloudDirectory.Types.GetAppliedSchemaVersionResponse) => void): Request<CloudDirectory.Types.GetAppliedSchemaVersionResponse, AWSError>;
/**
* Retrieves metadata about a directory.
*/
getDirectory(params: CloudDirectory.Types.GetDirectoryRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetDirectoryResponse) => void): Request<CloudDirectory.Types.GetDirectoryResponse, AWSError>;
/**
* Retrieves metadata about a directory.
*/
getDirectory(callback?: (err: AWSError, data: CloudDirectory.Types.GetDirectoryResponse) => void): Request<CloudDirectory.Types.GetDirectoryResponse, AWSError>;
/**
* Gets details of the Facet, such as facet name, attributes, Rules, or ObjectType. You can call this on all kinds of schema facets -- published, development, or applied.
*/
getFacet(params: CloudDirectory.Types.GetFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetFacetResponse) => void): Request<CloudDirectory.Types.GetFacetResponse, AWSError>;
/**
* Gets details of the Facet, such as facet name, attributes, Rules, or ObjectType. You can call this on all kinds of schema facets -- published, development, or applied.
*/
getFacet(callback?: (err: AWSError, data: CloudDirectory.Types.GetFacetResponse) => void): Request<CloudDirectory.Types.GetFacetResponse, AWSError>;
/**
* Retrieves attributes that are associated with a typed link.
*/
getLinkAttributes(params: CloudDirectory.Types.GetLinkAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetLinkAttributesResponse) => void): Request<CloudDirectory.Types.GetLinkAttributesResponse, AWSError>;
/**
* Retrieves attributes that are associated with a typed link.
*/
getLinkAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.GetLinkAttributesResponse) => void): Request<CloudDirectory.Types.GetLinkAttributesResponse, AWSError>;
/**
* Retrieves attributes within a facet that are associated with an object.
*/
getObjectAttributes(params: CloudDirectory.Types.GetObjectAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetObjectAttributesResponse) => void): Request<CloudDirectory.Types.GetObjectAttributesResponse, AWSError>;
/**
* Retrieves attributes within a facet that are associated with an object.
*/
getObjectAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.GetObjectAttributesResponse) => void): Request<CloudDirectory.Types.GetObjectAttributesResponse, AWSError>;
/**
* Retrieves metadata about an object.
*/
getObjectInformation(params: CloudDirectory.Types.GetObjectInformationRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetObjectInformationResponse) => void): Request<CloudDirectory.Types.GetObjectInformationResponse, AWSError>;
/**
* Retrieves metadata about an object.
*/
getObjectInformation(callback?: (err: AWSError, data: CloudDirectory.Types.GetObjectInformationResponse) => void): Request<CloudDirectory.Types.GetObjectInformationResponse, AWSError>;
/**
* Retrieves a JSON representation of the schema. See JSON Schema Format for more information.
*/
getSchemaAsJson(params: CloudDirectory.Types.GetSchemaAsJsonRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetSchemaAsJsonResponse) => void): Request<CloudDirectory.Types.GetSchemaAsJsonResponse, AWSError>;
/**
* Retrieves a JSON representation of the schema. See JSON Schema Format for more information.
*/
getSchemaAsJson(callback?: (err: AWSError, data: CloudDirectory.Types.GetSchemaAsJsonResponse) => void): Request<CloudDirectory.Types.GetSchemaAsJsonResponse, AWSError>;
/**
* Returns the identity attribute order for a specific TypedLinkFacet. For more information, see Typed Links.
*/
getTypedLinkFacetInformation(params: CloudDirectory.Types.GetTypedLinkFacetInformationRequest, callback?: (err: AWSError, data: CloudDirectory.Types.GetTypedLinkFacetInformationResponse) => void): Request<CloudDirectory.Types.GetTypedLinkFacetInformationResponse, AWSError>;
/**
* Returns the identity attribute order for a specific TypedLinkFacet. For more information, see Typed Links.
*/
getTypedLinkFacetInformation(callback?: (err: AWSError, data: CloudDirectory.Types.GetTypedLinkFacetInformationResponse) => void): Request<CloudDirectory.Types.GetTypedLinkFacetInformationResponse, AWSError>;
/**
* Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version.
*/
listAppliedSchemaArns(params: CloudDirectory.Types.ListAppliedSchemaArnsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListAppliedSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListAppliedSchemaArnsResponse, AWSError>;
/**
* Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version.
*/
listAppliedSchemaArns(callback?: (err: AWSError, data: CloudDirectory.Types.ListAppliedSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListAppliedSchemaArnsResponse, AWSError>;
/**
* Lists indices attached to the specified object.
*/
listAttachedIndices(params: CloudDirectory.Types.ListAttachedIndicesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListAttachedIndicesResponse) => void): Request<CloudDirectory.Types.ListAttachedIndicesResponse, AWSError>;
/**
* Lists indices attached to the specified object.
*/
listAttachedIndices(callback?: (err: AWSError, data: CloudDirectory.Types.ListAttachedIndicesResponse) => void): Request<CloudDirectory.Types.ListAttachedIndicesResponse, AWSError>;
/**
* Retrieves each Amazon Resource Name (ARN) of schemas in the development state.
*/
listDevelopmentSchemaArns(params: CloudDirectory.Types.ListDevelopmentSchemaArnsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListDevelopmentSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListDevelopmentSchemaArnsResponse, AWSError>;
/**
* Retrieves each Amazon Resource Name (ARN) of schemas in the development state.
*/
listDevelopmentSchemaArns(callback?: (err: AWSError, data: CloudDirectory.Types.ListDevelopmentSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListDevelopmentSchemaArnsResponse, AWSError>;
/**
* Lists directories created within an account.
*/
listDirectories(params: CloudDirectory.Types.ListDirectoriesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListDirectoriesResponse) => void): Request<CloudDirectory.Types.ListDirectoriesResponse, AWSError>;
/**
* Lists directories created within an account.
*/
listDirectories(callback?: (err: AWSError, data: CloudDirectory.Types.ListDirectoriesResponse) => void): Request<CloudDirectory.Types.ListDirectoriesResponse, AWSError>;
/**
* Retrieves attributes attached to the facet.
*/
listFacetAttributes(params: CloudDirectory.Types.ListFacetAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListFacetAttributesResponse) => void): Request<CloudDirectory.Types.ListFacetAttributesResponse, AWSError>;
/**
* Retrieves attributes attached to the facet.
*/
listFacetAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.ListFacetAttributesResponse) => void): Request<CloudDirectory.Types.ListFacetAttributesResponse, AWSError>;
/**
* Retrieves the names of facets that exist in a schema.
*/
listFacetNames(params: CloudDirectory.Types.ListFacetNamesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListFacetNamesResponse) => void): Request<CloudDirectory.Types.ListFacetNamesResponse, AWSError>;
/**
* Retrieves the names of facets that exist in a schema.
*/
listFacetNames(callback?: (err: AWSError, data: CloudDirectory.Types.ListFacetNamesResponse) => void): Request<CloudDirectory.Types.ListFacetNamesResponse, AWSError>;
/**
* Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
listIncomingTypedLinks(params: CloudDirectory.Types.ListIncomingTypedLinksRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListIncomingTypedLinksResponse) => void): Request<CloudDirectory.Types.ListIncomingTypedLinksResponse, AWSError>;
/**
* Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
listIncomingTypedLinks(callback?: (err: AWSError, data: CloudDirectory.Types.ListIncomingTypedLinksResponse) => void): Request<CloudDirectory.Types.ListIncomingTypedLinksResponse, AWSError>;
/**
* Lists objects attached to the specified index.
*/
listIndex(params: CloudDirectory.Types.ListIndexRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListIndexResponse) => void): Request<CloudDirectory.Types.ListIndexResponse, AWSError>;
/**
* Lists objects attached to the specified index.
*/
listIndex(callback?: (err: AWSError, data: CloudDirectory.Types.ListIndexResponse) => void): Request<CloudDirectory.Types.ListIndexResponse, AWSError>;
/**
* Lists the major version families of each managed schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
*/
listManagedSchemaArns(params: CloudDirectory.Types.ListManagedSchemaArnsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListManagedSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListManagedSchemaArnsResponse, AWSError>;
/**
* Lists the major version families of each managed schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
*/
listManagedSchemaArns(callback?: (err: AWSError, data: CloudDirectory.Types.ListManagedSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListManagedSchemaArnsResponse, AWSError>;
/**
* Lists all attributes that are associated with an object.
*/
listObjectAttributes(params: CloudDirectory.Types.ListObjectAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectAttributesResponse) => void): Request<CloudDirectory.Types.ListObjectAttributesResponse, AWSError>;
/**
* Lists all attributes that are associated with an object.
*/
listObjectAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectAttributesResponse) => void): Request<CloudDirectory.Types.ListObjectAttributesResponse, AWSError>;
/**
* Returns a paginated list of child objects that are associated with a given object.
*/
listObjectChildren(params: CloudDirectory.Types.ListObjectChildrenRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectChildrenResponse) => void): Request<CloudDirectory.Types.ListObjectChildrenResponse, AWSError>;
/**
* Returns a paginated list of child objects that are associated with a given object.
*/
listObjectChildren(callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectChildrenResponse) => void): Request<CloudDirectory.Types.ListObjectChildrenResponse, AWSError>;
/**
* Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure. Use this API to evaluate all parents for an object. The call returns all objects from the root of the directory up to the requested object. The API returns the number of paths based on user-defined MaxResults, in case there are multiple paths to the parent. The order of the paths and nodes returned is consistent among multiple API calls unless the objects are deleted or moved. Paths not leading to the directory root are ignored from the target object.
*/
listObjectParentPaths(params: CloudDirectory.Types.ListObjectParentPathsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectParentPathsResponse) => void): Request<CloudDirectory.Types.ListObjectParentPathsResponse, AWSError>;
/**
* Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure. Use this API to evaluate all parents for an object. The call returns all objects from the root of the directory up to the requested object. The API returns the number of paths based on user-defined MaxResults, in case there are multiple paths to the parent. The order of the paths and nodes returned is consistent among multiple API calls unless the objects are deleted or moved. Paths not leading to the directory root are ignored from the target object.
*/
listObjectParentPaths(callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectParentPathsResponse) => void): Request<CloudDirectory.Types.ListObjectParentPathsResponse, AWSError>;
/**
* Lists parent objects that are associated with a given object in pagination fashion.
*/
listObjectParents(params: CloudDirectory.Types.ListObjectParentsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectParentsResponse) => void): Request<CloudDirectory.Types.ListObjectParentsResponse, AWSError>;
/**
* Lists parent objects that are associated with a given object in pagination fashion.
*/
listObjectParents(callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectParentsResponse) => void): Request<CloudDirectory.Types.ListObjectParentsResponse, AWSError>;
/**
* Returns policies attached to an object in pagination fashion.
*/
listObjectPolicies(params: CloudDirectory.Types.ListObjectPoliciesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectPoliciesResponse) => void): Request<CloudDirectory.Types.ListObjectPoliciesResponse, AWSError>;
/**
* Returns policies attached to an object in pagination fashion.
*/
listObjectPolicies(callback?: (err: AWSError, data: CloudDirectory.Types.ListObjectPoliciesResponse) => void): Request<CloudDirectory.Types.ListObjectPoliciesResponse, AWSError>;
/**
* Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
listOutgoingTypedLinks(params: CloudDirectory.Types.ListOutgoingTypedLinksRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListOutgoingTypedLinksResponse) => void): Request<CloudDirectory.Types.ListOutgoingTypedLinksResponse, AWSError>;
/**
* Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
listOutgoingTypedLinks(callback?: (err: AWSError, data: CloudDirectory.Types.ListOutgoingTypedLinksResponse) => void): Request<CloudDirectory.Types.ListOutgoingTypedLinksResponse, AWSError>;
/**
* Returns all of the ObjectIdentifiers to which a given policy is attached.
*/
listPolicyAttachments(params: CloudDirectory.Types.ListPolicyAttachmentsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListPolicyAttachmentsResponse) => void): Request<CloudDirectory.Types.ListPolicyAttachmentsResponse, AWSError>;
/**
* Returns all of the ObjectIdentifiers to which a given policy is attached.
*/
listPolicyAttachments(callback?: (err: AWSError, data: CloudDirectory.Types.ListPolicyAttachmentsResponse) => void): Request<CloudDirectory.Types.ListPolicyAttachmentsResponse, AWSError>;
/**
* Lists the major version families of each published schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
*/
listPublishedSchemaArns(params: CloudDirectory.Types.ListPublishedSchemaArnsRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListPublishedSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListPublishedSchemaArnsResponse, AWSError>;
/**
* Lists the major version families of each published schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
*/
listPublishedSchemaArns(callback?: (err: AWSError, data: CloudDirectory.Types.ListPublishedSchemaArnsResponse) => void): Request<CloudDirectory.Types.ListPublishedSchemaArnsResponse, AWSError>;
/**
* Returns tags for a resource. Tagging is currently supported only for directories with a limit of 50 tags per directory. All 50 tags are returned for a given directory with this API call.
*/
listTagsForResource(params: CloudDirectory.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListTagsForResourceResponse) => void): Request<CloudDirectory.Types.ListTagsForResourceResponse, AWSError>;
/**
* Returns tags for a resource. Tagging is currently supported only for directories with a limit of 50 tags per directory. All 50 tags are returned for a given directory with this API call.
*/
listTagsForResource(callback?: (err: AWSError, data: CloudDirectory.Types.ListTagsForResourceResponse) => void): Request<CloudDirectory.Types.ListTagsForResourceResponse, AWSError>;
/**
* Returns a paginated list of all attribute definitions for a particular TypedLinkFacet. For more information, see Typed Links.
*/
listTypedLinkFacetAttributes(params: CloudDirectory.Types.ListTypedLinkFacetAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListTypedLinkFacetAttributesResponse) => void): Request<CloudDirectory.Types.ListTypedLinkFacetAttributesResponse, AWSError>;
/**
* Returns a paginated list of all attribute definitions for a particular TypedLinkFacet. For more information, see Typed Links.
*/
listTypedLinkFacetAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.ListTypedLinkFacetAttributesResponse) => void): Request<CloudDirectory.Types.ListTypedLinkFacetAttributesResponse, AWSError>;
/**
* Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed Links.
*/
listTypedLinkFacetNames(params: CloudDirectory.Types.ListTypedLinkFacetNamesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.ListTypedLinkFacetNamesResponse) => void): Request<CloudDirectory.Types.ListTypedLinkFacetNamesResponse, AWSError>;
/**
* Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed Links.
*/
listTypedLinkFacetNames(callback?: (err: AWSError, data: CloudDirectory.Types.ListTypedLinkFacetNamesResponse) => void): Request<CloudDirectory.Types.ListTypedLinkFacetNamesResponse, AWSError>;
/**
* Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.
*/
lookupPolicy(params: CloudDirectory.Types.LookupPolicyRequest, callback?: (err: AWSError, data: CloudDirectory.Types.LookupPolicyResponse) => void): Request<CloudDirectory.Types.LookupPolicyResponse, AWSError>;
/**
* Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.
*/
lookupPolicy(callback?: (err: AWSError, data: CloudDirectory.Types.LookupPolicyResponse) => void): Request<CloudDirectory.Types.LookupPolicyResponse, AWSError>;
/**
* Publishes a development schema with a major version and a recommended minor version.
*/
publishSchema(params: CloudDirectory.Types.PublishSchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.PublishSchemaResponse) => void): Request<CloudDirectory.Types.PublishSchemaResponse, AWSError>;
/**
* Publishes a development schema with a major version and a recommended minor version.
*/
publishSchema(callback?: (err: AWSError, data: CloudDirectory.Types.PublishSchemaResponse) => void): Request<CloudDirectory.Types.PublishSchemaResponse, AWSError>;
/**
* Allows a schema to be updated using JSON upload. Only available for development schemas. See JSON Schema Format for more information.
*/
putSchemaFromJson(params: CloudDirectory.Types.PutSchemaFromJsonRequest, callback?: (err: AWSError, data: CloudDirectory.Types.PutSchemaFromJsonResponse) => void): Request<CloudDirectory.Types.PutSchemaFromJsonResponse, AWSError>;
/**
* Allows a schema to be updated using JSON upload. Only available for development schemas. See JSON Schema Format for more information.
*/
putSchemaFromJson(callback?: (err: AWSError, data: CloudDirectory.Types.PutSchemaFromJsonResponse) => void): Request<CloudDirectory.Types.PutSchemaFromJsonResponse, AWSError>;
/**
* Removes the specified facet from the specified object.
*/
removeFacetFromObject(params: CloudDirectory.Types.RemoveFacetFromObjectRequest, callback?: (err: AWSError, data: CloudDirectory.Types.RemoveFacetFromObjectResponse) => void): Request<CloudDirectory.Types.RemoveFacetFromObjectResponse, AWSError>;
/**
* Removes the specified facet from the specified object.
*/
removeFacetFromObject(callback?: (err: AWSError, data: CloudDirectory.Types.RemoveFacetFromObjectResponse) => void): Request<CloudDirectory.Types.RemoveFacetFromObjectResponse, AWSError>;
/**
* An API operation for adding tags to a resource.
*/
tagResource(params: CloudDirectory.Types.TagResourceRequest, callback?: (err: AWSError, data: CloudDirectory.Types.TagResourceResponse) => void): Request<CloudDirectory.Types.TagResourceResponse, AWSError>;
/**
* An API operation for adding tags to a resource.
*/
tagResource(callback?: (err: AWSError, data: CloudDirectory.Types.TagResourceResponse) => void): Request<CloudDirectory.Types.TagResourceResponse, AWSError>;
/**
* An API operation for removing tags from a resource.
*/
untagResource(params: CloudDirectory.Types.UntagResourceRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UntagResourceResponse) => void): Request<CloudDirectory.Types.UntagResourceResponse, AWSError>;
/**
* An API operation for removing tags from a resource.
*/
untagResource(callback?: (err: AWSError, data: CloudDirectory.Types.UntagResourceResponse) => void): Request<CloudDirectory.Types.UntagResourceResponse, AWSError>;
/**
* Does the following: Adds new Attributes, Rules, or ObjectTypes. Updates existing Attributes, Rules, or ObjectTypes. Deletes existing Attributes, Rules, or ObjectTypes.
*/
updateFacet(params: CloudDirectory.Types.UpdateFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpdateFacetResponse) => void): Request<CloudDirectory.Types.UpdateFacetResponse, AWSError>;
/**
* Does the following: Adds new Attributes, Rules, or ObjectTypes. Updates existing Attributes, Rules, or ObjectTypes. Deletes existing Attributes, Rules, or ObjectTypes.
*/
updateFacet(callback?: (err: AWSError, data: CloudDirectory.Types.UpdateFacetResponse) => void): Request<CloudDirectory.Types.UpdateFacetResponse, AWSError>;
/**
* Updates a given typed link’s attributes. Attributes to be updated must not contribute to the typed link’s identity, as defined by its IdentityAttributeOrder.
*/
updateLinkAttributes(params: CloudDirectory.Types.UpdateLinkAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpdateLinkAttributesResponse) => void): Request<CloudDirectory.Types.UpdateLinkAttributesResponse, AWSError>;
/**
* Updates a given typed link’s attributes. Attributes to be updated must not contribute to the typed link’s identity, as defined by its IdentityAttributeOrder.
*/
updateLinkAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.UpdateLinkAttributesResponse) => void): Request<CloudDirectory.Types.UpdateLinkAttributesResponse, AWSError>;
/**
* Updates a given object's attributes.
*/
updateObjectAttributes(params: CloudDirectory.Types.UpdateObjectAttributesRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpdateObjectAttributesResponse) => void): Request<CloudDirectory.Types.UpdateObjectAttributesResponse, AWSError>;
/**
* Updates a given object's attributes.
*/
updateObjectAttributes(callback?: (err: AWSError, data: CloudDirectory.Types.UpdateObjectAttributesResponse) => void): Request<CloudDirectory.Types.UpdateObjectAttributesResponse, AWSError>;
/**
* Updates the schema name with a new name. Only development schema names can be updated.
*/
updateSchema(params: CloudDirectory.Types.UpdateSchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpdateSchemaResponse) => void): Request<CloudDirectory.Types.UpdateSchemaResponse, AWSError>;
/**
* Updates the schema name with a new name. Only development schema names can be updated.
*/
updateSchema(callback?: (err: AWSError, data: CloudDirectory.Types.UpdateSchemaResponse) => void): Request<CloudDirectory.Types.UpdateSchemaResponse, AWSError>;
/**
* Updates a TypedLinkFacet. For more information, see Typed Links.
*/
updateTypedLinkFacet(params: CloudDirectory.Types.UpdateTypedLinkFacetRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpdateTypedLinkFacetResponse) => void): Request<CloudDirectory.Types.UpdateTypedLinkFacetResponse, AWSError>;
/**
* Updates a TypedLinkFacet. For more information, see Typed Links.
*/
updateTypedLinkFacet(callback?: (err: AWSError, data: CloudDirectory.Types.UpdateTypedLinkFacetResponse) => void): Request<CloudDirectory.Types.UpdateTypedLinkFacetResponse, AWSError>;
/**
* Upgrades a single directory in-place using the PublishedSchemaArn with schema updates found in MinorVersion. Backwards-compatible minor version upgrades are instantaneously available for readers on all objects in the directory. Note: This is a synchronous API call and upgrades only one schema on a given directory per call. To upgrade multiple directories from one schema, you would need to call this API on each directory.
*/
upgradeAppliedSchema(params: CloudDirectory.Types.UpgradeAppliedSchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpgradeAppliedSchemaResponse) => void): Request<CloudDirectory.Types.UpgradeAppliedSchemaResponse, AWSError>;
/**
* Upgrades a single directory in-place using the PublishedSchemaArn with schema updates found in MinorVersion. Backwards-compatible minor version upgrades are instantaneously available for readers on all objects in the directory. Note: This is a synchronous API call and upgrades only one schema on a given directory per call. To upgrade multiple directories from one schema, you would need to call this API on each directory.
*/
upgradeAppliedSchema(callback?: (err: AWSError, data: CloudDirectory.Types.UpgradeAppliedSchemaResponse) => void): Request<CloudDirectory.Types.UpgradeAppliedSchemaResponse, AWSError>;
/**
* Upgrades a published schema under a new minor version revision using the current contents of DevelopmentSchemaArn.
*/
upgradePublishedSchema(params: CloudDirectory.Types.UpgradePublishedSchemaRequest, callback?: (err: AWSError, data: CloudDirectory.Types.UpgradePublishedSchemaResponse) => void): Request<CloudDirectory.Types.UpgradePublishedSchemaResponse, AWSError>;
/**
* Upgrades a published schema under a new minor version revision using the current contents of DevelopmentSchemaArn.
*/
upgradePublishedSchema(callback?: (err: AWSError, data: CloudDirectory.Types.UpgradePublishedSchemaResponse) => void): Request<CloudDirectory.Types.UpgradePublishedSchemaResponse, AWSError>;
}
declare namespace CloudDirectory {
export interface AddFacetToObjectRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* Identifiers for the facet that you are adding to the object. See SchemaFacet for details.
*/
SchemaFacet: SchemaFacet;
/**
* Attributes on the facet that you are adding to the object.
*/
ObjectAttributeList?: AttributeKeyAndValueList;
/**
* A reference to the object you are adding the specified facet to.
*/
ObjectReference: ObjectReference;
}
export interface AddFacetToObjectResponse {
}
export interface ApplySchemaRequest {
/**
* Published schema Amazon Resource Name (ARN) that needs to be copied. For more information, see arns.
*/
PublishedSchemaArn: Arn;
/**
* The Amazon Resource Name (ARN) that is associated with the Directory into which the schema is copied. For more information, see arns.
*/
DirectoryArn: Arn;
}
export interface ApplySchemaResponse {
/**
* The applied schema ARN that is associated with the copied schema in the Directory. You can use this ARN to describe the schema information applied on this directory. For more information, see arns.
*/
AppliedSchemaArn?: Arn;
/**
* The ARN that is associated with the Directory. For more information, see arns.
*/
DirectoryArn?: Arn;
}
export type Arn = string;
export type Arns = Arn[];
export interface AttachObjectRequest {
/**
* Amazon Resource Name (ARN) that is associated with the Directory where both objects reside. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The parent object reference.
*/
ParentReference: ObjectReference;
/**
* The child object reference to be attached to the object.
*/
ChildReference: ObjectReference;
/**
* The link name with which the child object is attached to the parent.
*/
LinkName: LinkName;
}
export interface AttachObjectResponse {
/**
* The attached ObjectIdentifier, which is the child ObjectIdentifier.
*/
AttachedObjectIdentifier?: ObjectIdentifier;
}
export interface AttachPolicyRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where both objects reside. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The reference that is associated with the policy object.
*/
PolicyReference: ObjectReference;
/**
* The reference that identifies the object to which the policy will be attached.
*/
ObjectReference: ObjectReference;
}
export interface AttachPolicyResponse {
}
export interface AttachToIndexRequest {
/**
* The Amazon Resource Name (ARN) of the directory where the object and index exist.
*/
DirectoryArn: Arn;
/**
* A reference to the index that you are attaching the object to.
*/
IndexReference: ObjectReference;
/**
* A reference to the object that you are attaching to the index.
*/
TargetReference: ObjectReference;
}
export interface AttachToIndexResponse {
/**
* The ObjectIdentifier of the object that was attached to the index.
*/
AttachedObjectIdentifier?: ObjectIdentifier;
}
export interface AttachTypedLinkRequest {
/**
* The Amazon Resource Name (ARN) of the directory where you want to attach the typed link.
*/
DirectoryArn: Arn;
/**
* Identifies the source object that the typed link will attach to.
*/
SourceObjectReference: ObjectReference;
/**
* Identifies the target object that the typed link will attach to.
*/
TargetObjectReference: ObjectReference;
/**
* Identifies the typed link facet that is associated with the typed link.
*/
TypedLinkFacet: TypedLinkSchemaAndFacetName;
/**
* A set of attributes that are associated with the typed link.
*/
Attributes: AttributeNameAndValueList;
}
export interface AttachTypedLinkResponse {
/**
* Returns a typed link specifier as output.
*/
TypedLinkSpecifier?: TypedLinkSpecifier;
}
export interface AttributeKey {
/**
* The Amazon Resource Name (ARN) of the schema that contains the facet and attribute.
*/
SchemaArn: Arn;
/**
* The name of the facet that the attribute exists within.
*/
FacetName: FacetName;
/**
* The name of the attribute.
*/
Name: AttributeName;
}
export interface AttributeKeyAndValue {
/**
* The key of the attribute.
*/
Key: AttributeKey;
/**
* The value of the attribute.
*/
Value: TypedAttributeValue;
}
export type AttributeKeyAndValueList = AttributeKeyAndValue[];
export type AttributeKeyList = AttributeKey[];
export type AttributeName = string;
export interface AttributeNameAndValue {
/**
* The attribute name of the typed link.
*/
AttributeName: AttributeName;
/**
* The value for the typed link.
*/
Value: TypedAttributeValue;
}
export type AttributeNameAndValueList = AttributeNameAndValue[];
export type AttributeNameList = AttributeName[];
export interface BatchAddFacetToObject {
/**
* Represents the facet being added to the object.
*/
SchemaFacet: SchemaFacet;
/**
* The attributes to set on the object.
*/
ObjectAttributeList: AttributeKeyAndValueList;
/**
* A reference to the object being mutated.
*/
ObjectReference: ObjectReference;
}
export interface BatchAddFacetToObjectResponse {
}
export interface BatchAttachObject {
/**
* The parent object reference.
*/
ParentReference: ObjectReference;
/**
* The child object reference that is to be attached to the object.
*/
ChildReference: ObjectReference;
/**
* The name of the link.
*/
LinkName: LinkName;
}
export interface BatchAttachObjectResponse {
/**
* The ObjectIdentifier of the object that has been attached.
*/
attachedObjectIdentifier?: ObjectIdentifier;
}
export interface BatchAttachPolicy {
/**
* The reference that is associated with the policy object.
*/
PolicyReference: ObjectReference;
/**
* The reference that identifies the object to which the policy will be attached.
*/
ObjectReference: ObjectReference;
}
export interface BatchAttachPolicyResponse {
}
export interface BatchAttachToIndex {
/**
* A reference to the index that you are attaching the object to.
*/
IndexReference: ObjectReference;
/**
* A reference to the object that you are attaching to the index.
*/
TargetReference: ObjectReference;
}
export interface BatchAttachToIndexResponse {
/**
* The ObjectIdentifier of the object that was attached to the index.
*/
AttachedObjectIdentifier?: ObjectIdentifier;
}
export interface BatchAttachTypedLink {
/**
* Identifies the source object that the typed link will attach to.
*/
SourceObjectReference: ObjectReference;
/**
* Identifies the target object that the typed link will attach to.
*/
TargetObjectReference: ObjectReference;
/**
* Identifies the typed link facet that is associated with the typed link.
*/
TypedLinkFacet: TypedLinkSchemaAndFacetName;
/**
* A set of attributes that are associated with the typed link.
*/
Attributes: AttributeNameAndValueList;
}
export interface BatchAttachTypedLinkResponse {
/**
* Returns a typed link specifier as output.
*/
TypedLinkSpecifier?: TypedLinkSpecifier;
}
export interface BatchCreateIndex {
/**
* Specifies the attributes that should be indexed on. Currently only a single attribute is supported.
*/
OrderedIndexedAttributeList: AttributeKeyList;
/**
* Indicates whether the attribute that is being indexed has unique values or not.
*/
IsUnique: Bool;
/**
* A reference to the parent object that contains the index object.
*/
ParentReference?: ObjectReference;
/**
* The name of the link between the parent object and the index object.
*/
LinkName?: LinkName;
/**
* The batch reference name. See Transaction Support for more information.
*/
BatchReferenceName?: BatchReferenceName;
}
export interface BatchCreateIndexResponse {
/**
* The ObjectIdentifier of the index created by this operation.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface BatchCreateObject {
/**
* A list of FacetArns that will be associated with the object. For more information, see arns.
*/
SchemaFacet: SchemaFacetList;
/**
* An attribute map, which contains an attribute ARN as the key and attribute value as the map value.
*/
ObjectAttributeList: AttributeKeyAndValueList;
/**
* If specified, the parent reference to which this object will be attached.
*/
ParentReference?: ObjectReference;
/**
* The name of the link.
*/
LinkName?: LinkName;
/**
* The batch reference name. See Transaction Support for more information.
*/
BatchReferenceName?: BatchReferenceName;
}
export interface BatchCreateObjectResponse {
/**
* The ID that is associated with the object.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface BatchDeleteObject {
/**
* The reference that identifies the object.
*/
ObjectReference: ObjectReference;
}
export interface BatchDeleteObjectResponse {
}
export interface BatchDetachFromIndex {
/**
* A reference to the index object.
*/
IndexReference: ObjectReference;
/**
* A reference to the object being detached from the index.
*/
TargetReference: ObjectReference;
}
export interface BatchDetachFromIndexResponse {
/**
* The ObjectIdentifier of the object that was detached from the index.
*/
DetachedObjectIdentifier?: ObjectIdentifier;
}
export interface BatchDetachObject {
/**
* Parent reference from which the object with the specified link name is detached.
*/
ParentReference: ObjectReference;
/**
* The name of the link.
*/
LinkName: LinkName;
/**
* The batch reference name. See Transaction Support for more information.
*/
BatchReferenceName?: BatchReferenceName;
}
export interface BatchDetachObjectResponse {
/**
* The ObjectIdentifier of the detached object.
*/
detachedObjectIdentifier?: ObjectIdentifier;
}
export interface BatchDetachPolicy {
/**
* Reference that identifies the policy object.
*/
PolicyReference: ObjectReference;
/**
* Reference that identifies the object whose policy object will be detached.
*/
ObjectReference: ObjectReference;
}
export interface BatchDetachPolicyResponse {
}
export interface BatchDetachTypedLink {
/**
* Used to accept a typed link specifier as input.
*/
TypedLinkSpecifier: TypedLinkSpecifier;
}
export interface BatchDetachTypedLinkResponse {
}
export interface BatchGetLinkAttributes {
/**
* Allows a typed link specifier to be accepted as input.
*/
TypedLinkSpecifier: TypedLinkSpecifier;
/**
* A list of attribute names whose values will be retrieved.
*/
AttributeNames: AttributeNameList;
}
export interface BatchGetLinkAttributesResponse {
/**
* The attributes that are associated with the typed link.
*/
Attributes?: AttributeKeyAndValueList;
}
export interface BatchGetObjectAttributes {
/**
* Reference that identifies the object whose attributes will be retrieved.
*/
ObjectReference: ObjectReference;
/**
* Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.
*/
SchemaFacet: SchemaFacet;
/**
* List of attribute names whose values will be retrieved.
*/
AttributeNames: AttributeNameList;
}
export interface BatchGetObjectAttributesResponse {
/**
* The attribute values that are associated with an object.
*/
Attributes?: AttributeKeyAndValueList;
}
export interface BatchGetObjectInformation {
/**
* A reference to the object.
*/
ObjectReference: ObjectReference;
}
export interface BatchGetObjectInformationResponse {
/**
* The facets attached to the specified object.
*/
SchemaFacets?: SchemaFacetList;
/**
* The ObjectIdentifier of the specified object.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface BatchListAttachedIndices {
/**
* A reference to the object that has indices attached.
*/
TargetReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchListAttachedIndicesResponse {
/**
* The indices attached to the specified object.
*/
IndexAttachments?: IndexAttachmentList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListIncomingTypedLinks {
/**
* The reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* Provides range filters for multiple attributes. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range.
*/
FilterAttributeRanges?: TypedLinkAttributeRangeList;
/**
* Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls.
*/
FilterTypedLink?: TypedLinkSchemaAndFacetName;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchListIncomingTypedLinksResponse {
/**
* Returns one or more typed link specifiers as output.
*/
LinkSpecifiers?: TypedLinkSpecifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListIndex {
/**
* Specifies the ranges of indexed values that you want to query.
*/
RangesOnIndexedValues?: ObjectAttributeRangeList;
/**
* The reference to the index to list.
*/
IndexReference: ObjectReference;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListIndexResponse {
/**
* The objects and indexed values attached to the index.
*/
IndexAttachments?: IndexAttachmentList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListObjectAttributes {
/**
* Reference of the object whose attributes need to be listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
/**
* Used to filter the list of object attributes that are associated with a certain facet.
*/
FacetFilter?: SchemaFacet;
}
export interface BatchListObjectAttributesResponse {
/**
* The attributes map that is associated with the object. AttributeArn is the key; attribute value is the value.
*/
Attributes?: AttributeKeyAndValueList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListObjectChildren {
/**
* Reference of the object for which child objects are being listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* Maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
}
export interface BatchListObjectChildrenResponse {
/**
* The children structure, which is a map with the key as the LinkName and ObjectIdentifier as the value.
*/
Children?: LinkNameToObjectIdentifierMap;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListObjectParentPaths {
/**
* The reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchListObjectParentPathsResponse {
/**
* Returns the path to the ObjectIdentifiers that are associated with the directory.
*/
PathToObjectIdentifiersList?: PathToObjectIdentifiersList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListObjectParents {
ObjectReference: ObjectReference;
NextToken?: NextToken;
MaxResults?: NumberResults;
}
export interface BatchListObjectParentsResponse {
ParentLinks?: ObjectIdentifierAndLinkNameList;
NextToken?: NextToken;
}
export interface BatchListObjectPolicies {
/**
* The reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchListObjectPoliciesResponse {
/**
* A list of policy ObjectIdentifiers, that are attached to the object.
*/
AttachedPolicyIds?: ObjectIdentifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListOutgoingTypedLinks {
/**
* The reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* Provides range filters for multiple attributes. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range.
*/
FilterAttributeRanges?: TypedLinkAttributeRangeList;
/**
* Filters are interpreted in the order of the attributes defined on the typed link facet, not the order they are supplied to any API calls.
*/
FilterTypedLink?: TypedLinkSchemaAndFacetName;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchListOutgoingTypedLinksResponse {
/**
* Returns a typed link specifier as output.
*/
TypedLinkSpecifiers?: TypedLinkSpecifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchListPolicyAttachments {
/**
* The reference that identifies the policy object.
*/
PolicyReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchListPolicyAttachmentsResponse {
/**
* A list of ObjectIdentifiers to which the policy is attached.
*/
ObjectIdentifiers?: ObjectIdentifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchLookupPolicy {
/**
* Reference that identifies the object whose policies will be looked up.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface BatchLookupPolicyResponse {
/**
* Provides list of path to policies. Policies contain PolicyId, ObjectIdentifier, and PolicyType. For more information, see Policies.
*/
PolicyToPathList?: PolicyToPathList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface BatchReadException {
/**
* A type of exception, such as InvalidArnException.
*/
Type?: BatchReadExceptionType;
/**
* An exception message that is associated with the failure.
*/
Message?: ExceptionMessage;
}
export type BatchReadExceptionType = "ValidationException"|"InvalidArnException"|"ResourceNotFoundException"|"InvalidNextTokenException"|"AccessDeniedException"|"NotNodeException"|"FacetValidationException"|"CannotListParentOfRootException"|"NotIndexException"|"NotPolicyException"|"DirectoryNotEnabledException"|"LimitExceededException"|"InternalServiceException"|string;
export interface BatchReadOperation {
/**
* Lists all attributes that are associated with an object.
*/
ListObjectAttributes?: BatchListObjectAttributes;
/**
* Returns a paginated list of child objects that are associated with a given object.
*/
ListObjectChildren?: BatchListObjectChildren;
/**
* Lists indices attached to an object.
*/
ListAttachedIndices?: BatchListAttachedIndices;
/**
* Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure.
*/
ListObjectParentPaths?: BatchListObjectParentPaths;
/**
* Retrieves metadata about an object.
*/
GetObjectInformation?: BatchGetObjectInformation;
/**
* Retrieves attributes within a facet that are associated with an object.
*/
GetObjectAttributes?: BatchGetObjectAttributes;
ListObjectParents?: BatchListObjectParents;
/**
* Returns policies attached to an object in pagination fashion.
*/
ListObjectPolicies?: BatchListObjectPolicies;
/**
* Returns all of the ObjectIdentifiers to which a given policy is attached.
*/
ListPolicyAttachments?: BatchListPolicyAttachments;
/**
* Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.
*/
LookupPolicy?: BatchLookupPolicy;
/**
* Lists objects attached to the specified index.
*/
ListIndex?: BatchListIndex;
/**
* Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
ListOutgoingTypedLinks?: BatchListOutgoingTypedLinks;
/**
* Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
ListIncomingTypedLinks?: BatchListIncomingTypedLinks;
/**
* Retrieves attributes that are associated with a typed link.
*/
GetLinkAttributes?: BatchGetLinkAttributes;
}
export type BatchReadOperationList = BatchReadOperation[];
export interface BatchReadOperationResponse {
/**
* Identifies which operation in a batch has succeeded.
*/
SuccessfulResponse?: BatchReadSuccessfulResponse;
/**
* Identifies which operation in a batch has failed.
*/
ExceptionResponse?: BatchReadException;
}
export type BatchReadOperationResponseList = BatchReadOperationResponse[];
export interface BatchReadRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* A list of operations that are part of the batch.
*/
Operations: BatchReadOperationList;
/**
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface BatchReadResponse {
/**
* A list of all the responses for each batch read.
*/
Responses?: BatchReadOperationResponseList;
}
export interface BatchReadSuccessfulResponse {
/**
* Lists all attributes that are associated with an object.
*/
ListObjectAttributes?: BatchListObjectAttributesResponse;
/**
* Returns a paginated list of child objects that are associated with a given object.
*/
ListObjectChildren?: BatchListObjectChildrenResponse;
/**
* Retrieves metadata about an object.
*/
GetObjectInformation?: BatchGetObjectInformationResponse;
/**
* Retrieves attributes within a facet that are associated with an object.
*/
GetObjectAttributes?: BatchGetObjectAttributesResponse;
/**
* Lists indices attached to an object.
*/
ListAttachedIndices?: BatchListAttachedIndicesResponse;
/**
* Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure.
*/
ListObjectParentPaths?: BatchListObjectParentPathsResponse;
/**
* Returns policies attached to an object in pagination fashion.
*/
ListObjectPolicies?: BatchListObjectPoliciesResponse;
/**
* Returns all of the ObjectIdentifiers to which a given policy is attached.
*/
ListPolicyAttachments?: BatchListPolicyAttachmentsResponse;
/**
* Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.
*/
LookupPolicy?: BatchLookupPolicyResponse;
/**
* Lists objects attached to the specified index.
*/
ListIndex?: BatchListIndexResponse;
/**
* Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
ListOutgoingTypedLinks?: BatchListOutgoingTypedLinksResponse;
/**
* Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
*/
ListIncomingTypedLinks?: BatchListIncomingTypedLinksResponse;
/**
* The list of attributes to retrieve from the typed link.
*/
GetLinkAttributes?: BatchGetLinkAttributesResponse;
ListObjectParents?: BatchListObjectParentsResponse;
}
export type BatchReferenceName = string;
export interface BatchRemoveFacetFromObject {
/**
* The facet to remove from the object.
*/
SchemaFacet: SchemaFacet;
/**
* A reference to the object whose facet will be removed.
*/
ObjectReference: ObjectReference;
}
export interface BatchRemoveFacetFromObjectResponse {
}
export interface BatchUpdateLinkAttributes {
/**
* Allows a typed link specifier to be accepted as input.
*/
TypedLinkSpecifier: TypedLinkSpecifier;
/**
* The attributes update structure.
*/
AttributeUpdates: LinkAttributeUpdateList;
}
export interface BatchUpdateLinkAttributesResponse {
}
export interface BatchUpdateObjectAttributes {
/**
* Reference that identifies the object.
*/
ObjectReference: ObjectReference;
/**
* Attributes update structure.
*/
AttributeUpdates: ObjectAttributeUpdateList;
}
export interface BatchUpdateObjectAttributesResponse {
/**
* ID that is associated with the object.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface BatchWriteOperation {
/**
* Creates an object.
*/
CreateObject?: BatchCreateObject;
/**
* Attaches an object to a Directory.
*/
AttachObject?: BatchAttachObject;
/**
* Detaches an object from a Directory.
*/
DetachObject?: BatchDetachObject;
/**
* Updates a given object's attributes.
*/
UpdateObjectAttributes?: BatchUpdateObjectAttributes;
/**
* Deletes an object in a Directory.
*/
DeleteObject?: BatchDeleteObject;
/**
* A batch operation that adds a facet to an object.
*/
AddFacetToObject?: BatchAddFacetToObject;
/**
* A batch operation that removes a facet from an object.
*/
RemoveFacetFromObject?: BatchRemoveFacetFromObject;
/**
* Attaches a policy object to a regular object. An object can have a limited number of attached policies.
*/
AttachPolicy?: BatchAttachPolicy;
/**
* Detaches a policy from a Directory.
*/
DetachPolicy?: BatchDetachPolicy;
/**
* Creates an index object. See Indexing and search for more information.
*/
CreateIndex?: BatchCreateIndex;
/**
* Attaches the specified object to the specified index.
*/
AttachToIndex?: BatchAttachToIndex;
/**
* Detaches the specified object from the specified index.
*/
DetachFromIndex?: BatchDetachFromIndex;
/**
* Attaches a typed link to a specified source and target object. For more information, see Typed Links.
*/
AttachTypedLink?: BatchAttachTypedLink;
/**
* Detaches a typed link from a specified source and target object. For more information, see Typed Links.
*/
DetachTypedLink?: BatchDetachTypedLink;
/**
* Updates a given object's attributes.
*/
UpdateLinkAttributes?: BatchUpdateLinkAttributes;
}
export type BatchWriteOperationList = BatchWriteOperation[];
export interface BatchWriteOperationResponse {
/**
* Creates an object in a Directory.
*/
CreateObject?: BatchCreateObjectResponse;
/**
* Attaches an object to a Directory.
*/
AttachObject?: BatchAttachObjectResponse;
/**
* Detaches an object from a Directory.
*/
DetachObject?: BatchDetachObjectResponse;
/**
* Updates a given object’s attributes.
*/
UpdateObjectAttributes?: BatchUpdateObjectAttributesResponse;
/**
* Deletes an object in a Directory.
*/
DeleteObject?: BatchDeleteObjectResponse;
/**
* The result of an add facet to object batch operation.
*/
AddFacetToObject?: BatchAddFacetToObjectResponse;
/**
* The result of a batch remove facet from object operation.
*/
RemoveFacetFromObject?: BatchRemoveFacetFromObjectResponse;
/**
* Attaches a policy object to a regular object. An object can have a limited number of attached policies.
*/
AttachPolicy?: BatchAttachPolicyResponse;
/**
* Detaches a policy from a Directory.
*/
DetachPolicy?: BatchDetachPolicyResponse;
/**
* Creates an index object. See Indexing and search for more information.
*/
CreateIndex?: BatchCreateIndexResponse;
/**
* Attaches the specified object to the specified index.
*/
AttachToIndex?: BatchAttachToIndexResponse;
/**
* Detaches the specified object from the specified index.
*/
DetachFromIndex?: BatchDetachFromIndexResponse;
/**
* Attaches a typed link to a specified source and target object. For more information, see Typed Links.
*/
AttachTypedLink?: BatchAttachTypedLinkResponse;
/**
* Detaches a typed link from a specified source and target object. For more information, see Typed Links.
*/
DetachTypedLink?: BatchDetachTypedLinkResponse;
/**
* Represents the output of a BatchWrite response operation.
*/
UpdateLinkAttributes?: BatchUpdateLinkAttributesResponse;
}
export type BatchWriteOperationResponseList = BatchWriteOperationResponse[];
export interface BatchWriteRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* A list of operations that are part of the batch.
*/
Operations: BatchWriteOperationList;
}
export interface BatchWriteResponse {
/**
* A list of all the responses for each batch write.
*/
Responses?: BatchWriteOperationResponseList;
}
export type BinaryAttributeValue = Buffer|Uint8Array|Blob|string;
export type Bool = boolean;
export type BooleanAttributeValue = boolean;
export type ConsistencyLevel = "SERIALIZABLE"|"EVENTUAL"|string;
export interface CreateDirectoryRequest {
/**
* The name of the Directory. Should be unique per account, per region.
*/
Name: DirectoryName;
/**
* The Amazon Resource Name (ARN) of the published schema that will be copied into the data Directory. For more information, see arns.
*/
SchemaArn: Arn;
}
export interface CreateDirectoryResponse {
/**
* The ARN that is associated with the Directory. For more information, see arns.
*/
DirectoryArn: DirectoryArn;
/**
* The name of the Directory.
*/
Name: DirectoryName;
/**
* The root object node of the created directory.
*/
ObjectIdentifier: ObjectIdentifier;
/**
* The ARN of the published schema in the Directory. Once a published schema is copied into the directory, it has its own ARN, which is referred to applied schema ARN. For more information, see arns.
*/
AppliedSchemaArn: Arn;
}
export interface CreateFacetRequest {
/**
* The schema ARN in which the new Facet will be created. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The name of the Facet, which is unique for a given schema.
*/
Name: FacetName;
/**
* The attributes that are associated with the Facet.
*/
Attributes?: FacetAttributeList;
/**
* Specifies whether a given object created from this facet is of type node, leaf node, policy or index. Node: Can have multiple children but one parent. Leaf node: Cannot have children but can have multiple parents. Policy: Allows you to store a policy document and policy type. For more information, see Policies. Index: Can be created with the Index API.
*/
ObjectType?: ObjectType;
/**
* There are two different styles that you can define on any given facet, Static and Dynamic. For static facets, all attributes must be defined in the schema. For dynamic facets, attributes can be defined during data plane operations.
*/
FacetStyle?: FacetStyle;
}
export interface CreateFacetResponse {
}
export interface CreateIndexRequest {
/**
* The ARN of the directory where the index should be created.
*/
DirectoryArn: Arn;
/**
* Specifies the attributes that should be indexed on. Currently only a single attribute is supported.
*/
OrderedIndexedAttributeList: AttributeKeyList;
/**
* Indicates whether the attribute that is being indexed has unique values or not.
*/
IsUnique: Bool;
/**
* A reference to the parent object that contains the index object.
*/
ParentReference?: ObjectReference;
/**
* The name of the link between the parent object and the index object.
*/
LinkName?: LinkName;
}
export interface CreateIndexResponse {
/**
* The ObjectIdentifier of the index created by this operation.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface CreateObjectRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory in which the object will be created. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* A list of schema facets to be associated with the object. Do not provide minor version components. See SchemaFacet for details.
*/
SchemaFacets: SchemaFacetList;
/**
* The attribute map whose attribute ARN contains the key and attribute value as the map value.
*/
ObjectAttributeList?: AttributeKeyAndValueList;
/**
* If specified, the parent reference to which this object will be attached.
*/
ParentReference?: ObjectReference;
/**
* The name of link that is used to attach this object to a parent.
*/
LinkName?: LinkName;
}
export interface CreateObjectResponse {
/**
* The identifier that is associated with the object.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface CreateSchemaRequest {
/**
* The name that is associated with the schema. This is unique to each account and in each region.
*/
Name: SchemaName;
}
export interface CreateSchemaResponse {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn?: Arn;
}
export interface CreateTypedLinkFacetRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* Facet structure that is associated with the typed link facet.
*/
Facet: TypedLinkFacet;
}
export interface CreateTypedLinkFacetResponse {
}
export type _Date = Date;
export type DatetimeAttributeValue = Date;
export interface DeleteDirectoryRequest {
/**
* The ARN of the directory to delete.
*/
DirectoryArn: Arn;
}
export interface DeleteDirectoryResponse {
/**
* The ARN of the deleted directory.
*/
DirectoryArn: Arn;
}
export interface DeleteFacetRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Facet. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The name of the facet to delete.
*/
Name: FacetName;
}
export interface DeleteFacetResponse {
}
export interface DeleteObjectRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* A reference that identifies the object.
*/
ObjectReference: ObjectReference;
}
export interface DeleteObjectResponse {
}
export interface DeleteSchemaRequest {
/**
* The Amazon Resource Name (ARN) of the development schema. For more information, see arns.
*/
SchemaArn: Arn;
}
export interface DeleteSchemaResponse {
/**
* The input ARN that is returned as part of the response. For more information, see arns.
*/
SchemaArn?: Arn;
}
export interface DeleteTypedLinkFacetRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The unique name of the typed link facet.
*/
Name: TypedLinkName;
}
export interface DeleteTypedLinkFacetResponse {
}
export interface DetachFromIndexRequest {
/**
* The Amazon Resource Name (ARN) of the directory the index and object exist in.
*/
DirectoryArn: Arn;
/**
* A reference to the index object.
*/
IndexReference: ObjectReference;
/**
* A reference to the object being detached from the index.
*/
TargetReference: ObjectReference;
}
export interface DetachFromIndexResponse {
/**
* The ObjectIdentifier of the object that was detached from the index.
*/
DetachedObjectIdentifier?: ObjectIdentifier;
}
export interface DetachObjectRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where objects reside. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The parent reference from which the object with the specified link name is detached.
*/
ParentReference: ObjectReference;
/**
* The link name associated with the object that needs to be detached.
*/
LinkName: LinkName;
}
export interface DetachObjectResponse {
/**
* The ObjectIdentifier that was detached from the object.
*/
DetachedObjectIdentifier?: ObjectIdentifier;
}
export interface DetachPolicyRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where both objects reside. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* Reference that identifies the policy object.
*/
PolicyReference: ObjectReference;
/**
* Reference that identifies the object whose policy object will be detached.
*/
ObjectReference: ObjectReference;
}
export interface DetachPolicyResponse {
}
export interface DetachTypedLinkRequest {
/**
* The Amazon Resource Name (ARN) of the directory where you want to detach the typed link.
*/
DirectoryArn: Arn;
/**
* Used to accept a typed link specifier as input.
*/
TypedLinkSpecifier: TypedLinkSpecifier;
}
export interface Directory {
/**
* The name of the directory.
*/
Name?: DirectoryName;
/**
* The Amazon Resource Name (ARN) that is associated with the directory. For more information, see arns.
*/
DirectoryArn?: DirectoryArn;
/**
* The state of the directory. Can be either Enabled, Disabled, or Deleted.
*/
State?: DirectoryState;
/**
* The date and time when the directory was created.
*/
CreationDateTime?: _Date;
}
export type DirectoryArn = string;
export type DirectoryList = Directory[];
export type DirectoryName = string;
export type DirectoryState = "ENABLED"|"DISABLED"|"DELETED"|string;
export interface DisableDirectoryRequest {
/**
* The ARN of the directory to disable.
*/
DirectoryArn: Arn;
}
export interface DisableDirectoryResponse {
/**
* The ARN of the directory that has been disabled.
*/
DirectoryArn: Arn;
}
export interface EnableDirectoryRequest {
/**
* The ARN of the directory to enable.
*/
DirectoryArn: Arn;
}
export interface EnableDirectoryResponse {
/**
* The ARN of the enabled directory.
*/
DirectoryArn: Arn;
}
export type ExceptionMessage = string;
export interface Facet {
/**
* The name of the Facet.
*/
Name?: FacetName;
/**
* The object type that is associated with the facet. See CreateFacetRequest$ObjectType for more details.
*/
ObjectType?: ObjectType;
/**
* There are two different styles that you can define on any given facet, Static and Dynamic. For static facets, all attributes must be defined in the schema. For dynamic facets, attributes can be defined during data plane operations.
*/
FacetStyle?: FacetStyle;
}
export interface FacetAttribute {
/**
* The name of the facet attribute.
*/
Name: AttributeName;
/**
* A facet attribute consists of either a definition or a reference. This structure contains the attribute definition. See Attribute References for more information.
*/
AttributeDefinition?: FacetAttributeDefinition;
/**
* An attribute reference that is associated with the attribute. See Attribute References for more information.
*/
AttributeReference?: FacetAttributeReference;
/**
* The required behavior of the FacetAttribute.
*/
RequiredBehavior?: RequiredAttributeBehavior;
}
export interface FacetAttributeDefinition {
/**
* The type of the attribute.
*/
Type: FacetAttributeType;
/**
* The default value of the attribute (if configured).
*/
DefaultValue?: TypedAttributeValue;
/**
* Whether the attribute is mutable or not.
*/
IsImmutable?: Bool;
/**
* Validation rules attached to the attribute definition.
*/
Rules?: RuleMap;
}
export type FacetAttributeList = FacetAttribute[];
export interface FacetAttributeReference {
/**
* The target facet name that is associated with the facet reference. See Attribute References for more information.
*/
TargetFacetName: FacetName;
/**
* The target attribute name that is associated with the facet reference. See Attribute References for more information.
*/
TargetAttributeName: AttributeName;
}
export type FacetAttributeType = "STRING"|"BINARY"|"BOOLEAN"|"NUMBER"|"DATETIME"|"VARIANT"|string;
export interface FacetAttributeUpdate {
/**
* The attribute to update.
*/
Attribute?: FacetAttribute;
/**
* The action to perform when updating the attribute.
*/
Action?: UpdateActionType;
}
export type FacetAttributeUpdateList = FacetAttributeUpdate[];
export type FacetName = string;
export type FacetNameList = FacetName[];
export type FacetStyle = "STATIC"|"DYNAMIC"|string;
export interface GetAppliedSchemaVersionRequest {
/**
* The ARN of the applied schema.
*/
SchemaArn: Arn;
}
export interface GetAppliedSchemaVersionResponse {
/**
* Current applied schema ARN, including the minor version in use if one was provided.
*/
AppliedSchemaArn?: Arn;
}
export interface GetDirectoryRequest {
/**
* The ARN of the directory.
*/
DirectoryArn: DirectoryArn;
}
export interface GetDirectoryResponse {
/**
* Metadata about the directory.
*/
Directory: Directory;
}
export interface GetFacetRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Facet. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The name of the facet to retrieve.
*/
Name: FacetName;
}
export interface GetFacetResponse {
/**
* The Facet structure that is associated with the facet.
*/
Facet?: Facet;
}
export interface GetLinkAttributesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the typed link resides. For more information, see arns or Typed Links.
*/
DirectoryArn: Arn;
/**
* Allows a typed link specifier to be accepted as input.
*/
TypedLinkSpecifier: TypedLinkSpecifier;
/**
* A list of attribute names whose values will be retrieved.
*/
AttributeNames: AttributeNameList;
/**
* The consistency level at which to retrieve the attributes on a typed link.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface GetLinkAttributesResponse {
/**
* The attributes that are associated with the typed link.
*/
Attributes?: AttributeKeyAndValueList;
}
export interface GetObjectAttributesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides.
*/
DirectoryArn: Arn;
/**
* Reference that identifies the object whose attributes will be retrieved.
*/
ObjectReference: ObjectReference;
/**
* The consistency level at which to retrieve the attributes on an object.
*/
ConsistencyLevel?: ConsistencyLevel;
/**
* Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.
*/
SchemaFacet: SchemaFacet;
/**
* List of attribute names whose values will be retrieved.
*/
AttributeNames: AttributeNameList;
}
export interface GetObjectAttributesResponse {
/**
* The attributes that are associated with the object.
*/
Attributes?: AttributeKeyAndValueList;
}
export interface GetObjectInformationRequest {
/**
* The ARN of the directory being retrieved.
*/
DirectoryArn: Arn;
/**
* A reference to the object.
*/
ObjectReference: ObjectReference;
/**
* The consistency level at which to retrieve the object information.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface GetObjectInformationResponse {
/**
* The facets attached to the specified object. Although the response does not include minor version information, the most recently applied minor version of each Facet is in effect. See GetAppliedSchemaVersion for details.
*/
SchemaFacets?: SchemaFacetList;
/**
* The ObjectIdentifier of the specified object.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface GetSchemaAsJsonRequest {
/**
* The ARN of the schema to retrieve.
*/
SchemaArn: Arn;
}
export interface GetSchemaAsJsonResponse {
/**
* The name of the retrieved schema.
*/
Name?: SchemaName;
/**
* The JSON representation of the schema document.
*/
Document?: SchemaJsonDocument;
}
export interface GetTypedLinkFacetInformationRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The unique name of the typed link facet.
*/
Name: TypedLinkName;
}
export interface GetTypedLinkFacetInformationResponse {
/**
* The order of identity attributes for the facet, from most significant to least significant. The ability to filter typed links considers the order that the attributes are defined on the typed link facet. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range. Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls. For more information about identity attributes, see Typed Links.
*/
IdentityAttributeOrder?: AttributeNameList;
}
export interface IndexAttachment {
/**
* The indexed attribute values.
*/
IndexedAttributes?: AttributeKeyAndValueList;
/**
* In response to ListIndex, the ObjectIdentifier of the object attached to the index. In response to ListAttachedIndices, the ObjectIdentifier of the index attached to the object. This field will always contain the ObjectIdentifier of the object on the opposite side of the attachment specified in the query.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export type IndexAttachmentList = IndexAttachment[];
export interface LinkAttributeAction {
/**
* A type that can be either UPDATE_OR_CREATE or DELETE.
*/
AttributeActionType?: UpdateActionType;
/**
* The value that you want to update to.
*/
AttributeUpdateValue?: TypedAttributeValue;
}
export interface LinkAttributeUpdate {
/**
* The key of the attribute being updated.
*/
AttributeKey?: AttributeKey;
/**
* The action to perform as part of the attribute update.
*/
AttributeAction?: LinkAttributeAction;
}
export type LinkAttributeUpdateList = LinkAttributeUpdate[];
export type LinkName = string;
export type LinkNameToObjectIdentifierMap = {[key: string]: ObjectIdentifier};
export interface ListAppliedSchemaArnsRequest {
/**
* The ARN of the directory you are listing.
*/
DirectoryArn: Arn;
/**
* The response for ListAppliedSchemaArns when this parameter is used will list all minor version ARNs for a major version.
*/
SchemaArn?: Arn;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListAppliedSchemaArnsResponse {
/**
* The ARNs of schemas that are applied to the directory.
*/
SchemaArns?: Arns;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListAttachedIndicesRequest {
/**
* The ARN of the directory.
*/
DirectoryArn: Arn;
/**
* A reference to the object that has indices attached.
*/
TargetReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
/**
* The consistency level to use for this operation.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListAttachedIndicesResponse {
/**
* The indices attached to the specified object.
*/
IndexAttachments?: IndexAttachmentList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListDevelopmentSchemaArnsRequest {
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListDevelopmentSchemaArnsResponse {
/**
* The ARNs of retrieved development schemas.
*/
SchemaArns?: Arns;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListDirectoriesRequest {
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
/**
* The state of the directories in the list. Can be either Enabled, Disabled, or Deleted.
*/
state?: DirectoryState;
}
export interface ListDirectoriesResponse {
/**
* Lists all directories that are associated with your account in pagination fashion.
*/
Directories: DirectoryList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListFacetAttributesRequest {
/**
* The ARN of the schema where the facet resides.
*/
SchemaArn: Arn;
/**
* The name of the facet whose attributes will be retrieved.
*/
Name: FacetName;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListFacetAttributesResponse {
/**
* The attributes attached to the facet.
*/
Attributes?: FacetAttributeList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListFacetNamesRequest {
/**
* The Amazon Resource Name (ARN) to retrieve facet names from.
*/
SchemaArn: Arn;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListFacetNamesResponse {
/**
* The names of facets that exist within the schema.
*/
FacetNames?: FacetNameList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListIncomingTypedLinksRequest {
/**
* The Amazon Resource Name (ARN) of the directory where you want to list the typed links.
*/
DirectoryArn: Arn;
/**
* Reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* Provides range filters for multiple attributes. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range.
*/
FilterAttributeRanges?: TypedLinkAttributeRangeList;
/**
* Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls.
*/
FilterTypedLink?: TypedLinkSchemaAndFacetName;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
/**
* The consistency level to execute the request at.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListIncomingTypedLinksResponse {
/**
* Returns one or more typed link specifiers as output.
*/
LinkSpecifiers?: TypedLinkSpecifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListIndexRequest {
/**
* The ARN of the directory that the index exists in.
*/
DirectoryArn: Arn;
/**
* Specifies the ranges of indexed values that you want to query.
*/
RangesOnIndexedValues?: ObjectAttributeRangeList;
/**
* The reference to the index to list.
*/
IndexReference: ObjectReference;
/**
* The maximum number of objects in a single page to retrieve from the index during a request. For more information, see Amazon Cloud Directory Limits.
*/
MaxResults?: NumberResults;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The consistency level to execute the request at.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListIndexResponse {
/**
* The objects and indexed values attached to the index.
*/
IndexAttachments?: IndexAttachmentList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListManagedSchemaArnsRequest {
/**
* The response for ListManagedSchemaArns. When this parameter is used, all minor version ARNs for a major version are listed.
*/
SchemaArn?: Arn;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListManagedSchemaArnsResponse {
/**
* The ARNs for all AWS managed schemas.
*/
SchemaArns?: Arns;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListObjectAttributesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
/**
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
*/
ConsistencyLevel?: ConsistencyLevel;
/**
* Used to filter the list of object attributes that are associated with a certain facet.
*/
FacetFilter?: SchemaFacet;
}
export interface ListObjectAttributesResponse {
/**
* Attributes map that is associated with the object. AttributeArn is the key, and attribute value is the value.
*/
Attributes?: AttributeKeyAndValueList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListObjectChildrenRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The reference that identifies the object for which child objects are being listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
/**
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListObjectChildrenResponse {
/**
* Children structure, which is a map with key as the LinkName and ObjectIdentifier as the value.
*/
Children?: LinkNameToObjectIdentifierMap;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListObjectParentPathsRequest {
/**
* The ARN of the directory to which the parent path applies.
*/
DirectoryArn: Arn;
/**
* The reference that identifies the object whose parent paths are listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
}
export interface ListObjectParentPathsResponse {
/**
* Returns the path to the ObjectIdentifiers that are associated with the directory.
*/
PathToObjectIdentifiersList?: PathToObjectIdentifiersList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListObjectParentsRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The reference that identifies the object for which parent objects are being listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
/**
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
*/
ConsistencyLevel?: ConsistencyLevel;
/**
* When set to True, returns all ListObjectParentsResponse$ParentLinks. There could be multiple links between a parent-child pair.
*/
IncludeAllLinksToEachParent?: Bool;
}
export interface ListObjectParentsResponse {
/**
* The parent structure, which is a map with key as the ObjectIdentifier and LinkName as the value.
*/
Parents?: ObjectIdentifierToLinkNameMap;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* Returns a list of parent reference and LinkName Tuples.
*/
ParentLinks?: ObjectIdentifierAndLinkNameList;
}
export interface ListObjectPoliciesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where objects reside. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* Reference that identifies the object for which policies will be listed.
*/
ObjectReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
/**
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListObjectPoliciesResponse {
/**
* A list of policy ObjectIdentifiers, that are attached to the object.
*/
AttachedPolicyIds?: ObjectIdentifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListOutgoingTypedLinksRequest {
/**
* The Amazon Resource Name (ARN) of the directory where you want to list the typed links.
*/
DirectoryArn: Arn;
/**
* A reference that identifies the object whose attributes will be listed.
*/
ObjectReference: ObjectReference;
/**
* Provides range filters for multiple attributes. When providing ranges to typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range.
*/
FilterAttributeRanges?: TypedLinkAttributeRangeList;
/**
* Filters are interpreted in the order of the attributes defined on the typed link facet, not the order they are supplied to any API calls.
*/
FilterTypedLink?: TypedLinkSchemaAndFacetName;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
/**
* The consistency level to execute the request at.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListOutgoingTypedLinksResponse {
/**
* Returns a typed link specifier as output.
*/
TypedLinkSpecifiers?: TypedLinkSpecifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListPolicyAttachmentsRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where objects reside. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The reference that identifies the policy object.
*/
PolicyReference: ObjectReference;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
/**
* Represents the manner and timing in which the successful write or update of an object is reflected in a subsequent read operation of that same object.
*/
ConsistencyLevel?: ConsistencyLevel;
}
export interface ListPolicyAttachmentsResponse {
/**
* A list of ObjectIdentifiers to which the policy is attached.
*/
ObjectIdentifiers?: ObjectIdentifierList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListPublishedSchemaArnsRequest {
/**
* The response for ListPublishedSchemaArns when this parameter is used will list all minor version ARNs for a major version.
*/
SchemaArn?: Arn;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListPublishedSchemaArnsResponse {
/**
* The ARNs of published schemas.
*/
SchemaArns?: Arns;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListTagsForResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource. Tagging is only supported for directories.
*/
ResourceArn: Arn;
/**
* The pagination token. This is for future use. Currently pagination is not supported for tagging.
*/
NextToken?: NextToken;
/**
* The MaxResults parameter sets the maximum number of results returned in a single page. This is for future use and is not supported currently.
*/
MaxResults?: TagsNumberResults;
}
export interface ListTagsForResourceResponse {
/**
* A list of tag key value pairs that are associated with the response.
*/
Tags?: TagList;
/**
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
*/
NextToken?: NextToken;
}
export interface ListTypedLinkFacetAttributesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The unique name of the typed link facet.
*/
Name: TypedLinkName;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListTypedLinkFacetAttributesResponse {
/**
* An ordered set of attributes associate with the typed link.
*/
Attributes?: TypedLinkAttributeDefinitionList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface ListTypedLinkFacetNamesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The pagination token.
*/
NextToken?: NextToken;
/**
* The maximum number of results to retrieve.
*/
MaxResults?: NumberResults;
}
export interface ListTypedLinkFacetNamesResponse {
/**
* The names of typed link facets that exist within the schema.
*/
FacetNames?: TypedLinkNameList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export interface LookupPolicyRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* Reference that identifies the object whose policies will be looked up.
*/
ObjectReference: ObjectReference;
/**
* The token to request the next page of results.
*/
NextToken?: NextToken;
/**
* The maximum number of items to be retrieved in a single call. This is an approximate number.
*/
MaxResults?: NumberResults;
}
export interface LookupPolicyResponse {
/**
* Provides list of path to policies. Policies contain PolicyId, ObjectIdentifier, and PolicyType. For more information, see Policies.
*/
PolicyToPathList?: PolicyToPathList;
/**
* The pagination token.
*/
NextToken?: NextToken;
}
export type NextToken = string;
export type NumberAttributeValue = string;
export type NumberResults = number;
export interface ObjectAttributeAction {
/**
* A type that can be either Update or Delete.
*/
ObjectAttributeActionType?: UpdateActionType;
/**
* The value that you want to update to.
*/
ObjectAttributeUpdateValue?: TypedAttributeValue;
}
export interface ObjectAttributeRange {
/**
* The key of the attribute that the attribute range covers.
*/
AttributeKey?: AttributeKey;
/**
* The range of attribute values being selected.
*/
Range?: TypedAttributeValueRange;
}
export type ObjectAttributeRangeList = ObjectAttributeRange[];
export interface ObjectAttributeUpdate {
/**
* The key of the attribute being updated.
*/
ObjectAttributeKey?: AttributeKey;
/**
* The action to perform as part of the attribute update.
*/
ObjectAttributeAction?: ObjectAttributeAction;
}
export type ObjectAttributeUpdateList = ObjectAttributeUpdate[];
export type ObjectIdentifier = string;
export type ObjectIdentifierAndLinkNameList = ObjectIdentifierAndLinkNameTuple[];
export interface ObjectIdentifierAndLinkNameTuple {
/**
* The ID that is associated with the object.
*/
ObjectIdentifier?: ObjectIdentifier;
/**
* The name of the link between the parent and the child object.
*/
LinkName?: LinkName;
}
export type ObjectIdentifierList = ObjectIdentifier[];
export type ObjectIdentifierToLinkNameMap = {[key: string]: LinkName};
export interface ObjectReference {
/**
* A path selector supports easy selection of an object by the parent/child links leading to it from the directory root. Use the link names from each parent/child link to construct the path. Path selectors start with a slash (/) and link names are separated by slashes. For more information about paths, see Access Objects. You can identify an object in one of the following ways: $ObjectIdentifier - An object identifier is an opaque string provided by Amazon Cloud Directory. When creating objects, the system will provide you with the identifier of the created object. An object’s identifier is immutable and no two objects will ever share the same object identifier /some/path - Identifies the object based on path #SomeBatchReference - Identifies the object in a batch call
*/
Selector?: SelectorObjectReference;
}
export type ObjectType = "NODE"|"LEAF_NODE"|"POLICY"|"INDEX"|string;
export type PathString = string;
export interface PathToObjectIdentifiers {
/**
* The path that is used to identify the object starting from directory root.
*/
Path?: PathString;
/**
* Lists ObjectIdentifiers starting from directory root to the object in the request.
*/
ObjectIdentifiers?: ObjectIdentifierList;
}
export type PathToObjectIdentifiersList = PathToObjectIdentifiers[];
export interface PolicyAttachment {
/**
* The ID of PolicyAttachment.
*/
PolicyId?: ObjectIdentifier;
/**
* The ObjectIdentifier that is associated with PolicyAttachment.
*/
ObjectIdentifier?: ObjectIdentifier;
/**
* The type of policy that can be associated with PolicyAttachment.
*/
PolicyType?: PolicyType;
}
export type PolicyAttachmentList = PolicyAttachment[];
export interface PolicyToPath {
/**
* The path that is referenced from the root.
*/
Path?: PathString;
/**
* List of policy objects.
*/
Policies?: PolicyAttachmentList;
}
export type PolicyToPathList = PolicyToPath[];
export type PolicyType = string;
export interface PublishSchemaRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the development schema. For more information, see arns.
*/
DevelopmentSchemaArn: Arn;
/**
* The major version under which the schema will be published. Schemas have both a major and minor version associated with them.
*/
Version: Version;
/**
* The minor version under which the schema will be published. This parameter is recommended. Schemas have both a major and minor version associated with them.
*/
MinorVersion?: Version;
/**
* The new name under which the schema will be published. If this is not provided, the development schema is considered.
*/
Name?: SchemaName;
}
export interface PublishSchemaResponse {
/**
* The ARN that is associated with the published schema. For more information, see arns.
*/
PublishedSchemaArn?: Arn;
}
export interface PutSchemaFromJsonRequest {
/**
* The ARN of the schema to update.
*/
SchemaArn: Arn;
/**
* The replacement JSON schema.
*/
Document: SchemaJsonDocument;
}
export interface PutSchemaFromJsonResponse {
/**
* The ARN of the schema to update.
*/
Arn?: Arn;
}
export type RangeMode = "FIRST"|"LAST"|"LAST_BEFORE_MISSING_VALUES"|"INCLUSIVE"|"EXCLUSIVE"|string;
export interface RemoveFacetFromObjectRequest {
/**
* The ARN of the directory in which the object resides.
*/
DirectoryArn: Arn;
/**
* The facet to remove. See SchemaFacet for details.
*/
SchemaFacet: SchemaFacet;
/**
* A reference to the object to remove the facet from.
*/
ObjectReference: ObjectReference;
}
export interface RemoveFacetFromObjectResponse {
}
export type RequiredAttributeBehavior = "REQUIRED_ALWAYS"|"NOT_REQUIRED"|string;
export interface Rule {
/**
* The type of attribute validation rule.
*/
Type?: RuleType;
/**
* The minimum and maximum parameters that are associated with the rule.
*/
Parameters?: RuleParameterMap;
}
export type RuleKey = string;
export type RuleMap = {[key: string]: Rule};
export type RuleParameterKey = string;
export type RuleParameterMap = {[key: string]: RuleParameterValue};
export type RuleParameterValue = string;
export type RuleType = "BINARY_LENGTH"|"NUMBER_COMPARISON"|"STRING_FROM_SET"|"STRING_LENGTH"|string;
export interface SchemaFacet {
/**
* The ARN of the schema that contains the facet with no minor component. See arns and In-Place Schema Upgrade for a description of when to provide minor versions.
*/
SchemaArn?: Arn;
/**
* The name of the facet.
*/
FacetName?: FacetName;
}
export type SchemaFacetList = SchemaFacet[];
export type SchemaJsonDocument = string;
export type SchemaName = string;
export type SelectorObjectReference = string;
export type StringAttributeValue = string;
export interface Tag {
/**
* The key that is associated with the tag.
*/
Key?: TagKey;
/**
* The value that is associated with the tag.
*/
Value?: TagValue;
}
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagList = Tag[];
export interface TagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource. Tagging is only supported for directories.
*/
ResourceArn: Arn;
/**
* A list of tag key-value pairs.
*/
Tags: TagList;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export type TagsNumberResults = number;
export interface TypedAttributeValue {
/**
* A string data value.
*/
StringValue?: StringAttributeValue;
/**
* A binary data value.
*/
BinaryValue?: BinaryAttributeValue;
/**
* A Boolean data value.
*/
BooleanValue?: BooleanAttributeValue;
/**
* A number data value.
*/
NumberValue?: NumberAttributeValue;
/**
* A date and time value.
*/
DatetimeValue?: DatetimeAttributeValue;
}
export interface TypedAttributeValueRange {
/**
* The inclusive or exclusive range start.
*/
StartMode: RangeMode;
/**
* The value to start the range at.
*/
StartValue?: TypedAttributeValue;
/**
* The inclusive or exclusive range end.
*/
EndMode: RangeMode;
/**
* The attribute value to terminate the range at.
*/
EndValue?: TypedAttributeValue;
}
export interface TypedLinkAttributeDefinition {
/**
* The unique name of the typed link attribute.
*/
Name: AttributeName;
/**
* The type of the attribute.
*/
Type: FacetAttributeType;
/**
* The default value of the attribute (if configured).
*/
DefaultValue?: TypedAttributeValue;
/**
* Whether the attribute is mutable or not.
*/
IsImmutable?: Bool;
/**
* Validation rules that are attached to the attribute definition.
*/
Rules?: RuleMap;
/**
* The required behavior of the TypedLinkAttributeDefinition.
*/
RequiredBehavior: RequiredAttributeBehavior;
}
export type TypedLinkAttributeDefinitionList = TypedLinkAttributeDefinition[];
export interface TypedLinkAttributeRange {
/**
* The unique name of the typed link attribute.
*/
AttributeName?: AttributeName;
/**
* The range of attribute values that are being selected.
*/
Range: TypedAttributeValueRange;
}
export type TypedLinkAttributeRangeList = TypedLinkAttributeRange[];
export interface TypedLinkFacet {
/**
* The unique name of the typed link facet.
*/
Name: TypedLinkName;
/**
* A set of key-value pairs associated with the typed link. Typed link attributes are used when you have data values that are related to the link itself, and not to one of the two objects being linked. Identity attributes also serve to distinguish the link from others of the same type between the same objects.
*/
Attributes: TypedLinkAttributeDefinitionList;
/**
* The set of attributes that distinguish links made from this facet from each other, in the order of significance. Listing typed links can filter on the values of these attributes. See ListOutgoingTypedLinks and ListIncomingTypedLinks for details.
*/
IdentityAttributeOrder: AttributeNameList;
}
export interface TypedLinkFacetAttributeUpdate {
/**
* The attribute to update.
*/
Attribute: TypedLinkAttributeDefinition;
/**
* The action to perform when updating the attribute.
*/
Action: UpdateActionType;
}
export type TypedLinkFacetAttributeUpdateList = TypedLinkFacetAttributeUpdate[];
export type TypedLinkName = string;
export type TypedLinkNameList = TypedLinkName[];
export interface TypedLinkSchemaAndFacetName {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The unique name of the typed link facet.
*/
TypedLinkName: TypedLinkName;
}
export interface TypedLinkSpecifier {
/**
* Identifies the typed link facet that is associated with the typed link.
*/
TypedLinkFacet: TypedLinkSchemaAndFacetName;
/**
* Identifies the source object that the typed link will attach to.
*/
SourceObjectReference: ObjectReference;
/**
* Identifies the target object that the typed link will attach to.
*/
TargetObjectReference: ObjectReference;
/**
* Identifies the attribute value to update.
*/
IdentityAttributeValues: AttributeNameAndValueList;
}
export type TypedLinkSpecifierList = TypedLinkSpecifier[];
export interface UntagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource. Tagging is only supported for directories.
*/
ResourceArn: Arn;
/**
* Keys of the tag that need to be removed from the resource.
*/
TagKeys: TagKeyList;
}
export interface UntagResourceResponse {
}
export type UpdateActionType = "CREATE_OR_UPDATE"|"DELETE"|string;
export interface UpdateFacetRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Facet. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The name of the facet.
*/
Name: FacetName;
/**
* List of attributes that need to be updated in a given schema Facet. Each attribute is followed by AttributeAction, which specifies the type of update operation to perform.
*/
AttributeUpdates?: FacetAttributeUpdateList;
/**
* The object type that is associated with the facet. See CreateFacetRequest$ObjectType for more details.
*/
ObjectType?: ObjectType;
}
export interface UpdateFacetResponse {
}
export interface UpdateLinkAttributesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the updated typed link resides. For more information, see arns or Typed Links.
*/
DirectoryArn: Arn;
/**
* Allows a typed link specifier to be accepted as input.
*/
TypedLinkSpecifier: TypedLinkSpecifier;
/**
* The attributes update structure.
*/
AttributeUpdates: LinkAttributeUpdateList;
}
export interface UpdateLinkAttributesResponse {
}
export interface UpdateObjectAttributesRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the Directory where the object resides. For more information, see arns.
*/
DirectoryArn: Arn;
/**
* The reference that identifies the object.
*/
ObjectReference: ObjectReference;
/**
* The attributes update structure.
*/
AttributeUpdates: ObjectAttributeUpdateList;
}
export interface UpdateObjectAttributesResponse {
/**
* The ObjectIdentifier of the updated object.
*/
ObjectIdentifier?: ObjectIdentifier;
}
export interface UpdateSchemaRequest {
/**
* The Amazon Resource Name (ARN) of the development schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The name of the schema.
*/
Name: SchemaName;
}
export interface UpdateSchemaResponse {
/**
* The ARN that is associated with the updated schema. For more information, see arns.
*/
SchemaArn?: Arn;
}
export interface UpdateTypedLinkFacetRequest {
/**
* The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.
*/
SchemaArn: Arn;
/**
* The unique name of the typed link facet.
*/
Name: TypedLinkName;
/**
* Attributes update structure.
*/
AttributeUpdates: TypedLinkFacetAttributeUpdateList;
/**
* The order of identity attributes for the facet, from most significant to least significant. The ability to filter typed links considers the order that the attributes are defined on the typed link facet. When providing ranges to a typed link selection, any inexact ranges must be specified at the end. Any attributes that do not have a range specified are presumed to match the entire range. Filters are interpreted in the order of the attributes on the typed link facet, not the order in which they are supplied to any API calls. For more information about identity attributes, see Typed Links.
*/
IdentityAttributeOrder: AttributeNameList;
}
export interface UpdateTypedLinkFacetResponse {
}
export interface UpgradeAppliedSchemaRequest {
/**
* The revision of the published schema to upgrade the directory to.
*/
PublishedSchemaArn: Arn;
/**
* The ARN for the directory to which the upgraded schema will be applied.
*/
DirectoryArn: Arn;
/**
* Used for testing whether the major version schemas are backward compatible or not. If schema compatibility fails, an exception would be thrown else the call would succeed but no changes will be saved. This parameter is optional.
*/
DryRun?: Bool;
}
export interface UpgradeAppliedSchemaResponse {
/**
* The ARN of the upgraded schema that is returned as part of the response.
*/
UpgradedSchemaArn?: Arn;
/**
* The ARN of the directory that is returned as part of the response.
*/
DirectoryArn?: Arn;
}
export interface UpgradePublishedSchemaRequest {
/**
* The ARN of the development schema with the changes used for the upgrade.
*/
DevelopmentSchemaArn: Arn;
/**
* The ARN of the published schema to be upgraded.
*/
PublishedSchemaArn: Arn;
/**
* Identifies the minor version of the published schema that will be created. This parameter is NOT optional.
*/
MinorVersion: Version;
/**
* Used for testing whether the Development schema provided is backwards compatible, or not, with the publish schema provided by the user to be upgraded. If schema compatibility fails, an exception would be thrown else the call would succeed. This parameter is optional and defaults to false.
*/
DryRun?: Bool;
}
export interface UpgradePublishedSchemaResponse {
/**
* The ARN of the upgraded schema that is returned as part of the response.
*/
UpgradedSchemaArn?: Arn;
}
export type Version = string;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2016-05-10"|"2016-05-10"|"2017-01-11"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the CloudDirectory client.
*/
export import Types = CloudDirectory;
}
export = CloudDirectory;