@aws-sdk/client-datazone 3.687.0 → 3.692.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/dist-types/models/models_0.d.ts +606 -606
- package/dist-types/models/models_1.d.ts +552 -552
- package/dist-types/ts3.4/models/models_0.d.ts +618 -606
- package/dist-types/ts3.4/models/models_1.d.ts +552 -552
- package/package.json +35 -35
|
@@ -17,12 +17,12 @@ export interface AcceptChoice {
|
|
|
17
17
|
* be accepted.</p>
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
predictionChoice?: number;
|
|
20
|
+
predictionChoice?: number | undefined;
|
|
21
21
|
/**
|
|
22
22
|
* <p>The edit of the prediction.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
editedValue?: string;
|
|
25
|
+
editedValue?: string | undefined;
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
28
|
* <p>The accepted asset scope.</p>
|
|
@@ -61,13 +61,13 @@ export interface AcceptRule {
|
|
|
61
61
|
* <p>Specifies whether you want to accept the top prediction for all targets or none.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
rule?: AcceptRuleBehavior;
|
|
64
|
+
rule?: AcceptRuleBehavior | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* <p>The confidence score that specifies the condition at which a prediction can be
|
|
67
67
|
* accepted.</p>
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
|
-
threshold?: number;
|
|
70
|
+
threshold?: number | undefined;
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
73
|
* @public
|
|
@@ -87,24 +87,24 @@ export interface AcceptPredictionsInput {
|
|
|
87
87
|
* <p>The revision that is to be made to the asset.</p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
revision?: string;
|
|
90
|
+
revision?: string | undefined;
|
|
91
91
|
/**
|
|
92
92
|
* <p>Specifies the rule (or the conditions) under which a prediction can be accepted.</p>
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
|
-
acceptRule?: AcceptRule;
|
|
95
|
+
acceptRule?: AcceptRule | undefined;
|
|
96
96
|
/**
|
|
97
97
|
* <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the
|
|
98
98
|
* target (for example, a column name) that can be accepted.</p>
|
|
99
99
|
* @public
|
|
100
100
|
*/
|
|
101
|
-
acceptChoices?: AcceptChoice[];
|
|
101
|
+
acceptChoices?: AcceptChoice[] | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is
|
|
104
104
|
* automatically populated if not provided.</p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
clientToken?: string;
|
|
107
|
+
clientToken?: string | undefined;
|
|
108
108
|
}
|
|
109
109
|
/**
|
|
110
110
|
* @public
|
|
@@ -231,12 +231,12 @@ export interface AcceptSubscriptionRequestInput {
|
|
|
231
231
|
* request.</p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
decisionComment?: string;
|
|
234
|
+
decisionComment?: string | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* <p>The asset scopes of the accept subscription request.</p>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
assetScopes?: AcceptedAssetScope[];
|
|
239
|
+
assetScopes?: AcceptedAssetScope[] | undefined;
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* @public
|
|
@@ -275,7 +275,7 @@ export interface AssetScope {
|
|
|
275
275
|
* <p>The error message of the asset scope.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
errorMessage?: string;
|
|
278
|
+
errorMessage?: string | undefined;
|
|
279
279
|
}
|
|
280
280
|
/**
|
|
281
281
|
* <p>Details of a glossary term attached to the inventory asset.</p>
|
|
@@ -286,12 +286,12 @@ export interface DetailedGlossaryTerm {
|
|
|
286
286
|
* <p>The name of a glossary term attached to the inventory asset.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
name?: string;
|
|
289
|
+
name?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>The shoft description of a glossary term attached to the inventory asset.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
shortDescription?: string;
|
|
294
|
+
shortDescription?: string | undefined;
|
|
295
295
|
}
|
|
296
296
|
/**
|
|
297
297
|
* <p>The details of the published asset for which the subscription grant is created.</p>
|
|
@@ -303,34 +303,34 @@ export interface SubscribedAssetListing {
|
|
|
303
303
|
* created.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
entityId?: string;
|
|
306
|
+
entityId?: string | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>The revision of the published asset for which the subscription grant is created.</p>
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
entityRevision?: string;
|
|
311
|
+
entityRevision?: string | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* <p>The type of the published asset for which the subscription grant is created.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
entityType?: string;
|
|
316
|
+
entityType?: string | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>The forms attached to the published asset for which the subscription grant is
|
|
319
319
|
* created.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
forms?: string;
|
|
322
|
+
forms?: string | undefined;
|
|
323
323
|
/**
|
|
324
324
|
* <p>The glossary terms attached to the published asset for which the subscription grant is
|
|
325
325
|
* created.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
328
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
329
329
|
/**
|
|
330
330
|
* <p>The asset scope of the subscribed asset listing.</p>
|
|
331
331
|
* @public
|
|
332
332
|
*/
|
|
333
|
-
assetScope?: AssetScope;
|
|
333
|
+
assetScope?: AssetScope | undefined;
|
|
334
334
|
}
|
|
335
335
|
/**
|
|
336
336
|
* <p>The listing of the asset in a data product.</p>
|
|
@@ -341,17 +341,17 @@ export interface AssetInDataProductListingItem {
|
|
|
341
341
|
* <p>The entity ID of the listing of the asset in a data product.</p>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
entityId?: string;
|
|
344
|
+
entityId?: string | undefined;
|
|
345
345
|
/**
|
|
346
346
|
* <p>The entity revision of the listing of the asset in a data product.</p>
|
|
347
347
|
* @public
|
|
348
348
|
*/
|
|
349
|
-
entityRevision?: string;
|
|
349
|
+
entityRevision?: string | undefined;
|
|
350
350
|
/**
|
|
351
351
|
* <p>The entity type of the listing of the asset in a data product.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
entityType?: string;
|
|
354
|
+
entityType?: string | undefined;
|
|
355
355
|
}
|
|
356
356
|
/**
|
|
357
357
|
* <p>The data product listing.</p>
|
|
@@ -362,32 +362,32 @@ export interface SubscribedProductListing {
|
|
|
362
362
|
* <p>The ID of the data product listing.</p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
|
-
entityId?: string;
|
|
365
|
+
entityId?: string | undefined;
|
|
366
366
|
/**
|
|
367
367
|
* <p>The revision of the data product listing.</p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
entityRevision?: string;
|
|
370
|
+
entityRevision?: string | undefined;
|
|
371
371
|
/**
|
|
372
372
|
* <p>The glossary terms of the data product listing.</p>
|
|
373
373
|
* @public
|
|
374
374
|
*/
|
|
375
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
375
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
376
376
|
/**
|
|
377
377
|
* <p>The name of the data product listing.</p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
name?: string;
|
|
380
|
+
name?: string | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* <p>The description of the data product listing.</p>
|
|
383
383
|
* @public
|
|
384
384
|
*/
|
|
385
|
-
description?: string;
|
|
385
|
+
description?: string | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* <p>The data assets of the data product listing.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
assetListings?: AssetInDataProductListingItem[];
|
|
390
|
+
assetListings?: AssetInDataProductListingItem[] | undefined;
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
393
393
|
* <p>The published asset for which the subscription grant is created.</p>
|
|
@@ -446,7 +446,7 @@ export interface SubscribedListing {
|
|
|
446
446
|
* <p>The revision of the published asset for which the subscription grant is created.</p>
|
|
447
447
|
* @public
|
|
448
448
|
*/
|
|
449
|
-
revision?: string;
|
|
449
|
+
revision?: string | undefined;
|
|
450
450
|
/**
|
|
451
451
|
* <p>The name of the published asset for which the subscription grant is created.</p>
|
|
452
452
|
* @public
|
|
@@ -474,7 +474,7 @@ export interface SubscribedListing {
|
|
|
474
474
|
* is created.</p>
|
|
475
475
|
* @public
|
|
476
476
|
*/
|
|
477
|
-
ownerProjectName?: string;
|
|
477
|
+
ownerProjectName?: string | undefined;
|
|
478
478
|
}
|
|
479
479
|
/**
|
|
480
480
|
* <p>The project that has the subscription grant.</p>
|
|
@@ -485,12 +485,12 @@ export interface SubscribedProject {
|
|
|
485
485
|
* <p>The identifier of the project that has the subscription grant.</p>
|
|
486
486
|
* @public
|
|
487
487
|
*/
|
|
488
|
-
id?: string;
|
|
488
|
+
id?: string | undefined;
|
|
489
489
|
/**
|
|
490
490
|
* <p>The name of the project that has the subscription grant.</p>
|
|
491
491
|
* @public
|
|
492
492
|
*/
|
|
493
|
-
name?: string;
|
|
493
|
+
name?: string | undefined;
|
|
494
494
|
}
|
|
495
495
|
/**
|
|
496
496
|
* <p>The principal that has the subscription grant for the asset.</p>
|
|
@@ -540,7 +540,7 @@ export interface AcceptSubscriptionRequestOutput {
|
|
|
540
540
|
* <p>Specifies the Amazon DataZone user who updated the subscription request.</p>
|
|
541
541
|
* @public
|
|
542
542
|
*/
|
|
543
|
-
updatedBy?: string;
|
|
543
|
+
updatedBy?: string | undefined;
|
|
544
544
|
/**
|
|
545
545
|
* <p>The unique identifier of the Amazon DataZone domain where the specified subscription request
|
|
546
546
|
* was accepted.</p>
|
|
@@ -582,12 +582,12 @@ export interface AcceptSubscriptionRequestOutput {
|
|
|
582
582
|
* <p>Specifes the ID of the Amazon DataZone user who reviewed the subscription request.</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
reviewerId?: string;
|
|
585
|
+
reviewerId?: string | undefined;
|
|
586
586
|
/**
|
|
587
587
|
* <p>Specifies the reason for accepting the subscription request.</p>
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
decisionComment?: string;
|
|
590
|
+
decisionComment?: string | undefined;
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
593
593
|
* <p>The parameters of the console link specified as part of the environment action.</p>
|
|
@@ -598,7 +598,7 @@ export interface AwsConsoleLinkParameters {
|
|
|
598
598
|
* <p>The URI of the console link specified as part of the environment action.</p>
|
|
599
599
|
* @public
|
|
600
600
|
*/
|
|
601
|
-
uri?: string;
|
|
601
|
+
uri?: string | undefined;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
604
604
|
* <p>The parameters of the environment action.</p>
|
|
@@ -734,7 +734,7 @@ export interface AddEntityOwnerInput {
|
|
|
734
734
|
* request.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
clientToken?: string;
|
|
737
|
+
clientToken?: string | undefined;
|
|
738
738
|
}
|
|
739
739
|
/**
|
|
740
740
|
* @public
|
|
@@ -762,7 +762,7 @@ export interface AddToProjectMemberPoolPolicyGrantDetail {
|
|
|
762
762
|
* <p>Specifies whether the policy grant is applied to child domain units.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
includeChildDomainUnits?: boolean;
|
|
765
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
766
766
|
}
|
|
767
767
|
/**
|
|
768
768
|
* <p>The details of the policy grant.</p>
|
|
@@ -773,7 +773,7 @@ export interface CreateAssetTypePolicyGrantDetail {
|
|
|
773
773
|
* <p>Specifies whether the policy grant is applied to child domain units.</p>
|
|
774
774
|
* @public
|
|
775
775
|
*/
|
|
776
|
-
includeChildDomainUnits?: boolean;
|
|
776
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
777
777
|
}
|
|
778
778
|
/**
|
|
779
779
|
* <p>The details of the policy grant.</p>
|
|
@@ -784,7 +784,7 @@ export interface CreateDomainUnitPolicyGrantDetail {
|
|
|
784
784
|
* <p>Specifies whether the policy grant is applied to child domain units.</p>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
includeChildDomainUnits?: boolean;
|
|
787
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
788
788
|
}
|
|
789
789
|
/**
|
|
790
790
|
* <p>The details of the policy of creating an environment.</p>
|
|
@@ -801,7 +801,7 @@ export interface CreateEnvironmentProfilePolicyGrantDetail {
|
|
|
801
801
|
* <p>The ID of the domain unit.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
domainUnitId?: string;
|
|
804
|
+
domainUnitId?: string | undefined;
|
|
805
805
|
}
|
|
806
806
|
/**
|
|
807
807
|
* <p>The details of the policy grant.</p>
|
|
@@ -812,7 +812,7 @@ export interface CreateFormTypePolicyGrantDetail {
|
|
|
812
812
|
* <p>Specifies whether the policy grant is applied to child domain units.</p>
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
includeChildDomainUnits?: boolean;
|
|
815
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* <p>The details of the policy grant.</p>
|
|
@@ -823,7 +823,7 @@ export interface CreateGlossaryPolicyGrantDetail {
|
|
|
823
823
|
* <p>Specifies whether the policy grant is applied to child domain units.</p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
includeChildDomainUnits?: boolean;
|
|
826
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
827
827
|
}
|
|
828
828
|
/**
|
|
829
829
|
* <p>The details of the policy grant.</p>
|
|
@@ -834,7 +834,7 @@ export interface CreateProjectPolicyGrantDetail {
|
|
|
834
834
|
* <p>Specifies whether the policy grant is applied to child domain units.</p>
|
|
835
835
|
* @public
|
|
836
836
|
*/
|
|
837
|
-
includeChildDomainUnits?: boolean;
|
|
837
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
838
838
|
}
|
|
839
839
|
/**
|
|
840
840
|
* <p>The grant details of the override domain unit owners policy.</p>
|
|
@@ -845,7 +845,7 @@ export interface OverrideDomainUnitOwnersPolicyGrantDetail {
|
|
|
845
845
|
* <p>Specifies whether the policy is inherited by child domain units.</p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
includeChildDomainUnits?: boolean;
|
|
848
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
849
849
|
}
|
|
850
850
|
/**
|
|
851
851
|
* <p>The details of the override project owners policy grant.</p>
|
|
@@ -856,7 +856,7 @@ export interface OverrideProjectOwnersPolicyGrantDetail {
|
|
|
856
856
|
* <p>Specifies whether the policy is inherited by child domain units.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
includeChildDomainUnits?: boolean;
|
|
859
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
862
|
* <p>The details of the policy grant.</p>
|
|
@@ -1194,12 +1194,12 @@ export interface DomainUnitPolicyGrantPrincipal {
|
|
|
1194
1194
|
* <p>The ID of the domain unit.</p>
|
|
1195
1195
|
* @public
|
|
1196
1196
|
*/
|
|
1197
|
-
domainUnitIdentifier?: string;
|
|
1197
|
+
domainUnitIdentifier?: string | undefined;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* <p>The grant filter for the domain unit.</p>
|
|
1200
1200
|
* @public
|
|
1201
1201
|
*/
|
|
1202
|
-
domainUnitGrantFilter?: DomainUnitGrantFilter;
|
|
1202
|
+
domainUnitGrantFilter?: DomainUnitGrantFilter | undefined;
|
|
1203
1203
|
}
|
|
1204
1204
|
/**
|
|
1205
1205
|
* <p>The group principal to whom the policy is granted.</p>
|
|
@@ -1258,7 +1258,7 @@ export interface DomainUnitFilterForProject {
|
|
|
1258
1258
|
* <p>Specifies whether to include child domain units.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
includeChildDomainUnits?: boolean;
|
|
1261
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
1262
1262
|
}
|
|
1263
1263
|
/**
|
|
1264
1264
|
* <p>The project grant filter.</p>
|
|
@@ -1304,12 +1304,12 @@ export interface ProjectPolicyGrantPrincipal {
|
|
|
1304
1304
|
* <p>The project ID of the project policy grant principal.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
projectIdentifier?: string;
|
|
1307
|
+
projectIdentifier?: string | undefined;
|
|
1308
1308
|
/**
|
|
1309
1309
|
* <p>The project grant filter of the project policy grant principal.</p>
|
|
1310
1310
|
* @public
|
|
1311
1311
|
*/
|
|
1312
|
-
projectGrantFilter?: ProjectGrantFilter;
|
|
1312
|
+
projectGrantFilter?: ProjectGrantFilter | undefined;
|
|
1313
1313
|
}
|
|
1314
1314
|
/**
|
|
1315
1315
|
* <p>The all users grant filter.</p>
|
|
@@ -1470,7 +1470,7 @@ export interface AddPolicyGrantInput {
|
|
|
1470
1470
|
* request.</p>
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
clientToken?: string;
|
|
1473
|
+
clientToken?: string | undefined;
|
|
1474
1474
|
}
|
|
1475
1475
|
/**
|
|
1476
1476
|
* @public
|
|
@@ -1520,17 +1520,17 @@ export interface FormInput {
|
|
|
1520
1520
|
* <p>The ID of the metadata form type.</p>
|
|
1521
1521
|
* @public
|
|
1522
1522
|
*/
|
|
1523
|
-
typeIdentifier?: string;
|
|
1523
|
+
typeIdentifier?: string | undefined;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* <p>The revision of the metadata form type.</p>
|
|
1526
1526
|
* @public
|
|
1527
1527
|
*/
|
|
1528
|
-
typeRevision?: string;
|
|
1528
|
+
typeRevision?: string | undefined;
|
|
1529
1529
|
/**
|
|
1530
1530
|
* <p>The content of the metadata form.</p>
|
|
1531
1531
|
* @public
|
|
1532
1532
|
*/
|
|
1533
|
-
content?: string;
|
|
1533
|
+
content?: string | undefined;
|
|
1534
1534
|
}
|
|
1535
1535
|
/**
|
|
1536
1536
|
* <p>The configuration of the business name generation.</p>
|
|
@@ -1541,7 +1541,7 @@ export interface BusinessNameGenerationConfiguration {
|
|
|
1541
1541
|
* <p>Specifies whether the business name generation is enabled.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
enabled?: boolean;
|
|
1544
|
+
enabled?: boolean | undefined;
|
|
1545
1545
|
}
|
|
1546
1546
|
/**
|
|
1547
1547
|
* <p>The configuration of the prediction.</p>
|
|
@@ -1552,7 +1552,7 @@ export interface PredictionConfiguration {
|
|
|
1552
1552
|
* <p>The business name generation mechanism.</p>
|
|
1553
1553
|
* @public
|
|
1554
1554
|
*/
|
|
1555
|
-
businessNameGeneration?: BusinessNameGenerationConfiguration;
|
|
1555
|
+
businessNameGeneration?: BusinessNameGenerationConfiguration | undefined;
|
|
1556
1556
|
}
|
|
1557
1557
|
/**
|
|
1558
1558
|
* @public
|
|
@@ -1572,7 +1572,7 @@ export interface CreateAssetInput {
|
|
|
1572
1572
|
* <p>The external identifier of the asset.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
externalIdentifier?: string;
|
|
1575
|
+
externalIdentifier?: string | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>The unique identifier of this asset's type.</p>
|
|
1578
1578
|
* @public
|
|
@@ -1582,22 +1582,22 @@ export interface CreateAssetInput {
|
|
|
1582
1582
|
* <p>The revision of this asset's type.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
typeRevision?: string;
|
|
1585
|
+
typeRevision?: string | undefined;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* <p>Asset description.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
description?: string;
|
|
1590
|
+
description?: string | undefined;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>Glossary terms attached to the asset.</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
glossaryTerms?: string[];
|
|
1595
|
+
glossaryTerms?: string[] | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* <p>Metadata forms attached to the asset.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
formsInput?: FormInput[];
|
|
1600
|
+
formsInput?: FormInput[] | undefined;
|
|
1601
1601
|
/**
|
|
1602
1602
|
* <p>The unique identifier of the project that owns this asset.</p>
|
|
1603
1603
|
* @public
|
|
@@ -1608,13 +1608,13 @@ export interface CreateAssetInput {
|
|
|
1608
1608
|
* asset.</p>
|
|
1609
1609
|
* @public
|
|
1610
1610
|
*/
|
|
1611
|
-
predictionConfiguration?: PredictionConfiguration;
|
|
1611
|
+
predictionConfiguration?: PredictionConfiguration | undefined;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
1614
1614
|
* request.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
clientToken?: string;
|
|
1617
|
+
clientToken?: string | undefined;
|
|
1618
1618
|
}
|
|
1619
1619
|
/**
|
|
1620
1620
|
* <p>The details of a metadata form.</p>
|
|
@@ -1630,17 +1630,17 @@ export interface FormOutput {
|
|
|
1630
1630
|
* <p>The name of the metadata form type.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
typeName?: string;
|
|
1633
|
+
typeName?: string | undefined;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* <p>The revision of the metadata form type.</p>
|
|
1636
1636
|
* @public
|
|
1637
1637
|
*/
|
|
1638
|
-
typeRevision?: string;
|
|
1638
|
+
typeRevision?: string | undefined;
|
|
1639
1639
|
/**
|
|
1640
1640
|
* <p>The content of the metadata form.</p>
|
|
1641
1641
|
* @public
|
|
1642
1642
|
*/
|
|
1643
|
-
content?: string;
|
|
1643
|
+
content?: string | undefined;
|
|
1644
1644
|
}
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>The summary of the time series data points form.</p>
|
|
@@ -1661,7 +1661,7 @@ export interface TimeSeriesDataPointSummaryFormOutput {
|
|
|
1661
1661
|
* <p>The type revision of the time series data points summary form.</p>
|
|
1662
1662
|
* @public
|
|
1663
1663
|
*/
|
|
1664
|
-
typeRevision?: string;
|
|
1664
|
+
typeRevision?: string | undefined;
|
|
1665
1665
|
/**
|
|
1666
1666
|
* <p>The timestamp of the time series data points summary form.</p>
|
|
1667
1667
|
* @public
|
|
@@ -1671,12 +1671,12 @@ export interface TimeSeriesDataPointSummaryFormOutput {
|
|
|
1671
1671
|
* <p>The content of the summary of the time series data points form.</p>
|
|
1672
1672
|
* @public
|
|
1673
1673
|
*/
|
|
1674
|
-
contentSummary?: string;
|
|
1674
|
+
contentSummary?: string | undefined;
|
|
1675
1675
|
/**
|
|
1676
1676
|
* <p>The ID of the time series data points summary form.</p>
|
|
1677
1677
|
* @public
|
|
1678
1678
|
*/
|
|
1679
|
-
id?: string;
|
|
1679
|
+
id?: string | undefined;
|
|
1680
1680
|
}
|
|
1681
1681
|
/**
|
|
1682
1682
|
* @public
|
|
@@ -1706,7 +1706,7 @@ export interface CreateAssetOutput {
|
|
|
1706
1706
|
* <p>The external identifier of the asset.</p>
|
|
1707
1707
|
* @public
|
|
1708
1708
|
*/
|
|
1709
|
-
externalIdentifier?: string;
|
|
1709
|
+
externalIdentifier?: string | undefined;
|
|
1710
1710
|
/**
|
|
1711
1711
|
* <p>The revision of the asset.</p>
|
|
1712
1712
|
* @public
|
|
@@ -1716,32 +1716,32 @@ export interface CreateAssetOutput {
|
|
|
1716
1716
|
* <p>The description of the created asset.</p>
|
|
1717
1717
|
* @public
|
|
1718
1718
|
*/
|
|
1719
|
-
description?: string;
|
|
1719
|
+
description?: string | undefined;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* <p>The timestamp of when the asset was created.</p>
|
|
1722
1722
|
* @public
|
|
1723
1723
|
*/
|
|
1724
|
-
createdAt?: Date;
|
|
1724
|
+
createdAt?: Date | undefined;
|
|
1725
1725
|
/**
|
|
1726
1726
|
* <p>The Amazon DataZone user that created this asset in the catalog.</p>
|
|
1727
1727
|
* @public
|
|
1728
1728
|
*/
|
|
1729
|
-
createdBy?: string;
|
|
1729
|
+
createdBy?: string | undefined;
|
|
1730
1730
|
/**
|
|
1731
1731
|
* <p>The timestamp of when the first revision of the asset took place.</p>
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
firstRevisionCreatedAt?: Date;
|
|
1734
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
1735
1735
|
/**
|
|
1736
1736
|
* <p>The Amazon DataZone user that made the first revision of the asset.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
firstRevisionCreatedBy?: string;
|
|
1739
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>The glossary terms that are attached to the created asset.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
glossaryTerms?: string[];
|
|
1744
|
+
glossaryTerms?: string[] | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>The ID of the Amazon DataZone project that owns the created asset. </p>
|
|
1747
1747
|
* @public
|
|
@@ -1756,7 +1756,7 @@ export interface CreateAssetOutput {
|
|
|
1756
1756
|
* <p>The details of an asset published in an Amazon DataZone catalog.</p>
|
|
1757
1757
|
* @public
|
|
1758
1758
|
*/
|
|
1759
|
-
listing?: AssetListingDetails;
|
|
1759
|
+
listing?: AssetListingDetails | undefined;
|
|
1760
1760
|
/**
|
|
1761
1761
|
* <p>The metadata forms that are attached to the created asset.</p>
|
|
1762
1762
|
* @public
|
|
@@ -1766,18 +1766,18 @@ export interface CreateAssetOutput {
|
|
|
1766
1766
|
* <p>The read-only metadata forms that are attached to the created asset.</p>
|
|
1767
1767
|
* @public
|
|
1768
1768
|
*/
|
|
1769
|
-
readOnlyFormsOutput?: FormOutput[];
|
|
1769
|
+
readOnlyFormsOutput?: FormOutput[] | undefined;
|
|
1770
1770
|
/**
|
|
1771
1771
|
* <p>The latest data point that was imported into the time series form for the asset. </p>
|
|
1772
1772
|
* @public
|
|
1773
1773
|
*/
|
|
1774
|
-
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
1774
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
1775
1775
|
/**
|
|
1776
1776
|
* <p>The configuration of the automatically generated business-friendly metadata for the
|
|
1777
1777
|
* asset.</p>
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
predictionConfiguration?: PredictionConfiguration;
|
|
1780
|
+
predictionConfiguration?: PredictionConfiguration | undefined;
|
|
1781
1781
|
}
|
|
1782
1782
|
/**
|
|
1783
1783
|
* @public
|
|
@@ -1802,34 +1802,34 @@ export interface CreateAssetRevisionInput {
|
|
|
1802
1802
|
* <p>The revision type of the asset.</p>
|
|
1803
1803
|
* @public
|
|
1804
1804
|
*/
|
|
1805
|
-
typeRevision?: string;
|
|
1805
|
+
typeRevision?: string | undefined;
|
|
1806
1806
|
/**
|
|
1807
1807
|
* <p>The revised description of the asset.</p>
|
|
1808
1808
|
* @public
|
|
1809
1809
|
*/
|
|
1810
|
-
description?: string;
|
|
1810
|
+
description?: string | undefined;
|
|
1811
1811
|
/**
|
|
1812
1812
|
* <p>The glossary terms to be attached to the asset as part of asset revision.</p>
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
glossaryTerms?: string[];
|
|
1815
|
+
glossaryTerms?: string[] | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p>The metadata forms to be attached to the asset as part of asset revision.</p>
|
|
1818
1818
|
* @public
|
|
1819
1819
|
*/
|
|
1820
|
-
formsInput?: FormInput[];
|
|
1820
|
+
formsInput?: FormInput[] | undefined;
|
|
1821
1821
|
/**
|
|
1822
1822
|
* <p>The configuration of the automatically generated business-friendly metadata for the
|
|
1823
1823
|
* asset.</p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
predictionConfiguration?: PredictionConfiguration;
|
|
1826
|
+
predictionConfiguration?: PredictionConfiguration | undefined;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
1829
1829
|
* request.</p>
|
|
1830
1830
|
* @public
|
|
1831
1831
|
*/
|
|
1832
|
-
clientToken?: string;
|
|
1832
|
+
clientToken?: string | undefined;
|
|
1833
1833
|
}
|
|
1834
1834
|
/**
|
|
1835
1835
|
* @public
|
|
@@ -1859,7 +1859,7 @@ export interface CreateAssetRevisionOutput {
|
|
|
1859
1859
|
* <p>The external identifier of the asset.</p>
|
|
1860
1860
|
* @public
|
|
1861
1861
|
*/
|
|
1862
|
-
externalIdentifier?: string;
|
|
1862
|
+
externalIdentifier?: string | undefined;
|
|
1863
1863
|
/**
|
|
1864
1864
|
* <p>The revision of the asset.</p>
|
|
1865
1865
|
* @public
|
|
@@ -1869,32 +1869,32 @@ export interface CreateAssetRevisionOutput {
|
|
|
1869
1869
|
* <p>The revised asset description.</p>
|
|
1870
1870
|
* @public
|
|
1871
1871
|
*/
|
|
1872
|
-
description?: string;
|
|
1872
|
+
description?: string | undefined;
|
|
1873
1873
|
/**
|
|
1874
1874
|
* <p>The timestamp of when the asset revision occured.</p>
|
|
1875
1875
|
* @public
|
|
1876
1876
|
*/
|
|
1877
|
-
createdAt?: Date;
|
|
1877
|
+
createdAt?: Date | undefined;
|
|
1878
1878
|
/**
|
|
1879
1879
|
* <p>The Amazon DataZone user who performed the asset revision.</p>
|
|
1880
1880
|
* @public
|
|
1881
1881
|
*/
|
|
1882
|
-
createdBy?: string;
|
|
1882
|
+
createdBy?: string | undefined;
|
|
1883
1883
|
/**
|
|
1884
1884
|
* <p>The timestamp of when the first asset revision occured.</p>
|
|
1885
1885
|
* @public
|
|
1886
1886
|
*/
|
|
1887
|
-
firstRevisionCreatedAt?: Date;
|
|
1887
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
1888
1888
|
/**
|
|
1889
1889
|
* <p>The Amazon DataZone user who performed the first asset revision.</p>
|
|
1890
1890
|
* @public
|
|
1891
1891
|
*/
|
|
1892
|
-
firstRevisionCreatedBy?: string;
|
|
1892
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
1893
1893
|
/**
|
|
1894
1894
|
* <p>The glossary terms that were attached to the asset as part of asset revision.</p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
glossaryTerms?: string[];
|
|
1897
|
+
glossaryTerms?: string[] | undefined;
|
|
1898
1898
|
/**
|
|
1899
1899
|
* <p>The unique identifier of the revised project that owns the asset.</p>
|
|
1900
1900
|
* @public
|
|
@@ -1909,7 +1909,7 @@ export interface CreateAssetRevisionOutput {
|
|
|
1909
1909
|
* <p>The details of an asset published in an Amazon DataZone catalog. </p>
|
|
1910
1910
|
* @public
|
|
1911
1911
|
*/
|
|
1912
|
-
listing?: AssetListingDetails;
|
|
1912
|
+
listing?: AssetListingDetails | undefined;
|
|
1913
1913
|
/**
|
|
1914
1914
|
* <p>The metadata forms that were attached to the asset as part of the asset revision.</p>
|
|
1915
1915
|
* @public
|
|
@@ -1920,18 +1920,18 @@ export interface CreateAssetRevisionOutput {
|
|
|
1920
1920
|
* revision.</p>
|
|
1921
1921
|
* @public
|
|
1922
1922
|
*/
|
|
1923
|
-
readOnlyFormsOutput?: FormOutput[];
|
|
1923
|
+
readOnlyFormsOutput?: FormOutput[] | undefined;
|
|
1924
1924
|
/**
|
|
1925
1925
|
* <p>The latest data point that was imported into the time series form for the asset. </p>
|
|
1926
1926
|
* @public
|
|
1927
1927
|
*/
|
|
1928
|
-
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
1928
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
1929
1929
|
/**
|
|
1930
1930
|
* <p>The configuration of the automatically generated business-friendly metadata for the
|
|
1931
1931
|
* asset.</p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
predictionConfiguration?: PredictionConfiguration;
|
|
1934
|
+
predictionConfiguration?: PredictionConfiguration | undefined;
|
|
1935
1935
|
}
|
|
1936
1936
|
/**
|
|
1937
1937
|
* @public
|
|
@@ -1971,7 +1971,7 @@ export interface GetAssetInput {
|
|
|
1971
1971
|
* <p>The revision of the Amazon DataZone asset.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
revision?: string;
|
|
1974
|
+
revision?: string | undefined;
|
|
1975
1975
|
}
|
|
1976
1976
|
/**
|
|
1977
1977
|
* @public
|
|
@@ -2001,7 +2001,7 @@ export interface GetAssetOutput {
|
|
|
2001
2001
|
* <p>The external ID of the asset.</p>
|
|
2002
2002
|
* @public
|
|
2003
2003
|
*/
|
|
2004
|
-
externalIdentifier?: string;
|
|
2004
|
+
externalIdentifier?: string | undefined;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* <p>The revision of the asset.</p>
|
|
2007
2007
|
* @public
|
|
@@ -2011,32 +2011,32 @@ export interface GetAssetOutput {
|
|
|
2011
2011
|
* <p>The description of the Amazon DataZone asset.</p>
|
|
2012
2012
|
* @public
|
|
2013
2013
|
*/
|
|
2014
|
-
description?: string;
|
|
2014
|
+
description?: string | undefined;
|
|
2015
2015
|
/**
|
|
2016
2016
|
* <p>The timestamp of when the asset was created.</p>
|
|
2017
2017
|
* @public
|
|
2018
2018
|
*/
|
|
2019
|
-
createdAt?: Date;
|
|
2019
|
+
createdAt?: Date | undefined;
|
|
2020
2020
|
/**
|
|
2021
2021
|
* <p>The Amazon DataZone user who created the asset.</p>
|
|
2022
2022
|
* @public
|
|
2023
2023
|
*/
|
|
2024
|
-
createdBy?: string;
|
|
2024
|
+
createdBy?: string | undefined;
|
|
2025
2025
|
/**
|
|
2026
2026
|
* <p>The timestamp of when the first revision of the asset was created.</p>
|
|
2027
2027
|
* @public
|
|
2028
2028
|
*/
|
|
2029
|
-
firstRevisionCreatedAt?: Date;
|
|
2029
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
2030
2030
|
/**
|
|
2031
2031
|
* <p>The Amazon DataZone user who created the first revision of the asset.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
firstRevisionCreatedBy?: string;
|
|
2034
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p>The business glossary terms attached to the asset.</p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
glossaryTerms?: string[];
|
|
2039
|
+
glossaryTerms?: string[] | undefined;
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p>The ID of the project that owns the asset.</p>
|
|
2042
2042
|
* @public
|
|
@@ -2051,7 +2051,7 @@ export interface GetAssetOutput {
|
|
|
2051
2051
|
* <p>The listing of the asset.</p>
|
|
2052
2052
|
* @public
|
|
2053
2053
|
*/
|
|
2054
|
-
listing?: AssetListingDetails;
|
|
2054
|
+
listing?: AssetListingDetails | undefined;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* <p>The metadata forms attached to the asset.</p>
|
|
2057
2057
|
* @public
|
|
@@ -2061,12 +2061,12 @@ export interface GetAssetOutput {
|
|
|
2061
2061
|
* <p>The read-only metadata forms attached to the asset.</p>
|
|
2062
2062
|
* @public
|
|
2063
2063
|
*/
|
|
2064
|
-
readOnlyFormsOutput?: FormOutput[];
|
|
2064
|
+
readOnlyFormsOutput?: FormOutput[] | undefined;
|
|
2065
2065
|
/**
|
|
2066
2066
|
* <p>The latest data point that was imported into the time series form for the asset. </p>
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
2069
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
2070
2070
|
}
|
|
2071
2071
|
/**
|
|
2072
2072
|
* <p>The column configuration of the asset filter.</p>
|
|
@@ -2077,7 +2077,7 @@ export interface ColumnFilterConfiguration {
|
|
|
2077
2077
|
* <p>Specifies whether to include column names.</p>
|
|
2078
2078
|
* @public
|
|
2079
2079
|
*/
|
|
2080
|
-
includedColumnNames?: string[];
|
|
2080
|
+
includedColumnNames?: string[] | undefined;
|
|
2081
2081
|
}
|
|
2082
2082
|
/**
|
|
2083
2083
|
* <p>Specifies whether the value is equal to an expression.</p>
|
|
@@ -2574,32 +2574,32 @@ export interface AssetFilterSummary {
|
|
|
2574
2574
|
* <p>The description of the asset filter.</p>
|
|
2575
2575
|
* @public
|
|
2576
2576
|
*/
|
|
2577
|
-
description?: string;
|
|
2577
|
+
description?: string | undefined;
|
|
2578
2578
|
/**
|
|
2579
2579
|
* <p>The status of the asset filter.</p>
|
|
2580
2580
|
* @public
|
|
2581
2581
|
*/
|
|
2582
|
-
status?: FilterStatus;
|
|
2582
|
+
status?: FilterStatus | undefined;
|
|
2583
2583
|
/**
|
|
2584
2584
|
* <p>The effective column names of the asset filter.</p>
|
|
2585
2585
|
* @public
|
|
2586
2586
|
*/
|
|
2587
|
-
effectiveColumnNames?: string[];
|
|
2587
|
+
effectiveColumnNames?: string[] | undefined;
|
|
2588
2588
|
/**
|
|
2589
2589
|
* <p>The effective row filter of the asset filter.</p>
|
|
2590
2590
|
* @public
|
|
2591
2591
|
*/
|
|
2592
|
-
effectiveRowFilter?: string;
|
|
2592
|
+
effectiveRowFilter?: string | undefined;
|
|
2593
2593
|
/**
|
|
2594
2594
|
* <p>The timestamp at which the asset filter was created.</p>
|
|
2595
2595
|
* @public
|
|
2596
2596
|
*/
|
|
2597
|
-
createdAt?: Date;
|
|
2597
|
+
createdAt?: Date | undefined;
|
|
2598
2598
|
/**
|
|
2599
2599
|
* <p>The error message that is displayed if the action does not succeed.</p>
|
|
2600
2600
|
* @public
|
|
2601
2601
|
*/
|
|
2602
|
-
errorMessage?: string;
|
|
2602
|
+
errorMessage?: string | undefined;
|
|
2603
2603
|
}
|
|
2604
2604
|
/**
|
|
2605
2605
|
* <p>The additional attributes of an inventory asset.</p>
|
|
@@ -2610,18 +2610,18 @@ export interface AssetItemAdditionalAttributes {
|
|
|
2610
2610
|
* <p>The forms included in the additional attributes of an inventory asset.</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
formsOutput?: FormOutput[];
|
|
2613
|
+
formsOutput?: FormOutput[] | undefined;
|
|
2614
2614
|
/**
|
|
2615
2615
|
* <p>The read-only forms included in the additional attributes of an inventory asset.</p>
|
|
2616
2616
|
* @public
|
|
2617
2617
|
*/
|
|
2618
|
-
readOnlyFormsOutput?: FormOutput[];
|
|
2618
|
+
readOnlyFormsOutput?: FormOutput[] | undefined;
|
|
2619
2619
|
/**
|
|
2620
2620
|
* <p>The latest time series data points forms included in the additional attributes of an
|
|
2621
2621
|
* asset.</p>
|
|
2622
2622
|
* @public
|
|
2623
2623
|
*/
|
|
2624
|
-
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
2624
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
2625
2625
|
}
|
|
2626
2626
|
/**
|
|
2627
2627
|
* <p>A Amazon DataZone inventory asset.</p>
|
|
@@ -2657,37 +2657,37 @@ export interface AssetItem {
|
|
|
2657
2657
|
* <p>The external identifier of the Amazon DataZone inventory asset.</p>
|
|
2658
2658
|
* @public
|
|
2659
2659
|
*/
|
|
2660
|
-
externalIdentifier?: string;
|
|
2660
|
+
externalIdentifier?: string | undefined;
|
|
2661
2661
|
/**
|
|
2662
2662
|
* <p>The description of an Amazon DataZone inventory asset.</p>
|
|
2663
2663
|
* @public
|
|
2664
2664
|
*/
|
|
2665
|
-
description?: string;
|
|
2665
|
+
description?: string | undefined;
|
|
2666
2666
|
/**
|
|
2667
2667
|
* <p>The timestamp of when the Amazon DataZone inventory asset was created.</p>
|
|
2668
2668
|
* @public
|
|
2669
2669
|
*/
|
|
2670
|
-
createdAt?: Date;
|
|
2670
|
+
createdAt?: Date | undefined;
|
|
2671
2671
|
/**
|
|
2672
2672
|
* <p>The Amazon DataZone user who created the inventory asset.</p>
|
|
2673
2673
|
* @public
|
|
2674
2674
|
*/
|
|
2675
|
-
createdBy?: string;
|
|
2675
|
+
createdBy?: string | undefined;
|
|
2676
2676
|
/**
|
|
2677
2677
|
* <p>The timestamp of when the first revision of the inventory asset was created.</p>
|
|
2678
2678
|
* @public
|
|
2679
2679
|
*/
|
|
2680
|
-
firstRevisionCreatedAt?: Date;
|
|
2680
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* <p>The Amazon DataZone user who created the first revision of the inventory asset.</p>
|
|
2683
2683
|
* @public
|
|
2684
2684
|
*/
|
|
2685
|
-
firstRevisionCreatedBy?: string;
|
|
2685
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
2686
2686
|
/**
|
|
2687
2687
|
* <p>The glossary terms attached to the Amazon DataZone inventory asset.</p>
|
|
2688
2688
|
* @public
|
|
2689
2689
|
*/
|
|
2690
|
-
glossaryTerms?: string[];
|
|
2690
|
+
glossaryTerms?: string[] | undefined;
|
|
2691
2691
|
/**
|
|
2692
2692
|
* <p>The identifier of the Amazon DataZone project that owns the inventory asset.</p>
|
|
2693
2693
|
* @public
|
|
@@ -2697,7 +2697,7 @@ export interface AssetItem {
|
|
|
2697
2697
|
* <p>The additional attributes of a Amazon DataZone inventory asset. </p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
additionalAttributes?: AssetItemAdditionalAttributes;
|
|
2700
|
+
additionalAttributes?: AssetItemAdditionalAttributes | undefined;
|
|
2701
2701
|
}
|
|
2702
2702
|
/**
|
|
2703
2703
|
* <p>An asset published in an Amazon DataZone catalog.</p>
|
|
@@ -2708,44 +2708,44 @@ export interface AssetListing {
|
|
|
2708
2708
|
* <p>The identifier of an asset published in an Amazon DataZone catalog. </p>
|
|
2709
2709
|
* @public
|
|
2710
2710
|
*/
|
|
2711
|
-
assetId?: string;
|
|
2711
|
+
assetId?: string | undefined;
|
|
2712
2712
|
/**
|
|
2713
2713
|
* <p>The revision of an asset published in an Amazon DataZone catalog. </p>
|
|
2714
2714
|
* @public
|
|
2715
2715
|
*/
|
|
2716
|
-
assetRevision?: string;
|
|
2716
|
+
assetRevision?: string | undefined;
|
|
2717
2717
|
/**
|
|
2718
2718
|
* <p>The type of an asset published in an Amazon DataZone catalog. </p>
|
|
2719
2719
|
* @public
|
|
2720
2720
|
*/
|
|
2721
|
-
assetType?: string;
|
|
2721
|
+
assetType?: string | undefined;
|
|
2722
2722
|
/**
|
|
2723
2723
|
* <p>The timestamp of when an asset published in an Amazon DataZone catalog was created. </p>
|
|
2724
2724
|
* @public
|
|
2725
2725
|
*/
|
|
2726
|
-
createdAt?: Date;
|
|
2726
|
+
createdAt?: Date | undefined;
|
|
2727
2727
|
/**
|
|
2728
2728
|
* <p>The metadata forms attached to an asset published in an Amazon DataZone catalog. </p>
|
|
2729
2729
|
* @public
|
|
2730
2730
|
*/
|
|
2731
|
-
forms?: string;
|
|
2731
|
+
forms?: string | undefined;
|
|
2732
2732
|
/**
|
|
2733
2733
|
* <p>The latest time series data points forms included in the additional attributes of an
|
|
2734
2734
|
* asset.</p>
|
|
2735
2735
|
* @public
|
|
2736
2736
|
*/
|
|
2737
|
-
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[];
|
|
2737
|
+
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
2738
2738
|
/**
|
|
2739
2739
|
* <p>The glossary terms attached to an asset published in an Amazon DataZone catalog. </p>
|
|
2740
2740
|
* @public
|
|
2741
2741
|
*/
|
|
2742
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
2742
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
2743
2743
|
/**
|
|
2744
2744
|
* <p>The identifier of the project where an asset published in an Amazon DataZone catalog exists.
|
|
2745
2745
|
* </p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
owningProjectId?: string;
|
|
2748
|
+
owningProjectId?: string | undefined;
|
|
2749
2749
|
}
|
|
2750
2750
|
/**
|
|
2751
2751
|
* <p>Additional attributes of an inventory asset.</p>
|
|
@@ -2756,13 +2756,13 @@ export interface AssetListingItemAdditionalAttributes {
|
|
|
2756
2756
|
* <p>The metadata forms that form additional attributes of the metadata asset.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
forms?: string;
|
|
2759
|
+
forms?: string | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>The latest time series data points forms included in the additional attributes of an
|
|
2762
2762
|
* asset.</p>
|
|
2763
2763
|
* @public
|
|
2764
2764
|
*/
|
|
2765
|
-
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[];
|
|
2765
|
+
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
2766
2766
|
}
|
|
2767
2767
|
/**
|
|
2768
2768
|
* <p>The details of an asset published in an Amazon DataZone catalog.</p>
|
|
@@ -2773,67 +2773,67 @@ export interface AssetListingItem {
|
|
|
2773
2773
|
* <p>The identifier of the listing (asset published in Amazon DataZone catalog).</p>
|
|
2774
2774
|
* @public
|
|
2775
2775
|
*/
|
|
2776
|
-
listingId?: string;
|
|
2776
|
+
listingId?: string | undefined;
|
|
2777
2777
|
/**
|
|
2778
2778
|
* <p>The revision of the listing (asset published in Amazon DataZone catalog).</p>
|
|
2779
2779
|
* @public
|
|
2780
2780
|
*/
|
|
2781
|
-
listingRevision?: string;
|
|
2781
|
+
listingRevision?: string | undefined;
|
|
2782
2782
|
/**
|
|
2783
2783
|
* <p>The name of the inventory asset.</p>
|
|
2784
2784
|
* @public
|
|
2785
2785
|
*/
|
|
2786
|
-
name?: string;
|
|
2786
|
+
name?: string | undefined;
|
|
2787
2787
|
/**
|
|
2788
2788
|
* <p>The identifier of the inventory asset.</p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
entityId?: string;
|
|
2791
|
+
entityId?: string | undefined;
|
|
2792
2792
|
/**
|
|
2793
2793
|
* <p>The revision of the inventory asset.</p>
|
|
2794
2794
|
* @public
|
|
2795
2795
|
*/
|
|
2796
|
-
entityRevision?: string;
|
|
2796
|
+
entityRevision?: string | undefined;
|
|
2797
2797
|
/**
|
|
2798
2798
|
* <p>The type of the inventory asset.</p>
|
|
2799
2799
|
* @public
|
|
2800
2800
|
*/
|
|
2801
|
-
entityType?: string;
|
|
2801
|
+
entityType?: string | undefined;
|
|
2802
2802
|
/**
|
|
2803
2803
|
* <p>The description of an asset published in an Amazon DataZone catalog.</p>
|
|
2804
2804
|
* @public
|
|
2805
2805
|
*/
|
|
2806
|
-
description?: string;
|
|
2806
|
+
description?: string | undefined;
|
|
2807
2807
|
/**
|
|
2808
2808
|
* <p>The timestamp of when an asset published in an Amazon DataZone catalog was created.</p>
|
|
2809
2809
|
* @public
|
|
2810
2810
|
*/
|
|
2811
|
-
createdAt?: Date;
|
|
2811
|
+
createdAt?: Date | undefined;
|
|
2812
2812
|
/**
|
|
2813
2813
|
* <p>The Amazon DataZone user who created the listing.</p>
|
|
2814
2814
|
* @public
|
|
2815
2815
|
*/
|
|
2816
|
-
listingCreatedBy?: string;
|
|
2816
|
+
listingCreatedBy?: string | undefined;
|
|
2817
2817
|
/**
|
|
2818
2818
|
* <p>The Amazon DataZone user who updated the listing.</p>
|
|
2819
2819
|
* @public
|
|
2820
2820
|
*/
|
|
2821
|
-
listingUpdatedBy?: string;
|
|
2821
|
+
listingUpdatedBy?: string | undefined;
|
|
2822
2822
|
/**
|
|
2823
2823
|
* <p>Glossary terms attached to the inventory asset.</p>
|
|
2824
2824
|
* @public
|
|
2825
2825
|
*/
|
|
2826
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
2826
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
2827
2827
|
/**
|
|
2828
2828
|
* <p>The identifier of the project that owns the inventory asset.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
owningProjectId?: string;
|
|
2831
|
+
owningProjectId?: string | undefined;
|
|
2832
2832
|
/**
|
|
2833
2833
|
* <p>The additional attributes of an asset published in an Amazon DataZone catalog.</p>
|
|
2834
2834
|
* @public
|
|
2835
2835
|
*/
|
|
2836
|
-
additionalAttributes?: AssetListingItemAdditionalAttributes;
|
|
2836
|
+
additionalAttributes?: AssetListingItemAdditionalAttributes | undefined;
|
|
2837
2837
|
}
|
|
2838
2838
|
/**
|
|
2839
2839
|
* <p>The revision of an inventory asset.</p>
|
|
@@ -2844,27 +2844,27 @@ export interface AssetRevision {
|
|
|
2844
2844
|
* <p>The Amazon DataZone user who created the inventory asset.</p>
|
|
2845
2845
|
* @public
|
|
2846
2846
|
*/
|
|
2847
|
-
domainId?: string;
|
|
2847
|
+
domainId?: string | undefined;
|
|
2848
2848
|
/**
|
|
2849
2849
|
* <p>The identifier of the inventory asset revision.</p>
|
|
2850
2850
|
* @public
|
|
2851
2851
|
*/
|
|
2852
|
-
id?: string;
|
|
2852
|
+
id?: string | undefined;
|
|
2853
2853
|
/**
|
|
2854
2854
|
* <p>The revision details of the inventory asset.</p>
|
|
2855
2855
|
* @public
|
|
2856
2856
|
*/
|
|
2857
|
-
revision?: string;
|
|
2857
|
+
revision?: string | undefined;
|
|
2858
2858
|
/**
|
|
2859
2859
|
* <p>The Amazon DataZone user who created the asset revision.</p>
|
|
2860
2860
|
* @public
|
|
2861
2861
|
*/
|
|
2862
|
-
createdBy?: string;
|
|
2862
|
+
createdBy?: string | undefined;
|
|
2863
2863
|
/**
|
|
2864
2864
|
* <p>The timestamp of when an inventory asset revison was created.</p>
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
createdAt?: Date;
|
|
2867
|
+
createdAt?: Date | undefined;
|
|
2868
2868
|
}
|
|
2869
2869
|
/**
|
|
2870
2870
|
* <p>The name map for assets.</p>
|
|
@@ -2901,7 +2901,7 @@ export interface FormEntryInput {
|
|
|
2901
2901
|
* <p>Specifies whether a form entry is required.</p>
|
|
2902
2902
|
* @public
|
|
2903
2903
|
*/
|
|
2904
|
-
required?: boolean;
|
|
2904
|
+
required?: boolean | undefined;
|
|
2905
2905
|
}
|
|
2906
2906
|
/**
|
|
2907
2907
|
* @public
|
|
@@ -2922,7 +2922,7 @@ export interface CreateAssetTypeInput {
|
|
|
2922
2922
|
* <p>The descripton of the custom asset type.</p>
|
|
2923
2923
|
* @public
|
|
2924
2924
|
*/
|
|
2925
|
-
description?: string;
|
|
2925
|
+
description?: string | undefined;
|
|
2926
2926
|
/**
|
|
2927
2927
|
* <p>The metadata forms that are to be attached to the custom asset type.</p>
|
|
2928
2928
|
* @public
|
|
@@ -2953,7 +2953,7 @@ export interface FormEntryOutput {
|
|
|
2953
2953
|
* <p>Specifies whether a form entry is required.</p>
|
|
2954
2954
|
* @public
|
|
2955
2955
|
*/
|
|
2956
|
-
required?: boolean;
|
|
2956
|
+
required?: boolean | undefined;
|
|
2957
2957
|
}
|
|
2958
2958
|
/**
|
|
2959
2959
|
* @public
|
|
@@ -2978,7 +2978,7 @@ export interface CreateAssetTypeOutput {
|
|
|
2978
2978
|
* <p>The description of the custom asset type.</p>
|
|
2979
2979
|
* @public
|
|
2980
2980
|
*/
|
|
2981
|
-
description?: string;
|
|
2981
|
+
description?: string | undefined;
|
|
2982
2982
|
/**
|
|
2983
2983
|
* <p>The metadata forms that are attached to the asset type.</p>
|
|
2984
2984
|
* @public
|
|
@@ -2988,37 +2988,37 @@ export interface CreateAssetTypeOutput {
|
|
|
2988
2988
|
* <p>The ID of the Amazon DataZone project that currently owns this asset type.</p>
|
|
2989
2989
|
* @public
|
|
2990
2990
|
*/
|
|
2991
|
-
owningProjectId?: string;
|
|
2991
|
+
owningProjectId?: string | undefined;
|
|
2992
2992
|
/**
|
|
2993
2993
|
* <p>The ID of the Amazon DataZone domain where the asset type was originally created.</p>
|
|
2994
2994
|
* @public
|
|
2995
2995
|
*/
|
|
2996
|
-
originDomainId?: string;
|
|
2996
|
+
originDomainId?: string | undefined;
|
|
2997
2997
|
/**
|
|
2998
2998
|
* <p>The ID of the Amazon DataZone project where the asset type was originally created.</p>
|
|
2999
2999
|
* @public
|
|
3000
3000
|
*/
|
|
3001
|
-
originProjectId?: string;
|
|
3001
|
+
originProjectId?: string | undefined;
|
|
3002
3002
|
/**
|
|
3003
3003
|
* <p>The timestamp of when the asset type is to be created.</p>
|
|
3004
3004
|
* @public
|
|
3005
3005
|
*/
|
|
3006
|
-
createdAt?: Date;
|
|
3006
|
+
createdAt?: Date | undefined;
|
|
3007
3007
|
/**
|
|
3008
3008
|
* <p>The Amazon DataZone user who creates this custom asset type.</p>
|
|
3009
3009
|
* @public
|
|
3010
3010
|
*/
|
|
3011
|
-
createdBy?: string;
|
|
3011
|
+
createdBy?: string | undefined;
|
|
3012
3012
|
/**
|
|
3013
3013
|
* <p>The timestamp of when the custom type was created.</p>
|
|
3014
3014
|
* @public
|
|
3015
3015
|
*/
|
|
3016
|
-
updatedAt?: Date;
|
|
3016
|
+
updatedAt?: Date | undefined;
|
|
3017
3017
|
/**
|
|
3018
3018
|
* <p>The Amazon DataZone user that created the custom asset type.</p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
updatedBy?: string;
|
|
3021
|
+
updatedBy?: string | undefined;
|
|
3022
3022
|
}
|
|
3023
3023
|
/**
|
|
3024
3024
|
* @public
|
|
@@ -3058,7 +3058,7 @@ export interface GetAssetTypeInput {
|
|
|
3058
3058
|
* <p>The revision of the asset type.</p>
|
|
3059
3059
|
* @public
|
|
3060
3060
|
*/
|
|
3061
|
-
revision?: string;
|
|
3061
|
+
revision?: string | undefined;
|
|
3062
3062
|
}
|
|
3063
3063
|
/**
|
|
3064
3064
|
* @public
|
|
@@ -3083,7 +3083,7 @@ export interface GetAssetTypeOutput {
|
|
|
3083
3083
|
* <p>The description of the asset type.</p>
|
|
3084
3084
|
* @public
|
|
3085
3085
|
*/
|
|
3086
|
-
description?: string;
|
|
3086
|
+
description?: string | undefined;
|
|
3087
3087
|
/**
|
|
3088
3088
|
* <p>The metadata forms attached to the asset type.</p>
|
|
3089
3089
|
* @public
|
|
@@ -3098,32 +3098,32 @@ export interface GetAssetTypeOutput {
|
|
|
3098
3098
|
* <p>The ID of the Amazon DataZone domain in which the asset type was originally created.</p>
|
|
3099
3099
|
* @public
|
|
3100
3100
|
*/
|
|
3101
|
-
originDomainId?: string;
|
|
3101
|
+
originDomainId?: string | undefined;
|
|
3102
3102
|
/**
|
|
3103
3103
|
* <p>The ID of the Amazon DataZone project in which the asset type was originally created.</p>
|
|
3104
3104
|
* @public
|
|
3105
3105
|
*/
|
|
3106
|
-
originProjectId?: string;
|
|
3106
|
+
originProjectId?: string | undefined;
|
|
3107
3107
|
/**
|
|
3108
3108
|
* <p>The timestamp of when the asset type was created.</p>
|
|
3109
3109
|
* @public
|
|
3110
3110
|
*/
|
|
3111
|
-
createdAt?: Date;
|
|
3111
|
+
createdAt?: Date | undefined;
|
|
3112
3112
|
/**
|
|
3113
3113
|
* <p>The Amazon DataZone user who created the asset type.</p>
|
|
3114
3114
|
* @public
|
|
3115
3115
|
*/
|
|
3116
|
-
createdBy?: string;
|
|
3116
|
+
createdBy?: string | undefined;
|
|
3117
3117
|
/**
|
|
3118
3118
|
* <p>The timestamp of when the asset type was updated.</p>
|
|
3119
3119
|
* @public
|
|
3120
3120
|
*/
|
|
3121
|
-
updatedAt?: Date;
|
|
3121
|
+
updatedAt?: Date | undefined;
|
|
3122
3122
|
/**
|
|
3123
3123
|
* <p>The Amazon DataZone user that updated the asset type.</p>
|
|
3124
3124
|
* @public
|
|
3125
3125
|
*/
|
|
3126
|
-
updatedBy?: string;
|
|
3126
|
+
updatedBy?: string | undefined;
|
|
3127
3127
|
}
|
|
3128
3128
|
/**
|
|
3129
3129
|
* <p>The details of the asset type.</p>
|
|
@@ -3149,7 +3149,7 @@ export interface AssetTypeItem {
|
|
|
3149
3149
|
* <p>The description of the asset type.</p>
|
|
3150
3150
|
* @public
|
|
3151
3151
|
*/
|
|
3152
|
-
description?: string;
|
|
3152
|
+
description?: string | undefined;
|
|
3153
3153
|
/**
|
|
3154
3154
|
* <p>The forms included in the details of the asset type.</p>
|
|
3155
3155
|
* @public
|
|
@@ -3165,32 +3165,32 @@ export interface AssetTypeItem {
|
|
|
3165
3165
|
* created.</p>
|
|
3166
3166
|
* @public
|
|
3167
3167
|
*/
|
|
3168
|
-
originDomainId?: string;
|
|
3168
|
+
originDomainId?: string | undefined;
|
|
3169
3169
|
/**
|
|
3170
3170
|
* <p>The identifier of the Amazon DataZone project where the asset type exists.</p>
|
|
3171
3171
|
* @public
|
|
3172
3172
|
*/
|
|
3173
|
-
originProjectId?: string;
|
|
3173
|
+
originProjectId?: string | undefined;
|
|
3174
3174
|
/**
|
|
3175
3175
|
* <p>The timestamp of when the asset type was created.</p>
|
|
3176
3176
|
* @public
|
|
3177
3177
|
*/
|
|
3178
|
-
createdAt?: Date;
|
|
3178
|
+
createdAt?: Date | undefined;
|
|
3179
3179
|
/**
|
|
3180
3180
|
* <p>The Amazon DataZone user who created the asset type.</p>
|
|
3181
3181
|
* @public
|
|
3182
3182
|
*/
|
|
3183
|
-
createdBy?: string;
|
|
3183
|
+
createdBy?: string | undefined;
|
|
3184
3184
|
/**
|
|
3185
3185
|
* <p>The timestamp of when the asset type was updated.</p>
|
|
3186
3186
|
* @public
|
|
3187
3187
|
*/
|
|
3188
|
-
updatedAt?: Date;
|
|
3188
|
+
updatedAt?: Date | undefined;
|
|
3189
3189
|
/**
|
|
3190
3190
|
* <p>The Amazon DataZone user who updated the asset type.</p>
|
|
3191
3191
|
* @public
|
|
3192
3192
|
*/
|
|
3193
|
-
updatedBy?: string;
|
|
3193
|
+
updatedBy?: string | undefined;
|
|
3194
3194
|
}
|
|
3195
3195
|
/**
|
|
3196
3196
|
* @public
|
|
@@ -3297,7 +3297,7 @@ export interface CancelSubscriptionOutput {
|
|
|
3297
3297
|
* <p>The Amazon DataZone user that cancelled the subscription.</p>
|
|
3298
3298
|
* @public
|
|
3299
3299
|
*/
|
|
3300
|
-
updatedBy?: string;
|
|
3300
|
+
updatedBy?: string | undefined;
|
|
3301
3301
|
/**
|
|
3302
3302
|
* <p>The unique identifier of the Amazon DataZone domain where the subscription is being
|
|
3303
3303
|
* cancelled.</p>
|
|
@@ -3336,13 +3336,13 @@ export interface CancelSubscriptionOutput {
|
|
|
3336
3336
|
* cancelled.</p>
|
|
3337
3337
|
* @public
|
|
3338
3338
|
*/
|
|
3339
|
-
subscriptionRequestId?: string;
|
|
3339
|
+
subscriptionRequestId?: string | undefined;
|
|
3340
3340
|
/**
|
|
3341
3341
|
* <p>Specifies whether the permissions to the asset are retained after the subscription is
|
|
3342
3342
|
* cancelled.</p>
|
|
3343
3343
|
* @public
|
|
3344
3344
|
*/
|
|
3345
|
-
retainPermissions?: boolean;
|
|
3345
|
+
retainPermissions?: boolean | undefined;
|
|
3346
3346
|
}
|
|
3347
3347
|
/**
|
|
3348
3348
|
* @public
|
|
@@ -3377,12 +3377,12 @@ export interface ConfigurableActionParameter {
|
|
|
3377
3377
|
* <p>The key of the configurable action parameter.</p>
|
|
3378
3378
|
* @public
|
|
3379
3379
|
*/
|
|
3380
|
-
key?: string;
|
|
3380
|
+
key?: string | undefined;
|
|
3381
3381
|
/**
|
|
3382
3382
|
* <p>The value of the configurable action parameter.</p>
|
|
3383
3383
|
* @public
|
|
3384
3384
|
*/
|
|
3385
|
-
value?: string;
|
|
3385
|
+
value?: string | undefined;
|
|
3386
3386
|
}
|
|
3387
3387
|
/**
|
|
3388
3388
|
* @public
|
|
@@ -3410,7 +3410,7 @@ export interface ConfigurableEnvironmentAction {
|
|
|
3410
3410
|
* <p>The authentication type of a configurable action of a Amazon DataZone environment. </p>
|
|
3411
3411
|
* @public
|
|
3412
3412
|
*/
|
|
3413
|
-
auth?: ConfigurableActionTypeAuthorization;
|
|
3413
|
+
auth?: ConfigurableActionTypeAuthorization | undefined;
|
|
3414
3414
|
/**
|
|
3415
3415
|
* <p>The parameters of a configurable action in a Amazon DataZone environment.</p>
|
|
3416
3416
|
* @public
|
|
@@ -3447,12 +3447,12 @@ export interface DataProductItem {
|
|
|
3447
3447
|
* <p>The revision of the data product.</p>
|
|
3448
3448
|
* @public
|
|
3449
3449
|
*/
|
|
3450
|
-
revision?: string;
|
|
3450
|
+
revision?: string | undefined;
|
|
3451
3451
|
/**
|
|
3452
3452
|
* <p>The glossary terms of the data product.</p>
|
|
3453
3453
|
* @public
|
|
3454
3454
|
*/
|
|
3455
|
-
glossaryTerms?: string[];
|
|
3455
|
+
glossaryTerms?: string[] | undefined;
|
|
3456
3456
|
}
|
|
3457
3457
|
/**
|
|
3458
3458
|
* @public
|
|
@@ -3477,28 +3477,28 @@ export interface CreateDataProductInput {
|
|
|
3477
3477
|
* <p>The description of the data product.</p>
|
|
3478
3478
|
* @public
|
|
3479
3479
|
*/
|
|
3480
|
-
description?: string;
|
|
3480
|
+
description?: string | undefined;
|
|
3481
3481
|
/**
|
|
3482
3482
|
* <p>The glossary terms of the data product.</p>
|
|
3483
3483
|
* @public
|
|
3484
3484
|
*/
|
|
3485
|
-
glossaryTerms?: string[];
|
|
3485
|
+
glossaryTerms?: string[] | undefined;
|
|
3486
3486
|
/**
|
|
3487
3487
|
* <p>The metadata forms of the data product.</p>
|
|
3488
3488
|
* @public
|
|
3489
3489
|
*/
|
|
3490
|
-
formsInput?: FormInput[];
|
|
3490
|
+
formsInput?: FormInput[] | undefined;
|
|
3491
3491
|
/**
|
|
3492
3492
|
* <p>The data assets of the data product.</p>
|
|
3493
3493
|
* @public
|
|
3494
3494
|
*/
|
|
3495
|
-
items?: DataProductItem[];
|
|
3495
|
+
items?: DataProductItem[] | undefined;
|
|
3496
3496
|
/**
|
|
3497
3497
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
3498
3498
|
* request.</p>
|
|
3499
3499
|
* @public
|
|
3500
3500
|
*/
|
|
3501
|
-
clientToken?: string;
|
|
3501
|
+
clientToken?: string | undefined;
|
|
3502
3502
|
}
|
|
3503
3503
|
/**
|
|
3504
3504
|
* @public
|
|
@@ -3551,42 +3551,42 @@ export interface CreateDataProductOutput {
|
|
|
3551
3551
|
* <p>The description of the data product.</p>
|
|
3552
3552
|
* @public
|
|
3553
3553
|
*/
|
|
3554
|
-
description?: string;
|
|
3554
|
+
description?: string | undefined;
|
|
3555
3555
|
/**
|
|
3556
3556
|
* <p>The glossary terms of the data product.</p>
|
|
3557
3557
|
* @public
|
|
3558
3558
|
*/
|
|
3559
|
-
glossaryTerms?: string[];
|
|
3559
|
+
glossaryTerms?: string[] | undefined;
|
|
3560
3560
|
/**
|
|
3561
3561
|
* <p>The data assets of the data product.</p>
|
|
3562
3562
|
* @public
|
|
3563
3563
|
*/
|
|
3564
|
-
items?: DataProductItem[];
|
|
3564
|
+
items?: DataProductItem[] | undefined;
|
|
3565
3565
|
/**
|
|
3566
3566
|
* <p>The metadata forms of the data product.</p>
|
|
3567
3567
|
* @public
|
|
3568
3568
|
*/
|
|
3569
|
-
formsOutput?: FormOutput[];
|
|
3569
|
+
formsOutput?: FormOutput[] | undefined;
|
|
3570
3570
|
/**
|
|
3571
3571
|
* <p>The timestamp at which the data product was created.</p>
|
|
3572
3572
|
* @public
|
|
3573
3573
|
*/
|
|
3574
|
-
createdAt?: Date;
|
|
3574
|
+
createdAt?: Date | undefined;
|
|
3575
3575
|
/**
|
|
3576
3576
|
* <p>The user who created the data product.</p>
|
|
3577
3577
|
* @public
|
|
3578
3578
|
*/
|
|
3579
|
-
createdBy?: string;
|
|
3579
|
+
createdBy?: string | undefined;
|
|
3580
3580
|
/**
|
|
3581
3581
|
* <p>The timestamp at which the first revision of the data product was created.</p>
|
|
3582
3582
|
* @public
|
|
3583
3583
|
*/
|
|
3584
|
-
firstRevisionCreatedAt?: Date;
|
|
3584
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
3585
3585
|
/**
|
|
3586
3586
|
* <p>The user who created the first revision of the data product.</p>
|
|
3587
3587
|
* @public
|
|
3588
3588
|
*/
|
|
3589
|
-
firstRevisionCreatedBy?: string;
|
|
3589
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
3590
3590
|
}
|
|
3591
3591
|
/**
|
|
3592
3592
|
* @public
|
|
@@ -3611,28 +3611,28 @@ export interface CreateDataProductRevisionInput {
|
|
|
3611
3611
|
* <p>The description of the data product revision.</p>
|
|
3612
3612
|
* @public
|
|
3613
3613
|
*/
|
|
3614
|
-
description?: string;
|
|
3614
|
+
description?: string | undefined;
|
|
3615
3615
|
/**
|
|
3616
3616
|
* <p>The glossary terms of the data product revision.</p>
|
|
3617
3617
|
* @public
|
|
3618
3618
|
*/
|
|
3619
|
-
glossaryTerms?: string[];
|
|
3619
|
+
glossaryTerms?: string[] | undefined;
|
|
3620
3620
|
/**
|
|
3621
3621
|
* <p>The data assets of the data product revision.</p>
|
|
3622
3622
|
* @public
|
|
3623
3623
|
*/
|
|
3624
|
-
items?: DataProductItem[];
|
|
3624
|
+
items?: DataProductItem[] | undefined;
|
|
3625
3625
|
/**
|
|
3626
3626
|
* <p>The metadata forms of the data product revision.</p>
|
|
3627
3627
|
* @public
|
|
3628
3628
|
*/
|
|
3629
|
-
formsInput?: FormInput[];
|
|
3629
|
+
formsInput?: FormInput[] | undefined;
|
|
3630
3630
|
/**
|
|
3631
3631
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
3632
3632
|
* request.</p>
|
|
3633
3633
|
* @public
|
|
3634
3634
|
*/
|
|
3635
|
-
clientToken?: string;
|
|
3635
|
+
clientToken?: string | undefined;
|
|
3636
3636
|
}
|
|
3637
3637
|
/**
|
|
3638
3638
|
* @public
|
|
@@ -3672,42 +3672,42 @@ export interface CreateDataProductRevisionOutput {
|
|
|
3672
3672
|
* <p>The description of the data product revision.</p>
|
|
3673
3673
|
* @public
|
|
3674
3674
|
*/
|
|
3675
|
-
description?: string;
|
|
3675
|
+
description?: string | undefined;
|
|
3676
3676
|
/**
|
|
3677
3677
|
* <p>The glossary terms of the data product revision.</p>
|
|
3678
3678
|
* @public
|
|
3679
3679
|
*/
|
|
3680
|
-
glossaryTerms?: string[];
|
|
3680
|
+
glossaryTerms?: string[] | undefined;
|
|
3681
3681
|
/**
|
|
3682
3682
|
* <p>The data assets of the data product revision.</p>
|
|
3683
3683
|
* @public
|
|
3684
3684
|
*/
|
|
3685
|
-
items?: DataProductItem[];
|
|
3685
|
+
items?: DataProductItem[] | undefined;
|
|
3686
3686
|
/**
|
|
3687
3687
|
* <p>The metadata forms of the data product revision.</p>
|
|
3688
3688
|
* @public
|
|
3689
3689
|
*/
|
|
3690
|
-
formsOutput?: FormOutput[];
|
|
3690
|
+
formsOutput?: FormOutput[] | undefined;
|
|
3691
3691
|
/**
|
|
3692
3692
|
* <p>The timestamp at which the data product revision is created.</p>
|
|
3693
3693
|
* @public
|
|
3694
3694
|
*/
|
|
3695
|
-
createdAt?: Date;
|
|
3695
|
+
createdAt?: Date | undefined;
|
|
3696
3696
|
/**
|
|
3697
3697
|
* <p>The user who created the data product revision.</p>
|
|
3698
3698
|
* @public
|
|
3699
3699
|
*/
|
|
3700
|
-
createdBy?: string;
|
|
3700
|
+
createdBy?: string | undefined;
|
|
3701
3701
|
/**
|
|
3702
3702
|
* <p>The timestamp at which the first revision of the data product is created.</p>
|
|
3703
3703
|
* @public
|
|
3704
3704
|
*/
|
|
3705
|
-
firstRevisionCreatedAt?: Date;
|
|
3705
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
3706
3706
|
/**
|
|
3707
3707
|
* <p>The user who created the first revision of the data product.</p>
|
|
3708
3708
|
* @public
|
|
3709
3709
|
*/
|
|
3710
|
-
firstRevisionCreatedBy?: string;
|
|
3710
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
3711
3711
|
}
|
|
3712
3712
|
/**
|
|
3713
3713
|
* @public
|
|
@@ -3753,13 +3753,13 @@ export interface RelationalFilterConfiguration {
|
|
|
3753
3753
|
* source.</p>
|
|
3754
3754
|
* @public
|
|
3755
3755
|
*/
|
|
3756
|
-
schemaName?: string;
|
|
3756
|
+
schemaName?: string | undefined;
|
|
3757
3757
|
/**
|
|
3758
3758
|
* <p>The filter expressions specified in the relational filter configuration for the data
|
|
3759
3759
|
* source.</p>
|
|
3760
3760
|
* @public
|
|
3761
3761
|
*/
|
|
3762
|
-
filterExpressions?: FilterExpression[];
|
|
3762
|
+
filterExpressions?: FilterExpression[] | undefined;
|
|
3763
3763
|
}
|
|
3764
3764
|
/**
|
|
3765
3765
|
* <p>The configuration details of the Amazon Web Services Glue data source.</p>
|
|
@@ -3771,7 +3771,7 @@ export interface GlueRunConfigurationInput {
|
|
|
3771
3771
|
* source.</p>
|
|
3772
3772
|
* @public
|
|
3773
3773
|
*/
|
|
3774
|
-
dataAccessRole?: string;
|
|
3774
|
+
dataAccessRole?: string | undefined;
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>The relational filter configurations included in the configuration details of the Amazon Web Services
|
|
3777
3777
|
* Glue data source.</p>
|
|
@@ -3783,7 +3783,7 @@ export interface GlueRunConfigurationInput {
|
|
|
3783
3783
|
* source run.</p>
|
|
3784
3784
|
* @public
|
|
3785
3785
|
*/
|
|
3786
|
-
autoImportDataQualityResult?: boolean;
|
|
3786
|
+
autoImportDataQualityResult?: boolean | undefined;
|
|
3787
3787
|
}
|
|
3788
3788
|
/**
|
|
3789
3789
|
* <p>The details of the credentials required to access an Amazon Redshift cluster.</p>
|
|
@@ -3871,7 +3871,7 @@ export interface RedshiftRunConfigurationInput {
|
|
|
3871
3871
|
* source.</p>
|
|
3872
3872
|
* @public
|
|
3873
3873
|
*/
|
|
3874
|
-
dataAccessRole?: string;
|
|
3874
|
+
dataAccessRole?: string | undefined;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* <p>The relational filger configurations included in the configuration details of the Amazon
|
|
3877
3877
|
* Redshift data source.</p>
|
|
@@ -3955,7 +3955,7 @@ export interface RecommendationConfiguration {
|
|
|
3955
3955
|
* the recommendation configuration.</p>
|
|
3956
3956
|
* @public
|
|
3957
3957
|
*/
|
|
3958
|
-
enableBusinessNameGeneration?: boolean;
|
|
3958
|
+
enableBusinessNameGeneration?: boolean | undefined;
|
|
3959
3959
|
}
|
|
3960
3960
|
/**
|
|
3961
3961
|
* @public
|
|
@@ -4040,12 +4040,12 @@ export interface ScheduleConfiguration {
|
|
|
4040
4040
|
* <p>The timezone of the data source run. </p>
|
|
4041
4041
|
* @public
|
|
4042
4042
|
*/
|
|
4043
|
-
timezone?: Timezone;
|
|
4043
|
+
timezone?: Timezone | undefined;
|
|
4044
4044
|
/**
|
|
4045
4045
|
* <p>The schedule of the data source runs.</p>
|
|
4046
4046
|
* @public
|
|
4047
4047
|
*/
|
|
4048
|
-
schedule?: string;
|
|
4048
|
+
schedule?: string | undefined;
|
|
4049
4049
|
}
|
|
4050
4050
|
/**
|
|
4051
4051
|
* @public
|
|
@@ -4060,7 +4060,7 @@ export interface CreateDataSourceInput {
|
|
|
4060
4060
|
* <p>The description of the data source.</p>
|
|
4061
4061
|
* @public
|
|
4062
4062
|
*/
|
|
4063
|
-
description?: string;
|
|
4063
|
+
description?: string | undefined;
|
|
4064
4064
|
/**
|
|
4065
4065
|
* <p>The ID of the Amazon DataZone domain where the data source is created.</p>
|
|
4066
4066
|
* @public
|
|
@@ -4088,41 +4088,41 @@ export interface CreateDataSourceInput {
|
|
|
4088
4088
|
* <code>glueRunConfiguration</code> or <code>redshiftRunConfiguration</code>.</p>
|
|
4089
4089
|
* @public
|
|
4090
4090
|
*/
|
|
4091
|
-
configuration?: DataSourceConfigurationInput;
|
|
4091
|
+
configuration?: DataSourceConfigurationInput | undefined;
|
|
4092
4092
|
/**
|
|
4093
4093
|
* <p>Specifies whether the business name generation is to be enabled for this data
|
|
4094
4094
|
* source.</p>
|
|
4095
4095
|
* @public
|
|
4096
4096
|
*/
|
|
4097
|
-
recommendation?: RecommendationConfiguration;
|
|
4097
|
+
recommendation?: RecommendationConfiguration | undefined;
|
|
4098
4098
|
/**
|
|
4099
4099
|
* <p>Specifies whether the data source is enabled.</p>
|
|
4100
4100
|
* @public
|
|
4101
4101
|
*/
|
|
4102
|
-
enableSetting?: EnableSetting;
|
|
4102
|
+
enableSetting?: EnableSetting | undefined;
|
|
4103
4103
|
/**
|
|
4104
4104
|
* <p>The schedule of the data source runs.</p>
|
|
4105
4105
|
* @public
|
|
4106
4106
|
*/
|
|
4107
|
-
schedule?: ScheduleConfiguration;
|
|
4107
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
4108
4108
|
/**
|
|
4109
4109
|
* <p>Specifies whether the assets that this data source creates in the inventory are to be
|
|
4110
4110
|
* also automatically published to the catalog.</p>
|
|
4111
4111
|
* @public
|
|
4112
4112
|
*/
|
|
4113
|
-
publishOnImport?: boolean;
|
|
4113
|
+
publishOnImport?: boolean | undefined;
|
|
4114
4114
|
/**
|
|
4115
4115
|
* <p>The metadata forms that are to be attached to the assets that this data source works
|
|
4116
4116
|
* with.</p>
|
|
4117
4117
|
* @public
|
|
4118
4118
|
*/
|
|
4119
|
-
assetFormsInput?: FormInput[];
|
|
4119
|
+
assetFormsInput?: FormInput[] | undefined;
|
|
4120
4120
|
/**
|
|
4121
4121
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
4122
4122
|
* request.</p>
|
|
4123
4123
|
* @public
|
|
4124
4124
|
*/
|
|
4125
|
-
clientToken?: string;
|
|
4125
|
+
clientToken?: string | undefined;
|
|
4126
4126
|
}
|
|
4127
4127
|
/**
|
|
4128
4128
|
* <p>The configuration details of the Amazon Web Services Glue data source.</p>
|
|
@@ -4134,19 +4134,19 @@ export interface GlueRunConfigurationOutput {
|
|
|
4134
4134
|
* source. </p>
|
|
4135
4135
|
* @public
|
|
4136
4136
|
*/
|
|
4137
|
-
accountId?: string;
|
|
4137
|
+
accountId?: string | undefined;
|
|
4138
4138
|
/**
|
|
4139
4139
|
* <p>The Amazon Web Services region included in the configuration details of the Amazon Web Services Glue data source.
|
|
4140
4140
|
* </p>
|
|
4141
4141
|
* @public
|
|
4142
4142
|
*/
|
|
4143
|
-
region?: string;
|
|
4143
|
+
region?: string | undefined;
|
|
4144
4144
|
/**
|
|
4145
4145
|
* <p>The data access role included in the configuration details of the Amazon Web Services Glue data
|
|
4146
4146
|
* source. </p>
|
|
4147
4147
|
* @public
|
|
4148
4148
|
*/
|
|
4149
|
-
dataAccessRole?: string;
|
|
4149
|
+
dataAccessRole?: string | undefined;
|
|
4150
4150
|
/**
|
|
4151
4151
|
* <p>The relational filter configurations included in the configuration details of the Amazon Web Services
|
|
4152
4152
|
* Glue data source.</p>
|
|
@@ -4158,7 +4158,7 @@ export interface GlueRunConfigurationOutput {
|
|
|
4158
4158
|
* source run.</p>
|
|
4159
4159
|
* @public
|
|
4160
4160
|
*/
|
|
4161
|
-
autoImportDataQualityResult?: boolean;
|
|
4161
|
+
autoImportDataQualityResult?: boolean | undefined;
|
|
4162
4162
|
}
|
|
4163
4163
|
/**
|
|
4164
4164
|
* <p>The configuration details of the Amazon Redshift data source.</p>
|
|
@@ -4170,19 +4170,19 @@ export interface RedshiftRunConfigurationOutput {
|
|
|
4170
4170
|
* data source.</p>
|
|
4171
4171
|
* @public
|
|
4172
4172
|
*/
|
|
4173
|
-
accountId?: string;
|
|
4173
|
+
accountId?: string | undefined;
|
|
4174
4174
|
/**
|
|
4175
4175
|
* <p>The Amazon Web Services region included in the configuration details of the Amazon Redshift data
|
|
4176
4176
|
* source.</p>
|
|
4177
4177
|
* @public
|
|
4178
4178
|
*/
|
|
4179
|
-
region?: string;
|
|
4179
|
+
region?: string | undefined;
|
|
4180
4180
|
/**
|
|
4181
4181
|
* <p>The data access role included in the configuration details of the Amazon Redshift data
|
|
4182
4182
|
* source.</p>
|
|
4183
4183
|
* @public
|
|
4184
4184
|
*/
|
|
4185
|
-
dataAccessRole?: string;
|
|
4185
|
+
dataAccessRole?: string | undefined;
|
|
4186
4186
|
/**
|
|
4187
4187
|
* <p>The relational filger configurations included in the configuration details of the Amazon
|
|
4188
4188
|
* Redshift data source.</p>
|
|
@@ -4277,7 +4277,7 @@ export interface DataSourceErrorMessage {
|
|
|
4277
4277
|
* successfully completed.</p>
|
|
4278
4278
|
* @public
|
|
4279
4279
|
*/
|
|
4280
|
-
errorDetail?: string;
|
|
4280
|
+
errorDetail?: string | undefined;
|
|
4281
4281
|
}
|
|
4282
4282
|
/**
|
|
4283
4283
|
* @public
|
|
@@ -4325,12 +4325,12 @@ export interface CreateDataSourceOutput {
|
|
|
4325
4325
|
* <p>The status of the data source.</p>
|
|
4326
4326
|
* @public
|
|
4327
4327
|
*/
|
|
4328
|
-
status?: DataSourceStatus;
|
|
4328
|
+
status?: DataSourceStatus | undefined;
|
|
4329
4329
|
/**
|
|
4330
4330
|
* <p>The type of the data source.</p>
|
|
4331
4331
|
* @public
|
|
4332
4332
|
*/
|
|
4333
|
-
type?: string;
|
|
4333
|
+
type?: string | undefined;
|
|
4334
4334
|
/**
|
|
4335
4335
|
* <p>The name of the data source.</p>
|
|
4336
4336
|
* @public
|
|
@@ -4340,7 +4340,7 @@ export interface CreateDataSourceOutput {
|
|
|
4340
4340
|
* <p>The description of the data source.</p>
|
|
4341
4341
|
* @public
|
|
4342
4342
|
*/
|
|
4343
|
-
description?: string;
|
|
4343
|
+
description?: string | undefined;
|
|
4344
4344
|
/**
|
|
4345
4345
|
* <p>The ID of the Amazon DataZone domain in which the data source is created.</p>
|
|
4346
4346
|
* @public
|
|
@@ -4362,66 +4362,66 @@ export interface CreateDataSourceOutput {
|
|
|
4362
4362
|
* <code>glueRunConfiguration</code> or <code>redshiftRunConfiguration</code>.</p>
|
|
4363
4363
|
* @public
|
|
4364
4364
|
*/
|
|
4365
|
-
configuration?: DataSourceConfigurationOutput;
|
|
4365
|
+
configuration?: DataSourceConfigurationOutput | undefined;
|
|
4366
4366
|
/**
|
|
4367
4367
|
* <p>Specifies whether the business name generation is to be enabled for this data
|
|
4368
4368
|
* source.</p>
|
|
4369
4369
|
* @public
|
|
4370
4370
|
*/
|
|
4371
|
-
recommendation?: RecommendationConfiguration;
|
|
4371
|
+
recommendation?: RecommendationConfiguration | undefined;
|
|
4372
4372
|
/**
|
|
4373
4373
|
* <p>Specifies whether the data source is enabled.</p>
|
|
4374
4374
|
* @public
|
|
4375
4375
|
*/
|
|
4376
|
-
enableSetting?: EnableSetting;
|
|
4376
|
+
enableSetting?: EnableSetting | undefined;
|
|
4377
4377
|
/**
|
|
4378
4378
|
* <p>Specifies whether the assets that this data source creates in the inventory are to be
|
|
4379
4379
|
* also automatically published to the catalog.</p>
|
|
4380
4380
|
* @public
|
|
4381
4381
|
*/
|
|
4382
|
-
publishOnImport?: boolean;
|
|
4382
|
+
publishOnImport?: boolean | undefined;
|
|
4383
4383
|
/**
|
|
4384
4384
|
* <p>The metadata forms attached to the assets that this data source creates.</p>
|
|
4385
4385
|
* @public
|
|
4386
4386
|
*/
|
|
4387
|
-
assetFormsOutput?: FormOutput[];
|
|
4387
|
+
assetFormsOutput?: FormOutput[] | undefined;
|
|
4388
4388
|
/**
|
|
4389
4389
|
* <p>The schedule of the data source runs.</p>
|
|
4390
4390
|
* @public
|
|
4391
4391
|
*/
|
|
4392
|
-
schedule?: ScheduleConfiguration;
|
|
4392
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
4393
4393
|
/**
|
|
4394
4394
|
* <p>The status of the last run of this data source.</p>
|
|
4395
4395
|
* @public
|
|
4396
4396
|
*/
|
|
4397
|
-
lastRunStatus?: DataSourceRunStatus;
|
|
4397
|
+
lastRunStatus?: DataSourceRunStatus | undefined;
|
|
4398
4398
|
/**
|
|
4399
4399
|
* <p>The timestamp that specifies when the data source was last run.</p>
|
|
4400
4400
|
* @public
|
|
4401
4401
|
*/
|
|
4402
|
-
lastRunAt?: Date;
|
|
4402
|
+
lastRunAt?: Date | undefined;
|
|
4403
4403
|
/**
|
|
4404
4404
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
4405
4405
|
* completed.</p>
|
|
4406
4406
|
* @public
|
|
4407
4407
|
*/
|
|
4408
|
-
lastRunErrorMessage?: DataSourceErrorMessage;
|
|
4408
|
+
lastRunErrorMessage?: DataSourceErrorMessage | undefined;
|
|
4409
4409
|
/**
|
|
4410
4410
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
4411
4411
|
* completed.</p>
|
|
4412
4412
|
* @public
|
|
4413
4413
|
*/
|
|
4414
|
-
errorMessage?: DataSourceErrorMessage;
|
|
4414
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
4415
4415
|
/**
|
|
4416
4416
|
* <p>The timestamp of when the data source was created.</p>
|
|
4417
4417
|
* @public
|
|
4418
4418
|
*/
|
|
4419
|
-
createdAt?: Date;
|
|
4419
|
+
createdAt?: Date | undefined;
|
|
4420
4420
|
/**
|
|
4421
4421
|
* <p>The timestamp of when the data source was updated.</p>
|
|
4422
4422
|
* @public
|
|
4423
4423
|
*/
|
|
4424
|
-
updatedAt?: Date;
|
|
4424
|
+
updatedAt?: Date | undefined;
|
|
4425
4425
|
}
|
|
4426
4426
|
/**
|
|
4427
4427
|
* @public
|
|
@@ -4444,12 +4444,12 @@ export interface SingleSignOn {
|
|
|
4444
4444
|
* <p>The type of single sign-on in Amazon DataZone.</p>
|
|
4445
4445
|
* @public
|
|
4446
4446
|
*/
|
|
4447
|
-
type?: AuthType;
|
|
4447
|
+
type?: AuthType | undefined;
|
|
4448
4448
|
/**
|
|
4449
4449
|
* <p>The single sign-on user assignment in Amazon DataZone.</p>
|
|
4450
4450
|
* @public
|
|
4451
4451
|
*/
|
|
4452
|
-
userAssignment?: UserAssignment;
|
|
4452
|
+
userAssignment?: UserAssignment | undefined;
|
|
4453
4453
|
}
|
|
4454
4454
|
/**
|
|
4455
4455
|
* @public
|
|
@@ -4464,12 +4464,12 @@ export interface CreateDomainInput {
|
|
|
4464
4464
|
* <p>The description of the Amazon DataZone domain.</p>
|
|
4465
4465
|
* @public
|
|
4466
4466
|
*/
|
|
4467
|
-
description?: string;
|
|
4467
|
+
description?: string | undefined;
|
|
4468
4468
|
/**
|
|
4469
4469
|
* <p>The single-sign on configuration of the Amazon DataZone domain.</p>
|
|
4470
4470
|
* @public
|
|
4471
4471
|
*/
|
|
4472
|
-
singleSignOn?: SingleSignOn;
|
|
4472
|
+
singleSignOn?: SingleSignOn | undefined;
|
|
4473
4473
|
/**
|
|
4474
4474
|
* <p>The domain execution role that is created when an Amazon DataZone domain is created. The
|
|
4475
4475
|
* domain execution role is created in the Amazon Web Services account that houses the
|
|
@@ -4482,18 +4482,18 @@ export interface CreateDomainInput {
|
|
|
4482
4482
|
* to encrypt the Amazon DataZone domain, metadata, and reporting data. </p>
|
|
4483
4483
|
* @public
|
|
4484
4484
|
*/
|
|
4485
|
-
kmsKeyIdentifier?: string;
|
|
4485
|
+
kmsKeyIdentifier?: string | undefined;
|
|
4486
4486
|
/**
|
|
4487
4487
|
* <p>The tags specified for the Amazon DataZone domain.</p>
|
|
4488
4488
|
* @public
|
|
4489
4489
|
*/
|
|
4490
|
-
tags?: Record<string, string
|
|
4490
|
+
tags?: Record<string, string> | undefined;
|
|
4491
4491
|
/**
|
|
4492
4492
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
4493
4493
|
* request.</p>
|
|
4494
4494
|
* @public
|
|
4495
4495
|
*/
|
|
4496
|
-
clientToken?: string;
|
|
4496
|
+
clientToken?: string | undefined;
|
|
4497
4497
|
}
|
|
4498
4498
|
/**
|
|
4499
4499
|
* @public
|
|
@@ -4524,55 +4524,55 @@ export interface CreateDomainOutput {
|
|
|
4524
4524
|
* <p>The ID of the root domain unit.</p>
|
|
4525
4525
|
* @public
|
|
4526
4526
|
*/
|
|
4527
|
-
rootDomainUnitId?: string;
|
|
4527
|
+
rootDomainUnitId?: string | undefined;
|
|
4528
4528
|
/**
|
|
4529
4529
|
* <p>The name of the Amazon DataZone domain.</p>
|
|
4530
4530
|
* @public
|
|
4531
4531
|
*/
|
|
4532
|
-
name?: string;
|
|
4532
|
+
name?: string | undefined;
|
|
4533
4533
|
/**
|
|
4534
4534
|
* <p>The description of the Amazon DataZone domain.</p>
|
|
4535
4535
|
* @public
|
|
4536
4536
|
*/
|
|
4537
|
-
description?: string;
|
|
4537
|
+
description?: string | undefined;
|
|
4538
4538
|
/**
|
|
4539
4539
|
* <p>The single-sign on configuration of the Amazon DataZone domain.</p>
|
|
4540
4540
|
* @public
|
|
4541
4541
|
*/
|
|
4542
|
-
singleSignOn?: SingleSignOn;
|
|
4542
|
+
singleSignOn?: SingleSignOn | undefined;
|
|
4543
4543
|
/**
|
|
4544
4544
|
* <p>The domain execution role that is created when an Amazon DataZone domain is created. The
|
|
4545
4545
|
* domain execution role is created in the Amazon Web Services account that houses the
|
|
4546
4546
|
* Amazon DataZone domain.</p>
|
|
4547
4547
|
* @public
|
|
4548
4548
|
*/
|
|
4549
|
-
domainExecutionRole?: string;
|
|
4549
|
+
domainExecutionRole?: string | undefined;
|
|
4550
4550
|
/**
|
|
4551
4551
|
* <p>The ARN of the Amazon DataZone domain.</p>
|
|
4552
4552
|
* @public
|
|
4553
4553
|
*/
|
|
4554
|
-
arn?: string;
|
|
4554
|
+
arn?: string | undefined;
|
|
4555
4555
|
/**
|
|
4556
4556
|
* <p>The identifier of the Amazon Web Services Key Management Service (KMS) key that is used
|
|
4557
4557
|
* to encrypt the Amazon DataZone domain, metadata, and reporting data. </p>
|
|
4558
4558
|
* @public
|
|
4559
4559
|
*/
|
|
4560
|
-
kmsKeyIdentifier?: string;
|
|
4560
|
+
kmsKeyIdentifier?: string | undefined;
|
|
4561
4561
|
/**
|
|
4562
4562
|
* <p>The status of the Amazon DataZone domain.</p>
|
|
4563
4563
|
* @public
|
|
4564
4564
|
*/
|
|
4565
|
-
status?: DomainStatus;
|
|
4565
|
+
status?: DomainStatus | undefined;
|
|
4566
4566
|
/**
|
|
4567
4567
|
* <p>The URL of the data portal for this Amazon DataZone domain.</p>
|
|
4568
4568
|
* @public
|
|
4569
4569
|
*/
|
|
4570
|
-
portalUrl?: string;
|
|
4570
|
+
portalUrl?: string | undefined;
|
|
4571
4571
|
/**
|
|
4572
4572
|
* <p>The tags specified for the Amazon DataZone domain.</p>
|
|
4573
4573
|
* @public
|
|
4574
4574
|
*/
|
|
4575
|
-
tags?: Record<string, string
|
|
4575
|
+
tags?: Record<string, string> | undefined;
|
|
4576
4576
|
}
|
|
4577
4577
|
/**
|
|
4578
4578
|
* @public
|
|
@@ -4597,13 +4597,13 @@ export interface CreateDomainUnitInput {
|
|
|
4597
4597
|
* <p>The description of the domain unit.</p>
|
|
4598
4598
|
* @public
|
|
4599
4599
|
*/
|
|
4600
|
-
description?: string;
|
|
4600
|
+
description?: string | undefined;
|
|
4601
4601
|
/**
|
|
4602
4602
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
4603
4603
|
* request.</p>
|
|
4604
4604
|
* @public
|
|
4605
4605
|
*/
|
|
4606
|
-
clientToken?: string;
|
|
4606
|
+
clientToken?: string | undefined;
|
|
4607
4607
|
}
|
|
4608
4608
|
/**
|
|
4609
4609
|
* <p>The properties of a domain unit group.</p>
|
|
@@ -4614,7 +4614,7 @@ export interface DomainUnitGroupProperties {
|
|
|
4614
4614
|
* <p>The ID of the domain unit group.</p>
|
|
4615
4615
|
* @public
|
|
4616
4616
|
*/
|
|
4617
|
-
groupId?: string;
|
|
4617
|
+
groupId?: string | undefined;
|
|
4618
4618
|
}
|
|
4619
4619
|
/**
|
|
4620
4620
|
* <p>The properties of the domain unit user.</p>
|
|
@@ -4625,7 +4625,7 @@ export interface DomainUnitUserProperties {
|
|
|
4625
4625
|
* <p>The ID of teh domain unit user.</p>
|
|
4626
4626
|
* @public
|
|
4627
4627
|
*/
|
|
4628
|
-
userId?: string;
|
|
4628
|
+
userId?: string | undefined;
|
|
4629
4629
|
}
|
|
4630
4630
|
/**
|
|
4631
4631
|
* <p>The properties of the domain unit owner.</p>
|
|
@@ -4692,12 +4692,12 @@ export interface CreateDomainUnitOutput {
|
|
|
4692
4692
|
* <p>The ID of the parent domain unit.</p>
|
|
4693
4693
|
* @public
|
|
4694
4694
|
*/
|
|
4695
|
-
parentDomainUnitId?: string;
|
|
4695
|
+
parentDomainUnitId?: string | undefined;
|
|
4696
4696
|
/**
|
|
4697
4697
|
* <p>The description of the domain unit.</p>
|
|
4698
4698
|
* @public
|
|
4699
4699
|
*/
|
|
4700
|
-
description?: string;
|
|
4700
|
+
description?: string | undefined;
|
|
4701
4701
|
/**
|
|
4702
4702
|
* <p>The owners of the domain unit.</p>
|
|
4703
4703
|
* @public
|
|
@@ -4712,12 +4712,12 @@ export interface CreateDomainUnitOutput {
|
|
|
4712
4712
|
* <p>The timestamp at which the domain unit was created.</p>
|
|
4713
4713
|
* @public
|
|
4714
4714
|
*/
|
|
4715
|
-
createdAt?: Date;
|
|
4715
|
+
createdAt?: Date | undefined;
|
|
4716
4716
|
/**
|
|
4717
4717
|
* <p>The user who created the domain unit.</p>
|
|
4718
4718
|
* @public
|
|
4719
4719
|
*/
|
|
4720
|
-
createdBy?: string;
|
|
4720
|
+
createdBy?: string | undefined;
|
|
4721
4721
|
}
|
|
4722
4722
|
/**
|
|
4723
4723
|
* <p>The parameter details of an evironment profile.</p>
|
|
@@ -4728,12 +4728,12 @@ export interface EnvironmentParameter {
|
|
|
4728
4728
|
* <p>The name of an environment profile parameter.</p>
|
|
4729
4729
|
* @public
|
|
4730
4730
|
*/
|
|
4731
|
-
name?: string;
|
|
4731
|
+
name?: string | undefined;
|
|
4732
4732
|
/**
|
|
4733
4733
|
* <p>The value of an environment profile parameter.</p>
|
|
4734
4734
|
* @public
|
|
4735
4735
|
*/
|
|
4736
|
-
value?: string;
|
|
4736
|
+
value?: string | undefined;
|
|
4737
4737
|
}
|
|
4738
4738
|
/**
|
|
4739
4739
|
* @public
|
|
@@ -4753,7 +4753,7 @@ export interface CreateEnvironmentInput {
|
|
|
4753
4753
|
* <p>The description of the Amazon DataZone environment.</p>
|
|
4754
4754
|
* @public
|
|
4755
4755
|
*/
|
|
4756
|
-
description?: string;
|
|
4756
|
+
description?: string | undefined;
|
|
4757
4757
|
/**
|
|
4758
4758
|
* <p>The name of the Amazon DataZone environment.</p>
|
|
4759
4759
|
* @public
|
|
@@ -4769,27 +4769,27 @@ export interface CreateEnvironmentInput {
|
|
|
4769
4769
|
* <p>The user parameters of this Amazon DataZone environment.</p>
|
|
4770
4770
|
* @public
|
|
4771
4771
|
*/
|
|
4772
|
-
userParameters?: EnvironmentParameter[];
|
|
4772
|
+
userParameters?: EnvironmentParameter[] | undefined;
|
|
4773
4773
|
/**
|
|
4774
4774
|
* <p>The glossary terms that can be used in this Amazon DataZone environment.</p>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
glossaryTerms?: string[];
|
|
4777
|
+
glossaryTerms?: string[] | undefined;
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p>The ID of the account in which the environment is being created.</p>
|
|
4780
4780
|
* @public
|
|
4781
4781
|
*/
|
|
4782
|
-
environmentAccountIdentifier?: string;
|
|
4782
|
+
environmentAccountIdentifier?: string | undefined;
|
|
4783
4783
|
/**
|
|
4784
4784
|
* <p>The region of the account in which the environment is being created.</p>
|
|
4785
4785
|
* @public
|
|
4786
4786
|
*/
|
|
4787
|
-
environmentAccountRegion?: string;
|
|
4787
|
+
environmentAccountRegion?: string | undefined;
|
|
4788
4788
|
/**
|
|
4789
4789
|
* <p>The ID of the blueprint with which the environment is being created.</p>
|
|
4790
4790
|
* @public
|
|
4791
4791
|
*/
|
|
4792
|
-
environmentBlueprintIdentifier?: string;
|
|
4792
|
+
environmentBlueprintIdentifier?: string | undefined;
|
|
4793
4793
|
}
|
|
4794
4794
|
/**
|
|
4795
4795
|
* <p>The deployment properties of the Amazon DataZone blueprint.</p>
|
|
@@ -4800,12 +4800,12 @@ export interface DeploymentProperties {
|
|
|
4800
4800
|
* <p>The start timeout of the environment blueprint deployment.</p>
|
|
4801
4801
|
* @public
|
|
4802
4802
|
*/
|
|
4803
|
-
startTimeoutMinutes?: number;
|
|
4803
|
+
startTimeoutMinutes?: number | undefined;
|
|
4804
4804
|
/**
|
|
4805
4805
|
* <p>The end timeout of the environment blueprint deployment.</p>
|
|
4806
4806
|
* @public
|
|
4807
4807
|
*/
|
|
4808
|
-
endTimeoutMinutes?: number;
|
|
4808
|
+
endTimeoutMinutes?: number | undefined;
|
|
4809
4809
|
}
|
|
4810
4810
|
/**
|
|
4811
4811
|
* @public
|
|
@@ -4843,7 +4843,7 @@ export interface EnvironmentError {
|
|
|
4843
4843
|
* <p>The error code for the failure reason for the environment deployment.</p>
|
|
4844
4844
|
* @public
|
|
4845
4845
|
*/
|
|
4846
|
-
code?: string;
|
|
4846
|
+
code?: string | undefined;
|
|
4847
4847
|
/**
|
|
4848
4848
|
* <p>The error message for the failure reason for the environment deployment.</p>
|
|
4849
4849
|
* @public
|
|
@@ -4859,32 +4859,32 @@ export interface Deployment {
|
|
|
4859
4859
|
* <p>The identifier of the last deployment of the environment.</p>
|
|
4860
4860
|
* @public
|
|
4861
4861
|
*/
|
|
4862
|
-
deploymentId?: string;
|
|
4862
|
+
deploymentId?: string | undefined;
|
|
4863
4863
|
/**
|
|
4864
4864
|
* <p>The type of the last deployment of the environment.</p>
|
|
4865
4865
|
* @public
|
|
4866
4866
|
*/
|
|
4867
|
-
deploymentType?: DeploymentType;
|
|
4867
|
+
deploymentType?: DeploymentType | undefined;
|
|
4868
4868
|
/**
|
|
4869
4869
|
* <p>The status of the last deployment of the environment.</p>
|
|
4870
4870
|
* @public
|
|
4871
4871
|
*/
|
|
4872
|
-
deploymentStatus?: DeploymentStatus;
|
|
4872
|
+
deploymentStatus?: DeploymentStatus | undefined;
|
|
4873
4873
|
/**
|
|
4874
4874
|
* <p>The failure reason of the last deployment of the environment.</p>
|
|
4875
4875
|
* @public
|
|
4876
4876
|
*/
|
|
4877
|
-
failureReason?: EnvironmentError;
|
|
4877
|
+
failureReason?: EnvironmentError | undefined;
|
|
4878
4878
|
/**
|
|
4879
4879
|
* <p>The messages of the last deployment of the environment.</p>
|
|
4880
4880
|
* @public
|
|
4881
4881
|
*/
|
|
4882
|
-
messages?: string[];
|
|
4882
|
+
messages?: string[] | undefined;
|
|
4883
4883
|
/**
|
|
4884
4884
|
* <p>Specifies whether the last deployment of the environment is complete.</p>
|
|
4885
4885
|
* @public
|
|
4886
4886
|
*/
|
|
4887
|
-
isDeploymentComplete?: boolean;
|
|
4887
|
+
isDeploymentComplete?: boolean | undefined;
|
|
4888
4888
|
}
|
|
4889
4889
|
/**
|
|
4890
4890
|
* <p>The details of a provisioned resource of this Amazon DataZone environment.</p>
|
|
@@ -4895,12 +4895,12 @@ export interface Resource {
|
|
|
4895
4895
|
* <p>The provider of a provisioned resource of this Amazon DataZone environment.</p>
|
|
4896
4896
|
* @public
|
|
4897
4897
|
*/
|
|
4898
|
-
provider?: string;
|
|
4898
|
+
provider?: string | undefined;
|
|
4899
4899
|
/**
|
|
4900
4900
|
* <p>The name of a provisioned resource of this Amazon DataZone environment.</p>
|
|
4901
4901
|
* @public
|
|
4902
4902
|
*/
|
|
4903
|
-
name?: string;
|
|
4903
|
+
name?: string | undefined;
|
|
4904
4904
|
/**
|
|
4905
4905
|
* <p>The value of a provisioned resource of this Amazon DataZone environment.</p>
|
|
4906
4906
|
* @public
|
|
@@ -4980,7 +4980,7 @@ export interface CustomParameter {
|
|
|
4980
4980
|
* <p>The description of the parameter.</p>
|
|
4981
4981
|
* @public
|
|
4982
4982
|
*/
|
|
4983
|
-
description?: string;
|
|
4983
|
+
description?: string | undefined;
|
|
4984
4984
|
/**
|
|
4985
4985
|
* <p>The filed type of the parameter.</p>
|
|
4986
4986
|
* @public
|
|
@@ -4990,17 +4990,17 @@ export interface CustomParameter {
|
|
|
4990
4990
|
* <p>The default value of the parameter.</p>
|
|
4991
4991
|
* @public
|
|
4992
4992
|
*/
|
|
4993
|
-
defaultValue?: string;
|
|
4993
|
+
defaultValue?: string | undefined;
|
|
4994
4994
|
/**
|
|
4995
4995
|
* <p>Specifies whether the parameter is editable.</p>
|
|
4996
4996
|
* @public
|
|
4997
4997
|
*/
|
|
4998
|
-
isEditable?: boolean;
|
|
4998
|
+
isEditable?: boolean | undefined;
|
|
4999
4999
|
/**
|
|
5000
5000
|
* <p>Specifies whether the custom parameter is optional.</p>
|
|
5001
5001
|
* @public
|
|
5002
5002
|
*/
|
|
5003
|
-
isOptional?: boolean;
|
|
5003
|
+
isOptional?: boolean | undefined;
|
|
5004
5004
|
}
|
|
5005
5005
|
/**
|
|
5006
5006
|
* @public
|
|
@@ -5015,7 +5015,7 @@ export interface CreateEnvironmentOutput {
|
|
|
5015
5015
|
* <p>The ID of this Amazon DataZone environment.</p>
|
|
5016
5016
|
* @public
|
|
5017
5017
|
*/
|
|
5018
|
-
id?: string;
|
|
5018
|
+
id?: string | undefined;
|
|
5019
5019
|
/**
|
|
5020
5020
|
* <p>The identifier of the Amazon DataZone domain in which the environment is created.</p>
|
|
5021
5021
|
* @public
|
|
@@ -5030,12 +5030,12 @@ export interface CreateEnvironmentOutput {
|
|
|
5030
5030
|
* <p>The timestamp of when the environment was created.</p>
|
|
5031
5031
|
* @public
|
|
5032
5032
|
*/
|
|
5033
|
-
createdAt?: Date;
|
|
5033
|
+
createdAt?: Date | undefined;
|
|
5034
5034
|
/**
|
|
5035
5035
|
* <p>The timestamp of when this environment was updated.</p>
|
|
5036
5036
|
* @public
|
|
5037
5037
|
*/
|
|
5038
|
-
updatedAt?: Date;
|
|
5038
|
+
updatedAt?: Date | undefined;
|
|
5039
5039
|
/**
|
|
5040
5040
|
* <p>The name of this environment.</p>
|
|
5041
5041
|
* @public
|
|
@@ -5045,23 +5045,23 @@ export interface CreateEnvironmentOutput {
|
|
|
5045
5045
|
* <p>The description of this Amazon DataZone environment.</p>
|
|
5046
5046
|
* @public
|
|
5047
5047
|
*/
|
|
5048
|
-
description?: string;
|
|
5048
|
+
description?: string | undefined;
|
|
5049
5049
|
/**
|
|
5050
5050
|
* <p>The ID of the environment profile with which this Amazon DataZone environment was
|
|
5051
5051
|
* created.</p>
|
|
5052
5052
|
* @public
|
|
5053
5053
|
*/
|
|
5054
|
-
environmentProfileId?: string;
|
|
5054
|
+
environmentProfileId?: string | undefined;
|
|
5055
5055
|
/**
|
|
5056
5056
|
* <p>The Amazon Web Services account in which the Amazon DataZone environment is created.</p>
|
|
5057
5057
|
* @public
|
|
5058
5058
|
*/
|
|
5059
|
-
awsAccountId?: string;
|
|
5059
|
+
awsAccountId?: string | undefined;
|
|
5060
5060
|
/**
|
|
5061
5061
|
* <p>The Amazon Web Services region in which the Amazon DataZone environment is created.</p>
|
|
5062
5062
|
* @public
|
|
5063
5063
|
*/
|
|
5064
|
-
awsAccountRegion?: string;
|
|
5064
|
+
awsAccountRegion?: string | undefined;
|
|
5065
5065
|
/**
|
|
5066
5066
|
* <p>The provider of this Amazon DataZone environment.</p>
|
|
5067
5067
|
* @public
|
|
@@ -5071,47 +5071,47 @@ export interface CreateEnvironmentOutput {
|
|
|
5071
5071
|
* <p>The provisioned resources of this Amazon DataZone environment.</p>
|
|
5072
5072
|
* @public
|
|
5073
5073
|
*/
|
|
5074
|
-
provisionedResources?: Resource[];
|
|
5074
|
+
provisionedResources?: Resource[] | undefined;
|
|
5075
5075
|
/**
|
|
5076
5076
|
* <p>The status of this Amazon DataZone environment.</p>
|
|
5077
5077
|
* @public
|
|
5078
5078
|
*/
|
|
5079
|
-
status?: EnvironmentStatus;
|
|
5079
|
+
status?: EnvironmentStatus | undefined;
|
|
5080
5080
|
/**
|
|
5081
5081
|
* <p>The configurable actions of this Amazon DataZone environment.</p>
|
|
5082
5082
|
* @public
|
|
5083
5083
|
*/
|
|
5084
|
-
environmentActions?: ConfigurableEnvironmentAction[];
|
|
5084
|
+
environmentActions?: ConfigurableEnvironmentAction[] | undefined;
|
|
5085
5085
|
/**
|
|
5086
5086
|
* <p>The glossary terms that can be used in this Amazon DataZone environment.</p>
|
|
5087
5087
|
* @public
|
|
5088
5088
|
*/
|
|
5089
|
-
glossaryTerms?: string[];
|
|
5089
|
+
glossaryTerms?: string[] | undefined;
|
|
5090
5090
|
/**
|
|
5091
5091
|
* <p>The user parameters of this Amazon DataZone environment.</p>
|
|
5092
5092
|
* @public
|
|
5093
5093
|
*/
|
|
5094
|
-
userParameters?: CustomParameter[];
|
|
5094
|
+
userParameters?: CustomParameter[] | undefined;
|
|
5095
5095
|
/**
|
|
5096
5096
|
* <p>The details of the last deployment of this Amazon DataZone environment.</p>
|
|
5097
5097
|
* @public
|
|
5098
5098
|
*/
|
|
5099
|
-
lastDeployment?: Deployment;
|
|
5099
|
+
lastDeployment?: Deployment | undefined;
|
|
5100
5100
|
/**
|
|
5101
5101
|
* <p>The provisioning properties of this Amazon DataZone environment.</p>
|
|
5102
5102
|
* @public
|
|
5103
5103
|
*/
|
|
5104
|
-
provisioningProperties?: ProvisioningProperties;
|
|
5104
|
+
provisioningProperties?: ProvisioningProperties | undefined;
|
|
5105
5105
|
/**
|
|
5106
5106
|
* <p>The deployment properties of this Amazon DataZone environment.</p>
|
|
5107
5107
|
* @public
|
|
5108
5108
|
*/
|
|
5109
|
-
deploymentProperties?: DeploymentProperties;
|
|
5109
|
+
deploymentProperties?: DeploymentProperties | undefined;
|
|
5110
5110
|
/**
|
|
5111
5111
|
* <p>The ID of the blueprint with which this Amazon DataZone environment was created.</p>
|
|
5112
5112
|
* @public
|
|
5113
5113
|
*/
|
|
5114
|
-
environmentBlueprintId?: string;
|
|
5114
|
+
environmentBlueprintId?: string | undefined;
|
|
5115
5115
|
}
|
|
5116
5116
|
/**
|
|
5117
5117
|
* @public
|
|
@@ -5142,7 +5142,7 @@ export interface CreateEnvironmentActionInput {
|
|
|
5142
5142
|
* environment.</p>
|
|
5143
5143
|
* @public
|
|
5144
5144
|
*/
|
|
5145
|
-
description?: string;
|
|
5145
|
+
description?: string | undefined;
|
|
5146
5146
|
}
|
|
5147
5147
|
/**
|
|
5148
5148
|
* @public
|
|
@@ -5177,7 +5177,7 @@ export interface CreateEnvironmentActionOutput {
|
|
|
5177
5177
|
* <p>The description of the environment action.</p>
|
|
5178
5178
|
* @public
|
|
5179
5179
|
*/
|
|
5180
|
-
description?: string;
|
|
5180
|
+
description?: string | undefined;
|
|
5181
5181
|
}
|
|
5182
5182
|
/**
|
|
5183
5183
|
* @public
|
|
@@ -5197,7 +5197,7 @@ export interface CreateEnvironmentProfileInput {
|
|
|
5197
5197
|
* <p>The description of this Amazon DataZone environment profile.</p>
|
|
5198
5198
|
* @public
|
|
5199
5199
|
*/
|
|
5200
|
-
description?: string;
|
|
5200
|
+
description?: string | undefined;
|
|
5201
5201
|
/**
|
|
5202
5202
|
* <p>The ID of the blueprint with which this environment profile is created.</p>
|
|
5203
5203
|
* @public
|
|
@@ -5212,17 +5212,17 @@ export interface CreateEnvironmentProfileInput {
|
|
|
5212
5212
|
* <p>The user parameters of this Amazon DataZone environment profile.</p>
|
|
5213
5213
|
* @public
|
|
5214
5214
|
*/
|
|
5215
|
-
userParameters?: EnvironmentParameter[];
|
|
5215
|
+
userParameters?: EnvironmentParameter[] | undefined;
|
|
5216
5216
|
/**
|
|
5217
5217
|
* <p>The Amazon Web Services account in which the Amazon DataZone environment is created.</p>
|
|
5218
5218
|
* @public
|
|
5219
5219
|
*/
|
|
5220
|
-
awsAccountId?: string;
|
|
5220
|
+
awsAccountId?: string | undefined;
|
|
5221
5221
|
/**
|
|
5222
5222
|
* <p>The Amazon Web Services region in which this environment profile is created.</p>
|
|
5223
5223
|
* @public
|
|
5224
5224
|
*/
|
|
5225
|
-
awsAccountRegion?: string;
|
|
5225
|
+
awsAccountRegion?: string | undefined;
|
|
5226
5226
|
}
|
|
5227
5227
|
/**
|
|
5228
5228
|
* @public
|
|
@@ -5243,13 +5243,13 @@ export interface CreateEnvironmentProfileOutput {
|
|
|
5243
5243
|
* created.</p>
|
|
5244
5244
|
* @public
|
|
5245
5245
|
*/
|
|
5246
|
-
awsAccountId?: string;
|
|
5246
|
+
awsAccountId?: string | undefined;
|
|
5247
5247
|
/**
|
|
5248
5248
|
* <p>The Amazon Web Services region in which this Amazon DataZone environment profile is
|
|
5249
5249
|
* created.</p>
|
|
5250
5250
|
* @public
|
|
5251
5251
|
*/
|
|
5252
|
-
awsAccountRegion?: string;
|
|
5252
|
+
awsAccountRegion?: string | undefined;
|
|
5253
5253
|
/**
|
|
5254
5254
|
* <p>The Amazon DataZone user who created this environment profile.</p>
|
|
5255
5255
|
* @public
|
|
@@ -5259,12 +5259,12 @@ export interface CreateEnvironmentProfileOutput {
|
|
|
5259
5259
|
* <p>The timestamp of when this environment profile was created.</p>
|
|
5260
5260
|
* @public
|
|
5261
5261
|
*/
|
|
5262
|
-
createdAt?: Date;
|
|
5262
|
+
createdAt?: Date | undefined;
|
|
5263
5263
|
/**
|
|
5264
5264
|
* <p>The timestamp of when this environment profile was updated.</p>
|
|
5265
5265
|
* @public
|
|
5266
5266
|
*/
|
|
5267
|
-
updatedAt?: Date;
|
|
5267
|
+
updatedAt?: Date | undefined;
|
|
5268
5268
|
/**
|
|
5269
5269
|
* <p>The name of this Amazon DataZone environment profile.</p>
|
|
5270
5270
|
* @public
|
|
@@ -5274,7 +5274,7 @@ export interface CreateEnvironmentProfileOutput {
|
|
|
5274
5274
|
* <p>The description of this Amazon DataZone environment profile.</p>
|
|
5275
5275
|
* @public
|
|
5276
5276
|
*/
|
|
5277
|
-
description?: string;
|
|
5277
|
+
description?: string | undefined;
|
|
5278
5278
|
/**
|
|
5279
5279
|
* <p>The ID of the blueprint with which this environment profile is created.</p>
|
|
5280
5280
|
* @public
|
|
@@ -5284,12 +5284,12 @@ export interface CreateEnvironmentProfileOutput {
|
|
|
5284
5284
|
* <p>The ID of the Amazon DataZone project in which this environment profile is created.</p>
|
|
5285
5285
|
* @public
|
|
5286
5286
|
*/
|
|
5287
|
-
projectId?: string;
|
|
5287
|
+
projectId?: string | undefined;
|
|
5288
5288
|
/**
|
|
5289
5289
|
* <p>The user parameters of this Amazon DataZone environment profile.</p>
|
|
5290
5290
|
* @public
|
|
5291
5291
|
*/
|
|
5292
|
-
userParameters?: CustomParameter[];
|
|
5292
|
+
userParameters?: CustomParameter[] | undefined;
|
|
5293
5293
|
}
|
|
5294
5294
|
/**
|
|
5295
5295
|
* <p>The model of the API.</p>
|
|
@@ -5361,12 +5361,12 @@ export interface CreateFormTypeInput {
|
|
|
5361
5361
|
* <p>The status of this Amazon DataZone metadata form type.</p>
|
|
5362
5362
|
* @public
|
|
5363
5363
|
*/
|
|
5364
|
-
status?: FormTypeStatus;
|
|
5364
|
+
status?: FormTypeStatus | undefined;
|
|
5365
5365
|
/**
|
|
5366
5366
|
* <p>The description of this Amazon DataZone metadata form type.</p>
|
|
5367
5367
|
* @public
|
|
5368
5368
|
*/
|
|
5369
|
-
description?: string;
|
|
5369
|
+
description?: string | undefined;
|
|
5370
5370
|
}
|
|
5371
5371
|
/**
|
|
5372
5372
|
* @public
|
|
@@ -5391,24 +5391,24 @@ export interface CreateFormTypeOutput {
|
|
|
5391
5391
|
* <p>The description of this Amazon DataZone metadata form type.</p>
|
|
5392
5392
|
* @public
|
|
5393
5393
|
*/
|
|
5394
|
-
description?: string;
|
|
5394
|
+
description?: string | undefined;
|
|
5395
5395
|
/**
|
|
5396
5396
|
* <p>The ID of the project that owns this Amazon DataZone metadata form type.</p>
|
|
5397
5397
|
* @public
|
|
5398
5398
|
*/
|
|
5399
|
-
owningProjectId?: string;
|
|
5399
|
+
owningProjectId?: string | undefined;
|
|
5400
5400
|
/**
|
|
5401
5401
|
* <p>The ID of the Amazon DataZone domain in which this metadata form type was originally
|
|
5402
5402
|
* created.</p>
|
|
5403
5403
|
* @public
|
|
5404
5404
|
*/
|
|
5405
|
-
originDomainId?: string;
|
|
5405
|
+
originDomainId?: string | undefined;
|
|
5406
5406
|
/**
|
|
5407
5407
|
* <p>The ID of the project in which this Amazon DataZone metadata form type was originally
|
|
5408
5408
|
* created.</p>
|
|
5409
5409
|
* @public
|
|
5410
5410
|
*/
|
|
5411
|
-
originProjectId?: string;
|
|
5411
|
+
originProjectId?: string | undefined;
|
|
5412
5412
|
}
|
|
5413
5413
|
/**
|
|
5414
5414
|
* @public
|
|
@@ -5445,18 +5445,18 @@ export interface CreateGlossaryInput {
|
|
|
5445
5445
|
* <p>The description of this business glossary.</p>
|
|
5446
5446
|
* @public
|
|
5447
5447
|
*/
|
|
5448
|
-
description?: string;
|
|
5448
|
+
description?: string | undefined;
|
|
5449
5449
|
/**
|
|
5450
5450
|
* <p>The status of this business glossary.</p>
|
|
5451
5451
|
* @public
|
|
5452
5452
|
*/
|
|
5453
|
-
status?: GlossaryStatus;
|
|
5453
|
+
status?: GlossaryStatus | undefined;
|
|
5454
5454
|
/**
|
|
5455
5455
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
5456
5456
|
* request.</p>
|
|
5457
5457
|
* @public
|
|
5458
5458
|
*/
|
|
5459
|
-
clientToken?: string;
|
|
5459
|
+
clientToken?: string | undefined;
|
|
5460
5460
|
}
|
|
5461
5461
|
/**
|
|
5462
5462
|
* @public
|
|
@@ -5486,12 +5486,12 @@ export interface CreateGlossaryOutput {
|
|
|
5486
5486
|
* <p>The description of this business glossary.</p>
|
|
5487
5487
|
* @public
|
|
5488
5488
|
*/
|
|
5489
|
-
description?: string;
|
|
5489
|
+
description?: string | undefined;
|
|
5490
5490
|
/**
|
|
5491
5491
|
* <p>The status of this business glossary.</p>
|
|
5492
5492
|
* @public
|
|
5493
5493
|
*/
|
|
5494
|
-
status?: GlossaryStatus;
|
|
5494
|
+
status?: GlossaryStatus | undefined;
|
|
5495
5495
|
}
|
|
5496
5496
|
/**
|
|
5497
5497
|
* @public
|
|
@@ -5514,12 +5514,12 @@ export interface TermRelations {
|
|
|
5514
5514
|
* <p>The <code>isA</code> property of the term relations.</p>
|
|
5515
5515
|
* @public
|
|
5516
5516
|
*/
|
|
5517
|
-
isA?: string[];
|
|
5517
|
+
isA?: string[] | undefined;
|
|
5518
5518
|
/**
|
|
5519
5519
|
* <p>The classifies of the term relations.</p>
|
|
5520
5520
|
* @public
|
|
5521
5521
|
*/
|
|
5522
|
-
classifies?: string[];
|
|
5522
|
+
classifies?: string[] | undefined;
|
|
5523
5523
|
}
|
|
5524
5524
|
/**
|
|
5525
5525
|
* @public
|
|
@@ -5544,28 +5544,28 @@ export interface CreateGlossaryTermInput {
|
|
|
5544
5544
|
* <p>The status of this business glossary term.</p>
|
|
5545
5545
|
* @public
|
|
5546
5546
|
*/
|
|
5547
|
-
status?: GlossaryTermStatus;
|
|
5547
|
+
status?: GlossaryTermStatus | undefined;
|
|
5548
5548
|
/**
|
|
5549
5549
|
* <p>The short description of this business glossary term.</p>
|
|
5550
5550
|
* @public
|
|
5551
5551
|
*/
|
|
5552
|
-
shortDescription?: string;
|
|
5552
|
+
shortDescription?: string | undefined;
|
|
5553
5553
|
/**
|
|
5554
5554
|
* <p>The long description of this business glossary term.</p>
|
|
5555
5555
|
* @public
|
|
5556
5556
|
*/
|
|
5557
|
-
longDescription?: string;
|
|
5557
|
+
longDescription?: string | undefined;
|
|
5558
5558
|
/**
|
|
5559
5559
|
* <p>The term relations of this business glossary term.</p>
|
|
5560
5560
|
* @public
|
|
5561
5561
|
*/
|
|
5562
|
-
termRelations?: TermRelations;
|
|
5562
|
+
termRelations?: TermRelations | undefined;
|
|
5563
5563
|
/**
|
|
5564
5564
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
5565
5565
|
* request.</p>
|
|
5566
5566
|
* @public
|
|
5567
5567
|
*/
|
|
5568
|
-
clientToken?: string;
|
|
5568
|
+
clientToken?: string | undefined;
|
|
5569
5569
|
}
|
|
5570
5570
|
/**
|
|
5571
5571
|
* @public
|
|
@@ -5600,17 +5600,17 @@ export interface CreateGlossaryTermOutput {
|
|
|
5600
5600
|
* <p>The short description of this business glossary term.</p>
|
|
5601
5601
|
* @public
|
|
5602
5602
|
*/
|
|
5603
|
-
shortDescription?: string;
|
|
5603
|
+
shortDescription?: string | undefined;
|
|
5604
5604
|
/**
|
|
5605
5605
|
* <p>The long description of this business glossary term.</p>
|
|
5606
5606
|
* @public
|
|
5607
5607
|
*/
|
|
5608
|
-
longDescription?: string;
|
|
5608
|
+
longDescription?: string | undefined;
|
|
5609
5609
|
/**
|
|
5610
5610
|
* <p>The term relations of this business glossary term.</p>
|
|
5611
5611
|
* @public
|
|
5612
5612
|
*/
|
|
5613
|
-
termRelations?: TermRelations;
|
|
5613
|
+
termRelations?: TermRelations | undefined;
|
|
5614
5614
|
}
|
|
5615
5615
|
/**
|
|
5616
5616
|
* @public
|
|
@@ -5631,7 +5631,7 @@ export interface CreateGroupProfileInput {
|
|
|
5631
5631
|
* request.</p>
|
|
5632
5632
|
* @public
|
|
5633
5633
|
*/
|
|
5634
|
-
clientToken?: string;
|
|
5634
|
+
clientToken?: string | undefined;
|
|
5635
5635
|
}
|
|
5636
5636
|
/**
|
|
5637
5637
|
* @public
|
|
@@ -5653,22 +5653,22 @@ export interface CreateGroupProfileOutput {
|
|
|
5653
5653
|
* <p>The identifier of the Amazon DataZone domain in which the group profile is created.</p>
|
|
5654
5654
|
* @public
|
|
5655
5655
|
*/
|
|
5656
|
-
domainId?: string;
|
|
5656
|
+
domainId?: string | undefined;
|
|
5657
5657
|
/**
|
|
5658
5658
|
* <p>The identifier of the group profile.</p>
|
|
5659
5659
|
* @public
|
|
5660
5660
|
*/
|
|
5661
|
-
id?: string;
|
|
5661
|
+
id?: string | undefined;
|
|
5662
5662
|
/**
|
|
5663
5663
|
* <p>The status of the group profile.</p>
|
|
5664
5664
|
* @public
|
|
5665
5665
|
*/
|
|
5666
|
-
status?: GroupProfileStatus;
|
|
5666
|
+
status?: GroupProfileStatus | undefined;
|
|
5667
5667
|
/**
|
|
5668
5668
|
* <p>The name of the group for which group profile is created.</p>
|
|
5669
5669
|
* @public
|
|
5670
5670
|
*/
|
|
5671
|
-
groupName?: string;
|
|
5671
|
+
groupName?: string | undefined;
|
|
5672
5672
|
}
|
|
5673
5673
|
/**
|
|
5674
5674
|
* @public
|
|
@@ -5705,7 +5705,7 @@ export interface CreateListingChangeSetInput {
|
|
|
5705
5705
|
* <p>The revision of an asset.</p>
|
|
5706
5706
|
* @public
|
|
5707
5707
|
*/
|
|
5708
|
-
entityRevision?: string;
|
|
5708
|
+
entityRevision?: string | undefined;
|
|
5709
5709
|
/**
|
|
5710
5710
|
* <p>Specifies whether to publish or unpublish a listing.</p>
|
|
5711
5711
|
* @public
|
|
@@ -5716,7 +5716,7 @@ export interface CreateListingChangeSetInput {
|
|
|
5716
5716
|
* request.</p>
|
|
5717
5717
|
* @public
|
|
5718
5718
|
*/
|
|
5719
|
-
clientToken?: string;
|
|
5719
|
+
clientToken?: string | undefined;
|
|
5720
5720
|
}
|
|
5721
5721
|
/**
|
|
5722
5722
|
* @public
|
|
@@ -5756,18 +5756,18 @@ export interface CreateProjectInput {
|
|
|
5756
5756
|
* <p>The description of the Amazon DataZone project.</p>
|
|
5757
5757
|
* @public
|
|
5758
5758
|
*/
|
|
5759
|
-
description?: string;
|
|
5759
|
+
description?: string | undefined;
|
|
5760
5760
|
/**
|
|
5761
5761
|
* <p>The glossary terms that can be used in this Amazon DataZone project.</p>
|
|
5762
5762
|
* @public
|
|
5763
5763
|
*/
|
|
5764
|
-
glossaryTerms?: string[];
|
|
5764
|
+
glossaryTerms?: string[] | undefined;
|
|
5765
5765
|
/**
|
|
5766
5766
|
* <p>The ID of the domain unit. This parameter is not required and if it is not specified,
|
|
5767
5767
|
* then the project is created at the root domain unit level.</p>
|
|
5768
5768
|
* @public
|
|
5769
5769
|
*/
|
|
5770
|
-
domainUnitId?: string;
|
|
5770
|
+
domainUnitId?: string | undefined;
|
|
5771
5771
|
}
|
|
5772
5772
|
/**
|
|
5773
5773
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
@@ -5779,12 +5779,12 @@ export interface ProjectDeletionError {
|
|
|
5779
5779
|
* <p>The code of the project deletion error.</p>
|
|
5780
5780
|
* @public
|
|
5781
5781
|
*/
|
|
5782
|
-
code?: string;
|
|
5782
|
+
code?: string | undefined;
|
|
5783
5783
|
/**
|
|
5784
5784
|
* <p>The message of the project deletion error.</p>
|
|
5785
5785
|
* @public
|
|
5786
5786
|
*/
|
|
5787
|
-
message?: string;
|
|
5787
|
+
message?: string | undefined;
|
|
5788
5788
|
}
|
|
5789
5789
|
/**
|
|
5790
5790
|
* @public
|
|
@@ -5822,18 +5822,18 @@ export interface CreateProjectOutput {
|
|
|
5822
5822
|
* <p>The description of the project.</p>
|
|
5823
5823
|
* @public
|
|
5824
5824
|
*/
|
|
5825
|
-
description?: string;
|
|
5825
|
+
description?: string | undefined;
|
|
5826
5826
|
/**
|
|
5827
5827
|
* <p>The status of the Amazon DataZone project that was created.</p>
|
|
5828
5828
|
* @public
|
|
5829
5829
|
*/
|
|
5830
|
-
projectStatus?: ProjectStatus;
|
|
5830
|
+
projectStatus?: ProjectStatus | undefined;
|
|
5831
5831
|
/**
|
|
5832
5832
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
5833
5833
|
* completed.</p>
|
|
5834
5834
|
* @public
|
|
5835
5835
|
*/
|
|
5836
|
-
failureReasons?: ProjectDeletionError[];
|
|
5836
|
+
failureReasons?: ProjectDeletionError[] | undefined;
|
|
5837
5837
|
/**
|
|
5838
5838
|
* <p>The Amazon DataZone user who created the project.</p>
|
|
5839
5839
|
* @public
|
|
@@ -5843,22 +5843,22 @@ export interface CreateProjectOutput {
|
|
|
5843
5843
|
* <p>The timestamp of when the project was created.</p>
|
|
5844
5844
|
* @public
|
|
5845
5845
|
*/
|
|
5846
|
-
createdAt?: Date;
|
|
5846
|
+
createdAt?: Date | undefined;
|
|
5847
5847
|
/**
|
|
5848
5848
|
* <p>The timestamp of when the project was last updated.</p>
|
|
5849
5849
|
* @public
|
|
5850
5850
|
*/
|
|
5851
|
-
lastUpdatedAt?: Date;
|
|
5851
|
+
lastUpdatedAt?: Date | undefined;
|
|
5852
5852
|
/**
|
|
5853
5853
|
* <p>The glossary terms that can be used in the project.</p>
|
|
5854
5854
|
* @public
|
|
5855
5855
|
*/
|
|
5856
|
-
glossaryTerms?: string[];
|
|
5856
|
+
glossaryTerms?: string[] | undefined;
|
|
5857
5857
|
/**
|
|
5858
5858
|
* <p>The ID of the domain unit.</p>
|
|
5859
5859
|
* @public
|
|
5860
5860
|
*/
|
|
5861
|
-
domainUnitId?: string;
|
|
5861
|
+
domainUnitId?: string | undefined;
|
|
5862
5862
|
}
|
|
5863
5863
|
/**
|
|
5864
5864
|
* @public
|
|
@@ -6023,13 +6023,13 @@ export interface CreateSubscriptionGrantInput {
|
|
|
6023
6023
|
* <p>The names of the assets for which the subscription grant is created.</p>
|
|
6024
6024
|
* @public
|
|
6025
6025
|
*/
|
|
6026
|
-
assetTargetNames?: AssetTargetNameMap[];
|
|
6026
|
+
assetTargetNames?: AssetTargetNameMap[] | undefined;
|
|
6027
6027
|
/**
|
|
6028
6028
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
6029
6029
|
* request.</p>
|
|
6030
6030
|
* @public
|
|
6031
6031
|
*/
|
|
6032
|
-
clientToken?: string;
|
|
6032
|
+
clientToken?: string | undefined;
|
|
6033
6033
|
}
|
|
6034
6034
|
/**
|
|
6035
6035
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
@@ -6041,7 +6041,7 @@ export interface FailureCause {
|
|
|
6041
6041
|
* <p>The description of the error message.</p>
|
|
6042
6042
|
* @public
|
|
6043
6043
|
*/
|
|
6044
|
-
message?: string;
|
|
6044
|
+
message?: string | undefined;
|
|
6045
6045
|
}
|
|
6046
6046
|
/**
|
|
6047
6047
|
* @public
|
|
@@ -6085,29 +6085,29 @@ export interface SubscribedAsset {
|
|
|
6085
6085
|
* <p>The target name of the asset for which the subscription grant is created.</p>
|
|
6086
6086
|
* @public
|
|
6087
6087
|
*/
|
|
6088
|
-
targetName?: string;
|
|
6088
|
+
targetName?: string | undefined;
|
|
6089
6089
|
/**
|
|
6090
6090
|
* <p>The failure cause included in the details of the asset for which the subscription grant
|
|
6091
6091
|
* is created.</p>
|
|
6092
6092
|
* @public
|
|
6093
6093
|
*/
|
|
6094
|
-
failureCause?: FailureCause;
|
|
6094
|
+
failureCause?: FailureCause | undefined;
|
|
6095
6095
|
/**
|
|
6096
6096
|
* <p>The timestamp of when the subscription grant to the asset is created.</p>
|
|
6097
6097
|
* @public
|
|
6098
6098
|
*/
|
|
6099
|
-
grantedTimestamp?: Date;
|
|
6099
|
+
grantedTimestamp?: Date | undefined;
|
|
6100
6100
|
/**
|
|
6101
6101
|
* <p>The failure timestamp included in the details of the asset for which the subscription
|
|
6102
6102
|
* grant is created.</p>
|
|
6103
6103
|
* @public
|
|
6104
6104
|
*/
|
|
6105
|
-
failureTimestamp?: Date;
|
|
6105
|
+
failureTimestamp?: Date | undefined;
|
|
6106
6106
|
/**
|
|
6107
6107
|
* <p>The asset scope of the subscribed asset.</p>
|
|
6108
6108
|
* @public
|
|
6109
6109
|
*/
|
|
6110
|
-
assetScope?: AssetScope;
|
|
6110
|
+
assetScope?: AssetScope | undefined;
|
|
6111
6111
|
}
|
|
6112
6112
|
/**
|
|
6113
6113
|
* <p>A revision of an asset published in a Amazon DataZone catalog.</p>
|
|
@@ -6190,7 +6190,7 @@ export interface CreateSubscriptionGrantOutput {
|
|
|
6190
6190
|
* <p>The Amazon DataZone user who updated the subscription grant.</p>
|
|
6191
6191
|
* @public
|
|
6192
6192
|
*/
|
|
6193
|
-
updatedBy?: string;
|
|
6193
|
+
updatedBy?: string | undefined;
|
|
6194
6194
|
/**
|
|
6195
6195
|
* <p>The ID of the Amazon DataZone domain in which the subscription grant is created.</p>
|
|
6196
6196
|
* @public
|
|
@@ -6225,14 +6225,14 @@ export interface CreateSubscriptionGrantOutput {
|
|
|
6225
6225
|
* <p>The assets for which the subscription grant is created.</p>
|
|
6226
6226
|
* @public
|
|
6227
6227
|
*/
|
|
6228
|
-
assets?: SubscribedAsset[];
|
|
6228
|
+
assets?: SubscribedAsset[] | undefined;
|
|
6229
6229
|
/**
|
|
6230
6230
|
* @deprecated
|
|
6231
6231
|
*
|
|
6232
6232
|
* <p>The identifier of the subscription grant.</p>
|
|
6233
6233
|
* @public
|
|
6234
6234
|
*/
|
|
6235
|
-
subscriptionId?: string;
|
|
6235
|
+
subscriptionId?: string | undefined;
|
|
6236
6236
|
}
|
|
6237
6237
|
/**
|
|
6238
6238
|
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
@@ -6255,7 +6255,7 @@ export interface SubscribedProjectInput {
|
|
|
6255
6255
|
* <p>The identifier of the project that is to be given a subscription grant.</p>
|
|
6256
6256
|
* @public
|
|
6257
6257
|
*/
|
|
6258
|
-
identifier?: string;
|
|
6258
|
+
identifier?: string | undefined;
|
|
6259
6259
|
}
|
|
6260
6260
|
/**
|
|
6261
6261
|
* <p>The principal that is to be given a subscriptiong grant.</p>
|
|
@@ -6316,7 +6316,7 @@ export interface CreateSubscriptionRequestInput {
|
|
|
6316
6316
|
* request.</p>
|
|
6317
6317
|
* @public
|
|
6318
6318
|
*/
|
|
6319
|
-
clientToken?: string;
|
|
6319
|
+
clientToken?: string | undefined;
|
|
6320
6320
|
}
|
|
6321
6321
|
/**
|
|
6322
6322
|
* @public
|
|
@@ -6336,7 +6336,7 @@ export interface CreateSubscriptionRequestOutput {
|
|
|
6336
6336
|
* <p>The Amazon DataZone user who updated the subscription request.</p>
|
|
6337
6337
|
* @public
|
|
6338
6338
|
*/
|
|
6339
|
-
updatedBy?: string;
|
|
6339
|
+
updatedBy?: string | undefined;
|
|
6340
6340
|
/**
|
|
6341
6341
|
* <p>The ID of the Amazon DataZone domain in whcih the subscription request is created.</p>
|
|
6342
6342
|
* @public
|
|
@@ -6376,12 +6376,12 @@ export interface CreateSubscriptionRequestOutput {
|
|
|
6376
6376
|
* <p>The ID of the reviewer of the subscription request.</p>
|
|
6377
6377
|
* @public
|
|
6378
6378
|
*/
|
|
6379
|
-
reviewerId?: string;
|
|
6379
|
+
reviewerId?: string | undefined;
|
|
6380
6380
|
/**
|
|
6381
6381
|
* <p>The decision comment of the subscription request.</p>
|
|
6382
6382
|
* @public
|
|
6383
6383
|
*/
|
|
6384
|
-
decisionComment?: string;
|
|
6384
|
+
decisionComment?: string | undefined;
|
|
6385
6385
|
}
|
|
6386
6386
|
/**
|
|
6387
6387
|
* <p>The details of the subscription target configuration.</p>
|
|
@@ -6447,13 +6447,13 @@ export interface CreateSubscriptionTargetInput {
|
|
|
6447
6447
|
* <p>The provider of the subscription target.</p>
|
|
6448
6448
|
* @public
|
|
6449
6449
|
*/
|
|
6450
|
-
provider?: string;
|
|
6450
|
+
provider?: string | undefined;
|
|
6451
6451
|
/**
|
|
6452
6452
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
6453
6453
|
* request.</p>
|
|
6454
6454
|
* @public
|
|
6455
6455
|
*/
|
|
6456
|
-
clientToken?: string;
|
|
6456
|
+
clientToken?: string | undefined;
|
|
6457
6457
|
}
|
|
6458
6458
|
/**
|
|
6459
6459
|
* @public
|
|
@@ -6503,7 +6503,7 @@ export interface CreateSubscriptionTargetOutput {
|
|
|
6503
6503
|
* <p>The Amazon DataZone user who updated the subscription target.</p>
|
|
6504
6504
|
* @public
|
|
6505
6505
|
*/
|
|
6506
|
-
updatedBy?: string;
|
|
6506
|
+
updatedBy?: string | undefined;
|
|
6507
6507
|
/**
|
|
6508
6508
|
* <p>The timestamp of when the subscription target was created.</p>
|
|
6509
6509
|
* @public
|
|
@@ -6513,7 +6513,7 @@ export interface CreateSubscriptionTargetOutput {
|
|
|
6513
6513
|
* <p>The timestamp of when the subscription target was updated.</p>
|
|
6514
6514
|
* @public
|
|
6515
6515
|
*/
|
|
6516
|
-
updatedAt?: Date;
|
|
6516
|
+
updatedAt?: Date | undefined;
|
|
6517
6517
|
/**
|
|
6518
6518
|
* <p>The manage access role with which the subscription target was created.</p>
|
|
6519
6519
|
* @public
|
|
@@ -6566,13 +6566,13 @@ export interface CreateUserProfileInput {
|
|
|
6566
6566
|
* <p>The user type of the user for which the user profile is created.</p>
|
|
6567
6567
|
* @public
|
|
6568
6568
|
*/
|
|
6569
|
-
userType?: UserType;
|
|
6569
|
+
userType?: UserType | undefined;
|
|
6570
6570
|
/**
|
|
6571
6571
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
6572
6572
|
* request.</p>
|
|
6573
6573
|
* @public
|
|
6574
6574
|
*/
|
|
6575
|
-
clientToken?: string;
|
|
6575
|
+
clientToken?: string | undefined;
|
|
6576
6576
|
}
|
|
6577
6577
|
/**
|
|
6578
6578
|
* <p>The details of an IAM user profile in Amazon DataZone.</p>
|
|
@@ -6583,7 +6583,7 @@ export interface IamUserProfileDetails {
|
|
|
6583
6583
|
* <p>The ARN of an IAM user profile in Amazon DataZone.</p>
|
|
6584
6584
|
* @public
|
|
6585
6585
|
*/
|
|
6586
|
-
arn?: string;
|
|
6586
|
+
arn?: string | undefined;
|
|
6587
6587
|
}
|
|
6588
6588
|
/**
|
|
6589
6589
|
* <p>The single sign-on details of the user profile.</p>
|
|
@@ -6594,17 +6594,17 @@ export interface SsoUserProfileDetails {
|
|
|
6594
6594
|
* <p>The username included in the single sign-on details of the user profile.</p>
|
|
6595
6595
|
* @public
|
|
6596
6596
|
*/
|
|
6597
|
-
username?: string;
|
|
6597
|
+
username?: string | undefined;
|
|
6598
6598
|
/**
|
|
6599
6599
|
* <p>The first name included in the single sign-on details of the user profile.</p>
|
|
6600
6600
|
* @public
|
|
6601
6601
|
*/
|
|
6602
|
-
firstName?: string;
|
|
6602
|
+
firstName?: string | undefined;
|
|
6603
6603
|
/**
|
|
6604
6604
|
* <p>The last name included in the single sign-on details of the user profile.</p>
|
|
6605
6605
|
* @public
|
|
6606
6606
|
*/
|
|
6607
|
-
lastName?: string;
|
|
6607
|
+
lastName?: string | undefined;
|
|
6608
6608
|
}
|
|
6609
6609
|
/**
|
|
6610
6610
|
* <p>The details of the user profile in Amazon DataZone.</p>
|
|
@@ -6682,27 +6682,27 @@ export interface CreateUserProfileOutput {
|
|
|
6682
6682
|
* <p>The identifier of the Amazon DataZone domain in which a user profile is created.</p>
|
|
6683
6683
|
* @public
|
|
6684
6684
|
*/
|
|
6685
|
-
domainId?: string;
|
|
6685
|
+
domainId?: string | undefined;
|
|
6686
6686
|
/**
|
|
6687
6687
|
* <p>The identifier of the user profile.</p>
|
|
6688
6688
|
* @public
|
|
6689
6689
|
*/
|
|
6690
|
-
id?: string;
|
|
6690
|
+
id?: string | undefined;
|
|
6691
6691
|
/**
|
|
6692
6692
|
* <p>The type of the user profile.</p>
|
|
6693
6693
|
* @public
|
|
6694
6694
|
*/
|
|
6695
|
-
type?: UserProfileType;
|
|
6695
|
+
type?: UserProfileType | undefined;
|
|
6696
6696
|
/**
|
|
6697
6697
|
* <p>The status of the user profile.</p>
|
|
6698
6698
|
* @public
|
|
6699
6699
|
*/
|
|
6700
|
-
status?: UserProfileStatus;
|
|
6700
|
+
status?: UserProfileStatus | undefined;
|
|
6701
6701
|
/**
|
|
6702
6702
|
* <p>The details of the user profile in Amazon DataZone.</p>
|
|
6703
6703
|
* @public
|
|
6704
6704
|
*/
|
|
6705
|
-
details?: UserProfileDetails;
|
|
6705
|
+
details?: UserProfileDetails | undefined;
|
|
6706
6706
|
}
|
|
6707
6707
|
/**
|
|
6708
6708
|
* @public
|
|
@@ -6760,7 +6760,7 @@ export interface GetDataProductInput {
|
|
|
6760
6760
|
* <p>The revision of the data product.</p>
|
|
6761
6761
|
* @public
|
|
6762
6762
|
*/
|
|
6763
|
-
revision?: string;
|
|
6763
|
+
revision?: string | undefined;
|
|
6764
6764
|
}
|
|
6765
6765
|
/**
|
|
6766
6766
|
* @public
|
|
@@ -6800,42 +6800,42 @@ export interface GetDataProductOutput {
|
|
|
6800
6800
|
* <p>The description of the data product.</p>
|
|
6801
6801
|
* @public
|
|
6802
6802
|
*/
|
|
6803
|
-
description?: string;
|
|
6803
|
+
description?: string | undefined;
|
|
6804
6804
|
/**
|
|
6805
6805
|
* <p>The glossary terms of the data product.</p>
|
|
6806
6806
|
* @public
|
|
6807
6807
|
*/
|
|
6808
|
-
glossaryTerms?: string[];
|
|
6808
|
+
glossaryTerms?: string[] | undefined;
|
|
6809
6809
|
/**
|
|
6810
6810
|
* <p>The data assets of the data product.</p>
|
|
6811
6811
|
* @public
|
|
6812
6812
|
*/
|
|
6813
|
-
items?: DataProductItem[];
|
|
6813
|
+
items?: DataProductItem[] | undefined;
|
|
6814
6814
|
/**
|
|
6815
6815
|
* <p>The metadata forms of the data product.</p>
|
|
6816
6816
|
* @public
|
|
6817
6817
|
*/
|
|
6818
|
-
formsOutput?: FormOutput[];
|
|
6818
|
+
formsOutput?: FormOutput[] | undefined;
|
|
6819
6819
|
/**
|
|
6820
6820
|
* <p>The timestamp at which the data product is created.</p>
|
|
6821
6821
|
* @public
|
|
6822
6822
|
*/
|
|
6823
|
-
createdAt?: Date;
|
|
6823
|
+
createdAt?: Date | undefined;
|
|
6824
6824
|
/**
|
|
6825
6825
|
* <p>The user who created the data product.</p>
|
|
6826
6826
|
* @public
|
|
6827
6827
|
*/
|
|
6828
|
-
createdBy?: string;
|
|
6828
|
+
createdBy?: string | undefined;
|
|
6829
6829
|
/**
|
|
6830
6830
|
* <p>The timestamp at which the first revision of the data product is created.</p>
|
|
6831
6831
|
* @public
|
|
6832
6832
|
*/
|
|
6833
|
-
firstRevisionCreatedAt?: Date;
|
|
6833
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
6834
6834
|
/**
|
|
6835
6835
|
* <p>The user who created the first revision of the data product.</p>
|
|
6836
6836
|
* @public
|
|
6837
6837
|
*/
|
|
6838
|
-
firstRevisionCreatedBy?: string;
|
|
6838
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
6839
6839
|
}
|
|
6840
6840
|
/**
|
|
6841
6841
|
* <p>The summary of the listing of the data product.</p>
|
|
@@ -6846,17 +6846,17 @@ export interface ListingSummary {
|
|
|
6846
6846
|
* <p>The ID of the data product listing.</p>
|
|
6847
6847
|
* @public
|
|
6848
6848
|
*/
|
|
6849
|
-
listingId?: string;
|
|
6849
|
+
listingId?: string | undefined;
|
|
6850
6850
|
/**
|
|
6851
6851
|
* <p>The revision of the data product listing.</p>
|
|
6852
6852
|
* @public
|
|
6853
6853
|
*/
|
|
6854
|
-
listingRevision?: string;
|
|
6854
|
+
listingRevision?: string | undefined;
|
|
6855
6855
|
/**
|
|
6856
6856
|
* <p>The glossary terms of the data product.</p>
|
|
6857
6857
|
* @public
|
|
6858
6858
|
*/
|
|
6859
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
6859
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
6860
6860
|
}
|
|
6861
6861
|
/**
|
|
6862
6862
|
* <p>The data product listing.</p>
|
|
@@ -6867,37 +6867,37 @@ export interface DataProductListing {
|
|
|
6867
6867
|
* <p>The ID of the data product listing.</p>
|
|
6868
6868
|
* @public
|
|
6869
6869
|
*/
|
|
6870
|
-
dataProductId?: string;
|
|
6870
|
+
dataProductId?: string | undefined;
|
|
6871
6871
|
/**
|
|
6872
6872
|
* <p>The revision of the data product listing.</p>
|
|
6873
6873
|
* @public
|
|
6874
6874
|
*/
|
|
6875
|
-
dataProductRevision?: string;
|
|
6875
|
+
dataProductRevision?: string | undefined;
|
|
6876
6876
|
/**
|
|
6877
6877
|
* <p>The timestamp at which the data product listing was created.</p>
|
|
6878
6878
|
* @public
|
|
6879
6879
|
*/
|
|
6880
|
-
createdAt?: Date;
|
|
6880
|
+
createdAt?: Date | undefined;
|
|
6881
6881
|
/**
|
|
6882
6882
|
* <p>The metadata forms of the data product listing.</p>
|
|
6883
6883
|
* @public
|
|
6884
6884
|
*/
|
|
6885
|
-
forms?: string;
|
|
6885
|
+
forms?: string | undefined;
|
|
6886
6886
|
/**
|
|
6887
6887
|
* <p>The glossary terms of the data product listing.</p>
|
|
6888
6888
|
* @public
|
|
6889
6889
|
*/
|
|
6890
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
6890
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
6891
6891
|
/**
|
|
6892
6892
|
* <p>The ID of the owning project of the data product listing.</p>
|
|
6893
6893
|
* @public
|
|
6894
6894
|
*/
|
|
6895
|
-
owningProjectId?: string;
|
|
6895
|
+
owningProjectId?: string | undefined;
|
|
6896
6896
|
/**
|
|
6897
6897
|
* <p>The data assets of the data product listing.</p>
|
|
6898
6898
|
* @public
|
|
6899
6899
|
*/
|
|
6900
|
-
items?: ListingSummary[];
|
|
6900
|
+
items?: ListingSummary[] | undefined;
|
|
6901
6901
|
}
|
|
6902
6902
|
/**
|
|
6903
6903
|
* <p>The additional attributes of the asset of the data product. </p>
|
|
@@ -6908,7 +6908,7 @@ export interface DataProductListingItemAdditionalAttributes {
|
|
|
6908
6908
|
* <p>The metadata forms of the asset of the data product. </p>
|
|
6909
6909
|
* @public
|
|
6910
6910
|
*/
|
|
6911
|
-
forms?: string;
|
|
6911
|
+
forms?: string | undefined;
|
|
6912
6912
|
}
|
|
6913
6913
|
/**
|
|
6914
6914
|
* <p>The results of the data product summary.</p>
|
|
@@ -6919,17 +6919,17 @@ export interface ListingSummaryItem {
|
|
|
6919
6919
|
* <p>The ID of the data product listing.</p>
|
|
6920
6920
|
* @public
|
|
6921
6921
|
*/
|
|
6922
|
-
listingId?: string;
|
|
6922
|
+
listingId?: string | undefined;
|
|
6923
6923
|
/**
|
|
6924
6924
|
* <p>The revision of the data product listing.</p>
|
|
6925
6925
|
* @public
|
|
6926
6926
|
*/
|
|
6927
|
-
listingRevision?: string;
|
|
6927
|
+
listingRevision?: string | undefined;
|
|
6928
6928
|
/**
|
|
6929
6929
|
* <p>The glossary terms of the data product listing.</p>
|
|
6930
6930
|
* @public
|
|
6931
6931
|
*/
|
|
6932
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
6932
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
6933
6933
|
}
|
|
6934
6934
|
/**
|
|
6935
6935
|
* <p>The asset of the data product listing.</p>
|
|
@@ -6940,67 +6940,67 @@ export interface DataProductListingItem {
|
|
|
6940
6940
|
* <p>The ID of the listing.</p>
|
|
6941
6941
|
* @public
|
|
6942
6942
|
*/
|
|
6943
|
-
listingId?: string;
|
|
6943
|
+
listingId?: string | undefined;
|
|
6944
6944
|
/**
|
|
6945
6945
|
* <p>The revision of the listing.</p>
|
|
6946
6946
|
* @public
|
|
6947
6947
|
*/
|
|
6948
|
-
listingRevision?: string;
|
|
6948
|
+
listingRevision?: string | undefined;
|
|
6949
6949
|
/**
|
|
6950
6950
|
* <p>The name of the asset of the data product. </p>
|
|
6951
6951
|
* @public
|
|
6952
6952
|
*/
|
|
6953
|
-
name?: string;
|
|
6953
|
+
name?: string | undefined;
|
|
6954
6954
|
/**
|
|
6955
6955
|
* <p>The entity ID of the asset of the asset of the data product. </p>
|
|
6956
6956
|
* @public
|
|
6957
6957
|
*/
|
|
6958
|
-
entityId?: string;
|
|
6958
|
+
entityId?: string | undefined;
|
|
6959
6959
|
/**
|
|
6960
6960
|
* <p>The revision of the asset of the asset of the data product. </p>
|
|
6961
6961
|
* @public
|
|
6962
6962
|
*/
|
|
6963
|
-
entityRevision?: string;
|
|
6963
|
+
entityRevision?: string | undefined;
|
|
6964
6964
|
/**
|
|
6965
6965
|
* <p>The description of the asset of the asset of the data product. </p>
|
|
6966
6966
|
* @public
|
|
6967
6967
|
*/
|
|
6968
|
-
description?: string;
|
|
6968
|
+
description?: string | undefined;
|
|
6969
6969
|
/**
|
|
6970
6970
|
* <p>The timestamp at which the asset of the data product listing was created. </p>
|
|
6971
6971
|
* @public
|
|
6972
6972
|
*/
|
|
6973
|
-
createdAt?: Date;
|
|
6973
|
+
createdAt?: Date | undefined;
|
|
6974
6974
|
/**
|
|
6975
6975
|
* <p>The timestamp at which the listing was created.</p>
|
|
6976
6976
|
* @public
|
|
6977
6977
|
*/
|
|
6978
|
-
listingCreatedBy?: string;
|
|
6978
|
+
listingCreatedBy?: string | undefined;
|
|
6979
6979
|
/**
|
|
6980
6980
|
* <p>The user who updated the listing.</p>
|
|
6981
6981
|
* @public
|
|
6982
6982
|
*/
|
|
6983
|
-
listingUpdatedBy?: string;
|
|
6983
|
+
listingUpdatedBy?: string | undefined;
|
|
6984
6984
|
/**
|
|
6985
6985
|
* <p>The glossary terms of the asset of the asset of the data product. </p>
|
|
6986
6986
|
* @public
|
|
6987
6987
|
*/
|
|
6988
|
-
glossaryTerms?: DetailedGlossaryTerm[];
|
|
6988
|
+
glossaryTerms?: DetailedGlossaryTerm[] | undefined;
|
|
6989
6989
|
/**
|
|
6990
6990
|
* <p>The ID of the owning project of the asset of the data product. </p>
|
|
6991
6991
|
* @public
|
|
6992
6992
|
*/
|
|
6993
|
-
owningProjectId?: string;
|
|
6993
|
+
owningProjectId?: string | undefined;
|
|
6994
6994
|
/**
|
|
6995
6995
|
* <p>The additional attributes of the asset of the data product.</p>
|
|
6996
6996
|
* @public
|
|
6997
6997
|
*/
|
|
6998
|
-
additionalAttributes?: DataProductListingItemAdditionalAttributes;
|
|
6998
|
+
additionalAttributes?: DataProductListingItemAdditionalAttributes | undefined;
|
|
6999
6999
|
/**
|
|
7000
7000
|
* <p>The data of the asset of the data product. </p>
|
|
7001
7001
|
* @public
|
|
7002
7002
|
*/
|
|
7003
|
-
items?: ListingSummaryItem[];
|
|
7003
|
+
items?: ListingSummaryItem[] | undefined;
|
|
7004
7004
|
}
|
|
7005
7005
|
/**
|
|
7006
7006
|
* <p>The data product.</p>
|
|
@@ -7031,32 +7031,32 @@ export interface DataProductResultItem {
|
|
|
7031
7031
|
* <p>The description of the data product.</p>
|
|
7032
7032
|
* @public
|
|
7033
7033
|
*/
|
|
7034
|
-
description?: string;
|
|
7034
|
+
description?: string | undefined;
|
|
7035
7035
|
/**
|
|
7036
7036
|
* <p>The glossary terms of the data product.</p>
|
|
7037
7037
|
* @public
|
|
7038
7038
|
*/
|
|
7039
|
-
glossaryTerms?: string[];
|
|
7039
|
+
glossaryTerms?: string[] | undefined;
|
|
7040
7040
|
/**
|
|
7041
7041
|
* <p>The timestamp at which the data product was created.</p>
|
|
7042
7042
|
* @public
|
|
7043
7043
|
*/
|
|
7044
|
-
createdAt?: Date;
|
|
7044
|
+
createdAt?: Date | undefined;
|
|
7045
7045
|
/**
|
|
7046
7046
|
* <p>The user who created the data product.</p>
|
|
7047
7047
|
* @public
|
|
7048
7048
|
*/
|
|
7049
|
-
createdBy?: string;
|
|
7049
|
+
createdBy?: string | undefined;
|
|
7050
7050
|
/**
|
|
7051
7051
|
* <p>The timestamp at which first revision of the data product was created.</p>
|
|
7052
7052
|
* @public
|
|
7053
7053
|
*/
|
|
7054
|
-
firstRevisionCreatedAt?: Date;
|
|
7054
|
+
firstRevisionCreatedAt?: Date | undefined;
|
|
7055
7055
|
/**
|
|
7056
7056
|
* <p>The user who created the first revision of the data product.</p>
|
|
7057
7057
|
* @public
|
|
7058
7058
|
*/
|
|
7059
|
-
firstRevisionCreatedBy?: string;
|
|
7059
|
+
firstRevisionCreatedBy?: string | undefined;
|
|
7060
7060
|
}
|
|
7061
7061
|
/**
|
|
7062
7062
|
* <p>The data product revision.</p>
|
|
@@ -7067,27 +7067,27 @@ export interface DataProductRevision {
|
|
|
7067
7067
|
* <p>The ID of the domain where the data product revision lives.</p>
|
|
7068
7068
|
* @public
|
|
7069
7069
|
*/
|
|
7070
|
-
domainId?: string;
|
|
7070
|
+
domainId?: string | undefined;
|
|
7071
7071
|
/**
|
|
7072
7072
|
* <p>The ID of the data product revision.</p>
|
|
7073
7073
|
* @public
|
|
7074
7074
|
*/
|
|
7075
|
-
id?: string;
|
|
7075
|
+
id?: string | undefined;
|
|
7076
7076
|
/**
|
|
7077
7077
|
* <p>The data product revision.</p>
|
|
7078
7078
|
* @public
|
|
7079
7079
|
*/
|
|
7080
|
-
revision?: string;
|
|
7080
|
+
revision?: string | undefined;
|
|
7081
7081
|
/**
|
|
7082
7082
|
* <p>The timestamp at which the data product revision was created.</p>
|
|
7083
7083
|
* @public
|
|
7084
7084
|
*/
|
|
7085
|
-
createdAt?: Date;
|
|
7085
|
+
createdAt?: Date | undefined;
|
|
7086
7086
|
/**
|
|
7087
7087
|
* <p>The user who created the data product revision.</p>
|
|
7088
7088
|
* @public
|
|
7089
7089
|
*/
|
|
7090
|
-
createdBy?: string;
|
|
7090
|
+
createdBy?: string | undefined;
|
|
7091
7091
|
}
|
|
7092
7092
|
/**
|
|
7093
7093
|
* @public
|
|
@@ -7108,13 +7108,13 @@ export interface DeleteDataSourceInput {
|
|
|
7108
7108
|
* request.</p>
|
|
7109
7109
|
* @public
|
|
7110
7110
|
*/
|
|
7111
|
-
clientToken?: string;
|
|
7111
|
+
clientToken?: string | undefined;
|
|
7112
7112
|
/**
|
|
7113
7113
|
* <p>Specifies that the granted permissions are retained in case of a self-subscribe
|
|
7114
7114
|
* functionality failure for a data source.</p>
|
|
7115
7115
|
* @public
|
|
7116
7116
|
*/
|
|
7117
|
-
retainPermissionsOnRevokeFailure?: boolean;
|
|
7117
|
+
retainPermissionsOnRevokeFailure?: boolean | undefined;
|
|
7118
7118
|
}
|
|
7119
7119
|
/**
|
|
7120
7120
|
* @public
|
|
@@ -7147,7 +7147,7 @@ export interface SelfGrantStatusDetail {
|
|
|
7147
7147
|
* <p>The name of the schema used in the data source.</p>
|
|
7148
7148
|
* @public
|
|
7149
7149
|
*/
|
|
7150
|
-
schemaName?: string;
|
|
7150
|
+
schemaName?: string | undefined;
|
|
7151
7151
|
/**
|
|
7152
7152
|
* <p>The self granting status of the data source.</p>
|
|
7153
7153
|
* @public
|
|
@@ -7157,7 +7157,7 @@ export interface SelfGrantStatusDetail {
|
|
|
7157
7157
|
* <p>The reason for why the operation failed.</p>
|
|
7158
7158
|
* @public
|
|
7159
7159
|
*/
|
|
7160
|
-
failureCause?: string;
|
|
7160
|
+
failureCause?: string | undefined;
|
|
7161
7161
|
}
|
|
7162
7162
|
/**
|
|
7163
7163
|
* <p>The details of the self granting status.</p>
|
|
@@ -7236,12 +7236,12 @@ export interface DeleteDataSourceOutput {
|
|
|
7236
7236
|
* <p>The status of this data source.</p>
|
|
7237
7237
|
* @public
|
|
7238
7238
|
*/
|
|
7239
|
-
status?: DataSourceStatus;
|
|
7239
|
+
status?: DataSourceStatus | undefined;
|
|
7240
7240
|
/**
|
|
7241
7241
|
* <p>The type of this data source.</p>
|
|
7242
7242
|
* @public
|
|
7243
7243
|
*/
|
|
7244
|
-
type?: string;
|
|
7244
|
+
type?: string | undefined;
|
|
7245
7245
|
/**
|
|
7246
7246
|
* <p>The name of the data source that is deleted.</p>
|
|
7247
7247
|
* @public
|
|
@@ -7251,7 +7251,7 @@ export interface DeleteDataSourceOutput {
|
|
|
7251
7251
|
* <p>The description of the data source that is deleted.</p>
|
|
7252
7252
|
* @public
|
|
7253
7253
|
*/
|
|
7254
|
-
description?: string;
|
|
7254
|
+
description?: string | undefined;
|
|
7255
7255
|
/**
|
|
7256
7256
|
* <p>The ID of the Amazon DataZone domain in which the data source is deleted.</p>
|
|
7257
7257
|
* @public
|
|
@@ -7272,72 +7272,72 @@ export interface DeleteDataSourceOutput {
|
|
|
7272
7272
|
* <p>The configuration of the data source that is deleted.</p>
|
|
7273
7273
|
* @public
|
|
7274
7274
|
*/
|
|
7275
|
-
configuration?: DataSourceConfigurationOutput;
|
|
7275
|
+
configuration?: DataSourceConfigurationOutput | undefined;
|
|
7276
7276
|
/**
|
|
7277
7277
|
* <p>The enable setting of the data source that specifies whether the data source is enabled
|
|
7278
7278
|
* or disabled.</p>
|
|
7279
7279
|
* @public
|
|
7280
7280
|
*/
|
|
7281
|
-
enableSetting?: EnableSetting;
|
|
7281
|
+
enableSetting?: EnableSetting | undefined;
|
|
7282
7282
|
/**
|
|
7283
7283
|
* <p>Specifies whether the assets that this data source creates in the inventory are to be
|
|
7284
7284
|
* also automatically published to the catalog.</p>
|
|
7285
7285
|
* @public
|
|
7286
7286
|
*/
|
|
7287
|
-
publishOnImport?: boolean;
|
|
7287
|
+
publishOnImport?: boolean | undefined;
|
|
7288
7288
|
/**
|
|
7289
7289
|
* <p>The asset data forms associated with this data source.</p>
|
|
7290
7290
|
* @public
|
|
7291
7291
|
*/
|
|
7292
|
-
assetFormsOutput?: FormOutput[];
|
|
7292
|
+
assetFormsOutput?: FormOutput[] | undefined;
|
|
7293
7293
|
/**
|
|
7294
7294
|
* <p>The schedule of runs for this data source.</p>
|
|
7295
7295
|
* @public
|
|
7296
7296
|
*/
|
|
7297
|
-
schedule?: ScheduleConfiguration;
|
|
7297
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
7298
7298
|
/**
|
|
7299
7299
|
* <p>The status of the last run of this data source.</p>
|
|
7300
7300
|
* @public
|
|
7301
7301
|
*/
|
|
7302
|
-
lastRunStatus?: DataSourceRunStatus;
|
|
7302
|
+
lastRunStatus?: DataSourceRunStatus | undefined;
|
|
7303
7303
|
/**
|
|
7304
7304
|
* <p>The timestamp of when the data source was last run.</p>
|
|
7305
7305
|
* @public
|
|
7306
7306
|
*/
|
|
7307
|
-
lastRunAt?: Date;
|
|
7307
|
+
lastRunAt?: Date | undefined;
|
|
7308
7308
|
/**
|
|
7309
7309
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
7310
7310
|
* completed.</p>
|
|
7311
7311
|
* @public
|
|
7312
7312
|
*/
|
|
7313
|
-
lastRunErrorMessage?: DataSourceErrorMessage;
|
|
7313
|
+
lastRunErrorMessage?: DataSourceErrorMessage | undefined;
|
|
7314
7314
|
/**
|
|
7315
7315
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
7316
7316
|
* completed.</p>
|
|
7317
7317
|
* @public
|
|
7318
7318
|
*/
|
|
7319
|
-
errorMessage?: DataSourceErrorMessage;
|
|
7319
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
7320
7320
|
/**
|
|
7321
7321
|
* <p>The timestamp of when this data source was created.</p>
|
|
7322
7322
|
* @public
|
|
7323
7323
|
*/
|
|
7324
|
-
createdAt?: Date;
|
|
7324
|
+
createdAt?: Date | undefined;
|
|
7325
7325
|
/**
|
|
7326
7326
|
* <p>The timestamp of when this data source was updated.</p>
|
|
7327
7327
|
* @public
|
|
7328
7328
|
*/
|
|
7329
|
-
updatedAt?: Date;
|
|
7329
|
+
updatedAt?: Date | undefined;
|
|
7330
7330
|
/**
|
|
7331
7331
|
* <p>Specifies the status of the self-granting functionality.</p>
|
|
7332
7332
|
* @public
|
|
7333
7333
|
*/
|
|
7334
|
-
selfGrantStatus?: SelfGrantStatusOutput;
|
|
7334
|
+
selfGrantStatus?: SelfGrantStatusOutput | undefined;
|
|
7335
7335
|
/**
|
|
7336
7336
|
* <p>Specifies that the granted permissions are retained in case of a self-subscribe
|
|
7337
7337
|
* functionality failure for a data source.</p>
|
|
7338
7338
|
* @public
|
|
7339
7339
|
*/
|
|
7340
|
-
retainPermissionsOnRevokeFailure?: boolean;
|
|
7340
|
+
retainPermissionsOnRevokeFailure?: boolean | undefined;
|
|
7341
7341
|
}
|
|
7342
7342
|
/**
|
|
7343
7343
|
* @public
|
|
@@ -7367,12 +7367,12 @@ export interface GetDataSourceOutput {
|
|
|
7367
7367
|
* <p>The status of the data source.</p>
|
|
7368
7368
|
* @public
|
|
7369
7369
|
*/
|
|
7370
|
-
status?: DataSourceStatus;
|
|
7370
|
+
status?: DataSourceStatus | undefined;
|
|
7371
7371
|
/**
|
|
7372
7372
|
* <p>The type of the data source.</p>
|
|
7373
7373
|
* @public
|
|
7374
7374
|
*/
|
|
7375
|
-
type?: string;
|
|
7375
|
+
type?: string | undefined;
|
|
7376
7376
|
/**
|
|
7377
7377
|
* <p>The name of the data source.</p>
|
|
7378
7378
|
* @public
|
|
@@ -7382,7 +7382,7 @@ export interface GetDataSourceOutput {
|
|
|
7382
7382
|
* <p>The description of the data source.</p>
|
|
7383
7383
|
* @public
|
|
7384
7384
|
*/
|
|
7385
|
-
description?: string;
|
|
7385
|
+
description?: string | undefined;
|
|
7386
7386
|
/**
|
|
7387
7387
|
* <p>The ID of the Amazon DataZone domain in which the data source exists.</p>
|
|
7388
7388
|
* @public
|
|
@@ -7402,75 +7402,75 @@ export interface GetDataSourceOutput {
|
|
|
7402
7402
|
* <p>The configuration of the data source.</p>
|
|
7403
7403
|
* @public
|
|
7404
7404
|
*/
|
|
7405
|
-
configuration?: DataSourceConfigurationOutput;
|
|
7405
|
+
configuration?: DataSourceConfigurationOutput | undefined;
|
|
7406
7406
|
/**
|
|
7407
7407
|
* <p>The recommendation configuration of the data source.</p>
|
|
7408
7408
|
* @public
|
|
7409
7409
|
*/
|
|
7410
|
-
recommendation?: RecommendationConfiguration;
|
|
7410
|
+
recommendation?: RecommendationConfiguration | undefined;
|
|
7411
7411
|
/**
|
|
7412
7412
|
* <p>Specifies whether this data source is enabled or not.</p>
|
|
7413
7413
|
* @public
|
|
7414
7414
|
*/
|
|
7415
|
-
enableSetting?: EnableSetting;
|
|
7415
|
+
enableSetting?: EnableSetting | undefined;
|
|
7416
7416
|
/**
|
|
7417
7417
|
* <p>Specifies whether the assets that this data source creates in the inventory are to be
|
|
7418
7418
|
* also automatically published to the catalog.</p>
|
|
7419
7419
|
* @public
|
|
7420
7420
|
*/
|
|
7421
|
-
publishOnImport?: boolean;
|
|
7421
|
+
publishOnImport?: boolean | undefined;
|
|
7422
7422
|
/**
|
|
7423
7423
|
* <p>The metadata forms attached to the assets created by this data source.</p>
|
|
7424
7424
|
* @public
|
|
7425
7425
|
*/
|
|
7426
|
-
assetFormsOutput?: FormOutput[];
|
|
7426
|
+
assetFormsOutput?: FormOutput[] | undefined;
|
|
7427
7427
|
/**
|
|
7428
7428
|
* <p>The schedule of the data source runs.</p>
|
|
7429
7429
|
* @public
|
|
7430
7430
|
*/
|
|
7431
|
-
schedule?: ScheduleConfiguration;
|
|
7431
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
7432
7432
|
/**
|
|
7433
7433
|
* <p>The status of the last run of the data source.</p>
|
|
7434
7434
|
* @public
|
|
7435
7435
|
*/
|
|
7436
|
-
lastRunStatus?: DataSourceRunStatus;
|
|
7436
|
+
lastRunStatus?: DataSourceRunStatus | undefined;
|
|
7437
7437
|
/**
|
|
7438
7438
|
* <p>The timestamp of the last run of the data source.</p>
|
|
7439
7439
|
* @public
|
|
7440
7440
|
*/
|
|
7441
|
-
lastRunAt?: Date;
|
|
7441
|
+
lastRunAt?: Date | undefined;
|
|
7442
7442
|
/**
|
|
7443
7443
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
7444
7444
|
* completed.</p>
|
|
7445
7445
|
* @public
|
|
7446
7446
|
*/
|
|
7447
|
-
lastRunErrorMessage?: DataSourceErrorMessage;
|
|
7447
|
+
lastRunErrorMessage?: DataSourceErrorMessage | undefined;
|
|
7448
7448
|
/**
|
|
7449
7449
|
* <p>The number of assets created by the data source during its last run.</p>
|
|
7450
7450
|
* @public
|
|
7451
7451
|
*/
|
|
7452
|
-
lastRunAssetCount?: number;
|
|
7452
|
+
lastRunAssetCount?: number | undefined;
|
|
7453
7453
|
/**
|
|
7454
7454
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
7455
7455
|
* completed.</p>
|
|
7456
7456
|
* @public
|
|
7457
7457
|
*/
|
|
7458
|
-
errorMessage?: DataSourceErrorMessage;
|
|
7458
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
7459
7459
|
/**
|
|
7460
7460
|
* <p>The timestamp of when the data source was created.</p>
|
|
7461
7461
|
* @public
|
|
7462
7462
|
*/
|
|
7463
|
-
createdAt?: Date;
|
|
7463
|
+
createdAt?: Date | undefined;
|
|
7464
7464
|
/**
|
|
7465
7465
|
* <p>The timestamp of when the data source was updated.</p>
|
|
7466
7466
|
* @public
|
|
7467
7467
|
*/
|
|
7468
|
-
updatedAt?: Date;
|
|
7468
|
+
updatedAt?: Date | undefined;
|
|
7469
7469
|
/**
|
|
7470
7470
|
* <p>Specifies the status of the self-granting functionality.</p>
|
|
7471
7471
|
* @public
|
|
7472
7472
|
*/
|
|
7473
|
-
selfGrantStatus?: SelfGrantStatusOutput;
|
|
7473
|
+
selfGrantStatus?: SelfGrantStatusOutput | undefined;
|
|
7474
7474
|
}
|
|
7475
7475
|
/**
|
|
7476
7476
|
* @public
|
|
@@ -7490,22 +7490,22 @@ export interface ListDataSourcesInput {
|
|
|
7490
7490
|
* <p>The identifier of the environment in which to list the data sources.</p>
|
|
7491
7491
|
* @public
|
|
7492
7492
|
*/
|
|
7493
|
-
environmentIdentifier?: string;
|
|
7493
|
+
environmentIdentifier?: string | undefined;
|
|
7494
7494
|
/**
|
|
7495
7495
|
* <p>The type of the data source.</p>
|
|
7496
7496
|
* @public
|
|
7497
7497
|
*/
|
|
7498
|
-
type?: string;
|
|
7498
|
+
type?: string | undefined;
|
|
7499
7499
|
/**
|
|
7500
7500
|
* <p>The status of the data source.</p>
|
|
7501
7501
|
* @public
|
|
7502
7502
|
*/
|
|
7503
|
-
status?: DataSourceStatus;
|
|
7503
|
+
status?: DataSourceStatus | undefined;
|
|
7504
7504
|
/**
|
|
7505
7505
|
* <p>The name of the data source.</p>
|
|
7506
7506
|
* @public
|
|
7507
7507
|
*/
|
|
7508
|
-
name?: string;
|
|
7508
|
+
name?: string | undefined;
|
|
7509
7509
|
/**
|
|
7510
7510
|
* <p>When the number of data sources is greater than the default value for the
|
|
7511
7511
|
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
@@ -7515,7 +7515,7 @@ export interface ListDataSourcesInput {
|
|
|
7515
7515
|
* list the next set of data sources.</p>
|
|
7516
7516
|
* @public
|
|
7517
7517
|
*/
|
|
7518
|
-
nextToken?: string;
|
|
7518
|
+
nextToken?: string | undefined;
|
|
7519
7519
|
/**
|
|
7520
7520
|
* <p>The maximum number of data sources to return in a single call to
|
|
7521
7521
|
* <code>ListDataSources</code>. When the number of data sources to be listed is greater
|
|
@@ -7524,7 +7524,7 @@ export interface ListDataSourcesInput {
|
|
|
7524
7524
|
* next set of data sources.</p>
|
|
7525
7525
|
* @public
|
|
7526
7526
|
*/
|
|
7527
|
-
maxResults?: number;
|
|
7527
|
+
maxResults?: number | undefined;
|
|
7528
7528
|
}
|
|
7529
7529
|
/**
|
|
7530
7530
|
* <p>The details of the data source.</p>
|
|
@@ -7565,43 +7565,43 @@ export interface DataSourceSummary {
|
|
|
7565
7565
|
* <p>Specifies whether the data source is enabled.</p>
|
|
7566
7566
|
* @public
|
|
7567
7567
|
*/
|
|
7568
|
-
enableSetting?: EnableSetting;
|
|
7568
|
+
enableSetting?: EnableSetting | undefined;
|
|
7569
7569
|
/**
|
|
7570
7570
|
* <p>The details of the schedule of the data source runs.</p>
|
|
7571
7571
|
* @public
|
|
7572
7572
|
*/
|
|
7573
|
-
schedule?: ScheduleConfiguration;
|
|
7573
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
7574
7574
|
/**
|
|
7575
7575
|
* <p>The status of the last data source run.</p>
|
|
7576
7576
|
* @public
|
|
7577
7577
|
*/
|
|
7578
|
-
lastRunStatus?: DataSourceRunStatus;
|
|
7578
|
+
lastRunStatus?: DataSourceRunStatus | undefined;
|
|
7579
7579
|
/**
|
|
7580
7580
|
* <p>The timestamp of when the data source run was last performed.</p>
|
|
7581
7581
|
* @public
|
|
7582
7582
|
*/
|
|
7583
|
-
lastRunAt?: Date;
|
|
7583
|
+
lastRunAt?: Date | undefined;
|
|
7584
7584
|
/**
|
|
7585
7585
|
* <p>The details of the error message that is returned if the operation cannot be
|
|
7586
7586
|
* successfully completed.</p>
|
|
7587
7587
|
* @public
|
|
7588
7588
|
*/
|
|
7589
|
-
lastRunErrorMessage?: DataSourceErrorMessage;
|
|
7589
|
+
lastRunErrorMessage?: DataSourceErrorMessage | undefined;
|
|
7590
7590
|
/**
|
|
7591
7591
|
* <p>The count of the assets created during the last data source run.</p>
|
|
7592
7592
|
* @public
|
|
7593
7593
|
*/
|
|
7594
|
-
lastRunAssetCount?: number;
|
|
7594
|
+
lastRunAssetCount?: number | undefined;
|
|
7595
7595
|
/**
|
|
7596
7596
|
* <p>The timestamp of when the data source was created.</p>
|
|
7597
7597
|
* @public
|
|
7598
7598
|
*/
|
|
7599
|
-
createdAt?: Date;
|
|
7599
|
+
createdAt?: Date | undefined;
|
|
7600
7600
|
/**
|
|
7601
7601
|
* <p>The timestamp of when the data source was updated.</p>
|
|
7602
7602
|
* @public
|
|
7603
7603
|
*/
|
|
7604
|
-
updatedAt?: Date;
|
|
7604
|
+
updatedAt?: Date | undefined;
|
|
7605
7605
|
}
|
|
7606
7606
|
/**
|
|
7607
7607
|
* @public
|
|
@@ -7621,7 +7621,7 @@ export interface ListDataSourcesOutput {
|
|
|
7621
7621
|
* list the next set of data sources.</p>
|
|
7622
7622
|
* @public
|
|
7623
7623
|
*/
|
|
7624
|
-
nextToken?: string;
|
|
7624
|
+
nextToken?: string | undefined;
|
|
7625
7625
|
}
|
|
7626
7626
|
/**
|
|
7627
7627
|
* @public
|
|
@@ -7641,54 +7641,54 @@ export interface UpdateDataSourceInput {
|
|
|
7641
7641
|
* <p>The name to be updated as part of the <code>UpdateDataSource</code> action.</p>
|
|
7642
7642
|
* @public
|
|
7643
7643
|
*/
|
|
7644
|
-
name?: string;
|
|
7644
|
+
name?: string | undefined;
|
|
7645
7645
|
/**
|
|
7646
7646
|
* <p>The description to be updated as part of the <code>UpdateDataSource</code>
|
|
7647
7647
|
* action.</p>
|
|
7648
7648
|
* @public
|
|
7649
7649
|
*/
|
|
7650
|
-
description?: string;
|
|
7650
|
+
description?: string | undefined;
|
|
7651
7651
|
/**
|
|
7652
7652
|
* <p>The enable setting to be updated as part of the <code>UpdateDataSource</code>
|
|
7653
7653
|
* action.</p>
|
|
7654
7654
|
* @public
|
|
7655
7655
|
*/
|
|
7656
|
-
enableSetting?: EnableSetting;
|
|
7656
|
+
enableSetting?: EnableSetting | undefined;
|
|
7657
7657
|
/**
|
|
7658
7658
|
* <p>The publish on import setting to be updated as part of the <code>UpdateDataSource</code>
|
|
7659
7659
|
* action.</p>
|
|
7660
7660
|
* @public
|
|
7661
7661
|
*/
|
|
7662
|
-
publishOnImport?: boolean;
|
|
7662
|
+
publishOnImport?: boolean | undefined;
|
|
7663
7663
|
/**
|
|
7664
7664
|
* <p>The asset forms to be updated as part of the <code>UpdateDataSource</code>
|
|
7665
7665
|
* action.</p>
|
|
7666
7666
|
* @public
|
|
7667
7667
|
*/
|
|
7668
|
-
assetFormsInput?: FormInput[];
|
|
7668
|
+
assetFormsInput?: FormInput[] | undefined;
|
|
7669
7669
|
/**
|
|
7670
7670
|
* <p>The schedule to be updated as part of the <code>UpdateDataSource</code> action.</p>
|
|
7671
7671
|
* @public
|
|
7672
7672
|
*/
|
|
7673
|
-
schedule?: ScheduleConfiguration;
|
|
7673
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
7674
7674
|
/**
|
|
7675
7675
|
* <p>The configuration to be updated as part of the <code>UpdateDataSource</code>
|
|
7676
7676
|
* action.</p>
|
|
7677
7677
|
* @public
|
|
7678
7678
|
*/
|
|
7679
|
-
configuration?: DataSourceConfigurationInput;
|
|
7679
|
+
configuration?: DataSourceConfigurationInput | undefined;
|
|
7680
7680
|
/**
|
|
7681
7681
|
* <p>The recommendation to be updated as part of the <code>UpdateDataSource</code>
|
|
7682
7682
|
* action.</p>
|
|
7683
7683
|
* @public
|
|
7684
7684
|
*/
|
|
7685
|
-
recommendation?: RecommendationConfiguration;
|
|
7685
|
+
recommendation?: RecommendationConfiguration | undefined;
|
|
7686
7686
|
/**
|
|
7687
7687
|
* <p>Specifies that the granted permissions are retained in case of a self-subscribe
|
|
7688
7688
|
* functionality failure for a data source.</p>
|
|
7689
7689
|
* @public
|
|
7690
7690
|
*/
|
|
7691
|
-
retainPermissionsOnRevokeFailure?: boolean;
|
|
7691
|
+
retainPermissionsOnRevokeFailure?: boolean | undefined;
|
|
7692
7692
|
}
|
|
7693
7693
|
/**
|
|
7694
7694
|
* @public
|
|
@@ -7703,12 +7703,12 @@ export interface UpdateDataSourceOutput {
|
|
|
7703
7703
|
* <p>The status to be updated as part of the <code>UpdateDataSource</code> action.</p>
|
|
7704
7704
|
* @public
|
|
7705
7705
|
*/
|
|
7706
|
-
status?: DataSourceStatus;
|
|
7706
|
+
status?: DataSourceStatus | undefined;
|
|
7707
7707
|
/**
|
|
7708
7708
|
* <p>The type to be updated as part of the <code>UpdateDataSource</code> action.</p>
|
|
7709
7709
|
* @public
|
|
7710
7710
|
*/
|
|
7711
|
-
type?: string;
|
|
7711
|
+
type?: string | undefined;
|
|
7712
7712
|
/**
|
|
7713
7713
|
* <p>The name to be updated as part of the <code>UpdateDataSource</code> action.</p>
|
|
7714
7714
|
* @public
|
|
@@ -7719,7 +7719,7 @@ export interface UpdateDataSourceOutput {
|
|
|
7719
7719
|
* action.</p>
|
|
7720
7720
|
* @public
|
|
7721
7721
|
*/
|
|
7722
|
-
description?: string;
|
|
7722
|
+
description?: string | undefined;
|
|
7723
7723
|
/**
|
|
7724
7724
|
* <p>The identifier of the Amazon DataZone domain in which a data source is to be updated.</p>
|
|
7725
7725
|
* @public
|
|
@@ -7740,78 +7740,78 @@ export interface UpdateDataSourceOutput {
|
|
|
7740
7740
|
* action.</p>
|
|
7741
7741
|
* @public
|
|
7742
7742
|
*/
|
|
7743
|
-
configuration?: DataSourceConfigurationOutput;
|
|
7743
|
+
configuration?: DataSourceConfigurationOutput | undefined;
|
|
7744
7744
|
/**
|
|
7745
7745
|
* <p>The recommendation to be updated as part of the <code>UpdateDataSource</code>
|
|
7746
7746
|
* action.</p>
|
|
7747
7747
|
* @public
|
|
7748
7748
|
*/
|
|
7749
|
-
recommendation?: RecommendationConfiguration;
|
|
7749
|
+
recommendation?: RecommendationConfiguration | undefined;
|
|
7750
7750
|
/**
|
|
7751
7751
|
* <p>The enable setting to be updated as part of the <code>UpdateDataSource</code>
|
|
7752
7752
|
* action.</p>
|
|
7753
7753
|
* @public
|
|
7754
7754
|
*/
|
|
7755
|
-
enableSetting?: EnableSetting;
|
|
7755
|
+
enableSetting?: EnableSetting | undefined;
|
|
7756
7756
|
/**
|
|
7757
7757
|
* <p>The publish on import setting to be updated as part of the <code>UpdateDataSource</code>
|
|
7758
7758
|
* action.</p>
|
|
7759
7759
|
* @public
|
|
7760
7760
|
*/
|
|
7761
|
-
publishOnImport?: boolean;
|
|
7761
|
+
publishOnImport?: boolean | undefined;
|
|
7762
7762
|
/**
|
|
7763
7763
|
* <p>The asset forms to be updated as part of the <code>UpdateDataSource</code>
|
|
7764
7764
|
* action.</p>
|
|
7765
7765
|
* @public
|
|
7766
7766
|
*/
|
|
7767
|
-
assetFormsOutput?: FormOutput[];
|
|
7767
|
+
assetFormsOutput?: FormOutput[] | undefined;
|
|
7768
7768
|
/**
|
|
7769
7769
|
* <p>The schedule to be updated as part of the <code>UpdateDataSource</code> action.</p>
|
|
7770
7770
|
* @public
|
|
7771
7771
|
*/
|
|
7772
|
-
schedule?: ScheduleConfiguration;
|
|
7772
|
+
schedule?: ScheduleConfiguration | undefined;
|
|
7773
7773
|
/**
|
|
7774
7774
|
* <p>The last run status of the data source.</p>
|
|
7775
7775
|
* @public
|
|
7776
7776
|
*/
|
|
7777
|
-
lastRunStatus?: DataSourceRunStatus;
|
|
7777
|
+
lastRunStatus?: DataSourceRunStatus | undefined;
|
|
7778
7778
|
/**
|
|
7779
7779
|
* <p>The timestamp of when the data source was last run.</p>
|
|
7780
7780
|
* @public
|
|
7781
7781
|
*/
|
|
7782
|
-
lastRunAt?: Date;
|
|
7782
|
+
lastRunAt?: Date | undefined;
|
|
7783
7783
|
/**
|
|
7784
7784
|
* <p>The last run error message of the data source.</p>
|
|
7785
7785
|
* @public
|
|
7786
7786
|
*/
|
|
7787
|
-
lastRunErrorMessage?: DataSourceErrorMessage;
|
|
7787
|
+
lastRunErrorMessage?: DataSourceErrorMessage | undefined;
|
|
7788
7788
|
/**
|
|
7789
7789
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
7790
7790
|
* completed.</p>
|
|
7791
7791
|
* @public
|
|
7792
7792
|
*/
|
|
7793
|
-
errorMessage?: DataSourceErrorMessage;
|
|
7793
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
7794
7794
|
/**
|
|
7795
7795
|
* <p>The timestamp of when the data source was updated.</p>
|
|
7796
7796
|
* @public
|
|
7797
7797
|
*/
|
|
7798
|
-
createdAt?: Date;
|
|
7798
|
+
createdAt?: Date | undefined;
|
|
7799
7799
|
/**
|
|
7800
7800
|
* <p>The timestamp of when the data source was updated.</p>
|
|
7801
7801
|
* @public
|
|
7802
7802
|
*/
|
|
7803
|
-
updatedAt?: Date;
|
|
7803
|
+
updatedAt?: Date | undefined;
|
|
7804
7804
|
/**
|
|
7805
7805
|
* <p>Specifies the status of the self-granting functionality.</p>
|
|
7806
7806
|
* @public
|
|
7807
7807
|
*/
|
|
7808
|
-
selfGrantStatus?: SelfGrantStatusOutput;
|
|
7808
|
+
selfGrantStatus?: SelfGrantStatusOutput | undefined;
|
|
7809
7809
|
/**
|
|
7810
7810
|
* <p>Specifies that the granted permissions are retained in case of a self-subscribe
|
|
7811
7811
|
* functionality failure for a data source.</p>
|
|
7812
7812
|
* @public
|
|
7813
7813
|
*/
|
|
7814
|
-
retainPermissionsOnRevokeFailure?: boolean;
|
|
7814
|
+
retainPermissionsOnRevokeFailure?: boolean | undefined;
|
|
7815
7815
|
}
|
|
7816
7816
|
/**
|
|
7817
7817
|
* @public
|
|
@@ -7849,27 +7849,27 @@ export interface RunStatisticsForAssets {
|
|
|
7849
7849
|
* <p>The <code>added</code> statistic for the data source run.</p>
|
|
7850
7850
|
* @public
|
|
7851
7851
|
*/
|
|
7852
|
-
added?: number;
|
|
7852
|
+
added?: number | undefined;
|
|
7853
7853
|
/**
|
|
7854
7854
|
* <p>The <code>updated</code> statistic for the data source run.</p>
|
|
7855
7855
|
* @public
|
|
7856
7856
|
*/
|
|
7857
|
-
updated?: number;
|
|
7857
|
+
updated?: number | undefined;
|
|
7858
7858
|
/**
|
|
7859
7859
|
* <p>The <code>unchanged</code> statistic for the data source run.</p>
|
|
7860
7860
|
* @public
|
|
7861
7861
|
*/
|
|
7862
|
-
unchanged?: number;
|
|
7862
|
+
unchanged?: number | undefined;
|
|
7863
7863
|
/**
|
|
7864
7864
|
* <p>The <code>skipped</code> statistic for the data source run.</p>
|
|
7865
7865
|
* @public
|
|
7866
7866
|
*/
|
|
7867
|
-
skipped?: number;
|
|
7867
|
+
skipped?: number | undefined;
|
|
7868
7868
|
/**
|
|
7869
7869
|
* <p>The <code>failed</code> statistic for the data source run.</p>
|
|
7870
7870
|
* @public
|
|
7871
7871
|
*/
|
|
7872
|
-
failed?: number;
|
|
7872
|
+
failed?: number | undefined;
|
|
7873
7873
|
}
|
|
7874
7874
|
/**
|
|
7875
7875
|
* @public
|
|
@@ -7909,18 +7909,18 @@ export interface GetDataSourceRunOutput {
|
|
|
7909
7909
|
* <p>The configuration snapshot of the data source run.</p>
|
|
7910
7910
|
* @public
|
|
7911
7911
|
*/
|
|
7912
|
-
dataSourceConfigurationSnapshot?: string;
|
|
7912
|
+
dataSourceConfigurationSnapshot?: string | undefined;
|
|
7913
7913
|
/**
|
|
7914
7914
|
* <p>The asset statistics from this data source run.</p>
|
|
7915
7915
|
* @public
|
|
7916
7916
|
*/
|
|
7917
|
-
runStatisticsForAssets?: RunStatisticsForAssets;
|
|
7917
|
+
runStatisticsForAssets?: RunStatisticsForAssets | undefined;
|
|
7918
7918
|
/**
|
|
7919
7919
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
7920
7920
|
* completed.</p>
|
|
7921
7921
|
* @public
|
|
7922
7922
|
*/
|
|
7923
|
-
errorMessage?: DataSourceErrorMessage;
|
|
7923
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
7924
7924
|
/**
|
|
7925
7925
|
* <p>The timestamp of when the data source run was created.</p>
|
|
7926
7926
|
* @public
|
|
@@ -7935,12 +7935,12 @@ export interface GetDataSourceRunOutput {
|
|
|
7935
7935
|
* <p>The timestamp of when this data source run started.</p>
|
|
7936
7936
|
* @public
|
|
7937
7937
|
*/
|
|
7938
|
-
startedAt?: Date;
|
|
7938
|
+
startedAt?: Date | undefined;
|
|
7939
7939
|
/**
|
|
7940
7940
|
* <p>The timestamp of when this data source run stopped.</p>
|
|
7941
7941
|
* @public
|
|
7942
7942
|
*/
|
|
7943
|
-
stoppedAt?: Date;
|
|
7943
|
+
stoppedAt?: Date | undefined;
|
|
7944
7944
|
}
|
|
7945
7945
|
/**
|
|
7946
7946
|
* @public
|
|
@@ -7961,7 +7961,7 @@ export interface ListDataSourceRunsInput {
|
|
|
7961
7961
|
* <p>The status of the data source.</p>
|
|
7962
7962
|
* @public
|
|
7963
7963
|
*/
|
|
7964
|
-
status?: DataSourceRunStatus;
|
|
7964
|
+
status?: DataSourceRunStatus | undefined;
|
|
7965
7965
|
/**
|
|
7966
7966
|
* <p>When the number of runs is greater than the default value for the
|
|
7967
7967
|
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
@@ -7971,7 +7971,7 @@ export interface ListDataSourceRunsInput {
|
|
|
7971
7971
|
* runs.</p>
|
|
7972
7972
|
* @public
|
|
7973
7973
|
*/
|
|
7974
|
-
nextToken?: string;
|
|
7974
|
+
nextToken?: string | undefined;
|
|
7975
7975
|
/**
|
|
7976
7976
|
* <p>The maximum number of runs to return in a single call to
|
|
7977
7977
|
* <code>ListDataSourceRuns</code>. When the number of runs to be listed is greater than the
|
|
@@ -7980,7 +7980,7 @@ export interface ListDataSourceRunsInput {
|
|
|
7980
7980
|
* runs.</p>
|
|
7981
7981
|
* @public
|
|
7982
7982
|
*/
|
|
7983
|
-
maxResults?: number;
|
|
7983
|
+
maxResults?: number | undefined;
|
|
7984
7984
|
}
|
|
7985
7985
|
/**
|
|
7986
7986
|
* <p>The details of a data source run.</p>
|
|
@@ -8016,13 +8016,13 @@ export interface DataSourceRunSummary {
|
|
|
8016
8016
|
* <p>The asset statistics from the data source run.</p>
|
|
8017
8017
|
* @public
|
|
8018
8018
|
*/
|
|
8019
|
-
runStatisticsForAssets?: RunStatisticsForAssets;
|
|
8019
|
+
runStatisticsForAssets?: RunStatisticsForAssets | undefined;
|
|
8020
8020
|
/**
|
|
8021
8021
|
* <p>The details of the error message that is returned if the operation cannot be
|
|
8022
8022
|
* successfully completed.</p>
|
|
8023
8023
|
* @public
|
|
8024
8024
|
*/
|
|
8025
|
-
errorMessage?: DataSourceErrorMessage;
|
|
8025
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
8026
8026
|
/**
|
|
8027
8027
|
* <p>The timestamp of when a data source run was created.</p>
|
|
8028
8028
|
* @public
|
|
@@ -8037,12 +8037,12 @@ export interface DataSourceRunSummary {
|
|
|
8037
8037
|
* <p>The timestamp of when a data source run was started.</p>
|
|
8038
8038
|
* @public
|
|
8039
8039
|
*/
|
|
8040
|
-
startedAt?: Date;
|
|
8040
|
+
startedAt?: Date | undefined;
|
|
8041
8041
|
/**
|
|
8042
8042
|
* <p>The timestamp of when a data source run was stopped.</p>
|
|
8043
8043
|
* @public
|
|
8044
8044
|
*/
|
|
8045
|
-
stoppedAt?: Date;
|
|
8045
|
+
stoppedAt?: Date | undefined;
|
|
8046
8046
|
}
|
|
8047
8047
|
/**
|
|
8048
8048
|
* @public
|
|
@@ -8062,7 +8062,7 @@ export interface ListDataSourceRunsOutput {
|
|
|
8062
8062
|
* runs.</p>
|
|
8063
8063
|
* @public
|
|
8064
8064
|
*/
|
|
8065
|
-
nextToken?: string;
|
|
8065
|
+
nextToken?: string | undefined;
|
|
8066
8066
|
}
|
|
8067
8067
|
/**
|
|
8068
8068
|
* @public
|
|
@@ -8083,7 +8083,7 @@ export interface StartDataSourceRunInput {
|
|
|
8083
8083
|
* request.</p>
|
|
8084
8084
|
* @public
|
|
8085
8085
|
*/
|
|
8086
|
-
clientToken?: string;
|
|
8086
|
+
clientToken?: string | undefined;
|
|
8087
8087
|
}
|
|
8088
8088
|
/**
|
|
8089
8089
|
* @public
|
|
@@ -8123,18 +8123,18 @@ export interface StartDataSourceRunOutput {
|
|
|
8123
8123
|
* <p>The configuration snapshot of the data source that is being run.</p>
|
|
8124
8124
|
* @public
|
|
8125
8125
|
*/
|
|
8126
|
-
dataSourceConfigurationSnapshot?: string;
|
|
8126
|
+
dataSourceConfigurationSnapshot?: string | undefined;
|
|
8127
8127
|
/**
|
|
8128
8128
|
* <p>Specifies run statistics for assets.</p>
|
|
8129
8129
|
* @public
|
|
8130
8130
|
*/
|
|
8131
|
-
runStatisticsForAssets?: RunStatisticsForAssets;
|
|
8131
|
+
runStatisticsForAssets?: RunStatisticsForAssets | undefined;
|
|
8132
8132
|
/**
|
|
8133
8133
|
* <p>Specifies the error message that is returned if the operation cannot be successfully
|
|
8134
8134
|
* completed.</p>
|
|
8135
8135
|
* @public
|
|
8136
8136
|
*/
|
|
8137
|
-
errorMessage?: DataSourceErrorMessage;
|
|
8137
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
8138
8138
|
/**
|
|
8139
8139
|
* <p>The timestamp of when data source run was created.</p>
|
|
8140
8140
|
* @public
|
|
@@ -8149,12 +8149,12 @@ export interface StartDataSourceRunOutput {
|
|
|
8149
8149
|
* <p>The timestamp of when the data source run was started.</p>
|
|
8150
8150
|
* @public
|
|
8151
8151
|
*/
|
|
8152
|
-
startedAt?: Date;
|
|
8152
|
+
startedAt?: Date | undefined;
|
|
8153
8153
|
/**
|
|
8154
8154
|
* <p>The timestamp of when the data source run was stopped.</p>
|
|
8155
8155
|
* @public
|
|
8156
8156
|
*/
|
|
8157
|
-
stoppedAt?: Date;
|
|
8157
|
+
stoppedAt?: Date | undefined;
|
|
8158
8158
|
}
|
|
8159
8159
|
/**
|
|
8160
8160
|
* <p>The activity details of the data source run.</p>
|
|
@@ -8190,18 +8190,18 @@ export interface DataSourceRunActivity {
|
|
|
8190
8190
|
* <p>The identifier of the asset included in the data source run activity.</p>
|
|
8191
8191
|
* @public
|
|
8192
8192
|
*/
|
|
8193
|
-
dataAssetId?: string;
|
|
8193
|
+
dataAssetId?: string | undefined;
|
|
8194
8194
|
/**
|
|
8195
8195
|
* <p>The technical description included in the data source run activity.</p>
|
|
8196
8196
|
* @public
|
|
8197
8197
|
*/
|
|
8198
|
-
technicalDescription?: string;
|
|
8198
|
+
technicalDescription?: string | undefined;
|
|
8199
8199
|
/**
|
|
8200
8200
|
* <p>The details of the error message that is returned if the operation cannot be
|
|
8201
8201
|
* successfully completed.</p>
|
|
8202
8202
|
* @public
|
|
8203
8203
|
*/
|
|
8204
|
-
errorMessage?: DataSourceErrorMessage;
|
|
8204
|
+
errorMessage?: DataSourceErrorMessage | undefined;
|
|
8205
8205
|
/**
|
|
8206
8206
|
* <p>The timestamp of when data source run activity was created.</p>
|
|
8207
8207
|
* @public
|
|
@@ -8301,7 +8301,7 @@ export interface DeleteProjectInput {
|
|
|
8301
8301
|
* <p>Specifies the optional flag to delete all child entities within the project.</p>
|
|
8302
8302
|
* @public
|
|
8303
8303
|
*/
|
|
8304
|
-
skipDeletionCheck?: boolean;
|
|
8304
|
+
skipDeletionCheck?: boolean | undefined;
|
|
8305
8305
|
}
|
|
8306
8306
|
/**
|
|
8307
8307
|
* @public
|
|
@@ -8366,7 +8366,7 @@ export interface DeleteSubscriptionGrantOutput {
|
|
|
8366
8366
|
* <p>The Amazon DataZone user who updated the subscription grant that is deleted.</p>
|
|
8367
8367
|
* @public
|
|
8368
8368
|
*/
|
|
8369
|
-
updatedBy?: string;
|
|
8369
|
+
updatedBy?: string | undefined;
|
|
8370
8370
|
/**
|
|
8371
8371
|
* <p>The ID of the Amazon DataZone domain in which the subscription grant is deleted.</p>
|
|
8372
8372
|
* @public
|
|
@@ -8402,14 +8402,14 @@ export interface DeleteSubscriptionGrantOutput {
|
|
|
8402
8402
|
* <p>The assets for which the subsctiption grant that is deleted gave access.</p>
|
|
8403
8403
|
* @public
|
|
8404
8404
|
*/
|
|
8405
|
-
assets?: SubscribedAsset[];
|
|
8405
|
+
assets?: SubscribedAsset[] | undefined;
|
|
8406
8406
|
/**
|
|
8407
8407
|
* @deprecated
|
|
8408
8408
|
*
|
|
8409
8409
|
* <p>The identifier of the subsctiption whose subscription grant is to be deleted.</p>
|
|
8410
8410
|
* @public
|
|
8411
8411
|
*/
|
|
8412
|
-
subscriptionId?: string;
|
|
8412
|
+
subscriptionId?: string | undefined;
|
|
8413
8413
|
}
|
|
8414
8414
|
/**
|
|
8415
8415
|
* @public
|
|
@@ -8488,7 +8488,7 @@ export interface DeleteTimeSeriesDataPointsInput {
|
|
|
8488
8488
|
* automatically populated if not provided.</p>
|
|
8489
8489
|
* @public
|
|
8490
8490
|
*/
|
|
8491
|
-
clientToken?: string;
|
|
8491
|
+
clientToken?: string | undefined;
|
|
8492
8492
|
}
|
|
8493
8493
|
/**
|
|
8494
8494
|
* @public
|
|
@@ -8534,12 +8534,12 @@ export interface DeleteDomainInput {
|
|
|
8534
8534
|
* request.</p>
|
|
8535
8535
|
* @public
|
|
8536
8536
|
*/
|
|
8537
|
-
clientToken?: string;
|
|
8537
|
+
clientToken?: string | undefined;
|
|
8538
8538
|
/**
|
|
8539
8539
|
* <p>Specifies the optional flag to delete all child entities within the domain.</p>
|
|
8540
8540
|
* @public
|
|
8541
8541
|
*/
|
|
8542
|
-
skipDeletionCheck?: boolean;
|
|
8542
|
+
skipDeletionCheck?: boolean | undefined;
|
|
8543
8543
|
}
|
|
8544
8544
|
/**
|
|
8545
8545
|
* @public
|
|
@@ -8574,22 +8574,22 @@ export interface GetDomainOutput {
|
|
|
8574
8574
|
* <p>The ID of the root domain in Amazon Datazone.</p>
|
|
8575
8575
|
* @public
|
|
8576
8576
|
*/
|
|
8577
|
-
rootDomainUnitId?: string;
|
|
8577
|
+
rootDomainUnitId?: string | undefined;
|
|
8578
8578
|
/**
|
|
8579
8579
|
* <p>The name of the Amazon DataZone domain.</p>
|
|
8580
8580
|
* @public
|
|
8581
8581
|
*/
|
|
8582
|
-
name?: string;
|
|
8582
|
+
name?: string | undefined;
|
|
8583
8583
|
/**
|
|
8584
8584
|
* <p>The description of the Amazon DataZone domain.</p>
|
|
8585
8585
|
* @public
|
|
8586
8586
|
*/
|
|
8587
|
-
description?: string;
|
|
8587
|
+
description?: string | undefined;
|
|
8588
8588
|
/**
|
|
8589
8589
|
* <p>The single sing-on option of the specified Amazon DataZone domain.</p>
|
|
8590
8590
|
* @public
|
|
8591
8591
|
*/
|
|
8592
|
-
singleSignOn?: SingleSignOn;
|
|
8592
|
+
singleSignOn?: SingleSignOn | undefined;
|
|
8593
8593
|
/**
|
|
8594
8594
|
* <p>The domain execution role with which the Amazon DataZone domain is created.</p>
|
|
8595
8595
|
* @public
|
|
@@ -8599,13 +8599,13 @@ export interface GetDomainOutput {
|
|
|
8599
8599
|
* <p>The ARN of the specified Amazon DataZone domain.</p>
|
|
8600
8600
|
* @public
|
|
8601
8601
|
*/
|
|
8602
|
-
arn?: string;
|
|
8602
|
+
arn?: string | undefined;
|
|
8603
8603
|
/**
|
|
8604
8604
|
* <p>The identifier of the Amazon Web Services Key Management Service (KMS) key that is used
|
|
8605
8605
|
* to encrypt the Amazon DataZone domain, metadata, and reporting data. </p>
|
|
8606
8606
|
* @public
|
|
8607
8607
|
*/
|
|
8608
|
-
kmsKeyIdentifier?: string;
|
|
8608
|
+
kmsKeyIdentifier?: string | undefined;
|
|
8609
8609
|
/**
|
|
8610
8610
|
* <p>The status of the specified Amazon DataZone domain.</p>
|
|
8611
8611
|
* @public
|
|
@@ -8615,22 +8615,22 @@ export interface GetDomainOutput {
|
|
|
8615
8615
|
* <p>The URL of the data portal for this Amazon DataZone domain.</p>
|
|
8616
8616
|
* @public
|
|
8617
8617
|
*/
|
|
8618
|
-
portalUrl?: string;
|
|
8618
|
+
portalUrl?: string | undefined;
|
|
8619
8619
|
/**
|
|
8620
8620
|
* <p>The timestamp of when the Amazon DataZone domain was created.</p>
|
|
8621
8621
|
* @public
|
|
8622
8622
|
*/
|
|
8623
|
-
createdAt?: Date;
|
|
8623
|
+
createdAt?: Date | undefined;
|
|
8624
8624
|
/**
|
|
8625
8625
|
* <p>The timestamp of when the Amazon DataZone domain was last updated.</p>
|
|
8626
8626
|
* @public
|
|
8627
8627
|
*/
|
|
8628
|
-
lastUpdatedAt?: Date;
|
|
8628
|
+
lastUpdatedAt?: Date | undefined;
|
|
8629
8629
|
/**
|
|
8630
8630
|
* <p>The tags specified for the Amazon DataZone domain.</p>
|
|
8631
8631
|
* @public
|
|
8632
8632
|
*/
|
|
8633
|
-
tags?: Record<string, string
|
|
8633
|
+
tags?: Record<string, string> | undefined;
|
|
8634
8634
|
}
|
|
8635
8635
|
/**
|
|
8636
8636
|
* @public
|
|
@@ -8640,7 +8640,7 @@ export interface ListDomainsInput {
|
|
|
8640
8640
|
* <p>The status of the data source.</p>
|
|
8641
8641
|
* @public
|
|
8642
8642
|
*/
|
|
8643
|
-
status?: DomainStatus;
|
|
8643
|
+
status?: DomainStatus | undefined;
|
|
8644
8644
|
/**
|
|
8645
8645
|
* <p>The maximum number of domains to return in a single call to <code>ListDomains</code>.
|
|
8646
8646
|
* When the number of domains to be listed is greater than the value of
|
|
@@ -8649,7 +8649,7 @@ export interface ListDomainsInput {
|
|
|
8649
8649
|
* domains.</p>
|
|
8650
8650
|
* @public
|
|
8651
8651
|
*/
|
|
8652
|
-
maxResults?: number;
|
|
8652
|
+
maxResults?: number | undefined;
|
|
8653
8653
|
/**
|
|
8654
8654
|
* <p>When the number of domains is greater than the default value for the
|
|
8655
8655
|
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
@@ -8659,7 +8659,7 @@ export interface ListDomainsInput {
|
|
|
8659
8659
|
* domains.</p>
|
|
8660
8660
|
* @public
|
|
8661
8661
|
*/
|
|
8662
|
-
nextToken?: string;
|
|
8662
|
+
nextToken?: string | undefined;
|
|
8663
8663
|
}
|
|
8664
8664
|
/**
|
|
8665
8665
|
* <p>A summary of a Amazon DataZone domain.</p>
|
|
@@ -8680,7 +8680,7 @@ export interface DomainSummary {
|
|
|
8680
8680
|
* <p>A description of an Amazon DataZone domain.</p>
|
|
8681
8681
|
* @public
|
|
8682
8682
|
*/
|
|
8683
|
-
description?: string;
|
|
8683
|
+
description?: string | undefined;
|
|
8684
8684
|
/**
|
|
8685
8685
|
* <p>The ARN of the Amazon DataZone domain.</p>
|
|
8686
8686
|
* @public
|
|
@@ -8700,7 +8700,7 @@ export interface DomainSummary {
|
|
|
8700
8700
|
* <p>The data portal URL for the Amazon DataZone domain.</p>
|
|
8701
8701
|
* @public
|
|
8702
8702
|
*/
|
|
8703
|
-
portalUrl?: string;
|
|
8703
|
+
portalUrl?: string | undefined;
|
|
8704
8704
|
/**
|
|
8705
8705
|
* <p>A timestamp of when a Amazon DataZone domain was created.</p>
|
|
8706
8706
|
* @public
|
|
@@ -8710,7 +8710,7 @@ export interface DomainSummary {
|
|
|
8710
8710
|
* <p>A timestamp of when a Amazon DataZone domain was last updated.</p>
|
|
8711
8711
|
* @public
|
|
8712
8712
|
*/
|
|
8713
|
-
lastUpdatedAt?: Date;
|
|
8713
|
+
lastUpdatedAt?: Date | undefined;
|
|
8714
8714
|
}
|
|
8715
8715
|
/**
|
|
8716
8716
|
* @public
|
|
@@ -8730,7 +8730,7 @@ export interface ListDomainsOutput {
|
|
|
8730
8730
|
* domains.</p>
|
|
8731
8731
|
* @public
|
|
8732
8732
|
*/
|
|
8733
|
-
nextToken?: string;
|
|
8733
|
+
nextToken?: string | undefined;
|
|
8734
8734
|
}
|
|
8735
8735
|
/**
|
|
8736
8736
|
* @public
|
|
@@ -8745,30 +8745,30 @@ export interface UpdateDomainInput {
|
|
|
8745
8745
|
* <p>The description to be updated as part of the <code>UpdateDomain</code> action.</p>
|
|
8746
8746
|
* @public
|
|
8747
8747
|
*/
|
|
8748
|
-
description?: string;
|
|
8748
|
+
description?: string | undefined;
|
|
8749
8749
|
/**
|
|
8750
8750
|
* <p>The single sign-on option to be updated as part of the <code>UpdateDomain</code>
|
|
8751
8751
|
* action.</p>
|
|
8752
8752
|
* @public
|
|
8753
8753
|
*/
|
|
8754
|
-
singleSignOn?: SingleSignOn;
|
|
8754
|
+
singleSignOn?: SingleSignOn | undefined;
|
|
8755
8755
|
/**
|
|
8756
8756
|
* <p>The domain execution role to be updated as part of the <code>UpdateDomain</code>
|
|
8757
8757
|
* action.</p>
|
|
8758
8758
|
* @public
|
|
8759
8759
|
*/
|
|
8760
|
-
domainExecutionRole?: string;
|
|
8760
|
+
domainExecutionRole?: string | undefined;
|
|
8761
8761
|
/**
|
|
8762
8762
|
* <p>The name to be updated as part of the <code>UpdateDomain</code> action.</p>
|
|
8763
8763
|
* @public
|
|
8764
8764
|
*/
|
|
8765
|
-
name?: string;
|
|
8765
|
+
name?: string | undefined;
|
|
8766
8766
|
/**
|
|
8767
8767
|
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
|
|
8768
8768
|
* request.</p>
|
|
8769
8769
|
* @public
|
|
8770
8770
|
*/
|
|
8771
|
-
clientToken?: string;
|
|
8771
|
+
clientToken?: string | undefined;
|
|
8772
8772
|
}
|
|
8773
8773
|
/**
|
|
8774
8774
|
* @public
|
|
@@ -8783,33 +8783,33 @@ export interface UpdateDomainOutput {
|
|
|
8783
8783
|
* <p>The ID of the root domain unit.</p>
|
|
8784
8784
|
* @public
|
|
8785
8785
|
*/
|
|
8786
|
-
rootDomainUnitId?: string;
|
|
8786
|
+
rootDomainUnitId?: string | undefined;
|
|
8787
8787
|
/**
|
|
8788
8788
|
* <p>The description to be updated as part of the <code>UpdateDomain</code> action.</p>
|
|
8789
8789
|
* @public
|
|
8790
8790
|
*/
|
|
8791
|
-
description?: string;
|
|
8791
|
+
description?: string | undefined;
|
|
8792
8792
|
/**
|
|
8793
8793
|
* <p>The single sign-on option of the Amazon DataZone domain.</p>
|
|
8794
8794
|
* @public
|
|
8795
8795
|
*/
|
|
8796
|
-
singleSignOn?: SingleSignOn;
|
|
8796
|
+
singleSignOn?: SingleSignOn | undefined;
|
|
8797
8797
|
/**
|
|
8798
8798
|
* <p>The domain execution role to be updated as part of the <code>UpdateDomain</code>
|
|
8799
8799
|
* action.</p>
|
|
8800
8800
|
* @public
|
|
8801
8801
|
*/
|
|
8802
|
-
domainExecutionRole?: string;
|
|
8802
|
+
domainExecutionRole?: string | undefined;
|
|
8803
8803
|
/**
|
|
8804
8804
|
* <p>The name to be updated as part of the <code>UpdateDomain</code> action.</p>
|
|
8805
8805
|
* @public
|
|
8806
8806
|
*/
|
|
8807
|
-
name?: string;
|
|
8807
|
+
name?: string | undefined;
|
|
8808
8808
|
/**
|
|
8809
8809
|
* <p>Specifies the timestamp of when the domain was last updated.</p>
|
|
8810
8810
|
* @public
|
|
8811
8811
|
*/
|
|
8812
|
-
lastUpdatedAt?: Date;
|
|
8812
|
+
lastUpdatedAt?: Date | undefined;
|
|
8813
8813
|
}
|
|
8814
8814
|
/**
|
|
8815
8815
|
* @public
|
|
@@ -8869,12 +8869,12 @@ export interface GetDomainUnitOutput {
|
|
|
8869
8869
|
* <p>The ID of the parent domain unit.</p>
|
|
8870
8870
|
* @public
|
|
8871
8871
|
*/
|
|
8872
|
-
parentDomainUnitId?: string;
|
|
8872
|
+
parentDomainUnitId?: string | undefined;
|
|
8873
8873
|
/**
|
|
8874
8874
|
* <p>The description of the domain unit.</p>
|
|
8875
8875
|
* @public
|
|
8876
8876
|
*/
|
|
8877
|
-
description?: string;
|
|
8877
|
+
description?: string | undefined;
|
|
8878
8878
|
/**
|
|
8879
8879
|
* <p>The owners of the domain unit.</p>
|
|
8880
8880
|
* @public
|
|
@@ -8884,22 +8884,22 @@ export interface GetDomainUnitOutput {
|
|
|
8884
8884
|
* <p>The time stamp at which the domain unit was created.</p>
|
|
8885
8885
|
* @public
|
|
8886
8886
|
*/
|
|
8887
|
-
createdAt?: Date;
|
|
8887
|
+
createdAt?: Date | undefined;
|
|
8888
8888
|
/**
|
|
8889
8889
|
* <p>The timestamp at which the domain unit was last updated.</p>
|
|
8890
8890
|
* @public
|
|
8891
8891
|
*/
|
|
8892
|
-
lastUpdatedAt?: Date;
|
|
8892
|
+
lastUpdatedAt?: Date | undefined;
|
|
8893
8893
|
/**
|
|
8894
8894
|
* <p>The user who created the domain unit.</p>
|
|
8895
8895
|
* @public
|
|
8896
8896
|
*/
|
|
8897
|
-
createdBy?: string;
|
|
8897
|
+
createdBy?: string | undefined;
|
|
8898
8898
|
/**
|
|
8899
8899
|
* <p>The user who last updated the domain unit.</p>
|
|
8900
8900
|
* @public
|
|
8901
8901
|
*/
|
|
8902
|
-
lastUpdatedBy?: string;
|
|
8902
|
+
lastUpdatedBy?: string | undefined;
|
|
8903
8903
|
}
|
|
8904
8904
|
/**
|
|
8905
8905
|
* @public
|
|
@@ -8923,7 +8923,7 @@ export interface ListDomainUnitsForParentInput {
|
|
|
8923
8923
|
* subsequent call to ListDomainUnitsForParent to list the next set of domain units.</p>
|
|
8924
8924
|
* @public
|
|
8925
8925
|
*/
|
|
8926
|
-
maxResults?: number;
|
|
8926
|
+
maxResults?: number | undefined;
|
|
8927
8927
|
/**
|
|
8928
8928
|
* <p>When the number of domain units is greater than the default value for the MaxResults
|
|
8929
8929
|
* parameter, or if you explicitly specify a value for MaxResults that is less than the number
|
|
@@ -8932,7 +8932,7 @@ export interface ListDomainUnitsForParentInput {
|
|
|
8932
8932
|
* of domain units.</p>
|
|
8933
8933
|
* @public
|
|
8934
8934
|
*/
|
|
8935
|
-
nextToken?: string;
|
|
8935
|
+
nextToken?: string | undefined;
|
|
8936
8936
|
}
|
|
8937
8937
|
/**
|
|
8938
8938
|
* <p>The summary of the domain unit.</p>
|
|
@@ -8967,7 +8967,7 @@ export interface ListDomainUnitsForParentOutput {
|
|
|
8967
8967
|
* of domain units.</p>
|
|
8968
8968
|
* @public
|
|
8969
8969
|
*/
|
|
8970
|
-
nextToken?: string;
|
|
8970
|
+
nextToken?: string | undefined;
|
|
8971
8971
|
}
|
|
8972
8972
|
/**
|
|
8973
8973
|
* @public
|
|
@@ -8987,12 +8987,12 @@ export interface UpdateDomainUnitInput {
|
|
|
8987
8987
|
* <p>The description of the domain unit that you want to update.</p>
|
|
8988
8988
|
* @public
|
|
8989
8989
|
*/
|
|
8990
|
-
description?: string;
|
|
8990
|
+
description?: string | undefined;
|
|
8991
8991
|
/**
|
|
8992
8992
|
* <p>The name of the domain unit that you want to update.</p>
|
|
8993
8993
|
* @public
|
|
8994
8994
|
*/
|
|
8995
|
-
name?: string;
|
|
8995
|
+
name?: string | undefined;
|
|
8996
8996
|
}
|
|
8997
8997
|
/**
|
|
8998
8998
|
* @public
|
|
@@ -9022,32 +9022,32 @@ export interface UpdateDomainUnitOutput {
|
|
|
9022
9022
|
* <p>The description of the domain unit that you want to update.</p>
|
|
9023
9023
|
* @public
|
|
9024
9024
|
*/
|
|
9025
|
-
description?: string;
|
|
9025
|
+
description?: string | undefined;
|
|
9026
9026
|
/**
|
|
9027
9027
|
* <p>The ID of the parent domain unit.</p>
|
|
9028
9028
|
* @public
|
|
9029
9029
|
*/
|
|
9030
|
-
parentDomainUnitId?: string;
|
|
9030
|
+
parentDomainUnitId?: string | undefined;
|
|
9031
9031
|
/**
|
|
9032
9032
|
* <p>The time stamp at which the domain unit that you want to update was created.</p>
|
|
9033
9033
|
* @public
|
|
9034
9034
|
*/
|
|
9035
|
-
createdAt?: Date;
|
|
9035
|
+
createdAt?: Date | undefined;
|
|
9036
9036
|
/**
|
|
9037
9037
|
* <p>The timestamp at which the domain unit was last updated.</p>
|
|
9038
9038
|
* @public
|
|
9039
9039
|
*/
|
|
9040
|
-
lastUpdatedAt?: Date;
|
|
9040
|
+
lastUpdatedAt?: Date | undefined;
|
|
9041
9041
|
/**
|
|
9042
9042
|
* <p>The user who created the domain unit that you want to update.</p>
|
|
9043
9043
|
* @public
|
|
9044
9044
|
*/
|
|
9045
|
-
createdBy?: string;
|
|
9045
|
+
createdBy?: string | undefined;
|
|
9046
9046
|
/**
|
|
9047
9047
|
* <p>The user who last updated the domain unit.</p>
|
|
9048
9048
|
* @public
|
|
9049
9049
|
*/
|
|
9050
|
-
lastUpdatedBy?: string;
|
|
9050
|
+
lastUpdatedBy?: string | undefined;
|
|
9051
9051
|
}
|
|
9052
9052
|
/**
|
|
9053
9053
|
* @public
|