@aws-sdk/client-datazone 3.616.0 → 3.618.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +567 -104
  3. package/dist-es/DataZone.js +10 -0
  4. package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
  5. package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
  6. package/dist-es/commands/GetAssetFilterCommand.js +25 -0
  7. package/dist-es/commands/GetListingCommand.js +1 -1
  8. package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
  9. package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
  10. package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
  11. package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
  12. package/dist-es/commands/ListNotificationsCommand.js +1 -1
  13. package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
  14. package/dist-es/commands/index.js +5 -0
  15. package/dist-es/models/models_0.js +49 -64
  16. package/dist-es/models/models_1.js +113 -5
  17. package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
  18. package/dist-es/pagination/index.js +1 -0
  19. package/dist-es/protocols/Aws_restJson1.js +270 -21
  20. package/dist-types/DataZone.d.ts +35 -0
  21. package/dist-types/DataZoneClient.d.ts +7 -2
  22. package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
  23. package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
  24. package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
  25. package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
  26. package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
  27. package/dist-types/commands/GetListingCommand.d.ts +1 -1
  28. package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
  29. package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
  30. package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +2 -1
  31. package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
  32. package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
  34. package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
  35. package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
  36. package/dist-types/commands/SearchCommand.d.ts +0 -20
  37. package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/models/models_0.d.ts +722 -829
  40. package/dist-types/models/models_1.d.ts +1116 -20
  41. package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  44. package/dist-types/ts3.4/DataZone.d.ts +85 -0
  45. package/dist-types/ts3.4/DataZoneClient.d.ts +30 -0
  46. package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
  48. package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
  50. package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
  52. package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +2 -4
  53. package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
  57. package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
  58. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +346 -205
  60. package/dist-types/ts3.4/models/models_1.d.ts +330 -17
  61. package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  63. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  64. package/package.json +1 -1
@@ -1112,6 +1112,539 @@ export interface GetAssetOutput {
1112
1112
  */
1113
1113
  latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
1114
1114
  }
