@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
@@ -323,6 +323,299 @@ export interface GetAssetOutput {
323
323
  readOnlyFormsOutput?: FormOutput[];
324
324
  latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
325
325
  }
326
+ export interface ColumnFilterConfiguration {
327
+ includedColumnNames?: string[];
328
+ }
329
+ export interface EqualToExpression {
330
+ columnName: string | undefined;
331
+ value: string | undefined;
332
+ }
333
+ export interface GreaterThanExpression {
334
+ columnName: string | undefined;
335
+ value: string | undefined;
336
+ }
337
+ export interface GreaterThanOrEqualToExpression {
338
+ columnName: string | undefined;
339
+ value: string | undefined;
340
+ }
341
+ export interface InExpression {
342
+ columnName: string | undefined;
343
+ values: string[] | undefined;
344
+ }
345
+ export interface IsNotNullExpression {
346
+ columnName: string | undefined;
347
+ }
348
+ export interface IsNullExpression {
349
+ columnName: string | undefined;
350
+ }
351
+ export interface LessThanExpression {
352
+ columnName: string | undefined;
353
+ value: string | undefined;
354
+ }
355
+ export interface LessThanOrEqualToExpression {
356
+ columnName: string | undefined;
357
+ value: string | undefined;
358
+ }
359
+ export interface LikeExpression {
360
+ columnName: string | undefined;
361
+ value: string | undefined;
362
+ }
363
+ export interface NotEqualToExpression {
364
+ columnName: string | undefined;
365
+ value: string | undefined;
366
+ }
367
+ export interface NotInExpression {
368
+ columnName: string | undefined;
369
+ values: string[] | undefined;
370
+ }
371
+ export interface NotLikeExpression {
372
+ columnName: string | undefined;
373
+ value: string | undefined;
374
+ }
375
+ export type RowFilterExpression =
376
+ | RowFilterExpression.EqualToMember
377
+ | RowFilterExpression.GreaterThanMember
378
+ | RowFilterExpression.GreaterThanOrEqualToMember
379
+ | RowFilterExpression.InMember
380
+ | RowFilterExpression.IsNotNullMember
381
+ | RowFilterExpression.IsNullMember
382
+ | RowFilterExpression.LessThanMember
383
+ | RowFilterExpression.LessThanOrEqualToMember
384
+ | RowFilterExpression.LikeMember
385
+ | RowFilterExpression.NotEqualToMember
386
+ | RowFilterExpression.NotInMember
387
+ | RowFilterExpression.NotLikeMember
388
+ | RowFilterExpression.$UnknownMember;
389
+ export declare namespace RowFilterExpression {
390
+ interface EqualToMember {
391
+ equalTo: EqualToExpression;
392
+ notEqualTo?: never;
393
+ greaterThan?: never;
394
+ lessThan?: never;
395
+ greaterThanOrEqualTo?: never;
396
+ lessThanOrEqualTo?: never;
397
+ isNull?: never;
398
+ isNotNull?: never;
399
+ in?: never;
400
+ notIn?: never;
401
+ like?: never;
402
+ notLike?: never;
403
+ $unknown?: never;
404
+ }
405
+ interface NotEqualToMember {
406
+ equalTo?: never;
407
+ notEqualTo: NotEqualToExpression;
408
+ greaterThan?: never;
409
+ lessThan?: never;
410
+ greaterThanOrEqualTo?: never;
411
+ lessThanOrEqualTo?: never;
412
+ isNull?: never;
413
+ isNotNull?: never;
414
+ in?: never;
415
+ notIn?: never;
416
+ like?: never;
417
+ notLike?: never;
418
+ $unknown?: never;
419
+ }
420
+ interface GreaterThanMember {
421
+ equalTo?: never;
422
+ notEqualTo?: never;
423
+ greaterThan: GreaterThanExpression;
424
+ lessThan?: never;
425
+ greaterThanOrEqualTo?: never;
426
+ lessThanOrEqualTo?: never;
427
+ isNull?: never;
428
+ isNotNull?: never;
429
+ in?: never;
430
+ notIn?: never;
431
+ like?: never;
432
+ notLike?: never;
433
+ $unknown?: never;
434
+ }
435
+ interface LessThanMember {
436
+ equalTo?: never;
437
+ notEqualTo?: never;
438
+ greaterThan?: never;
439
+ lessThan: LessThanExpression;
440
+ greaterThanOrEqualTo?: never;
441
+ lessThanOrEqualTo?: never;
442
+ isNull?: never;
443
+ isNotNull?: never;
444
+ in?: never;
445
+ notIn?: never;
446
+ like?: never;
447
+ notLike?: never;
448
+ $unknown?: never;
449
+ }
450
+ interface GreaterThanOrEqualToMember {
451
+ equalTo?: never;
452
+ notEqualTo?: never;
453
+ greaterThan?: never;
454
+ lessThan?: never;
455
+ greaterThanOrEqualTo: GreaterThanOrEqualToExpression;
456
+ lessThanOrEqualTo?: never;
457
+ isNull?: never;
458
+ isNotNull?: never;
459
+ in?: never;
460
+ notIn?: never;
461
+ like?: never;
462
+ notLike?: never;
463
+ $unknown?: never;
464
+ }
465
+ interface LessThanOrEqualToMember {
466
+ equalTo?: never;
467
+ notEqualTo?: never;
468
+ greaterThan?: never;
469
+ lessThan?: never;
470
+ greaterThanOrEqualTo?: never;
471
+ lessThanOrEqualTo: LessThanOrEqualToExpression;
472
+ isNull?: never;
473
+ isNotNull?: never;
474
+ in?: never;
475
+ notIn?: never;
476
+ like?: never;
477
+ notLike?: never;
478
+ $unknown?: never;
479
+ }
480
+ interface IsNullMember {
481
+ equalTo?: never;
482
+ notEqualTo?: never;
483
+ greaterThan?: never;
484
+ lessThan?: never;
485
+ greaterThanOrEqualTo?: never;
486
+ lessThanOrEqualTo?: never;
487
+ isNull: IsNullExpression;
488
+ isNotNull?: never;
489
+ in?: never;
490
+ notIn?: never;
491
+ like?: never;
492
+ notLike?: never;
493
+ $unknown?: never;
494
+ }
495
+ interface IsNotNullMember {
496
+ equalTo?: never;
497
+ notEqualTo?: never;
498
+ greaterThan?: never;
499
+ lessThan?: never;
500
+ greaterThanOrEqualTo?: never;
501
+ lessThanOrEqualTo?: never;
502
+ isNull?: never;
503
+ isNotNull: IsNotNullExpression;
504
+ in?: never;
505
+ notIn?: never;
506
+ like?: never;
507
+ notLike?: never;
508
+ $unknown?: never;
509
+ }
510
+ interface InMember {
511
+ equalTo?: never;
512
+ notEqualTo?: never;
513
+ greaterThan?: never;
514
+ lessThan?: never;
515
+ greaterThanOrEqualTo?: never;
516
+ lessThanOrEqualTo?: never;
517
+ isNull?: never;
518
+ isNotNull?: never;
519
+ in: InExpression;
520
+ notIn?: never;
521
+ like?: never;
522
+ notLike?: never;
523
+ $unknown?: never;
524
+ }
525
+ interface NotInMember {
526
+ equalTo?: never;
527
+ notEqualTo?: never;
528
+ greaterThan?: never;
529
+ lessThan?: never;
530
+ greaterThanOrEqualTo?: never;
531
+ lessThanOrEqualTo?: never;
532
+ isNull?: never;
533
+ isNotNull?: never;
534
+ in?: never;
535
+ notIn: NotInExpression;
536
+ like?: never;
537
+ notLike?: never;
538
+ $unknown?: never;
539
+ }
540
+ interface LikeMember {
541
+ equalTo?: never;
542
+ notEqualTo?: never;
543
+ greaterThan?: never;
544
+ lessThan?: never;
545
+ greaterThanOrEqualTo?: never;
546
+ lessThanOrEqualTo?: never;
547
+ isNull?: never;
548
+ isNotNull?: never;
549
+ in?: never;
550
+ notIn?: never;
551
+ like: LikeExpression;
552
+ notLike?: never;
553
+ $unknown?: never;
554
+ }
555
+ interface NotLikeMember {
556
+ equalTo?: never;
557
+ notEqualTo?: never;
558
+ greaterThan?: never;
559
+ lessThan?: never;
560
+ greaterThanOrEqualTo?: never;
561
+ lessThanOrEqualTo?: never;
562
+ isNull?: never;
563
+ isNotNull?: never;
564
+ in?: never;
565
+ notIn?: never;
566
+ like?: never;
567
+ notLike: NotLikeExpression;
568
+ $unknown?: never;
569
+ }
570
+ interface $UnknownMember {
571
+ equalTo?: never;
572
+ notEqualTo?: never;
573
+ greaterThan?: never;
574
+ lessThan?: never;
575
+ greaterThanOrEqualTo?: never;
576
+ lessThanOrEqualTo?: never;
577
+ isNull?: never;
578
+ isNotNull?: never;
579
+ in?: never;
580
+ notIn?: never;
581
+ like?: never;
582
+ notLike?: never;
583
+ $unknown: [string, any];
584
+ }
585
+ interface Visitor<T> {
586
+ equalTo: (value: EqualToExpression) => T;
587
+ notEqualTo: (value: NotEqualToExpression) => T;
588
+ greaterThan: (value: GreaterThanExpression) => T;
589
+ lessThan: (value: LessThanExpression) => T;
590
+ greaterThanOrEqualTo: (value: GreaterThanOrEqualToExpression) => T;
591
+ lessThanOrEqualTo: (value: LessThanOrEqualToExpression) => T;
592
+ isNull: (value: IsNullExpression) => T;
593
+ isNotNull: (value: IsNotNullExpression) => T;
594
+ in: (value: InExpression) => T;
595
+ notIn: (value: NotInExpression) => T;
596
+ like: (value: LikeExpression) => T;
597
+ notLike: (value: NotLikeExpression) => T;
598
+ _: (name: string, value: any) => T;
599
+ }
600
+ const visit: <T>(value: RowFilterExpression, visitor: Visitor<T>) => T;
601
+ }
602
+ export declare const FilterStatus: {
603
+ readonly INVALID: "INVALID";
604
+ readonly VALID: "VALID";
605
+ };
606
+ export type FilterStatus = (typeof FilterStatus)[keyof typeof FilterStatus];
607
+ export interface AssetFilterSummary {
608
+ id: string | undefined;
609
+ domainId: string | undefined;
610
+ assetId: string | undefined;
611
+ name: string | undefined;
612
+ description?: string;
613
+ status?: FilterStatus;
614
+ effectiveColumnNames?: string[];
615
+ effectiveRowFilter?: string;
616
+ createdAt?: Date;
617
+ errorMessage?: string;
618
+ }
326
619
  export interface AssetItemAdditionalAttributes {
327
620
  formsOutput?: FormOutput[];
328
621
  readOnlyFormsOutput?: FormOutput[];
@@ -1454,23 +1747,6 @@ export declare const DataAssetActivityStatus: {
1454
1747
  };
1455
1748
  export type DataAssetActivityStatus =
1456
1749
  (typeof DataAssetActivityStatus)[keyof typeof DataAssetActivityStatus];
1457
- export interface DataProductItem {
1458
- itemId?: string;
1459
- domainId?: string;
1460
- }
1461
- export interface DataProductSummary {
1462
- domainId: string | undefined;
1463
- id: string | undefined;
1464
- name: string | undefined;
1465
- owningProjectId: string | undefined;
1466
- description?: string;
1467
- glossaryTerms?: string[];
1468
- dataProductItems?: DataProductItem[];
1469
- createdAt?: Date;
1470
- createdBy?: string;
1471
- updatedAt?: Date;
1472
- updatedBy?: string;
1473
- }
1474
1750
  export interface DeleteDataSourceInput {
1475
1751
  domainIdentifier: string | undefined;
1476
1752
  identifier: string | undefined;
@@ -1733,6 +2009,11 @@ export interface DataSourceRunActivity {
1733
2009
  createdAt: Date | undefined;
1734
2010
  updatedAt: Date | undefined;
1735
2011
  }
2012
+ export interface DeleteAssetFilterInput {
2013
+ domainIdentifier: string | undefined;
2014
+ assetIdentifier: string | undefined;
2015
+ identifier: string | undefined;
2016
+ }
1736
2017
  export interface DeleteEnvironmentInput {
1737
2018
  domainIdentifier: string | undefined;
1738
2019
  identifier: string | undefined;
@@ -1874,6 +2155,28 @@ export interface GetEnvironmentBlueprintConfigurationInput {
1874
2155
  domainIdentifier: string | undefined;
1875
2156
  environmentBlueprintIdentifier: string | undefined;
1876
2157
  }
2158
+ export interface LakeFormationConfiguration {
2159
+ locationRegistrationRole?: string;
2160
+ locationRegistrationExcludeS3Locations?: string[];
2161
+ }
2162
+ export type ProvisioningConfiguration =
2163
+ | ProvisioningConfiguration.LakeFormationConfigurationMember
2164
+ | ProvisioningConfiguration.$UnknownMember;
2165
+ export declare namespace ProvisioningConfiguration {
2166
+ interface LakeFormationConfigurationMember {
2167
+ lakeFormationConfiguration: LakeFormationConfiguration;
2168
+ $unknown?: never;
2169
+ }
2170
+ interface $UnknownMember {
2171
+ lakeFormationConfiguration?: never;
2172
+ $unknown: [string, any];
2173
+ }
2174
+ interface Visitor<T> {
2175
+ lakeFormationConfiguration: (value: LakeFormationConfiguration) => T;
2176
+ _: (name: string, value: any) => T;
2177
+ }
2178
+ const visit: <T>(value: ProvisioningConfiguration, visitor: Visitor<T>) => T;
2179
+ }
1877
2180
  export interface GetEnvironmentBlueprintConfigurationOutput {
1878
2181
  domainId: string | undefined;
1879
2182
  environmentBlueprintId: string | undefined;
@@ -1883,6 +2186,7 @@ export interface GetEnvironmentBlueprintConfigurationOutput {
1883
2186
  regionalParameters?: Record<string, Record<string, string>>;
1884
2187
  createdAt?: Date;
1885
2188
  updatedAt?: Date;
2189
+ provisioningConfigurations?: ProvisioningConfiguration[];
1886
2190
  }
1887
2191
  export interface ListEnvironmentBlueprintConfigurationsInput {
1888
2192
  domainIdentifier: string | undefined;
@@ -1898,6 +2202,7 @@ export interface EnvironmentBlueprintConfigurationItem {
1898
2202
  regionalParameters?: Record<string, Record<string, string>>;
1899
2203
  createdAt?: Date;
1900
2204
  updatedAt?: Date;
2205
+ provisioningConfigurations?: ProvisioningConfiguration[];
1901
2206
  }
1902
2207
  export interface ListEnvironmentBlueprintConfigurationsOutput {
1903
2208
  items?: EnvironmentBlueprintConfigurationItem[];
@@ -1910,6 +2215,7 @@ export interface PutEnvironmentBlueprintConfigurationInput {
1910
2215
  manageAccessRoleArn?: string;
1911
2216
  enabledRegions: string[] | undefined;
1912
2217
  regionalParameters?: Record<string, Record<string, string>>;
2218
+ provisioningConfigurations?: ProvisioningConfiguration[];
1913
2219
  }
1914
2220
  export interface PutEnvironmentBlueprintConfigurationOutput {
1915
2221
  domainId: string | undefined;
@@ -1920,6 +2226,7 @@ export interface PutEnvironmentBlueprintConfigurationOutput {
1920
2226
  regionalParameters?: Record<string, Record<string, string>>;
1921
2227
  createdAt?: Date;
1922
2228
  updatedAt?: Date;
2229
+ provisioningConfigurations?: ProvisioningConfiguration[];
1923
2230
  }
1924
2231
  export interface DeleteFormTypeInput {
1925
2232
  domainIdentifier: string | undefined;
@@ -1949,6 +2256,11 @@ export interface GetFormTypeOutput {
1949
2256
  description?: string;
1950
2257
  imports?: Import[];
1951
2258
  }
2259
+ export interface GetAssetFilterInput {
2260
+ domainIdentifier: string | undefined;
2261
+ assetIdentifier: string | undefined;
2262
+ identifier: string | undefined;
2263
+ }
1952
2264
  export interface GetEnvironmentInput {
1953
2265
  domainIdentifier: string | undefined;
1954
2266
  identifier: string | undefined;
@@ -2270,6 +2582,17 @@ export interface UpdateGlossaryTermOutput {
2270
2582
  longDescription?: string;
2271
2583
  termRelations?: TermRelations;
2272
2584
  }
2585
+ export interface ListAssetFiltersInput {
2586
+ domainIdentifier: string | undefined;
2587
+ assetIdentifier: string | undefined;
2588
+ status?: FilterStatus;
2589
+ nextToken?: string;
2590
+ maxResults?: number;
2591
+ }
2592
+ export interface ListAssetFiltersOutput {
2593
+ items: AssetFilterSummary[] | undefined;
2594
+ nextToken?: string;
2595
+ }
2273
2596
  export interface ListAssetRevisionsInput {
2274
2597
  domainIdentifier: string | undefined;
2275
2598
  identifier: string | undefined;
@@ -2325,169 +2648,6 @@ export interface EnvironmentBlueprintSummary {
2325
2648
  createdAt?: Date;
2326
2649
  updatedAt?: Date;
2327
2650
  }
2328
- export interface ListEnvironmentBlueprintsOutput {
2329
- items: EnvironmentBlueprintSummary[] | undefined;
2330
- nextToken?: string;
2331
- }
2332
- export interface ListEnvironmentProfilesInput {
2333
- domainIdentifier: string | undefined;
2334
- awsAccountId?: string;
2335
- awsAccountRegion?: string;
2336
- environmentBlueprintIdentifier?: string;
2337
- projectIdentifier?: string;
2338
- name?: string;
2339
- nextToken?: string;
2340
- maxResults?: number;
2341
- }
2342
- export interface EnvironmentProfileSummary {
2343
- id: string | undefined;
2344
- domainId: string | undefined;
2345
- awsAccountId?: string;
2346
- awsAccountRegion?: string;
2347
- createdBy: string | undefined;
2348
- createdAt?: Date;
2349
- updatedAt?: Date;
2350
- name: string | undefined;
2351
- description?: string;
2352
- environmentBlueprintId: string | undefined;
2353
- projectId?: string;
2354
- }
2355
- export interface ListEnvironmentProfilesOutput {
2356
- items: EnvironmentProfileSummary[] | undefined;
2357
- nextToken?: string;
2358
- }
2359
- export interface ListEnvironmentsInput {
2360
- domainIdentifier: string | undefined;
2361
- awsAccountId?: string;
2362
- status?: EnvironmentStatus;
2363
- awsAccountRegion?: string;
2364
- projectIdentifier: string | undefined;
2365
- environmentProfileIdentifier?: string;
2366
- environmentBlueprintIdentifier?: string;
2367
- provider?: string;
2368
- name?: string;
2369
- maxResults?: number;
2370
- nextToken?: string;
2371
- }
2372
- export interface EnvironmentSummary {
2373
- projectId: string | undefined;
2374
- id?: string;
2375
- domainId: string | undefined;
2376
- createdBy: string | undefined;
2377
- createdAt?: Date;
2378
- updatedAt?: Date;
2379
- name: string | undefined;
2380
- description?: string;
2381
- environmentProfileId?: string;
2382
- awsAccountId?: string;
2383
- awsAccountRegion?: string;
2384
- provider: string | undefined;
2385
- status?: EnvironmentStatus;
2386
- }
2387
- export interface ListEnvironmentsOutput {
2388
- items: EnvironmentSummary[] | undefined;
2389
- nextToken?: string;
2390
- }
2391
- export interface DeleteListingInput {
2392
- domainIdentifier: string | undefined;
2393
- identifier: string | undefined;
2394
- }
2395
- export interface DeleteListingOutput {}
2396
- export interface GetListingInput {
2397
- domainIdentifier: string | undefined;
2398
- identifier: string | undefined;
2399
- listingRevision?: string;
2400
- }
2401
- export type ListingItem =
2402
- | ListingItem.AssetListingMember
2403
- | ListingItem.$UnknownMember;
2404
- export declare namespace ListingItem {
2405
- interface AssetListingMember {
2406
- assetListing: AssetListing;
2407
- $unknown?: never;
2408
- }
2409
- interface $UnknownMember {
2410
- assetListing?: never;
2411
- $unknown: [string, any];
2412
- }
2413
- interface Visitor<T> {
2414
- assetListing: (value: AssetListing) => T;
2415
- _: (name: string, value: any) => T;
2416
- }
2417
- const visit: <T>(value: ListingItem, visitor: Visitor<T>) => T;
2418
- }
2419
- export interface GetListingOutput {
2420
- domainId: string | undefined;
2421
- id: string | undefined;
2422
- listingRevision: string | undefined;
2423
- createdAt?: Date;
2424
- updatedAt?: Date;
2425
- createdBy?: string;
2426
- updatedBy?: string;
2427
- item?: ListingItem;
2428
- name?: string;
2429
- description?: string;
2430
- status?: ListingStatus;
2431
- }
2432
- export declare const EdgeDirection: {
2433
- readonly DOWNSTREAM: "DOWNSTREAM";
2434
- readonly UPSTREAM: "UPSTREAM";
2435
- };
2436
- export type EdgeDirection = (typeof EdgeDirection)[keyof typeof EdgeDirection];
2437
- export declare const SortOrder: {
2438
- readonly ASCENDING: "ASCENDING";
2439
- readonly DESCENDING: "DESCENDING";
2440
- };
2441
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
2442
- export interface ListLineageNodeHistoryInput {
2443
- domainIdentifier: string | undefined;
2444
- maxResults?: number;
2445
- nextToken?: string;
2446
- identifier: string | undefined;
2447
- direction?: EdgeDirection;
2448
- eventTimestampGTE?: Date;
2449
- eventTimestampLTE?: Date;
2450
- sortOrder?: SortOrder;
2451
- }
2452
- export interface LineageNodeSummary {
2453
- domainId: string | undefined;
2454
- name?: string;
2455
- description?: string;
2456
- createdAt?: Date;
2457
- createdBy?: string;
2458
- updatedAt?: Date;
2459
- updatedBy?: string;
2460
- id: string | undefined;
2461
- typeName: string | undefined;
2462
- typeRevision?: string;
2463
- sourceIdentifier?: string;
2464
- eventTimestamp?: Date;
2465
- }
2466
- export interface ListLineageNodeHistoryOutput {
2467
- nodes?: LineageNodeSummary[];
2468
- nextToken?: string;
2469
- }
2470
- export declare const TaskStatus: {
2471
- readonly ACTIVE: "ACTIVE";
2472
- readonly INACTIVE: "INACTIVE";
2473
- };
2474
- export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
2475
- export declare const NotificationType: {
2476
- readonly EVENT: "EVENT";
2477
- readonly TASK: "TASK";
2478
- };
2479
- export type NotificationType =
2480
- (typeof NotificationType)[keyof typeof NotificationType];
2481
- export interface ListNotificationsInput {
2482
- domainIdentifier: string | undefined;
2483
- type: NotificationType | undefined;
2484
- afterTimestamp?: Date;
2485
- beforeTimestamp?: Date;
2486
- subjects?: string[];
2487
- taskStatus?: TaskStatus;
2488
- maxResults?: number;
2489
- nextToken?: string;
2490
- }
2491
2651
  export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
2492
2652
  export declare const AcceptPredictionsInputFilterSensitiveLog: (
2493
2653
  obj: AcceptPredictionsInput
@@ -2533,6 +2693,9 @@ export declare const CreateAssetRevisionOutputFilterSensitiveLog: (
2533
2693
  export declare const GetAssetOutputFilterSensitiveLog: (
2534
2694
  obj: GetAssetOutput
2535
2695
  ) => any;
2696
+ export declare const AssetFilterSummaryFilterSensitiveLog: (
2697
+ obj: AssetFilterSummary
2698
+ ) => any;
2536
2699
  export declare const AssetItemAdditionalAttributesFilterSensitiveLog: (
2537
2700
  obj: AssetItemAdditionalAttributes
2538
2701
  ) => any;
@@ -2629,9 +2792,6 @@ export declare const UserProfileDetailsFilterSensitiveLog: (
2629
2792
  export declare const CreateUserProfileOutputFilterSensitiveLog: (
2630
2793
  obj: CreateUserProfileOutput
2631
2794
  ) => any;
2632
- export declare const DataProductSummaryFilterSensitiveLog: (
2633
- obj: DataProductSummary
2634
- ) => any;
2635
2795
  export declare const DeleteDataSourceOutputFilterSensitiveLog: (
2636
2796
  obj: DeleteDataSourceOutput
2637
2797
  ) => any;
@@ -2714,31 +2874,12 @@ export declare const UpdateGlossaryTermInputFilterSensitiveLog: (
2714
2874
  export declare const UpdateGlossaryTermOutputFilterSensitiveLog: (
2715
2875
  obj: UpdateGlossaryTermOutput
2716
2876
  ) => any;
2877
+ export declare const ListAssetFiltersOutputFilterSensitiveLog: (
2878
+ obj: ListAssetFiltersOutput
2879
+ ) => any;
2717
2880
  export declare const ListDataSourceRunActivitiesOutputFilterSensitiveLog: (
2718
2881
  obj: ListDataSourceRunActivitiesOutput
2719
2882
  ) => any;
2720
2883
  export declare const EnvironmentBlueprintSummaryFilterSensitiveLog: (
2721
2884
  obj: EnvironmentBlueprintSummary
2722
2885
  ) => any;
2723
- export declare const ListEnvironmentBlueprintsOutputFilterSensitiveLog: (
2724
- obj: ListEnvironmentBlueprintsOutput
2725
- ) => any;
2726
- export declare const ListEnvironmentProfilesInputFilterSensitiveLog: (
2727
- obj: ListEnvironmentProfilesInput
2728
- ) => any;
2729
- export declare const EnvironmentProfileSummaryFilterSensitiveLog: (
2730
- obj: EnvironmentProfileSummary
2731
- ) => any;
2732
- export declare const ListEnvironmentProfilesOutputFilterSensitiveLog: (
2733
- obj: ListEnvironmentProfilesOutput
2734
- ) => any;
2735
- export declare const EnvironmentSummaryFilterSensitiveLog: (
2736
- obj: EnvironmentSummary
2737
- ) => any;
2738
- export declare const ListEnvironmentsOutputFilterSensitiveLog: (
2739
- obj: ListEnvironmentsOutput
2740
- ) => any;
2741
- export declare const ListingItemFilterSensitiveLog: (obj: ListingItem) => any;
2742
- export declare const GetListingOutputFilterSensitiveLog: (
2743
- obj: GetListingOutput
2744
- ) => any;