@aws-sdk/client-datazone 3.616.0 → 3.617.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.
- package/README.md +40 -0
- package/dist-cjs/index.js +573 -79
- package/dist-es/DataZone.js +10 -0
- package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
- package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
- package/dist-es/commands/GetAssetFilterCommand.js +25 -0
- package/dist-es/commands/GetListingCommand.js +1 -1
- package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
- package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
- package/dist-es/commands/ListNotificationsCommand.js +1 -1
- package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +49 -64
- package/dist-es/models/models_1.js +118 -1
- package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +270 -1
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +7 -2
- package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
- package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
- package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
- package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
- package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +725 -829
- package/dist-types/models/models_1.d.ts +1199 -1
- package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/DataZone.d.ts +85 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +346 -204
- package/dist-types/ts3.4/models/models_1.d.ts +348 -3
- package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- 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
|
|
@@ -5976,6 +6509,26 @@ export interface DataSourceRunActivity {
|
|
|
5976
6509
|
*/
|
|
5977
6510
|
updatedAt: Date | undefined;
|
|
5978
6511
|
}
|
|
6512
|
+
/**
|
|
6513
|
+
* @public
|
|
6514
|
+
*/
|
|
6515
|
+
export interface DeleteAssetFilterInput {
|
|
6516
|
+
/**
|
|
6517
|
+
* <p>The ID of the domain where you want to delete an asset filter.</p>
|
|
6518
|
+
* @public
|
|
6519
|
+
*/
|
|
6520
|
+
domainIdentifier: string | undefined;
|
|
6521
|
+
/**
|
|
6522
|
+
* <p>The ID of the data asset.</p>
|
|
6523
|
+
* @public
|
|
6524
|
+
*/
|
|
6525
|
+
assetIdentifier: string | undefined;
|
|
6526
|
+
/**
|
|
6527
|
+
* <p>The ID of the asset filter that you want to delete.</p>
|
|
6528
|
+
* @public
|
|
6529
|
+
*/
|
|
6530
|
+
identifier: string | undefined;
|
|
6531
|
+
}
|
|
5979
6532
|
/**
|
|
5980
6533
|
* @public
|
|
5981
6534
|
*/
|
|
@@ -6578,24 +7131,72 @@ export interface GetEnvironmentBlueprintConfigurationInput {
|
|
|
6578
7131
|
environmentBlueprintIdentifier: string | undefined;
|
|
6579
7132
|
}
|
|
6580
7133
|
/**
|
|
7134
|
+
* <p>The Lake Formation configuration of the Data Lake blueprint.</p>
|
|
6581
7135
|
* @public
|
|
6582
7136
|
*/
|
|
6583
|
-
export interface
|
|
6584
|
-
/**
|
|
6585
|
-
* <p>The ID of the Amazon DataZone domain where this blueprint exists.</p>
|
|
6586
|
-
* @public
|
|
6587
|
-
*/
|
|
6588
|
-
domainId: string | undefined;
|
|
7137
|
+
export interface LakeFormationConfiguration {
|
|
6589
7138
|
/**
|
|
6590
|
-
* <p>The
|
|
7139
|
+
* <p>The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for
|
|
7140
|
+
* Data Lake using AWS Lake Formation hybrid access mode.</p>
|
|
6591
7141
|
* @public
|
|
6592
7142
|
*/
|
|
6593
|
-
|
|
7143
|
+
locationRegistrationRole?: string;
|
|
6594
7144
|
/**
|
|
6595
|
-
* <p>
|
|
7145
|
+
* <p>Specifies certain Amazon S3 locations if you do not want Amazon DataZone to
|
|
7146
|
+
* automatically register them in hybrid mode. </p>
|
|
6596
7147
|
* @public
|
|
6597
7148
|
*/
|
|
6598
|
-
|
|
7149
|
+
locationRegistrationExcludeS3Locations?: string[];
|
|
7150
|
+
}
|
|
7151
|
+
/**
|
|
7152
|
+
* <p>The provisioning configuration of the blueprint.</p>
|
|
7153
|
+
* @public
|
|
7154
|
+
*/
|
|
7155
|
+
export type ProvisioningConfiguration = ProvisioningConfiguration.LakeFormationConfigurationMember | ProvisioningConfiguration.$UnknownMember;
|
|
7156
|
+
/**
|
|
7157
|
+
* @public
|
|
7158
|
+
*/
|
|
7159
|
+
export declare namespace ProvisioningConfiguration {
|
|
7160
|
+
/**
|
|
7161
|
+
* <p>The Lake Formation configuration of the Data Lake blueprint.</p>
|
|
7162
|
+
* @public
|
|
7163
|
+
*/
|
|
7164
|
+
interface LakeFormationConfigurationMember {
|
|
7165
|
+
lakeFormationConfiguration: LakeFormationConfiguration;
|
|
7166
|
+
$unknown?: never;
|
|
7167
|
+
}
|
|
7168
|
+
/**
|
|
7169
|
+
* @public
|
|
7170
|
+
*/
|
|
7171
|
+
interface $UnknownMember {
|
|
7172
|
+
lakeFormationConfiguration?: never;
|
|
7173
|
+
$unknown: [string, any];
|
|
7174
|
+
}
|
|
7175
|
+
interface Visitor<T> {
|
|
7176
|
+
lakeFormationConfiguration: (value: LakeFormationConfiguration) => T;
|
|
7177
|
+
_: (name: string, value: any) => T;
|
|
7178
|
+
}
|
|
7179
|
+
const visit: <T>(value: ProvisioningConfiguration, visitor: Visitor<T>) => T;
|
|
7180
|
+
}
|
|
7181
|
+
/**
|
|
7182
|
+
* @public
|
|
7183
|
+
*/
|
|
7184
|
+
export interface GetEnvironmentBlueprintConfigurationOutput {
|
|
7185
|
+
/**
|
|
7186
|
+
* <p>The ID of the Amazon DataZone domain where this blueprint exists.</p>
|
|
7187
|
+
* @public
|
|
7188
|
+
*/
|
|
7189
|
+
domainId: string | undefined;
|
|
7190
|
+
/**
|
|
7191
|
+
* <p>The ID of the blueprint.</p>
|
|
7192
|
+
* @public
|
|
7193
|
+
*/
|
|
7194
|
+
environmentBlueprintId: string | undefined;
|
|
7195
|
+
/**
|
|
7196
|
+
* <p>The ARN of the provisioning role with which this blueprint is created.</p>
|
|
7197
|
+
* @public
|
|
7198
|
+
*/
|
|
7199
|
+
provisioningRoleArn?: string;
|
|
6599
7200
|
/**
|
|
6600
7201
|
* <p>The ARN of the manage access role with which this blueprint is created.</p>
|
|
6601
7202
|
* @public
|
|
@@ -6621,6 +7222,11 @@ export interface GetEnvironmentBlueprintConfigurationOutput {
|
|
|
6621
7222
|
* @public
|
|
6622
7223
|
*/
|
|
6623
7224
|
updatedAt?: Date;
|
|
7225
|
+
/**
|
|
7226
|
+
* <p>The provisioning configuration of a blueprint.</p>
|
|
7227
|
+
* @public
|
|
7228
|
+
*/
|
|
7229
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
6624
7230
|
}
|
|
6625
7231
|
/**
|
|
6626
7232
|
* @public
|
|
@@ -6700,6 +7306,11 @@ export interface EnvironmentBlueprintConfigurationItem {
|
|
|
6700
7306
|
* @public
|
|
6701
7307
|
*/
|
|
6702
7308
|
updatedAt?: Date;
|
|
7309
|
+
/**
|
|
7310
|
+
* <p>The provisioning configuration of a blueprint.</p>
|
|
7311
|
+
* @public
|
|
7312
|
+
*/
|
|
7313
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
6703
7314
|
}
|
|
6704
7315
|
/**
|
|
6705
7316
|
* @public
|
|
@@ -6756,6 +7367,11 @@ export interface PutEnvironmentBlueprintConfigurationInput {
|
|
|
6756
7367
|
* @public
|
|
6757
7368
|
*/
|
|
6758
7369
|
regionalParameters?: Record<string, Record<string, string>>;
|
|
7370
|
+
/**
|
|
7371
|
+
* <p>The provisioning configuration of a blueprint.</p>
|
|
7372
|
+
* @public
|
|
7373
|
+
*/
|
|
7374
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
6759
7375
|
}
|
|
6760
7376
|
/**
|
|
6761
7377
|
* @public
|
|
@@ -6801,6 +7417,11 @@ export interface PutEnvironmentBlueprintConfigurationOutput {
|
|
|
6801
7417
|
* @public
|
|
6802
7418
|
*/
|
|
6803
7419
|
updatedAt?: Date;
|
|
7420
|
+
/**
|
|
7421
|
+
* <p>The provisioning configuration of a blueprint.</p>
|
|
7422
|
+
* @public
|
|
7423
|
+
*/
|
|
7424
|
+
provisioningConfigurations?: ProvisioningConfiguration[];
|
|
6804
7425
|
}
|
|
6805
7426
|
/**
|
|
6806
7427
|
* @public
|
|
@@ -6924,6 +7545,26 @@ export interface GetFormTypeOutput {
|
|
|
6924
7545
|
*/
|
|
6925
7546
|
imports?: Import[];
|
|
6926
7547
|
}
|
|
7548
|
+
/**
|
|
7549
|
+
* @public
|
|
7550
|
+
*/
|
|
7551
|
+
export interface GetAssetFilterInput {
|
|
7552
|
+
/**
|
|
7553
|
+
* <p>The ID of the domain where you want to get an asset filter.</p>
|
|
7554
|
+
* @public
|
|
7555
|
+
*/
|
|
7556
|
+
domainIdentifier: string | undefined;
|
|
7557
|
+
/**
|
|
7558
|
+
* <p>The ID of the data asset.</p>
|
|
7559
|
+
* @public
|
|
7560
|
+
*/
|
|
7561
|
+
assetIdentifier: string | undefined;
|
|
7562
|
+
/**
|
|
7563
|
+
* <p>The ID of the asset filter.</p>
|
|
7564
|
+
* @public
|
|
7565
|
+
*/
|
|
7566
|
+
identifier: string | undefined;
|
|
7567
|
+
}
|
|
6927
7568
|
/**
|
|
6928
7569
|
* @public
|
|
6929
7570
|
*/
|
|
@@ -8352,6 +8993,65 @@ export interface UpdateGlossaryTermOutput {
|
|
|
8352
8993
|
*/
|
|
8353
8994
|
termRelations?: TermRelations;
|
|
8354
8995
|
}
|
|
8996
|
+
/**
|
|
8997
|
+
* @public
|
|
8998
|
+
*/
|
|
8999
|
+
export interface ListAssetFiltersInput {
|
|
9000
|
+
/**
|
|
9001
|
+
* <p>The ID of the domain where you want to list asset filters.</p>
|
|
9002
|
+
* @public
|
|
9003
|
+
*/
|
|
9004
|
+
domainIdentifier: string | undefined;
|
|
9005
|
+
/**
|
|
9006
|
+
* <p>The ID of the data asset.</p>
|
|
9007
|
+
* @public
|
|
9008
|
+
*/
|
|
9009
|
+
assetIdentifier: string | undefined;
|
|
9010
|
+
/**
|
|
9011
|
+
* <p>The status of the asset filter.</p>
|
|
9012
|
+
* @public
|
|
9013
|
+
*/
|
|
9014
|
+
status?: FilterStatus;
|
|
9015
|
+
/**
|
|
9016
|
+
* <p>When the number of asset filters is greater than the default value for the
|
|
9017
|
+
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
9018
|
+
* <code>MaxResults</code> that is less than the number of asset filters, the response
|
|
9019
|
+
* includes a pagination token named <code>NextToken</code>. You can specify this
|
|
9020
|
+
* <code>NextToken</code> value in a subsequent call to <code>ListAssetFilters</code> to
|
|
9021
|
+
* list the next set of asset filters.</p>
|
|
9022
|
+
* @public
|
|
9023
|
+
*/
|
|
9024
|
+
nextToken?: string;
|
|
9025
|
+
/**
|
|
9026
|
+
* <p>The maximum number of asset filters to return in a single call to
|
|
9027
|
+
* <code>ListAssetFilters</code>. When the number of asset filters to be listed is greater
|
|
9028
|
+
* than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code>
|
|
9029
|
+
* value that you can use in a subsequent call to <code>ListAssetFilters</code> to list the
|
|
9030
|
+
* next set of asset filters.</p>
|
|
9031
|
+
* @public
|
|
9032
|
+
*/
|
|
9033
|
+
maxResults?: number;
|
|
9034
|
+
}
|
|
9035
|
+
/**
|
|
9036
|
+
* @public
|
|
9037
|
+
*/
|
|
9038
|
+
export interface ListAssetFiltersOutput {
|
|
9039
|
+
/**
|
|
9040
|
+
* <p>The results of the <code>ListAssetFilters</code> action.</p>
|
|
9041
|
+
* @public
|
|
9042
|
+
*/
|
|
9043
|
+
items: AssetFilterSummary[] | undefined;
|
|
9044
|
+
/**
|
|
9045
|
+
* <p>When the number of asset filters is greater than the default value for the
|
|
9046
|
+
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
9047
|
+
* <code>MaxResults</code> that is less than the number of asset filters, the response
|
|
9048
|
+
* includes a pagination token named <code>NextToken</code>. You can specify this
|
|
9049
|
+
* <code>NextToken</code> value in a subsequent call to <code>ListAssetFilters</code> to
|
|
9050
|
+
* list the next set of asset filters.</p>
|
|
9051
|
+
* @public
|
|
9052
|
+
*/
|
|
9053
|
+
nextToken?: string;
|
|
9054
|
+
}
|
|
8355
9055
|
/**
|
|
8356
9056
|
* @public
|
|
8357
9057
|
*/
|
|
@@ -8559,799 +9259,23 @@ export interface ListEnvironmentActionsOutput {
|
|
|
8559
9259
|
nextToken?: string;
|
|
8560
9260
|
}
|
|
8561
9261
|
/**
|
|
8562
|
-
* @
|
|
9262
|
+
* @internal
|
|
8563
9263
|
*/
|
|
8564
|
-
export
|
|
8565
|
-
/**
|
|
8566
|
-
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
8567
|
-
* @public
|
|
8568
|
-
*/
|
|
8569
|
-
domainIdentifier: string | undefined;
|
|
8570
|
-
/**
|
|
8571
|
-
* <p>The maximum number of blueprints to return in a single call to
|
|
8572
|
-
* <code>ListEnvironmentBlueprints</code>. When the number of blueprints to be listed is
|
|
8573
|
-
* greater than the value of <code>MaxResults</code>, the response contains a
|
|
8574
|
-
* <code>NextToken</code> value that you can use in a subsequent call to
|
|
8575
|
-
* <code>ListEnvironmentBlueprints</code> to list the next set of blueprints.</p>
|
|
8576
|
-
* @public
|
|
8577
|
-
*/
|
|
8578
|
-
maxResults?: number;
|
|
8579
|
-
/**
|
|
8580
|
-
* <p>When the number of blueprints in the environment is greater than the default value for
|
|
8581
|
-
* the <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
8582
|
-
* <code>MaxResults</code> that is less than the number of blueprints in the environment,
|
|
8583
|
-
* the response includes a pagination token named <code>NextToken</code>. You can specify this
|
|
8584
|
-
* <code>NextToken</code> value in a subsequent call to
|
|
8585
|
-
* <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
|
|
8586
|
-
* @public
|
|
8587
|
-
*/
|
|
8588
|
-
nextToken?: string;
|
|
8589
|
-
/**
|
|
8590
|
-
* <p>The name of the Amazon DataZone environment.</p>
|
|
8591
|
-
* @public
|
|
8592
|
-
*/
|
|
8593
|
-
name?: string;
|
|
8594
|
-
/**
|
|
8595
|
-
* <p>Specifies whether the environment blueprint is managed by Amazon DataZone.</p>
|
|
8596
|
-
* @public
|
|
8597
|
-
*/
|
|
8598
|
-
managed?: boolean;
|
|
8599
|
-
}
|
|
9264
|
+
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
8600
9265
|
/**
|
|
8601
|
-
*
|
|
8602
|
-
* @public
|
|
9266
|
+
* @internal
|
|
8603
9267
|
*/
|
|
8604
|
-
export
|
|
8605
|
-
/**
|
|
8606
|
-
* <p>The identifier of the blueprint.</p>
|
|
8607
|
-
* @public
|
|
8608
|
-
*/
|
|
8609
|
-
id: string | undefined;
|
|
8610
|
-
/**
|
|
8611
|
-
* <p>The name of the blueprint.</p>
|
|
8612
|
-
* @public
|
|
8613
|
-
*/
|
|
8614
|
-
name: string | undefined;
|
|
8615
|
-
/**
|
|
8616
|
-
* <p>The description of a blueprint.</p>
|
|
8617
|
-
* @public
|
|
8618
|
-
*/
|
|
8619
|
-
description?: string;
|
|
8620
|
-
/**
|
|
8621
|
-
* <p>The provider of the blueprint.</p>
|
|
8622
|
-
* @public
|
|
8623
|
-
*/
|
|
8624
|
-
provider: string | undefined;
|
|
8625
|
-
/**
|
|
8626
|
-
* <p>The provisioning properties of the blueprint.</p>
|
|
8627
|
-
* @public
|
|
8628
|
-
*/
|
|
8629
|
-
provisioningProperties: ProvisioningProperties | undefined;
|
|
8630
|
-
/**
|
|
8631
|
-
* <p>The timestamp of when an environment blueprint was created.</p>
|
|
8632
|
-
* @public
|
|
8633
|
-
*/
|
|
8634
|
-
createdAt?: Date;
|
|
8635
|
-
/**
|
|
8636
|
-
* <p>The timestamp of when the blueprint was enabled.</p>
|
|
8637
|
-
* @public
|
|
8638
|
-
*/
|
|
8639
|
-
updatedAt?: Date;
|
|
8640
|
-
}
|
|
9268
|
+
export declare const AcceptPredictionsInputFilterSensitiveLog: (obj: AcceptPredictionsInput) => any;
|
|
8641
9269
|
/**
|
|
8642
|
-
* @
|
|
9270
|
+
* @internal
|
|
8643
9271
|
*/
|
|
8644
|
-
export
|
|
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
|
-
}
|
|
9272
|
+
export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (obj: AcceptSubscriptionRequestInput) => any;
|
|
8661
9273
|
/**
|
|
8662
|
-
* @
|
|
9274
|
+
* @internal
|
|
8663
9275
|
*/
|
|
8664
|
-
export
|
|
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
|
-
}
|
|
9276
|
+
export declare const DetailedGlossaryTermFilterSensitiveLog: (obj: DetailedGlossaryTerm) => any;
|
|
8719
9277
|
/**
|
|
8720
|
-
*
|
|
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
|
|
9347
|
-
*/
|
|
9348
|
-
export declare const AcceptSubscriptionRequestInputFilterSensitiveLog: (obj: AcceptSubscriptionRequestInput) => any;
|
|
9349
|
-
/**
|
|
9350
|
-
* @internal
|
|
9351
|
-
*/
|
|
9352
|
-
export declare const DetailedGlossaryTermFilterSensitiveLog: (obj: DetailedGlossaryTerm) => any;
|
|
9353
|
-
/**
|
|
9354
|
-
* @internal
|
|
9278
|
+
* @internal
|
|
9355
9279
|
*/
|
|
9356
9280
|
export declare const SubscribedAssetListingFilterSensitiveLog: (obj: SubscribedAssetListing) => any;
|
|
9357
9281
|
/**
|
|
@@ -9402,6 +9326,10 @@ export declare const CreateAssetRevisionOutputFilterSensitiveLog: (obj: CreateAs
|
|
|
9402
9326
|
* @internal
|
|
9403
9327
|
*/
|
|
9404
9328
|
export declare const GetAssetOutputFilterSensitiveLog: (obj: GetAssetOutput) => any;
|
|
9329
|
+
/**
|
|
9330
|
+
* @internal
|
|
9331
|
+
*/
|
|
9332
|
+
export declare const AssetFilterSummaryFilterSensitiveLog: (obj: AssetFilterSummary) => any;
|
|
9405
9333
|
/**
|
|
9406
9334
|
* @internal
|
|
9407
9335
|
*/
|
|
@@ -9657,40 +9585,8 @@ export declare const UpdateGlossaryTermOutputFilterSensitiveLog: (obj: UpdateGlo
|
|
|
9657
9585
|
/**
|
|
9658
9586
|
* @internal
|
|
9659
9587
|
*/
|
|
9660
|
-
export declare const
|
|
9661
|
-
/**
|
|
9662
|
-
* @internal
|
|
9663
|
-
*/
|
|
9664
|
-
export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (obj: EnvironmentBlueprintSummary) => any;
|
|
9588
|
+
export declare const ListAssetFiltersOutputFilterSensitiveLog: (obj: ListAssetFiltersOutput) => any;
|
|
9665
9589
|
/**
|
|
9666
9590
|
* @internal
|
|
9667
9591
|
*/
|
|
9668
|
-
export declare const
|
|
9669
|
-
/**
|
|
9670
|
-
* @internal
|
|
9671
|
-
*/
|
|
9672
|
-
export declare const ListEnvironmentProfilesInputFilterSensitiveLog: (obj: ListEnvironmentProfilesInput) => any;
|
|
9673
|
-
/**
|
|
9674
|
-
* @internal
|
|
9675
|
-
*/
|
|
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;
|
|
9693
|
-
/**
|
|
9694
|
-
* @internal
|
|
9695
|
-
*/
|
|
9696
|
-
export declare const GetListingOutputFilterSensitiveLog: (obj: GetListingOutput) => any;
|
|
9592
|
+
export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (obj: ListDataSourceRunActivitiesOutput) => any;
|