1115
+ /**
1116
+ * <p>The column configuration of the asset filter.</p>
1117
+ * @public
1118
+ */
1119
+ export interface ColumnFilterConfiguration {
1120
+ /**
1121
+ * <p>Specifies whether to include column names.</p>
1122
+ * @public
1123
+ */
1124
+ includedColumnNames?: string[];
1125
+ }
1126
+ /**
1127
+ * <p>Specifies whether the value is equal to an expression.</p>
1128
+ * @public
1129
+ */
1130
+ export interface EqualToExpression {
1131
+ /**
1132
+ * <p>The name of the column.</p>
1133
+ * @public
1134
+ */
1135
+ columnName: string | undefined;
1136
+ /**
1137
+ * <p>The value that might be equal to an expression.</p>
1138
+ * @public
1139
+ */
1140
+ value: string | undefined;
1141
+ }
1142
+ /**
1143
+ * <p>Specifies whether the value is greater than an expression.</p>
1144
+ * @public
1145
+ */
1146
+ export interface GreaterThanExpression {
1147
+ /**
1148
+ * <p>The name of the column.</p>
1149
+ * @public
1150
+ */
1151
+ columnName: string | undefined;
1152
+ /**
1153
+ * <p>The value that might be greater than an expression.</p>
1154
+ * @public
1155
+ */
1156
+ value: string | undefined;
1157
+ }
1158
+ /**
1159
+ * <p>Specifies whether the value is greater than or equal to an expression.</p>
1160
+ * @public
1161
+ */
1162
+ export interface GreaterThanOrEqualToExpression {
1163
+ /**
1164
+ * <p>The name of the column.</p>
1165
+ * @public
1166
+ */
1167
+ columnName: string | undefined;
1168
+ /**
1169
+ * <p>The value that might be greater than or equal to an expression.</p>
1170
+ * @public
1171
+ */
1172
+ value: string | undefined;
1173
+ }
1174
+ /**
1175
+ * <p>Specifies whether values are in the expression.</p>
1176
+ * @public
1177
+ */
1178
+ export interface InExpression {
1179
+ /**
1180
+ * <p>The name of the column.</p>
1181
+ * @public
1182
+ */
1183
+ columnName: string | undefined;
1184
+ /**
1185
+ * <p>The values that might be in the expression.</p>
1186
+ * @public
1187
+ */
1188
+ values: string[] | undefined;
1189
+ }
1190
+ /**
1191
+ * <p>Specifies that the expression is not null.</p>
1192
+ * @public
1193
+ */
1194
+ export interface IsNotNullExpression {
1195
+ /**
1196
+ * <p>The name of the column.</p>
1197
+ * @public
1198
+ */
1199
+ columnName: string | undefined;
1200
+ }
1201
+ /**
1202
+ * <p>Specifies that the expression is null.</p>
1203
+ * @public
1204
+ */
1205
+ export interface IsNullExpression {
1206
+ /**
1207
+ * <p>The name of the column.</p>
1208
+ * @public
1209
+ */
1210
+ columnName: string | undefined;
1211
+ }
1212
+ /**
1213
+ * <p>Specifies that a value is less than an expression.</p>
1214
+ * @public
1215
+ */
1216
+ export interface LessThanExpression {
1217
+ /**
1218
+ * <p>The name of the column.</p>
1219
+ * @public
1220
+ */
1221
+ columnName: string | undefined;
1222
+ /**
1223
+ * <p>The value that might be less than the expression.</p>
1224
+ * @public
1225
+ */
1226
+ value: string | undefined;
1227
+ }
1228
+ /**
1229
+ * <p>Specifies that a value is less than or equal to an expression.</p>
1230
+ * @public
1231
+ */
1232
+ export interface LessThanOrEqualToExpression {
1233
+ /**
1234
+ * <p>The name of the column.</p>
1235
+ * @public
1236
+ */
1237
+ columnName: string | undefined;
1238
+ /**
1239
+ * <p>The value that might be less than or equal to an expression.</p>
1240
+ * @public
1241
+ */
1242
+ value: string | undefined;
1243
+ }
1244
+ /**
1245
+ * <p>Specifies that a value is like the expression.</p>
1246
+ * @public
1247
+ */
1248
+ export interface LikeExpression {
1249
+ /**
1250
+ * <p>The name of the column.</p>
1251
+ * @public
1252
+ */
1253
+ columnName: string | undefined;
1254
+ /**
1255
+ * <p>The value that might be like the expression.</p>
1256
+ * @public
1257
+ */
1258
+ value: string | undefined;
1259
+ }
1260
+ /**
1261
+ * <p>Specifies that a value is not equal to the expression.</p>
1262
+ * @public
1263
+ */
1264
+ export interface NotEqualToExpression {
1265
+ /**
1266
+ * <p>The name of the column.</p>
1267
+ * @public
1268
+ */
1269
+ columnName: string | undefined;
1270
+ /**
1271
+ * <p>The value that might not be equal to the expression.</p>
1272
+ * @public
1273
+ */
1274
+ value: string | undefined;
1275
+ }
1276
+ /**
1277
+ * <p>Specifies that a value is not in the expression.</p>
1278
+ * @public
1279
+ */
1280
+ export interface NotInExpression {
1281
+ /**
1282
+ * <p>The name of the column.</p>
1283
+ * @public
1284
+ */
1285
+ columnName: string | undefined;
1286
+ /**
1287
+ * <p>The value that might not be in the expression.</p>
1288
+ * @public
1289
+ */
1290
+ values: string[] | undefined;
1291
+ }
1292
+ /**
1293
+ * <p>Specifies that a value might be not like the expression.</p>
1294
+ * @public
1295
+ */
1296
+ export interface NotLikeExpression {
1297
+ /**
1298
+ * <p>The name of the column.</p>
1299
+ * @public
1300
+ */
1301
+ columnName: string | undefined;
1302
+ /**
1303
+ * <p>The value that might not be like the expression.</p>
1304
+ * @public
1305
+ */
1306
+ value: string | undefined;
1307
+ }
1308
+ /**
1309
+ * <p>The row filter expression.</p>
1310
+ * @public
1311
+ */
1312
+ export type RowFilterExpression = RowFilterExpression.EqualToMember | RowFilterExpression.GreaterThanMember | RowFilterExpression.GreaterThanOrEqualToMember | RowFilterExpression.InMember | RowFilterExpression.IsNotNullMember | RowFilterExpression.IsNullMember | RowFilterExpression.LessThanMember | RowFilterExpression.LessThanOrEqualToMember | RowFilterExpression.LikeMember | RowFilterExpression.NotEqualToMember | RowFilterExpression.NotInMember | RowFilterExpression.NotLikeMember | RowFilterExpression.$UnknownMember;
1313
+ /**
1314
+ * @public
1315
+ */
1316
+ export declare namespace RowFilterExpression {
1317
+ /**
1318
+ * <p>The 'equal to' clause of the row filter expression.</p>
1319
+ * @public
1320
+ */
1321
+ interface EqualToMember {
1322
+ equalTo: EqualToExpression;
1323
+ notEqualTo?: never;
1324
+ greaterThan?: never;
1325
+ lessThan?: never;
1326
+ greaterThanOrEqualTo?: never;
1327
+ lessThanOrEqualTo?: never;
1328
+ isNull?: never;
1329
+ isNotNull?: never;
1330
+ in?: never;
1331
+ notIn?: never;
1332
+ like?: never;
1333
+ notLike?: never;
1334
+ $unknown?: never;
1335
+ }
1336
+ /**
1337
+ * <p>The 'no equal to' clause of the row filter expression.</p>
1338
+ * @public
1339
+ */
1340
+ interface NotEqualToMember {
1341
+ equalTo?: never;
1342
+ notEqualTo: NotEqualToExpression;
1343
+ greaterThan?: never;
1344
+ lessThan?: never;
1345
+ greaterThanOrEqualTo?: never;
1346
+ lessThanOrEqualTo?: never;
1347
+ isNull?: never;
1348
+ isNotNull?: never;
1349
+ in?: never;
1350
+ notIn?: never;
1351
+ like?: never;
1352
+ notLike?: never;
1353
+ $unknown?: never;
1354
+ }
1355
+ /**
1356
+ * <p>The 'greater than' clause of the row filter expression.</p>
1357
+ * @public
1358
+ */
1359
+ interface GreaterThanMember {
1360
+ equalTo?: never;
1361
+ notEqualTo?: never;
1362
+ greaterThan: GreaterThanExpression;
1363
+ lessThan?: never;
1364
+ greaterThanOrEqualTo?: never;
1365
+ lessThanOrEqualTo?: never;
1366
+ isNull?: never;
1367
+ isNotNull?: never;
1368
+ in?: never;
1369
+ notIn?: never;
1370
+ like?: never;
1371
+ notLike?: never;
1372
+ $unknown?: never;
1373
+ }
1374
+ /**
1375
+ * <p>The 'less than' clause of the row filter expression.</p>
1376
+ * @public
1377
+ */
1378
+ interface LessThanMember {
1379
+ equalTo?: never;
1380
+ notEqualTo?: never;
1381
+ greaterThan?: never;
1382
+ lessThan: LessThanExpression;
1383
+ greaterThanOrEqualTo?: never;
1384
+ lessThanOrEqualTo?: never;
1385
+ isNull?: never;
1386
+ isNotNull?: never;
1387
+ in?: never;
1388
+ notIn?: never;
1389
+ like?: never;
1390
+ notLike?: never;
1391
+ $unknown?: never;
1392
+ }
1393
+ /**
1394
+ * <p>The 'greater than or equal to' clause of the filter expression.</p>
1395
+ * @public
1396
+ */
1397
+ interface GreaterThanOrEqualToMember {
1398
+ equalTo?: never;
1399
+ notEqualTo?: never;
1400
+ greaterThan?: never;
1401
+ lessThan?: never;
1402
+ greaterThanOrEqualTo: GreaterThanOrEqualToExpression;
1403
+ lessThanOrEqualTo?: never;
1404
+ isNull?: never;
1405
+ isNotNull?: never;
1406
+ in?: never;
1407
+ notIn?: never;
1408
+ like?: never;
1409
+ notLike?: never;
1410
+ $unknown?: never;
1411
+ }
1412
+ /**
1413
+ * <p>The 'less than or equal to' clause of the row filter expression.</p>
1414
+ * @public
1415
+ */
1416
+ interface LessThanOrEqualToMember {
1417
+ equalTo?: never;
1418
+ notEqualTo?: never;
1419
+ greaterThan?: never;
1420
+ lessThan?: never;
1421
+ greaterThanOrEqualTo?: never;
1422
+ lessThanOrEqualTo: LessThanOrEqualToExpression;
1423
+ isNull?: never;
1424
+ isNotNull?: never;
1425
+ in?: never;
1426
+ notIn?: never;
1427
+ like?: never;
1428
+ notLike?: never;
1429
+ $unknown?: never;
1430
+ }
1431
+ /**
1432
+ * <p>The 'is null' clause of the row filter expression.</p>
1433
+ * @public
1434
+ */
1435
+ interface IsNullMember {
1436
+ equalTo?: never;
1437
+ notEqualTo?: never;
1438
+ greaterThan?: never;
1439
+ lessThan?: never;
1440
+ greaterThanOrEqualTo?: never;
1441
+ lessThanOrEqualTo?: never;
1442
+ isNull: IsNullExpression;
1443
+ isNotNull?: never;
1444
+ in?: never;
1445
+ notIn?: never;
1446
+ like?: never;
1447
+ notLike?: never;
1448
+ $unknown?: never;
1449
+ }
1450
+ /**
1451
+ * <p>The 'is not null' clause of the row filter expression.</p>
1452
+ * @public
1453
+ */
1454
+ interface IsNotNullMember {
1455
+ equalTo?: never;
1456
+ notEqualTo?: never;
1457
+ greaterThan?: never;
1458
+ lessThan?: never;
1459
+ greaterThanOrEqualTo?: never;
1460
+ lessThanOrEqualTo?: never;
1461
+ isNull?: never;
1462
+ isNotNull: IsNotNullExpression;
1463
+ in?: never;
1464
+ notIn?: never;
1465
+ like?: never;
1466
+ notLike?: never;
1467
+ $unknown?: never;
1468
+ }
1469
+ /**
1470
+ * <p>The 'in' clause of the row filter expression.</p>
1471
+ * @public
1472
+ */
1473
+ interface InMember {
1474
+ equalTo?: never;
1475
+ notEqualTo?: never;
1476
+ greaterThan?: never;
1477
+ lessThan?: never;
1478
+ greaterThanOrEqualTo?: never;
1479
+ lessThanOrEqualTo?: never;
1480
+ isNull?: never;
1481
+ isNotNull?: never;
1482
+ in: InExpression;
1483
+ notIn?: never;
1484
+ like?: never;
1485
+ notLike?: never;
1486
+ $unknown?: never;
1487
+ }
1488
+ /**
1489
+ * <p>The 'not in' clause of the row filter expression.</p>
1490
+ * @public
1491
+ */
1492
+ interface NotInMember {
1493
+ equalTo?: never;
1494
+ notEqualTo?: never;
1495
+ greaterThan?: never;
1496
+ lessThan?: never;
1497
+ greaterThanOrEqualTo?: never;
1498
+ lessThanOrEqualTo?: never;
1499
+ isNull?: never;
1500
+ isNotNull?: never;
1501
+ in?: never;
1502
+ notIn: NotInExpression;
1503
+ like?: never;
1504
+ notLike?: never;
1505
+ $unknown?: never;
1506
+ }
1507
+ /**
1508
+ * <p>The 'like' clause of the row filter expression.</p>
1509
+ * @public
1510
+ */
1511
+ interface LikeMember {
1512
+ equalTo?: never;
1513
+ notEqualTo?: never;
1514
+ greaterThan?: never;
1515
+ lessThan?: never;
1516
+ greaterThanOrEqualTo?: never;
1517
+ lessThanOrEqualTo?: never;
1518
+ isNull?: never;
1519
+ isNotNull?: never;
1520
+ in?: never;
1521
+ notIn?: never;
1522
+ like: LikeExpression;
1523
+ notLike?: never;
1524
+ $unknown?: never;
1525
+ }
1526
+ /**
1527
+ * <p>The 'not like' clause of the row filter expression.</p>
1528
+ * @public
1529
+ */
1530
+ interface NotLikeMember {
1531
+ equalTo?: never;
1532
+ notEqualTo?: never;
1533
+ greaterThan?: never;
1534
+ lessThan?: never;
1535
+ greaterThanOrEqualTo?: never;
1536
+ lessThanOrEqualTo?: never;
1537
+ isNull?: never;
1538
+ isNotNull?: never;
1539
+ in?: never;
1540
+ notIn?: never;
1541
+ like?: never;
1542
+ notLike: NotLikeExpression;
1543
+ $unknown?: never;
1544
+ }
1545
+ /**
1546
+ * @public
1547
+ */
1548
+ interface $UnknownMember {
1549
+ equalTo?: never;
1550
+ notEqualTo?: never;
1551
+ greaterThan?: never;
1552
+ lessThan?: never;
1553
+ greaterThanOrEqualTo?: never;
1554
+ lessThanOrEqualTo?: never;
1555
+ isNull?: never;
1556
+ isNotNull?: never;
1557
+ in?: never;
1558
+ notIn?: never;
1559
+ like?: never;
1560
+ notLike?: never;
1561
+ $unknown: [string, any];
1562
+ }
1563
+ interface Visitor<T> {
1564
+ equalTo: (value: EqualToExpression) => T;
1565
+ notEqualTo: (value: NotEqualToExpression) => T;
1566
+ greaterThan: (value: GreaterThanExpression) => T;
1567
+ lessThan: (value: LessThanExpression) => T;
1568
+ greaterThanOrEqualTo: (value: GreaterThanOrEqualToExpression) => T;
1569
+ lessThanOrEqualTo: (value: LessThanOrEqualToExpression) => T;
1570
+ isNull: (value: IsNullExpression) => T;
1571
+ isNotNull: (value: IsNotNullExpression) => T;
1572
+ in: (value: InExpression) => T;
1573
+ notIn: (value: NotInExpression) => T;
1574
+ like: (value: LikeExpression) => T;
1575
+ notLike: (value: NotLikeExpression) => T;
1576
+ _: (name: string, value: any) => T;
1577
+ }
1578
+ const visit: <T>(value: RowFilterExpression, visitor: Visitor<T>) => T;
1579
+ }
1580
+ /**
1581
+ * @public
1582
+ * @enum
1583
+ */
1584
+ export declare const FilterStatus: {
1585
+ readonly INVALID: "INVALID";
1586
+ readonly VALID: "VALID";
1587
+ };
1588
+ /**
1589
+ * @public
1590
+ */
1591
+ export type FilterStatus = (typeof FilterStatus)[keyof typeof FilterStatus];
1592
+ /**
1593
+ * <p>The summary of the asset filter.</p>
1594
+ * @public
1595
+ */
1596
+ export interface AssetFilterSummary {
1597
+ /**
1598
+ * <p>The ID of the asset filter.</p>
1599
+ * @public
1600
+ */
1601
+ id: string | undefined;
1602
+ /**
1603
+ * <p>The ID of the domain where the asset filter lives.</p>
1604
+ * @public
1605
+ */
1606
+ domainId: string | undefined;
1607
+ /**
1608
+ * <p>The ID of the data asset.</p>
1609
+ * @public
1610
+ */
1611
+ assetId: string | undefined;
1612
+ /**
1613
+ * <p>The name of the asset filter.</p>
1614
+ * @public
1615
+ */
1616
+ name: string | undefined;
1617
+ /**
1618
+ * <p>The description of the asset filter.</p>
1619
+ * @public
1620
+ */
1621
+ description?: string;
1622
+ /**
1623
+ * <p>The status of the asset filter.</p>
1624
+ * @public
1625
+ */
1626
+ status?: FilterStatus;
1627
+ /**
1628
+ * <p>The effective column names of the asset filter.</p>
1629
+ * @public
1630
+ */
1631
+ effectiveColumnNames?: string[];
1632
+ /**
1633
+ * <p>The effective row filter of the asset filter.</p>
1634
+ * @public
1635
+ */
1636
+ effectiveRowFilter?: string;
1637
+ /**
1638
+ * <p>The timestamp at which the asset filter was created.</p>
1639
+ * @public
1640
+ */
1641
+ createdAt?: Date;
1642
+ /**
1643
+ * <p>The error message that is displayed if the action does not succeed.</p>
1644
+ * @public
1645
+ */
1646
+ errorMessage?: string;
1647
+ }
1115
1648
  /**
1116
1649
  * <p>The additional attributes of an inventory asset.</p>
1117
1650
  * @public
@@ -4770,111 +5303,28 @@ export declare const DataAssetActivityStatus: {
4770
5303
  */
