@aws-sdk/client-datazone 3.535.0 → 3.546.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 +32 -0
- package/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +267 -13
- package/dist-es/DataZone.js +8 -0
- package/dist-es/commands/AcceptPredictionsCommand.js +2 -1
- package/dist-es/commands/CancelMetadataGenerationRunCommand.js +24 -0
- package/dist-es/commands/GetMetadataGenerationRunCommand.js +24 -0
- package/dist-es/commands/ListMetadataGenerationRunsCommand.js +24 -0
- package/dist-es/commands/StartMetadataGenerationRunCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-es/models/models_0.js +14 -3
- package/dist-es/models/models_1.js +10 -0
- package/dist-es/pagination/ListMetadataGenerationRunsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +138 -0
- package/dist-types/DataZone.d.ts +28 -0
- package/dist-types/DataZoneClient.d.ts +6 -2
- package/dist-types/commands/AcceptPredictionsCommand.d.ts +2 -1
- package/dist-types/commands/CancelMetadataGenerationRunCommand.d.ts +79 -0
- package/dist-types/commands/CreateListingChangeSetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +90 -0
- package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +97 -0
- package/dist-types/commands/RejectPredictionsCommand.d.ts +5 -3
- package/dist-types/commands/SearchListingsCommand.d.ts +1 -1
- package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +107 -118
- package/dist-types/models/models_1.d.ts +366 -11
- package/dist-types/pagination/ListMetadataGenerationRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/DataZone.d.ts +68 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CancelMetadataGenerationRunCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListMetadataGenerationRunsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartMetadataGenerationRunCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +21 -20
- package/dist-types/ts3.4/models/models_1.d.ts +85 -0
- package/dist-types/ts3.4/pagination/ListMetadataGenerationRunsPaginator.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 +48 -0
- package/package.json +5 -5
|
@@ -11,13 +11,18 @@ export interface AcceptChoice {
|
|
|
11
11
|
* accepted.</p>
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
|
-
predictionTarget
|
|
14
|
+
predictionTarget: string | undefined;
|
|
15
15
|
/**
|
|
16
16
|
* <p>Specifies the prediction (aka, the automatically generated piece of metadata) that can
|
|
17
17
|
* be accepted.</p>
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
20
|
predictionChoice?: number;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The edit of the prediction.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
editedValue?: string;
|
|
21
26
|
}
|
|
22
27
|
/**
|
|
23
28
|
* @public
|
|
@@ -58,12 +63,12 @@ export interface AcceptPredictionsInput {
|
|
|
58
63
|
*/
|
|
59
64
|
domainIdentifier: string | undefined;
|
|
60
65
|
/**
|
|
61
|
-
* <p
|
|
66
|
+
* <p>The identifier of the asset.</p>
|
|
62
67
|
* @public
|
|
63
68
|
*/
|
|
64
69
|
identifier: string | undefined;
|
|
65
70
|
/**
|
|
66
|
-
* <p
|
|
71
|
+
* <p>The revision that is to be made to the asset.</p>
|
|
67
72
|
* @public
|
|
68
73
|
*/
|
|
69
74
|
revision?: string;
|
|
@@ -73,7 +78,8 @@ export interface AcceptPredictionsInput {
|
|
|
73
78
|
*/
|
|
74
79
|
acceptRule?: AcceptRule;
|
|
75
80
|
/**
|
|
76
|
-
* <p
|
|
81
|
+
* <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the
|
|
82
|
+
* target (for example, a column name) that can be accepted.</p>
|
|
77
83
|
* @public
|
|
78
84
|
*/
|
|
79
85
|
acceptChoices?: AcceptChoice[];
|
|
@@ -89,17 +95,17 @@ export interface AcceptPredictionsInput {
|
|
|
89
95
|
*/
|
|
90
96
|
export interface AcceptPredictionsOutput {
|
|
91
97
|
/**
|
|
92
|
-
* <p
|
|
98
|
+
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
93
99
|
* @public
|
|
94
100
|
*/
|
|
95
101
|
domainId: string | undefined;
|
|
96
102
|
/**
|
|
97
|
-
* <p
|
|
103
|
+
* <p>The ID of the asset.</p>
|
|
98
104
|
* @public
|
|
99
105
|
*/
|
|
100
106
|
assetId: string | undefined;
|
|
101
107
|
/**
|
|
102
|
-
* <p
|
|
108
|
+
* <p>The revision that is to be made to the asset.</p>
|
|
103
109
|
* @public
|
|
104
110
|
*/
|
|
105
111
|
revision: string | undefined;
|
|
@@ -554,7 +560,7 @@ export interface CreateAssetInput {
|
|
|
554
560
|
*/
|
|
555
561
|
domainIdentifier: string | undefined;
|
|
556
562
|
/**
|
|
557
|
-
* <p
|
|
563
|
+
* <p>The external identifier of the asset.</p>
|
|
558
564
|
* @public
|
|
559
565
|
*/
|
|
560
566
|
externalIdentifier?: string;
|
|
@@ -652,7 +658,7 @@ export interface CreateAssetOutput {
|
|
|
652
658
|
*/
|
|
653
659
|
typeRevision: string | undefined;
|
|
654
660
|
/**
|
|
655
|
-
* <p
|
|
661
|
+
* <p>The external identifier of the asset.</p>
|
|
656
662
|
* @public
|
|
657
663
|
*/
|
|
658
664
|
externalIdentifier?: string;
|
|
@@ -702,7 +708,7 @@ export interface CreateAssetOutput {
|
|
|
702
708
|
*/
|
|
703
709
|
domainId: string | undefined;
|
|
704
710
|
/**
|
|
705
|
-
* <p
|
|
711
|
+
* <p>The details of an asset published in an Amazon DataZone catalog.</p>
|
|
706
712
|
* @public
|
|
707
713
|
*/
|
|
708
714
|
listing?: AssetListingDetails;
|
|
@@ -812,7 +818,7 @@ export interface CreateAssetRevisionOutput {
|
|
|
812
818
|
*/
|
|
813
819
|
typeRevision: string | undefined;
|
|
814
820
|
/**
|
|
815
|
-
* <p
|
|
821
|
+
* <p>The external identifier of the asset.</p>
|
|
816
822
|
* @public
|
|
817
823
|
*/
|
|
818
824
|
externalIdentifier?: string;
|
|
@@ -862,7 +868,7 @@ export interface CreateAssetRevisionOutput {
|
|
|
862
868
|
*/
|
|
863
869
|
domainId: string | undefined;
|
|
864
870
|
/**
|
|
865
|
-
* <p
|
|
871
|
+
* <p>The details of an asset published in an Amazon DataZone catalog. </p>
|
|
866
872
|
* @public
|
|
867
873
|
*/
|
|
868
874
|
listing?: AssetListingDetails;
|
|
@@ -949,7 +955,7 @@ export interface GetAssetOutput {
|
|
|
949
955
|
*/
|
|
950
956
|
typeRevision: string | undefined;
|
|
951
957
|
/**
|
|
952
|
-
* <p
|
|
958
|
+
* <p>The external ID of the asset.</p>
|
|
953
959
|
* @public
|
|
954
960
|
*/
|
|
955
961
|
externalIdentifier?: string;
|
|
@@ -999,7 +1005,7 @@ export interface GetAssetOutput {
|
|
|
999
1005
|
*/
|
|
1000
1006
|
domainId: string | undefined;
|
|
1001
1007
|
/**
|
|
1002
|
-
* <p
|
|
1008
|
+
* <p>The listing of the asset.</p>
|
|
1003
1009
|
* @public
|
|
1004
1010
|
*/
|
|
1005
1011
|
listing?: AssetListingDetails;
|
|
@@ -1262,7 +1268,7 @@ export interface AssetRevision {
|
|
|
1262
1268
|
createdAt?: Date;
|
|
1263
1269
|
}
|
|
1264
1270
|
/**
|
|
1265
|
-
* <p
|
|
1271
|
+
* <p>The name map for assets.</p>
|
|
1266
1272
|
* @public
|
|
1267
1273
|
*/
|
|
1268
1274
|
export interface AssetTargetNameMap {
|
|
@@ -1599,6 +1605,27 @@ export declare const AuthType: {
|
|
|
1599
1605
|
* @public
|
|
1600
1606
|
*/
|
|
1601
1607
|
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
1608
|
+
/**
|
|
1609
|
+
* @public
|
|
1610
|
+
*/
|
|
1611
|
+
export interface CancelMetadataGenerationRunInput {
|
|
1612
|
+
/**
|
|
1613
|
+
* <p>The ID of the Amazon DataZone domain in which the metadata generation run is to be
|
|
1614
|
+
* cancelled.</p>
|
|
1615
|
+
* @public
|
|
1616
|
+
*/
|
|
1617
|
+
domainIdentifier: string | undefined;
|
|
1618
|
+
/**
|
|
1619
|
+
* <p>The ID of the metadata generation run.</p>
|
|
1620
|
+
* @public
|
|
1621
|
+
*/
|
|
1622
|
+
identifier: string | undefined;
|
|
1623
|
+
}
|
|
1624
|
+
/**
|
|
1625
|
+
* @public
|
|
1626
|
+
*/
|
|
1627
|
+
export interface CancelMetadataGenerationRunOutput {
|
|
1628
|
+
}
|
|
1602
1629
|
/**
|
|
1603
1630
|
* @public
|
|
1604
1631
|
*/
|
|
@@ -2217,8 +2244,8 @@ export interface RedshiftRunConfigurationOutput {
|
|
|
2217
2244
|
*/
|
|
2218
2245
|
accountId?: string;
|
|
2219
2246
|
/**
|
|
2220
|
-
* <p>The Amazon Web Services region included in the configuration details of the Amazon Redshift
|
|
2221
|
-
*
|
|
2247
|
+
* <p>The Amazon Web Services region included in the configuration details of the Amazon Redshift data
|
|
2248
|
+
* source.</p>
|
|
2222
2249
|
* @public
|
|
2223
2250
|
*/
|
|
2224
2251
|
region?: string;
|
|
@@ -3106,7 +3133,7 @@ export interface CreateEnvironmentProfileOutput {
|
|
|
3106
3133
|
userParameters?: CustomParameter[];
|
|
3107
3134
|
}
|
|
3108
3135
|
/**
|
|
3109
|
-
* <p
|
|
3136
|
+
* <p>The model of the API.</p>
|
|
3110
3137
|
* @public
|
|
3111
3138
|
*/
|
|
3112
3139
|
export type Model = Model.SmithyMember | Model.$UnknownMember;
|
|
@@ -3115,7 +3142,7 @@ export type Model = Model.SmithyMember | Model.$UnknownMember;
|
|
|
3115
3142
|
*/
|
|
3116
3143
|
export declare namespace Model {
|
|
3117
3144
|
/**
|
|
3118
|
-
* <p
|
|
3145
|
+
* <p>Indicates the smithy model of the API.</p>
|
|
3119
3146
|
* @public
|
|
3120
3147
|
*/
|
|
3121
3148
|
interface SmithyMember {
|
|
@@ -3500,32 +3527,33 @@ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
|
3500
3527
|
*/
|
|
3501
3528
|
export interface CreateListingChangeSetInput {
|
|
3502
3529
|
/**
|
|
3503
|
-
* <p
|
|
3530
|
+
* <p>The ID of the Amazon DataZone domain.</p>
|
|
3504
3531
|
* @public
|
|
3505
3532
|
*/
|
|
3506
3533
|
domainIdentifier: string | undefined;
|
|
3507
3534
|
/**
|
|
3508
|
-
* <p
|
|
3535
|
+
* <p>The ID of the asset.</p>
|
|
3509
3536
|
* @public
|
|
3510
3537
|
*/
|
|
3511
3538
|
entityIdentifier: string | undefined;
|
|
3512
3539
|
/**
|
|
3513
|
-
* <p
|
|
3540
|
+
* <p>The type of an entity.</p>
|
|
3514
3541
|
* @public
|
|
3515
3542
|
*/
|
|
3516
3543
|
entityType: EntityType | undefined;
|
|
3517
3544
|
/**
|
|
3518
|
-
* <p
|
|
3545
|
+
* <p>The revision of an asset.</p>
|
|
3519
3546
|
* @public
|
|
3520
3547
|
*/
|
|
3521
3548
|
entityRevision?: string;
|
|
3522
3549
|
/**
|
|
3523
|
-
* <p
|
|
3550
|
+
* <p>Specifies whether to publish or unpublish a listing.</p>
|
|
3524
3551
|
* @public
|
|
3525
3552
|
*/
|
|
3526
3553
|
action: ChangeAction | undefined;
|
|
3527
3554
|
/**
|
|
3528
|
-
* <p
|
|
3555
|
+
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
3556
|
+
* request.</p>
|
|
3529
3557
|
* @public
|
|
3530
3558
|
*/
|
|
3531
3559
|
clientToken?: string;
|
|
@@ -3535,17 +3563,17 @@ export interface CreateListingChangeSetInput {
|
|
|
3535
3563
|
*/
|
|
3536
3564
|
export interface CreateListingChangeSetOutput {
|
|
3537
3565
|
/**
|
|
3538
|
-
* <p
|
|
3566
|
+
* <p>The ID of the listing (a record of an asset at a given time).</p>
|
|
3539
3567
|
* @public
|
|
3540
3568
|
*/
|
|
3541
3569
|
listingId: string | undefined;
|
|
3542
3570
|
/**
|
|
3543
|
-
* <p
|
|
3571
|
+
* <p>The revision of a listing.</p>
|
|
3544
3572
|
* @public
|
|
3545
3573
|
*/
|
|
3546
3574
|
listingRevision: string | undefined;
|
|
3547
3575
|
/**
|
|
3548
|
-
* <p
|
|
3576
|
+
* <p>Specifies the status of the listing.</p>
|
|
3549
3577
|
* @public
|
|
3550
3578
|
*/
|
|
3551
3579
|
status: ListingStatus | undefined;
|
|
@@ -3576,17 +3604,18 @@ export interface CreateProjectInput {
|
|
|
3576
3604
|
glossaryTerms?: string[];
|
|
3577
3605
|
}
|
|
3578
3606
|
/**
|
|
3579
|
-
*
|
|
3607
|
+
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
3608
|
+
* completed.</p>
|
|
3580
3609
|
* @public
|
|
3581
3610
|
*/
|
|
3582
3611
|
export interface ProjectDeletionError {
|
|
3583
3612
|
/**
|
|
3584
|
-
*
|
|
3613
|
+
* <p>The code of the project deletion error.</p>
|
|
3585
3614
|
* @public
|
|
3586
3615
|
*/
|
|
3587
3616
|
code?: string;
|
|
3588
3617
|
/**
|
|
3589
|
-
*
|
|
3618
|
+
* <p>The message of the project deletion error.</p>
|
|
3590
3619
|
* @public
|
|
3591
3620
|
*/
|
|
3592
3621
|
message?: string;
|
|
@@ -3629,12 +3658,13 @@ export interface CreateProjectOutput {
|
|
|
3629
3658
|
*/
|
|
3630
3659
|
description?: string;
|
|
3631
3660
|
/**
|
|
3632
|
-
*
|
|
3661
|
+
* <p>The status of the Amazon DataZone project that was created.</p>
|
|
3633
3662
|
* @public
|
|
3634
3663
|
*/
|
|
3635
3664
|
projectStatus?: ProjectStatus;
|
|
3636
3665
|
/**
|
|
3637
|
-
*
|
|
3666
|
+
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
3667
|
+
* completed.</p>
|
|
3638
3668
|
* @public
|
|
3639
3669
|
*/
|
|
3640
3670
|
failureReasons?: ProjectDeletionError[];
|
|
@@ -4091,7 +4121,7 @@ export interface CreateSubscriptionRequestInput {
|
|
|
4091
4121
|
*/
|
|
4092
4122
|
subscribedPrincipals: SubscribedPrincipalInput[] | undefined;
|
|
4093
4123
|
/**
|
|
4094
|
-
* <p
|
|
4124
|
+
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
4095
4125
|
* @public
|
|
4096
4126
|
*/
|
|
4097
4127
|
subscribedListings: SubscribedListingInput[] | undefined;
|
|
@@ -4157,7 +4187,7 @@ export interface CreateSubscriptionRequestOutput {
|
|
|
4157
4187
|
*/
|
|
4158
4188
|
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
4159
4189
|
/**
|
|
4160
|
-
* <p
|
|
4190
|
+
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
4161
4191
|
* @public
|
|
4162
4192
|
*/
|
|
4163
4193
|
subscribedListings: SubscribedListing[] | undefined;
|
|
@@ -4779,7 +4809,7 @@ export interface GetDataSourceOutput {
|
|
|
4779
4809
|
*/
|
|
4780
4810
|
configuration?: DataSourceConfigurationOutput;
|
|
4781
4811
|
/**
|
|
4782
|
-
* <p
|
|
4812
|
+
* <p>The recommendation configuration of the data source.</p>
|
|
4783
4813
|
* @public
|
|
4784
4814
|
*/
|
|
4785
4815
|
recommendation?: RecommendationConfiguration;
|
|
@@ -5611,7 +5641,7 @@ export interface DeleteProjectInput {
|
|
|
5611
5641
|
*/
|
|
5612
5642
|
identifier: string | undefined;
|
|
5613
5643
|
/**
|
|
5614
|
-
*
|
|
5644
|
+
* <p>Specifies the optional flag to delete all child entities within the project.</p>
|
|
5615
5645
|
* @public
|
|
5616
5646
|
*/
|
|
5617
5647
|
skipDeletionCheck?: boolean;
|
|
@@ -5773,7 +5803,7 @@ export interface DeleteDomainInput {
|
|
|
5773
5803
|
*/
|
|
5774
5804
|
clientToken?: string;
|
|
5775
5805
|
/**
|
|
5776
|
-
*
|
|
5806
|
+
* <p>Specifies the optional flag to delete all child entities within the domain.</p>
|
|
5777
5807
|
* @public
|
|
5778
5808
|
*/
|
|
5779
5809
|
skipDeletionCheck?: boolean;
|
|
@@ -6800,12 +6830,13 @@ export interface GetProjectOutput {
|
|
|
6800
6830
|
*/
|
|
6801
6831
|
description?: string;
|
|
6802
6832
|
/**
|
|
6803
|
-
*
|
|
6833
|
+
* <p>The status of the project.</p>
|
|
6804
6834
|
* @public
|
|
6805
6835
|
*/
|
|
6806
6836
|
projectStatus?: ProjectStatus;
|
|
6807
6837
|
/**
|
|
6808
|
-
*
|
|
6838
|
+
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
6839
|
+
* completed.</p>
|
|
6809
6840
|
* @public
|
|
6810
6841
|
*/
|
|
6811
6842
|
failureReasons?: ProjectDeletionError[];
|
|
@@ -6890,7 +6921,7 @@ export interface GetSubscriptionOutput {
|
|
|
6890
6921
|
*/
|
|
6891
6922
|
subscribedPrincipal: SubscribedPrincipal | undefined;
|
|
6892
6923
|
/**
|
|
6893
|
-
* <p
|
|
6924
|
+
* <p>The details of the published asset for which the subscription grant is created.</p>
|
|
6894
6925
|
* @public
|
|
6895
6926
|
*/
|
|
6896
6927
|
subscribedListing: SubscribedListing | undefined;
|
|
@@ -7973,7 +8004,7 @@ export interface ListEnvironmentsInput {
|
|
|
7973
8004
|
*/
|
|
7974
8005
|
provider?: string;
|
|
7975
8006
|
/**
|
|
7976
|
-
* <p
|
|
8007
|
+
* <p>The name of the environment.</p>
|
|
7977
8008
|
* @public
|
|
7978
8009
|
*/
|
|
7979
8010
|
name?: string;
|
|
@@ -8093,12 +8124,12 @@ export interface ListEnvironmentsOutput {
|
|
|
8093
8124
|
*/
|
|
8094
8125
|
export interface DeleteListingInput {
|
|
8095
8126
|
/**
|
|
8096
|
-
* <p
|
|
8127
|
+
* <p>The ID of the Amazon DataZone domain.</p>
|
|
8097
8128
|
* @public
|
|
8098
8129
|
*/
|
|
8099
8130
|
domainIdentifier: string | undefined;
|
|
8100
8131
|
/**
|
|
8101
|
-
* <p
|
|
8132
|
+
* <p>The ID of the listing to be deleted.</p>
|
|
8102
8133
|
* @public
|
|
8103
8134
|
*/
|
|
8104
8135
|
identifier: string | undefined;
|
|
@@ -8113,17 +8144,17 @@ export interface DeleteListingOutput {
|
|
|
8113
8144
|
*/
|
|
8114
8145
|
export interface GetListingInput {
|
|
8115
8146
|
/**
|
|
8116
|
-
* <p
|
|
8147
|
+
* <p>The ID of the Amazon DataZone domain.</p>
|
|
8117
8148
|
* @public
|
|
8118
8149
|
*/
|
|
8119
8150
|
domainIdentifier: string | undefined;
|
|
8120
8151
|
/**
|
|
8121
|
-
* <p
|
|
8152
|
+
* <p>The ID of the listing.</p>
|
|
8122
8153
|
* @public
|
|
8123
8154
|
*/
|
|
8124
8155
|
identifier: string | undefined;
|
|
8125
8156
|
/**
|
|
8126
|
-
* <p
|
|
8157
|
+
* <p>The revision of the listing.</p>
|
|
8127
8158
|
* @public
|
|
8128
8159
|
*/
|
|
8129
8160
|
listingRevision?: string;
|
|
@@ -8163,22 +8194,22 @@ export declare namespace ListingItem {
|
|
|
8163
8194
|
*/
|
|
8164
8195
|
export interface GetListingOutput {
|
|
8165
8196
|
/**
|
|
8166
|
-
* <p
|
|
8197
|
+
* <p>The ID of the Amazon DataZone domain.</p>
|
|
8167
8198
|
* @public
|
|
8168
8199
|
*/
|
|
8169
8200
|
domainId: string | undefined;
|
|
8170
8201
|
/**
|
|
8171
|
-
* <p
|
|
8202
|
+
* <p>The ID of the listing.</p>
|
|
8172
8203
|
* @public
|
|
8173
8204
|
*/
|
|
8174
8205
|
id: string | undefined;
|
|
8175
8206
|
/**
|
|
8176
|
-
* <p
|
|
8207
|
+
* <p>The revision of a listing.</p>
|
|
8177
8208
|
* @public
|
|
8178
8209
|
*/
|
|
8179
8210
|
listingRevision: string | undefined;
|
|
8180
8211
|
/**
|
|
8181
|
-
* <p
|
|
8212
|
+
* <p>The timestamp of when the listing was created.</p>
|
|
8182
8213
|
* @public
|
|
8183
8214
|
*/
|
|
8184
8215
|
createdAt?: Date;
|
|
@@ -8198,22 +8229,22 @@ export interface GetListingOutput {
|
|
|
8198
8229
|
*/
|
|
8199
8230
|
updatedBy?: string;
|
|
8200
8231
|
/**
|
|
8201
|
-
* <p
|
|
8232
|
+
* <p>The details of a listing.</p>
|
|
8202
8233
|
* @public
|
|
8203
8234
|
*/
|
|
8204
8235
|
item?: ListingItem;
|
|
8205
8236
|
/**
|
|
8206
|
-
* <p
|
|
8237
|
+
* <p>The name of the listing.</p>
|
|
8207
8238
|
* @public
|
|
8208
8239
|
*/
|
|
8209
8240
|
name?: string;
|
|
8210
8241
|
/**
|
|
8211
|
-
* <p
|
|
8242
|
+
* <p>The description of the listing.</p>
|
|
8212
8243
|
* @public
|
|
8213
8244
|
*/
|
|
8214
8245
|
description?: string;
|
|
8215
8246
|
/**
|
|
8216
|
-
* <p
|
|
8247
|
+
* <p>The status of the listing.</p>
|
|
8217
8248
|
* @public
|
|
8218
8249
|
*/
|
|
8219
8250
|
status?: ListingStatus;
|
|
@@ -8633,7 +8664,7 @@ export interface ListProjectsInput {
|
|
|
8633
8664
|
*/
|
|
8634
8665
|
groupIdentifier?: string;
|
|
8635
8666
|
/**
|
|
8636
|
-
* <p
|
|
8667
|
+
* <p>The name of the project.</p>
|
|
8637
8668
|
* @public
|
|
8638
8669
|
*/
|
|
8639
8670
|
name?: string;
|
|
@@ -8683,12 +8714,13 @@ export interface ProjectSummary {
|
|
|
8683
8714
|
*/
|
|
8684
8715
|
description?: string;
|
|
8685
8716
|
/**
|
|
8686
|
-
*
|
|
8717
|
+
* <p>The status of the project.</p>
|
|
8687
8718
|
* @public
|
|
8688
8719
|
*/
|
|
8689
8720
|
projectStatus?: ProjectStatus;
|
|
8690
8721
|
/**
|
|
8691
|
-
*
|
|
8722
|
+
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
8723
|
+
* completed.</p>
|
|
8692
8724
|
* @public
|
|
8693
8725
|
*/
|
|
8694
8726
|
failureReasons?: ProjectDeletionError[];
|
|
@@ -9345,87 +9377,44 @@ export interface ListTagsForResourceResponse {
|
|
|
9345
9377
|
tags?: Record<string, string>;
|
|
9346
9378
|
}
|
|
9347
9379
|
/**
|
|
9348
|
-
* <p>The details of the automatically generated business metadata that is rejected.</p>
|
|
9349
9380
|
* @public
|
|
9350
9381
|
*/
|
|
9351
|
-
export interface
|
|
9382
|
+
export interface GetMetadataGenerationRunInput {
|
|
9352
9383
|
/**
|
|
9353
|
-
* <p>
|
|
9354
|
-
*
|
|
9384
|
+
* <p>The ID of the Amazon DataZone domain the metadata generation run of which you want to
|
|
9385
|
+
* get.</p>
|
|
9355
9386
|
* @public
|
|
9356
9387
|
*/
|
|
9357
|
-
|
|
9388
|
+
domainIdentifier: string | undefined;
|
|
9358
9389
|
/**
|
|
9359
|
-
* <p>
|
|
9390
|
+
* <p>The identifier of the metadata generation run.</p>
|
|
9360
9391
|
* @public
|
|
9361
9392
|
*/
|
|
9362
|
-
|
|
9393
|
+
identifier: string | undefined;
|
|
9363
9394
|
}
|
|
9364
9395
|
/**
|
|
9365
9396
|
* @public
|
|
9366
9397
|
* @enum
|
|
9367
9398
|
*/
|
|
9368
|
-
export declare const
|
|
9369
|
-
readonly
|
|
9370
|
-
readonly
|
|
9399
|
+
export declare const MetadataGenerationRunStatus: {
|
|
9400
|
+
readonly CANCELED: "CANCELED";
|
|
9401
|
+
readonly FAILED: "FAILED";
|
|
9402
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
9403
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
9404
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
9371
9405
|
};
|
|
9372
9406
|
/**
|
|
9373
9407
|
* @public
|
|
9374
9408
|
*/
|
|
9375
|
-
export type
|
|
9409
|
+
export type MetadataGenerationRunStatus = (typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
9376
9410
|
/**
|
|
9377
|
-
*
|
|
9378
|
-
* @public
|
|
9411
|
+
* @internal
|
|
9379
9412
|
*/
|
|
9380
|
-
export
|
|
9381
|
-
/**
|
|
9382
|
-
* <p>Specifies whether you want to reject the top prediction for all targets or none.</p>
|
|
9383
|
-
* @public
|
|
9384
|
-
*/
|
|
9385
|
-
rule?: RejectRuleBehavior;
|
|
9386
|
-
/**
|
|
9387
|
-
* <p>The confidence score that specifies the condition at which a prediction can be
|
|
9388
|
-
* rejected.</p>
|
|
9389
|
-
* @public
|
|
9390
|
-
*/
|
|
9391
|
-
threshold?: number;
|
|
9392
|
-
}
|
|
9413
|
+
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
9393
9414
|
/**
|
|
9394
|
-
* @
|
|
9415
|
+
* @internal
|
|
9395
9416
|
*/
|
|
9396
|
-
export
|
|
9397
|
-
/**
|
|
9398
|
-
* <p>The identifier of the Amazon DataZone domain.</p>
|
|
9399
|
-
* @public
|
|
9400
|
-
*/
|
|
9401
|
-
domainIdentifier: string | undefined;
|
|
9402
|
-
/**
|
|
9403
|
-
* <p>The identifier of the prediction.</p>
|
|
9404
|
-
* @public
|
|
9405
|
-
*/
|
|
9406
|
-
identifier: string | undefined;
|
|
9407
|
-
/**
|
|
9408
|
-
* <p/>
|
|
9409
|
-
* @public
|
|
9410
|
-
*/
|
|
9411
|
-
revision?: string;
|
|
9412
|
-
/**
|
|
9413
|
-
* <p/>
|
|
9414
|
-
* @public
|
|
9415
|
-
*/
|
|
9416
|
-
rejectRule?: RejectRule;
|
|
9417
|
-
/**
|
|
9418
|
-
* <p/>
|
|
9419
|
-
* @public
|
|
9420
|
-
*/
|
|
9421
|
-
rejectChoices?: RejectChoice[];
|
|
9422
|
-
/**
|
|
9423
|
-
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
9424
|
-
* request.</p>
|
|
9425
|
-
* @public
|
|
9426
|
-
*/
|
|
9427
|
-
clientToken?: string;
|
|
9428
|
-
}
|
|
9417
|
+
export declare const AcceptPredictionsInputFilterSensitiveLog: (obj: AcceptPredictionsInput) => any;
|
|
9429
9418
|
/**
|
|
9430
9419
|
* @internal
|
|
9431
9420
|
*/
|