4771
5304
  export type DataAssetActivityStatus = (typeof DataAssetActivityStatus)[keyof typeof DataAssetActivityStatus];
4772
5305
  /**
4773
- * <p/>
4774
- *
4775
- * @deprecated This structure is deprecated.
4776
- * @public
4777
- */
4778
- export interface DataProductItem {
4779
- /**
4780
- * <p/>
4781
- * @public
4782
- */
4783
- itemId?: string;
4784
- /**
4785
- * <p/>
4786
- * @public
4787
- */
4788
- domainId?: string;
4789
- }
4790
- /**
4791
- * <p/>
4792
- *
4793
- * @deprecated This structure is deprecated.
4794
5306
  * @public
4795
5307
  */
4796
- export interface DataProductSummary {
5308
+ export interface DeleteDataSourceInput {
4797
5309
  /**
4798
- * <p/>
5310
+ * <p>The ID of the Amazon DataZone domain in which the data source is deleted.</p>
4799
5311
  * @public
4800
5312
  */
4801
- domainId: string | undefined;
5313
+ domainIdentifier: string | undefined;
4802
5314
  /**
4803
- * <p/>
5315
+ * <p>The identifier of the data source that is deleted.</p>
4804
5316
  * @public
4805
5317
  */
4806
- id: string | undefined;
5318
+ identifier: string | undefined;
4807
5319
  /**
4808
- * <p/>
5320
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
5321
+ * request.</p>
4809
5322
  * @public
4810
5323
  */
4811
- name: string | undefined;
5324
+ clientToken?: string;
4812
5325
  /**
4813
- * <p/>
4814
- * @public
4815
- */
4816
- owningProjectId: string | undefined;
4817
- /**
4818
- * <p/>
4819
- * @public
4820
- */
4821
- description?: string;
4822
- /**
4823
- * <p/>
4824
- * @public
4825
- */
4826
- glossaryTerms?: string[];
4827
- /**
4828
- * @deprecated
4829
- *
4830
- * <p/>
4831
- * @public
4832
- */
4833
- dataProductItems?: DataProductItem[];
4834
- /**
4835
- * <p/>
4836
- * @public
4837
- */
4838
- createdAt?: Date;
4839
- /**
4840
- * <p/>
4841
- * @public
4842
- */
4843
- createdBy?: string;
4844
- /**
4845
- * <p/>
4846
- * @public
4847
- */
4848
- updatedAt?: Date;
4849
- /**
4850
- * <p/>
4851
- * @public
4852
- */
4853
- updatedBy?: string;
4854
- }
4855
- /**
4856
- * @public
4857
- */
4858
- export interface DeleteDataSourceInput {
4859
- /**
4860
- * <p>The ID of the Amazon DataZone domain in which the data source is deleted.</p>
4861
- * @public
4862
- */
4863
- domainIdentifier: string | undefined;
4864
- /**
4865
- * <p>The identifier of the data source that is deleted.</p>
4866
- * @public
4867
- */
4868
- identifier: string | undefined;
4869
- /**
4870
- * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
4871
- * request.</p>
4872
- * @public
4873
- */
4874
- clientToken?: string;
4875
- /**
4876
- * <p>Specifies that the granted permissions are retained in case of a self-subscribe
4877
- * functionality failure for a data source.</p>
5326
+ * <p>Specifies that the granted permissions are retained in case of a self-subscribe
5327
+ * functionality failure for a data source.</p>
4878
5328
  * @public
4879
5329
  */
4880
5330
  retainPermissionsOnRevokeFailure?: boolean;
@@ -5976,6 +6426,26 @@ export interface DataSourceRunActivity {
5976
6426
  */
5977
6427
  updatedAt: Date | undefined;
5978
6428
  }
6429
+ /**
6430
+ * @public
6431
+ */
6432
+ export interface DeleteAssetFilterInput {
6433
+ /**
6434
+ * <p>The ID of the domain where you want to delete an asset filter.</p>
6435
+ * @public
6436
+ */
6437
+ domainIdentifier: string | undefined;
6438
+ /**
6439
+ * <p>The ID of the data asset.</p>
6440
+ * @public
6441
+ */
6442
+ assetIdentifier: string | undefined;
6443
+ /**
6444
+ * <p>The ID of the asset filter that you want to delete.</p>
6445
+ * @public
6446
+ */
6447
+ identifier: string | undefined;
6448
+ }
5979
6449
  /**
5980
6450
  * @public
5981
6451
  */
@@ -6577,6 +7047,54 @@ export interface GetEnvironmentBlueprintConfigurationInput {
6577
7047
  */
6578
7048
  environmentBlueprintIdentifier: string | undefined;
6579
7049
  }
7050
+ /**
7051
+ * <p>The Lake Formation configuration of the Data Lake blueprint.</p>
7052
+ * @public
7053
+ */
7054
+ export interface LakeFormationConfiguration {
7055
+ /**
7056
+ * <p>The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for
7057
+ * Data Lake using AWS Lake Formation hybrid access mode.</p>
7058
+ * @public
7059
+ */
7060
+ locationRegistrationRole?: string;
7061
+ /**
7062
+ * <p>Specifies certain Amazon S3 locations if you do not want Amazon DataZone to
7063
+ * automatically register them in hybrid mode. </p>
7064
+ * @public
7065
+ */
7066
+ locationRegistrationExcludeS3Locations?: string[];
7067
+ }
7068
+ /**
7069
+ * <p>The provisioning configuration of the blueprint.</p>
7070
+ * @public
7071
+ */
7072
+ export type ProvisioningConfiguration = ProvisioningConfiguration.LakeFormationConfigurationMember | ProvisioningConfiguration.$UnknownMember;
7073
+ /**
7074
+ * @public
7075
+ */
7076
+ export declare namespace ProvisioningConfiguration {
7077
+ /**
7078
+ * <p>The Lake Formation configuration of the Data Lake blueprint.</p>
7079
+ * @public
7080
+ */
7081
+ interface LakeFormationConfigurationMember {
7082
+ lakeFormationConfiguration: LakeFormationConfiguration;
7083
+ $unknown?: never;
7084
+ }
7085
+ /**
7086
+ * @public
7087
+ */
7088
+ interface $UnknownMember {
7089
+ lakeFormationConfiguration?: never;
7090
+ $unknown: [string, any];
7091
+ }
7092
+ interface Visitor<T> {
7093
+ lakeFormationConfiguration: (value: LakeFormationConfiguration) => T;
7094
+ _: (name: string, value: any) => T;
7095
+ }
7096
+ const visit: <T>(value: ProvisioningConfiguration, visitor: Visitor<T>) => T;
7097
+ }
6580
7098
  /**
6581
7099
  * @public
6582
7100
  */
@@ -6621,6 +7139,11 @@ export interface GetEnvironmentBlueprintConfigurationOutput {
6621
7139
  * @public
6622
7140
  */
6623
7141
  updatedAt?: Date;
7142
+ /**
7143
+ * <p>The provisioning configuration of a blueprint.</p>
7144
+ * @public
7145
+ */
7146
+ provisioningConfigurations?: ProvisioningConfiguration[];
6624
7147
  }
6625
7148
  /**
6626
7149
  * @public
@@ -6700,6 +7223,11 @@ export interface EnvironmentBlueprintConfigurationItem {
6700
7223
  * @public
6701
7224
  */
6702
7225
  updatedAt?: Date;
7226
+ /**
7227
+ * <p>The provisioning configuration of a blueprint.</p>
7228
+ * @public
7229
+ */
7230
+ provisioningConfigurations?: ProvisioningConfiguration[];
6703
7231
  }
6704
7232
  /**
6705
7233
  * @public
@@ -6756,6 +7284,11 @@ export interface PutEnvironmentBlueprintConfigurationInput {
6756
7284
  * @public
6757
7285
  */
6758
7286
  regionalParameters?: Record<string, Record<string, string>>;
7287
+ /**
7288
+ * <p>The provisioning configuration of a blueprint.</p>
7289
+ * @public
7290
+ */
7291
+ provisioningConfigurations?: ProvisioningConfiguration[];
6759
7292
  }
6760
7293
  /**
6761
7294
  * @public
@@ -6801,6 +7334,11 @@ export interface PutEnvironmentBlueprintConfigurationOutput {
6801
7334
  * @public
6802
7335
  */
6803
7336
  updatedAt?: Date;
7337
+ /**
7338
+ * <p>The provisioning configuration of a blueprint.</p>
7339
+ * @public
7340
+ */
7341
+ provisioningConfigurations?: ProvisioningConfiguration[];
6804
7342
  }
6805
7343
  /**
6806
7344
  * @public
@@ -6924,6 +7462,26 @@ export interface GetFormTypeOutput {
6924
7462
  */
6925
7463
  imports?: Import[];
6926
7464
  }
7465
+ /**
7466
+ * @public
7467
+ */
7468
+ export interface GetAssetFilterInput {
7469
+ /**
7470
+ * <p>The ID of the domain where you want to get an asset filter.</p>
7471
+ * @public
7472
+ */
7473
+ domainIdentifier: string | undefined;
7474
+ /**
7475
+ * <p>The ID of the data asset.</p>
7476
+ * @public
7477
+ */
7478
+ assetIdentifier: string | undefined;
7479
+ /**
7480
+ * <p>The ID of the asset filter.</p>
7481
+ * @public
7482
+ */
7483
+ identifier: string | undefined;
7484
+ }
6927
7485
  /**
6928
7486
  * @public
6929
7487
  */
@@ -8352,6 +8910,65 @@ export interface UpdateGlossaryTermOutput {
8352
8910
  */
8353
8911
  termRelations?: TermRelations;
8354
8912
  }
8913
+ /**
8914
+ * @public
8915
+ */
8916
+ export interface ListAssetFiltersInput {
8917
+ /**
8918
+ * <p>The ID of the domain where you want to list asset filters.</p>
8919
+ * @public
8920
+ */
8921
+ domainIdentifier: string | undefined;
8922
+ /**
8923
+ * <p>The ID of the data asset.</p>
8924
+ * @public
8925
+ */
8926
+ assetIdentifier: string | undefined;
8927
+ /**
8928
+ * <p>The status of the asset filter.</p>
8929
+ * @public
8930
+ */
8931
+ status?: FilterStatus;
8932
+ /**
8933
+ * <p>When the number of asset filters is greater than the default value for the
8934
+ * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8935
+ * <code>MaxResults</code> that is less than the number of asset filters, the response
8936
+ * includes a pagination token named <code>NextToken</code>. You can specify this
8937
+ * <code>NextToken</code> value in a subsequent call to <code>ListAssetFilters</code> to
8938
+ * list the next set of asset filters.</p>
8939
+ * @public
8940
+ */
8941
+ nextToken?: string;
8942
+ /**
8943
+ * <p>The maximum number of asset filters to return in a single call to
8944
+ * <code>ListAssetFilters</code>. When the number of asset filters to be listed is greater
8945
+ * than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code>
8946
+ * value that you can use in a subsequent call to <code>ListAssetFilters</code> to list the
8947
+ * next set of asset filters.</p>
8948
+ * @public
8949
+ */
8950
+ maxResults?: number;
8951
+ }
8952
+ /**
8953
+ * @public
8954
+ */
8955
+ export interface ListAssetFiltersOutput {
8956
+ /**
8957
+ * <p>The results of the <code>ListAssetFilters</code> action.</p>
8958
+ * @public
8959
+ */
8960
+ items: AssetFilterSummary[] | undefined;
8961
+ /**
8962
+ * <p>When the number of asset filters is greater than the default value for the
8963
+ * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8964
+ * <code>MaxResults</code> that is less than the number of asset filters, the response
8965
+ * includes a pagination token named <code>NextToken</code>. You can specify this
8966
+ * <code>NextToken</code> value in a subsequent call to <code>ListAssetFilters</code> to
8967
+ * list the next set of asset filters.</p>
8968
+ * @public
8969
+ */
8970
+ nextToken?: string;
8971
+ }
8355
8972
  /**
8356
8973
  * @public
8357
8974
  */
@@ -8639,711 +9256,15 @@ export interface EnvironmentBlueprintSummary {
8639
9256
  updatedAt?: Date;
8640
9257
  }
8641
9258
  /**
8642
- * @public
9259
+ * @internal
8643
9260
  */
8644
- export interface ListEnvironmentBlueprintsOutput {
8645
- /**
8646
- * <p>The results of the <code>ListEnvironmentBlueprints</code> action.</p>
8647
- * @public
8648
- */
8649
- items: EnvironmentBlueprintSummary[] | undefined;
8650
- /**
8651
- * <p>When the number of blueprints in the environment is greater than the default value for
8652
- * the <code>MaxResults</code> parameter, or if you explicitly specify a value for
8653
- * <code>MaxResults</code> that is less than the number of blueprints in the environment,
8654
- * the response includes a pagination token named <code>NextToken</code>. You can specify this
8655
- * <code>NextToken</code> value in a subsequent call to
8656
- * <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
8657
- * @public
8658
- */
8659
- nextToken?: string;
8660
- }
9261
+ export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
8661
9262
  /**
8662
- * @public
9263
+ * @internal
8663
9264
  */
8664
- export interface ListEnvironmentProfilesInput {
8665
- /**
8666
- * <p>The identifier of the Amazon DataZone domain.</p>
8667
- * @public
8668
- */
8669
- domainIdentifier: string | undefined;
8670
- /**
8671
- * <p>The identifier of the Amazon Web Services account where you want to list environment
8672
- * profiles.</p>
8673
- * @public
8674
- */
8675
- awsAccountId?: string;
8676
- /**
8677
- * <p>The Amazon Web Services region where you want to list environment profiles.</p>
8678
- * @public
8679
- */
8680
- awsAccountRegion?: string;
8681
- /**
8682
- * <p>The identifier of the blueprint that was used to create the environment profiles that
8683
- * you want to list.</p>
8684
- * @public
8685
- */
8686
- environmentBlueprintIdentifier?: string;
8687
- /**
8688
- * <p>The identifier of the Amazon DataZone project.</p>
8689
- * @public
8690
- */
8691
- projectIdentifier?: string;
8692
- /**
8693
- * <p/>
8694
- * @public
8695
- */
8696
- name?: string;
8697
- /**
8698
- * <p>When the number of environment profiles is greater than the default value for the
8699
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8700
- * <code>MaxResults</code> that is less than the number of environment profiles, the
8701
- * response includes a pagination token named <code>NextToken</code>. You can specify this
8702
- * <code>NextToken</code> value in a subsequent call to
8703
- * <code>ListEnvironmentProfiles</code> to list the next set of environment
8704
- * profiles.</p>
8705
- * @public
8706
- */
8707
- nextToken?: string;
8708
- /**
8709
- * <p>The maximum number of environment profiles to return in a single call to
8710
- * <code>ListEnvironmentProfiles</code>. When the number of environment profiles to be
8711
- * listed is greater than the value of <code>MaxResults</code>, the response contains a
8712
- * <code>NextToken</code> value that you can use in a subsequent call to
8713
- * <code>ListEnvironmentProfiles</code> to list the next set of environment
8714
- * profiles.</p>
8715
- * @public
8716
- */
8717
- maxResults?: number;
8718
- }
9265
+ export declare const AcceptPredictionsInputFilterSensitiveLog: (obj: AcceptPredictionsInput) => any;
8719
9266
  /**
8720
- * <p>The details of an environment profile.</p>
8721
- * @public
8722
- */
8723
- export interface EnvironmentProfileSummary {
8724
- /**
8725
- * <p>The identifier of the environment profile.</p>
8726
- * @public
8727
- */
8728
- id: string | undefined;
8729
- /**
8730
- * <p>The identifier of the Amazon DataZone domain in which the environment profile exists.</p>
8731
- * @public
8732
- */
8733
- domainId: string | undefined;
8734
- /**
8735
- * <p>The identifier of an Amazon Web Services account in which an environment profile exists.</p>
8736
- * @public
8737
- */
8738
- awsAccountId?: string;
8739
- /**
8740
- * <p>The Amazon Web Services Region in which an environment profile exists.</p>
8741
- * @public
8742
- */
8743
- awsAccountRegion?: string;
8744
- /**
8745
- * <p>The Amazon DataZone user who created the environment profile.</p>
8746
- * @public
8747
- */
8748
- createdBy: string | undefined;
8749
- /**
8750
- * <p>The timestamp of when an environment profile was created.</p>
8751
- * @public
8752
- */
8753
- createdAt?: Date;
8754
- /**
8755
- * <p>The timestamp of when the environment profile was updated.</p>
8756
- * @public
8757
- */
8758
- updatedAt?: Date;
8759
- /**
8760
- * <p>The name of the environment profile.</p>
8761
- * @public
8762
- */
8763
- name: string | undefined;
8764
- /**
8765
- * <p>The description of the environment profile.</p>
8766
- * @public
8767
- */
8768
- description?: string;
8769
- /**
8770
- * <p>The identifier of a blueprint with which an environment profile is created.</p>
8771
- * @public
8772
- */
8773
- environmentBlueprintId: string | undefined;
8774
- /**
8775
- * <p>The identifier of a project in which an environment profile exists.</p>
8776
- * @public
8777
- */
8778
- projectId?: string;
8779
- }
8780
- /**
8781
- * @public
8782
- */
8783
- export interface ListEnvironmentProfilesOutput {
8784
- /**
8785
- * <p>The results of the <code>ListEnvironmentProfiles</code> action. </p>
8786
- * @public
8787
- */
8788
- items: EnvironmentProfileSummary[] | undefined;
8789
- /**
8790
- * <p>When the number of environment profiles is greater than the default value for the
8791
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8792
- * <code>MaxResults</code> that is less than the number of environment profiles, the
8793
- * response includes a pagination token named <code>NextToken</code>. You can specify this
8794
- * <code>NextToken</code> value in a subsequent call to
8795
- * <code>ListEnvironmentProfiles</code> to list the next set of environment
8796
- * profiles.</p>
8797
- * @public
8798
- */
8799
- nextToken?: string;
8800
- }
8801
- /**
8802
- * @public
8803
- */
8804
- export interface ListEnvironmentsInput {
8805
- /**
8806
- * <p>The identifier of the Amazon DataZone domain.</p>
8807
- * @public
8808
- */
8809
- domainIdentifier: string | undefined;
8810
- /**
8811
- * <p>The identifier of the Amazon Web Services account where you want to list
8812
- * environments.</p>
8813
- * @public
8814
- */
8815
- awsAccountId?: string;
8816
- /**
8817
- * <p>The status of the environments that you want to list.</p>
8818
- * @public
8819
- */
8820
- status?: EnvironmentStatus;
8821
- /**
8822
- * <p>The Amazon Web Services region where you want to list environments.</p>
8823
- * @public
8824
- */
8825
- awsAccountRegion?: string;
8826
- /**
8827
- * <p>The identifier of the Amazon DataZone project.</p>
8828
- * @public
8829
- */
8830
- projectIdentifier: string | undefined;
8831
- /**
8832
- * <p>The identifier of the environment profile.</p>
8833
- * @public
8834
- */
8835
- environmentProfileIdentifier?: string;
8836
- /**
8837
- * <p>The identifier of the Amazon DataZone blueprint.</p>
8838
- * @public
8839
- */
8840
- environmentBlueprintIdentifier?: string;
8841
- /**
8842
- * <p>The provider of the environment.</p>
8843
- * @public
8844
- */
8845
- provider?: string;
8846
- /**
8847
- * <p>The name of the environment.</p>
8848
- * @public
8849
- */
8850
- name?: string;
8851
- /**
8852
- * <p>The maximum number of environments to return in a single call to
8853
- * <code>ListEnvironments</code>. When the number of environments to be listed is greater
8854
- * than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code>
8855
- * value that you can use in a subsequent call to <code>ListEnvironments</code> to list the
8856
- * next set of environments.</p>
8857
- * @public
8858
- */
8859
- maxResults?: number;
8860
- /**
8861
- * <p>When the number of environments is greater than the default value for the
8862
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8863
- * <code>MaxResults</code> that is less than the number of environments, the response
8864
- * includes a pagination token named <code>NextToken</code>. You can specify this
8865
- * <code>NextToken</code> value in a subsequent call to <code>ListEnvironments</code> to
8866
- * list the next set of environments.</p>
8867
- * @public
8868
- */
8869
- nextToken?: string;
8870
- }
8871
- /**
8872
- * <p>The details of an environment.</p>
8873
- * @public
8874
- */
8875
- export interface EnvironmentSummary {
8876
- /**
8877
- * <p>The identifier of the project in which the environment exists.</p>
8878
- * @public
8879
- */
8880
- projectId: string | undefined;
8881
- /**
8882
- * <p>The identifier of the environment.</p>
8883
- * @public
8884
- */
8885
- id?: string;
8886
- /**
8887
- * <p>The identifier of the Amazon DataZone domain in which the environment exists.</p>
8888
- * @public
8889
- */
8890
- domainId: string | undefined;
8891
- /**
8892
- * <p>The Amazon DataZone user who created the environment.</p>
8893
- * @public
8894
- */
8895
- createdBy: string | undefined;
8896
- /**
8897
- * <p>The timestamp of when the environment was created.</p>
8898
- * @public
8899
- */
8900
- createdAt?: Date;
8901
- /**
8902
- * <p>The timestamp of when the environment was updated.</p>
8903
- * @public
8904
- */
8905
- updatedAt?: Date;
8906
- /**
8907
- * <p>The name of the environment.</p>
8908
- * @public
8909
- */
8910
- name: string | undefined;
8911
- /**
8912
- * <p>The description of the environment.</p>
8913
- * @public
8914
- */
8915
- description?: string;
8916
- /**
8917
- * <p>The identifier of the environment profile with which the environment was created.</p>
8918
- * @public
8919
- */
8920
- environmentProfileId?: string;
8921
- /**
8922
- * <p>The identifier of the Amazon Web Services account in which an environment exists.</p>
8923
- * @public
8924
- */
8925
- awsAccountId?: string;
8926
- /**
8927
- * <p>The Amazon Web Services Region in which an environment exists.</p>
8928
- * @public
8929
- */
8930
- awsAccountRegion?: string;
8931
- /**
8932
- * <p>The provider of the environment.</p>
8933
- * @public
8934
- */
8935
- provider: string | undefined;
8936
- /**
8937
- * <p>The status of the environment.</p>
8938
- * @public
8939
- */
8940
- status?: EnvironmentStatus;
8941
- }
8942
- /**
8943
- * @public
8944
- */
8945
- export interface ListEnvironmentsOutput {
8946
- /**
8947
- * <p>The results of the <code>ListEnvironments</code> action.</p>
8948
- * @public
8949
- */
8950
- items: EnvironmentSummary[] | undefined;
8951
- /**
8952
- * <p>When the number of environments is greater than the default value for the
8953
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
8954
- * <code>MaxResults</code> that is less than the number of environments, the response
8955
- * includes a pagination token named <code>NextToken</code>. You can specify this
8956
- * <code>NextToken</code> value in a subsequent call to <code>ListEnvironments</code> to
8957
- * list the next set of environments.</p>
8958
- * @public
8959
- */
8960
- nextToken?: string;
8961
- }
8962
- /**
8963
- * @public
8964
- */
8965
- export interface DeleteListingInput {
8966
- /**
8967
- * <p>The ID of the Amazon DataZone domain.</p>
8968
- * @public
8969
- */
8970
- domainIdentifier: string | undefined;
8971
- /**
8972
- * <p>The ID of the listing to be deleted.</p>
8973
- * @public
8974
- */
8975
- identifier: string | undefined;
8976
- }
8977
- /**
8978
- * @public
8979
- */
8980
- export interface DeleteListingOutput {
8981
- }
8982
- /**
8983
- * @public
8984
- */
8985
- export interface GetListingInput {
8986
- /**
8987
- * <p>The ID of the Amazon DataZone domain.</p>
8988
- * @public
8989
- */
8990
- domainIdentifier: string | undefined;
8991
- /**
8992
- * <p>The ID of the listing.</p>
8993
- * @public
8994
- */
8995
- identifier: string | undefined;
8996
- /**
8997
- * <p>The revision of the listing.</p>
8998
- * @public
8999
- */
9000
- listingRevision?: string;
9001
- }
9002
- /**
9003
- * <p>The details of a listing (aka asset published in a Amazon DataZone catalog).</p>
9004
- * @public
9005
- */
9006
- export type ListingItem = ListingItem.AssetListingMember | ListingItem.$UnknownMember;
9007
- /**
9008
- * @public
9009
- */
9010
- export declare namespace ListingItem {
9011
- /**
9012
- * <p>An asset published in an Amazon DataZone catalog.</p>
9013
- * @public
9014
- */
9015
- interface AssetListingMember {
9016
- assetListing: AssetListing;
9017
- $unknown?: never;
9018
- }
9019
- /**
9020
- * @public
9021
- */
9022
- interface $UnknownMember {
9023
- assetListing?: never;
9024
- $unknown: [string, any];
9025
- }
9026
- interface Visitor<T> {
9027
- assetListing: (value: AssetListing) => T;
9028
- _: (name: string, value: any) => T;
9029
- }
9030
- const visit: <T>(value: ListingItem, visitor: Visitor<T>) => T;
9031
- }
9032
- /**
9033
- * @public
9034
- */
9035
- export interface GetListingOutput {
9036
- /**
9037
- * <p>The ID of the Amazon DataZone domain.</p>
9038
- * @public
9039
- */
9040
- domainId: string | undefined;
9041
- /**
9042
- * <p>The ID of the listing.</p>
9043
- * @public
9044
- */
9045
- id: string | undefined;
9046
- /**
9047
- * <p>The revision of a listing.</p>
9048
- * @public
9049
- */
9050
- listingRevision: string | undefined;
9051
- /**
9052
- * <p>The timestamp of when the listing was created.</p>
9053
- * @public
9054
- */
9055
- createdAt?: Date;
9056
- /**
9057
- * <p>The timestamp of when the listing was updated.</p>
9058
- * @public
9059
- */
9060
- updatedAt?: Date;
9061
- /**
9062
- * <p>The Amazon DataZone user who created the listing.</p>
9063
- * @public
9064
- */
9065
- createdBy?: string;
9066
- /**
9067
- * <p>The Amazon DataZone user who updated the listing.</p>
9068
- * @public
9069
- */
9070
- updatedBy?: string;
9071
- /**
9072
- * <p>The details of a listing.</p>
9073
- * @public
9074
- */
9075
- item?: ListingItem;
9076
- /**
9077
- * <p>The name of the listing.</p>
9078
- * @public
9079
- */
9080
- name?: string;
9081
- /**
9082
- * <p>The description of the listing.</p>
9083
- * @public
9084
- */
9085
- description?: string;
9086
- /**
9087
- * <p>The status of the listing.</p>
9088
- * @public
9089
- */
9090
- status?: ListingStatus;
9091
- }
9092
- /**
9093
- * @public
9094
- * @enum
9095
- */
9096
- export declare const EdgeDirection: {
9097
- readonly DOWNSTREAM: "DOWNSTREAM";
9098
- readonly UPSTREAM: "UPSTREAM";
9099
- };
9100
- /**
9101
- * @public
9102
- */
9103
- export type EdgeDirection = (typeof EdgeDirection)[keyof typeof EdgeDirection];
9104
- /**
9105
- * @public
9106
- * @enum
9107
- */
9108
- export declare const SortOrder: {
9109
- readonly ASCENDING: "ASCENDING";
9110
- readonly DESCENDING: "DESCENDING";
9111
- };
9112
- /**
9113
- * @public
9114
- */
9115
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
9116
- /**
9117
- * @public
9118
- */
9119
- export interface ListLineageNodeHistoryInput {
9120
- /**
9121
- * <p>The ID of the domain where you want to list the history of the specified data lineage
9122
- * node.</p>
9123
- * @public
9124
- */
9125
- domainIdentifier: string | undefined;
9126
- /**
9127
- * <p>The maximum number of history items to return in a single call to
9128
- * ListLineageNodeHistory. When the number of memberships to be listed is greater than the
9129
- * value of MaxResults, the response contains a NextToken value that you can use in a
9130
- * subsequent call to ListLineageNodeHistory to list the next set of items.</p>
9131
- * @public
9132
- */
9133
- maxResults?: number;
9134
- /**
9135
- * <p>When the number of history items is greater than the default value for the MaxResults
9136
- * parameter, or if you explicitly specify a value for MaxResults that is less than the number
9137
- * of items, the response includes a pagination token named NextToken. You can specify this
9138
- * NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of
9139
- * items.</p>
9140
- * @public
9141
- */
9142
- nextToken?: string;
9143
- /**
9144
- * <p>The ID of the data lineage node whose history you want to list.</p>
9145
- * @public
9146
- */
9147
- identifier: string | undefined;
9148
- /**
9149
- * <p>The direction of the data lineage node refers to the lineage node having neighbors in
9150
- * that direction. For example, if direction is <code>UPSTREAM</code>, the
9151
- * <code>ListLineageNodeHistory</code> API responds with historical versions with upstream
9152
- * neighbors only.</p>
9153
- * @public
9154
- */
9155
- direction?: EdgeDirection;
9156
- /**
9157
- * <p>Specifies whether the action is to return data lineage node history from the time after
9158
- * the event timestamp.</p>
9159
- * @public
9160
- */
9161
- eventTimestampGTE?: Date;
9162
- /**
9163
- * <p>Specifies whether the action is to return data lineage node history from the time prior
9164
- * of the event timestamp.</p>
9165
- * @public
9166
- */
9167
- eventTimestampLTE?: Date;
9168
- /**
9169
- * <p>The order by which you want data lineage node history to be sorted.</p>
9170
- * @public
9171
- */
9172
- sortOrder?: SortOrder;
9173
- }
9174
- /**
9175
- * <p>The summary of the data lineage node.</p>
9176
- * @public
9177
- */
9178
- export interface LineageNodeSummary {
9179
- /**
9180
- * <p>The ID of the domain of the data lineage node.</p>
9181
- * @public
9182
- */
9183
- domainId: string | undefined;
9184
- /**
9185
- * <p>The name of the data lineage node.</p>
9186
- * @public
9187
- */
9188
- name?: string;
9189
- /**
9190
- * <p>The description of the data lineage node.</p>
9191
- * @public
9192
- */
9193
- description?: string;
9194
- /**
9195
- * <p>The timestamp at which the data lineage node was created.</p>
9196
- * @public
9197
- */
9198
- createdAt?: Date;
9199
- /**
9200
- * <p>The user who created the data lineage node.</p>
9201
- * @public
9202
- */
9203
- createdBy?: string;
9204
- /**
9205
- * <p>The timestamp at which the data lineage node was updated.</p>
9206
- * @public
9207
- */
9208
- updatedAt?: Date;
9209
- /**
9210
- * <p>The user who updated the data lineage node.</p>
9211
- * @public
9212
- */
9213
- updatedBy?: string;
9214
- /**
9215
- * <p>The ID of the data lineage node.</p>
9216
- * @public
9217
- */
9218
- id: string | undefined;
9219
- /**
9220
- * <p>The name of the type of the data lineage node.</p>
9221
- * @public
9222
- */
9223
- typeName: string | undefined;
9224
- /**
9225
- * <p>The type of the revision of the data lineage node.</p>
9226
- * @public
9227
- */
9228
- typeRevision?: string;
9229
- /**
9230
- * <p>The alternate ID of the data lineage node.</p>
9231
- * @public
9232
- */
9233
- sourceIdentifier?: string;
9234
- /**
9235
- * <p>The event timestamp of the data lineage node.</p>
9236
- * @public
9237
- */
9238
- eventTimestamp?: Date;
9239
- }
9240
- /**
9241
- * @public
9242
- */
9243
- export interface ListLineageNodeHistoryOutput {
9244
- /**
9245
- * <p>The nodes returned by the ListLineageNodeHistory action.</p>
9246
- * @public
9247
- */
9248
- nodes?: LineageNodeSummary[];
9249
- /**
9250
- * <p>When the number of history items is greater than the default value for the MaxResults
9251
- * parameter, or if you explicitly specify a value for MaxResults that is less than the number
9252
- * of items, the response includes a pagination token named NextToken. You can specify this
9253
- * NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of
9254
- * items.</p>
9255
- * @public
9256
- */
9257
- nextToken?: string;
9258
- }
9259
- /**
9260
- * @public
9261
- * @enum
9262
- */
9263
- export declare const TaskStatus: {
9264
- readonly ACTIVE: "ACTIVE";
9265
- readonly INACTIVE: "INACTIVE";
9266
- };
9267
- /**
9268
- * @public
9269
- */
9270
- export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
9271
- /**
9272
- * @public
9273
- * @enum
9274
- */
9275
- export declare const NotificationType: {
9276
- readonly EVENT: "EVENT";
9277
- readonly TASK: "TASK";
9278
- };
9279
- /**
9280
- * @public
9281
- */
9282
- export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
9283
- /**
9284
- * @public
9285
- */
9286
- export interface ListNotificationsInput {
9287
- /**
9288
- * <p>The identifier of the Amazon DataZone domain.</p>
9289
- * @public
9290
- */
9291
- domainIdentifier: string | undefined;
9292
- /**
9293
- * <p>The type of notifications.</p>
9294
- * @public
9295
- */
9296
- type: NotificationType | undefined;
9297
- /**
9298
- * <p>The time after which you want to list notifications.</p>
9299
- * @public
9300
- */
9301
- afterTimestamp?: Date;
9302
- /**
9303
- * <p>The time before which you want to list notifications.</p>
9304
- * @public
9305
- */
9306
- beforeTimestamp?: Date;
9307
- /**
9308
- * <p>The subjects of notifications.</p>
9309
- * @public
9310
- */
9311
- subjects?: string[];
9312
- /**
9313
- * <p>The task status of notifications.</p>
9314
- * @public
9315
- */
9316
- taskStatus?: TaskStatus;
9317
- /**
9318
- * <p>The maximum number of notifications to return in a single call to
9319
- * <code>ListNotifications</code>. When the number of notifications to be listed is greater
9320
- * than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code>
9321
- * value that you can use in a subsequent call to <code>ListNotifications</code> to list the
9322
- * next set of notifications.</p>
9323
- * @public
9324
- */
9325
- maxResults?: number;
9326
- /**
9327
- * <p>When the number of notifications is greater than the default value for the
9328
- * <code>MaxResults</code> parameter, or if you explicitly specify a value for
9329
- * <code>MaxResults</code> that is less than the number of notifications, the response
9330
- * includes a pagination token named <code>NextToken</code>. You can specify this
9331
- * <code>NextToken</code> value in a subsequent call to <code>ListNotifications</code> to
9332
- * list the next set of notifications.</p>
9333
- * @public
9334
- */
9335
- nextToken?: string;
9336
- }
9337
- /**
9338
- * @internal
9339
- */
9340
- export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
9341
- /**
9342
- * @internal
9343
- */
9344
- export declare const AcceptPredictionsInputFilterSensitiveLog: (obj: AcceptPredictionsInput) => any;
9345
- /**
9346
- * @internal
9267
+ * @internal
9347
9268
  */
9348
9269
  export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (obj: AcceptSubscriptionRequestInput) => any;
9349
9270
  /**
@@ -9402,6 +9323,10 @@ export declare const CreateAssetRevisionOutputFilterSensitiveLog: (obj: CreateAs
9402
9323
  * @internal
9403
9324
  */
9404
9325
  export declare const GetAssetOutputFilterSensitiveLog: (obj: GetAssetOutput) => any;
9326
+ /**
9327
+ * @internal
9328
+ */
9329
+ export declare const AssetFilterSummaryFilterSensitiveLog: (obj: AssetFilterSummary) => any;
9405
9330
  /**
9406
9331
  * @internal
9407
9332
  */
@@ -9538,10 +9463,6 @@ export declare const UserProfileDetailsFilterSensitiveLog: (obj: UserProfileDeta
9538
9463
  * @internal
9539
9464
  */
9540
9465
  export declare const CreateUserProfileOutputFilterSensitiveLog: (obj: CreateUserProfileOutput) => any;
9541
- /**
9542
- * @internal
9543
- */
9544
- export declare const DataProductSummaryFilterSensitiveLog: (obj: DataProductSummary) => any;
9545
9466
  /**
9546
9467
  * @internal
9547
9468
  */
@@ -9657,40 +9578,12 @@ export declare const UpdateGlossaryTermOutputFilterSensitiveLog: (obj: UpdateGlo
9657
9578
  /**
9658
9579
  * @internal
9659
9580
  */
9660
- export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (obj: ListDataSourceRunActivitiesOutput) => any;
9661
- /**
9662
- * @internal
9663
- */
9664
- export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (obj: EnvironmentBlueprintSummary) => any;
9665
- /**
9666
- * @internal
9667
- */
9668
- export declare const ListEnvironmentBlueprintsOutputFilterSensitiveLog: (obj: ListEnvironmentBlueprintsOutput) => any;
9669
- /**
9670
- * @internal
9671
- */
9672
- export declare const ListEnvironmentProfilesInputFilterSensitiveLog: (obj: ListEnvironmentProfilesInput) => any;
9581
+ export declare const ListAssetFiltersOutputFilterSensitiveLog: (obj: ListAssetFiltersOutput) => any;
9673
9582
  /**
9674
9583
  * @internal
9675
9584
  */
9676
- export declare const EnvironmentProfileSummaryFilterSensitiveLog: (obj: EnvironmentProfileSummary) => any;
9677
- /**
9678
- * @internal
9679
- */
9680
- export declare const ListEnvironmentProfilesOutputFilterSensitiveLog: (obj: ListEnvironmentProfilesOutput) => any;
9681
- /**
9682
- * @internal
9683
- */
9684
- export declare const EnvironmentSummaryFilterSensitiveLog: (obj: EnvironmentSummary) => any;
9685
- /**
9686
- * @internal
9687
- */
9688
- export declare const ListEnvironmentsOutputFilterSensitiveLog: (obj: ListEnvironmentsOutput) => any;
9689
- /**
9690
- * @internal
9691
- */
9692
- export declare const ListingItemFilterSensitiveLog: (obj: ListingItem) => any;
9585
+ export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (obj: ListDataSourceRunActivitiesOutput) => any;
9693
9586
  /**
9694
9587
  * @internal
9695
9588
  */
9696
- export declare const GetListingOutputFilterSensitiveLog: (obj: GetListingOutput) => any;
9589
+ export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (obj: EnvironmentBlueprintSummary) => any;