@aws-sdk/client-datazone 3.687.0 → 3.691.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.
@@ -29,13 +29,13 @@ export interface LakeFormationConfiguration {
29
29
  * Data Lake using AWS Lake Formation hybrid access mode.</p>
30
30
  * @public
31
31
  */
32
- locationRegistrationRole?: string;
32
+ locationRegistrationRole?: string | undefined;
33
33
  /**
34
34
  * <p>Specifies certain Amazon S3 locations if you do not want Amazon DataZone to
35
35
  * automatically register them in hybrid mode. </p>
36
36
  * @public
37
37
  */
38
- locationRegistrationExcludeS3Locations?: string[];
38
+ locationRegistrationExcludeS3Locations?: string[] | undefined;
39
39
  }
40
40
  /**
41
41
  * <p>The provisioning configuration of the blueprint.</p>
@@ -85,37 +85,37 @@ export interface GetEnvironmentBlueprintConfigurationOutput {
85
85
  * <p>The ARN of the provisioning role with which this blueprint is created.</p>
86
86
  * @public
87
87
  */
88
- provisioningRoleArn?: string;
88
+ provisioningRoleArn?: string | undefined;
89
89
  /**
90
90
  * <p>The ARN of the manage access role with which this blueprint is created.</p>
91
91
  * @public
92
92
  */
93
- manageAccessRoleArn?: string;
93
+ manageAccessRoleArn?: string | undefined;
94
94
  /**
95
95
  * <p>The Amazon Web Services regions in which this blueprint is enabled.</p>
96
96
  * @public
97
97
  */
98
- enabledRegions?: string[];
98
+ enabledRegions?: string[] | undefined;
99
99
  /**
100
100
  * <p>The regional parameters of the blueprint.</p>
101
101
  * @public
102
102
  */
103
- regionalParameters?: Record<string, Record<string, string>>;
103
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
104
104
  /**
105
105
  * <p>The timestamp of when this blueprint was created.</p>
106
106
  * @public
107
107
  */
108
- createdAt?: Date;
108
+ createdAt?: Date | undefined;
109
109
  /**
110
110
  * <p>The timestamp of when this blueprint was upated.</p>
111
111
  * @public
112
112
  */
113
- updatedAt?: Date;
113
+ updatedAt?: Date | undefined;
114
114
  /**
115
115
  * <p>The provisioning configuration of a blueprint.</p>
116
116
  * @public
117
117
  */
118
- provisioningConfigurations?: ProvisioningConfiguration[];
118
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
119
119
  }
120
120
  /**
121
121
  * @public
@@ -135,7 +135,7 @@ export interface ListEnvironmentBlueprintConfigurationsInput {
135
135
  * configurations.</p>
136
136
  * @public
137
137
  */
138
- maxResults?: number;
138
+ maxResults?: number | undefined;
139
139
  /**
140
140
  * <p>When the number of blueprint configurations is greater than the default value for the
141
141
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -146,7 +146,7 @@ export interface ListEnvironmentBlueprintConfigurationsInput {
146
146
  * configurations.</p>
147
147
  * @public
148
148
  */
149
- nextToken?: string;
149
+ nextToken?: string | undefined;
150
150
  }
151
151
  /**
152
152
  * <p>The configuration details of an environment blueprint.</p>
@@ -168,38 +168,38 @@ export interface EnvironmentBlueprintConfigurationItem {
168
168
  * configuration.</p>
169
169
  * @public
170
170
  */
171
- provisioningRoleArn?: string;
171
+ provisioningRoleArn?: string | undefined;
172
172
  /**
173
173
  * <p>The ARN of the manage access role specified in the environment blueprint
174
174
  * configuration.</p>
175
175
  * @public
176
176
  */
177
- manageAccessRoleArn?: string;
177
+ manageAccessRoleArn?: string | undefined;
178
178
  /**
179
179
  * <p>The enabled Amazon Web Services Regions specified in a blueprint configuration.</p>
180
180
  * @public
181
181
  */
182
- enabledRegions?: string[];
182
+ enabledRegions?: string[] | undefined;
183
183
  /**
184
184
  * <p>The regional parameters of the environment blueprint.</p>
185
185
  * @public
186
186
  */
187
- regionalParameters?: Record<string, Record<string, string>>;
187
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
188
188
  /**
189
189
  * <p>The timestamp of when an environment blueprint was created.</p>
190
190
  * @public
191
191
  */
192
- createdAt?: Date;
192
+ createdAt?: Date | undefined;
193
193
  /**
194
194
  * <p>The timestamp of when the environment blueprint was updated.</p>
195
195
  * @public
196
196
  */
197
- updatedAt?: Date;
197
+ updatedAt?: Date | undefined;
198
198
  /**
199
199
  * <p>The provisioning configuration of a blueprint.</p>
200
200
  * @public
201
201
  */
202
- provisioningConfigurations?: ProvisioningConfiguration[];
202
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
203
203
  }
204
204
  /**
205
205
  * @public
@@ -209,7 +209,7 @@ export interface ListEnvironmentBlueprintConfigurationsOutput {
209
209
  * <p>The results of the <code>ListEnvironmentBlueprintConfigurations</code> action.</p>
210
210
  * @public
211
211
  */
212
- items?: EnvironmentBlueprintConfigurationItem[];
212
+ items?: EnvironmentBlueprintConfigurationItem[] | undefined;
213
213
  /**
214
214
  * <p>When the number of blueprint configurations is greater than the default value for the
215
215
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -220,7 +220,7 @@ export interface ListEnvironmentBlueprintConfigurationsOutput {
220
220
  * configurations.</p>
221
221
  * @public
222
222
  */
223
- nextToken?: string;
223
+ nextToken?: string | undefined;
224
224
  }
225
225
  /**
226
226
  * @public
@@ -240,12 +240,12 @@ export interface PutEnvironmentBlueprintConfigurationInput {
240
240
  * <p>The ARN of the provisioning role.</p>
241
241
  * @public
242
242
  */
243
- provisioningRoleArn?: string;
243
+ provisioningRoleArn?: string | undefined;
244
244
  /**
245
245
  * <p>The ARN of the manage access role.</p>
246
246
  * @public
247
247
  */
248
- manageAccessRoleArn?: string;
248
+ manageAccessRoleArn?: string | undefined;
249
249
  /**
250
250
  * <p>Specifies the enabled Amazon Web Services Regions.</p>
251
251
  * @public
@@ -255,12 +255,12 @@ export interface PutEnvironmentBlueprintConfigurationInput {
255
255
  * <p>The regional parameters in the environment blueprint.</p>
256
256
  * @public
257
257
  */
258
- regionalParameters?: Record<string, Record<string, string>>;
258
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
259
259
  /**
260
260
  * <p>The provisioning configuration of a blueprint.</p>
261
261
  * @public
262
262
  */
263
- provisioningConfigurations?: ProvisioningConfiguration[];
263
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
264
264
  }
265
265
  /**
266
266
  * @public
@@ -280,37 +280,37 @@ export interface PutEnvironmentBlueprintConfigurationOutput {
280
280
  * <p>The ARN of the provisioning role.</p>
281
281
  * @public
282
282
  */
283
- provisioningRoleArn?: string;
283
+ provisioningRoleArn?: string | undefined;
284
284
  /**
285
285
  * <p>The ARN of the manage access role.</p>
286
286
  * @public
287
287
  */
288
- manageAccessRoleArn?: string;
288
+ manageAccessRoleArn?: string | undefined;
289
289
  /**
290
290
  * <p>Specifies the enabled Amazon Web Services Regions.</p>
291
291
  * @public
292
292
  */
293
- enabledRegions?: string[];
293
+ enabledRegions?: string[] | undefined;
294
294
  /**
295
295
  * <p>The regional parameters in the environment blueprint.</p>
296
296
  * @public
297
297
  */
298
- regionalParameters?: Record<string, Record<string, string>>;
298
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
299
299
  /**
300
300
  * <p>The timestamp of when the environment blueprint was created.</p>
301
301
  * @public
302
302
  */
303
- createdAt?: Date;
303
+ createdAt?: Date | undefined;
304
304
  /**
305
305
  * <p>The timestamp of when the environment blueprint was updated.</p>
306
306
  * @public
307
307
  */
308
- updatedAt?: Date;
308
+ updatedAt?: Date | undefined;
309
309
  /**
310
310
  * <p>The provisioning configuration of a blueprint.</p>
311
311
  * @public
312
312
  */
313
- provisioningConfigurations?: ProvisioningConfiguration[];
313
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
314
314
  }
315
315
  /**
316
316
  * @public
@@ -350,7 +350,7 @@ export interface GetFormTypeInput {
350
350
  * <p>The revision of this metadata form type.</p>
351
351
  * @public
352
352
  */
353
- revision?: string;
353
+ revision?: string | undefined;
354
354
  }
355
355
  /**
356
356
  * <p>The details of the import of the metadata form type.</p>
@@ -396,43 +396,43 @@ export interface GetFormTypeOutput {
396
396
  * <p>The ID of the project that owns this metadata form type.</p>
397
397
  * @public
398
398
  */
399
- owningProjectId?: string;
399
+ owningProjectId?: string | undefined;
400
400
  /**
401
401
  * <p>The ID of the Amazon DataZone domain in which the metadata form type was originally
402
402
  * created.</p>
403
403
  * @public
404
404
  */
405
- originDomainId?: string;
405
+ originDomainId?: string | undefined;
406
406
  /**
407
407
  * <p>The ID of the project in which this metadata form type was originally created.</p>
408
408
  * @public
409
409
  */
410
- originProjectId?: string;
410
+ originProjectId?: string | undefined;
411
411
  /**
412
412
  * <p>The status of the metadata form type.</p>
413
413
  * @public
414
414
  */
415
- status?: FormTypeStatus;
415
+ status?: FormTypeStatus | undefined;
416
416
  /**
417
417
  * <p>The timestamp of when this metadata form type was created.</p>
418
418
  * @public
419
419
  */
420
- createdAt?: Date;
420
+ createdAt?: Date | undefined;
421
421
  /**
422
422
  * <p>The Amazon DataZone user who created this metadata form type.</p>
423
423
  * @public
424
424
  */
425
- createdBy?: string;
425
+ createdBy?: string | undefined;
426
426
  /**
427
427
  * <p>The description of the metadata form type.</p>
428
428
  * @public
429
429
  */
430
- description?: string;
430
+ description?: string | undefined;
431
431
  /**
432
432
  * <p>The imports of the metadata form type.</p>
433
433
  * @public
434
434
  */
435
- imports?: Import[];
435
+ imports?: Import[] | undefined;
436
436
  }
437
437
  /**
438
438
  * @public
@@ -482,7 +482,7 @@ export interface GetEnvironmentOutput {
482
482
  * <p>The ID of the environment.</p>
483
483
  * @public
484
484
  */
485
- id?: string;
485
+ id?: string | undefined;
486
486
  /**
487
487
  * <p>The ID of the Amazon DataZone domain where the environment exists.</p>
488
488
  * @public
@@ -497,12 +497,12 @@ export interface GetEnvironmentOutput {
497
497
  * <p>The timestamp of when the environment was created.</p>
498
498
  * @public
499
499
  */
500
- createdAt?: Date;
500
+ createdAt?: Date | undefined;
501
501
  /**
502
502
  * <p>The timestamp of when this environment was updated.</p>
503
503
  * @public
504
504
  */
505
- updatedAt?: Date;
505
+ updatedAt?: Date | undefined;
506
506
  /**
507
507
  * <p>The name of the environment.</p>
508
508
  * @public
@@ -512,22 +512,22 @@ export interface GetEnvironmentOutput {
512
512
  * <p>The description of the environment.</p>
513
513
  * @public
514
514
  */
515
- description?: string;
515
+ description?: string | undefined;
516
516
  /**
517
517
  * <p>The ID of the environment profile with which the environment is created.</p>
518
518
  * @public
519
519
  */
520
- environmentProfileId?: string;
520
+ environmentProfileId?: string | undefined;
521
521
  /**
522
522
  * <p>The ID of the Amazon Web Services account where the environment exists.</p>
523
523
  * @public
524
524
  */
525
- awsAccountId?: string;
525
+ awsAccountId?: string | undefined;
526
526
  /**
527
527
  * <p>The Amazon Web Services region where the environment exists.</p>
528
528
  * @public
529
529
  */
530
- awsAccountRegion?: string;
530
+ awsAccountRegion?: string | undefined;
531
531
  /**
532
532
  * <p>The provider of this Amazon DataZone environment.</p>
533
533
  * @public
@@ -537,47 +537,47 @@ export interface GetEnvironmentOutput {
537
537
  * <p>The provisioned resources of this Amazon DataZone environment.</p>
538
538
  * @public
539
539
  */
540
- provisionedResources?: Resource[];
540
+ provisionedResources?: Resource[] | undefined;
541
541
  /**
542
542
  * <p>The status of this Amazon DataZone environment.</p>
543
543
  * @public
544
544
  */
545
- status?: EnvironmentStatus;
545
+ status?: EnvironmentStatus | undefined;
546
546
  /**
547
547
  * <p>The actions of the environment.</p>
548
548
  * @public
549
549
  */
550
- environmentActions?: ConfigurableEnvironmentAction[];
550
+ environmentActions?: ConfigurableEnvironmentAction[] | undefined;
551
551
  /**
552
552
  * <p>The business glossary terms that can be used in this environment.</p>
553
553
  * @public
554
554
  */
555
- glossaryTerms?: string[];
555
+ glossaryTerms?: string[] | undefined;
556
556
  /**
557
557
  * <p>The user parameters of this Amazon DataZone environment.</p>
558
558
  * @public
559
559
  */
560
- userParameters?: CustomParameter[];
560
+ userParameters?: CustomParameter[] | undefined;
561
561
  /**
562
562
  * <p>The details of the last deployment of the environment.</p>
563
563
  * @public
564
564
  */
565
- lastDeployment?: Deployment;
565
+ lastDeployment?: Deployment | undefined;
566
566
  /**
567
567
  * <p>The provisioning properties of this Amazon DataZone environment.</p>
568
568
  * @public
569
569
  */
570
- provisioningProperties?: ProvisioningProperties;
570
+ provisioningProperties?: ProvisioningProperties | undefined;
571
571
  /**
572
572
  * <p>The deployment properties of the environment.</p>
573
573
  * @public
574
574
  */
575
- deploymentProperties?: DeploymentProperties;
575
+ deploymentProperties?: DeploymentProperties | undefined;
576
576
  /**
577
577
  * <p>The blueprint with which the environment is created.</p>
578
578
  * @public
579
579
  */
580
- environmentBlueprintId?: string;
580
+ environmentBlueprintId?: string | undefined;
581
581
  }
582
582
  /**
583
583
  * @public
@@ -633,7 +633,7 @@ export interface GetEnvironmentActionOutput {
633
633
  * <p>The description of the environment action.</p>
634
634
  * @public
635
635
  */
636
- description?: string;
636
+ description?: string | undefined;
637
637
  }
638
638
  /**
639
639
  * @public
@@ -668,7 +668,7 @@ export interface GetEnvironmentBlueprintOutput {
668
668
  * <p>The description of this Amazon DataZone blueprint.</p>
669
669
  * @public
670
670
  */
671
- description?: string;
671
+ description?: string | undefined;
672
672
  /**
673
673
  * <p>The provider of this Amazon DataZone blueprint.</p>
674
674
  * @public
@@ -683,27 +683,27 @@ export interface GetEnvironmentBlueprintOutput {
683
683
  * <p>The deployment properties of this Amazon DataZone blueprint.</p>
684
684
  * @public
685
685
  */
686
- deploymentProperties?: DeploymentProperties;
686
+ deploymentProperties?: DeploymentProperties | undefined;
687
687
  /**
688
688
  * <p>The user parameters of this blueprint.</p>
689
689
  * @public
690
690
  */
691
- userParameters?: CustomParameter[];
691
+ userParameters?: CustomParameter[] | undefined;
692
692
  /**
693
693
  * <p>The glossary terms attached to this Amazon DataZone blueprint.</p>
694
694
  * @public
695
695
  */
696
- glossaryTerms?: string[];
696
+ glossaryTerms?: string[] | undefined;
697
697
  /**
698
698
  * <p>A timestamp of when this blueprint was created.</p>
699
699
  * @public
700
700
  */
701
- createdAt?: Date;
701
+ createdAt?: Date | undefined;
702
702
  /**
703
703
  * <p>The timestamp of when this blueprint was updated.</p>
704
704
  * @public
705
705
  */
706
- updatedAt?: Date;
706
+ updatedAt?: Date | undefined;
707
707
  }
708
708
  /**
709
709
  * @public
@@ -729,22 +729,22 @@ export interface GetEnvironmentCredentialsOutput {
729
729
  * <p>The access key ID of the environment.</p>
730
730
  * @public
731
731
  */
732
- accessKeyId?: string;
732
+ accessKeyId?: string | undefined;
733
733
  /**
734
734
  * <p>The secret access key of the environment credentials.</p>
735
735
  * @public
736
736
  */
737
- secretAccessKey?: string;
737
+ secretAccessKey?: string | undefined;
738
738
  /**
739
739
  * <p>The session token of the environment credentials.</p>
740
740
  * @public
741
741
  */
742
- sessionToken?: string;
742
+ sessionToken?: string | undefined;
743
743
  /**
744
744
  * <p>The expiration timestamp of the environment credentials.</p>
745
745
  * @public
746
746
  */
747
- expiration?: Date;
747
+ expiration?: Date | undefined;
748
748
  }
749
749
  /**
750
750
  * @public
@@ -779,12 +779,12 @@ export interface GetEnvironmentProfileOutput {
779
779
  * <p>The ID of the Amazon Web Services account where this environment profile exists.</p>
780
780
  * @public
781
781
  */
782
- awsAccountId?: string;
782
+ awsAccountId?: string | undefined;
783
783
  /**
784
784
  * <p>The Amazon Web Services region where this environment profile exists.</p>
785
785
  * @public
786
786
  */
787
- awsAccountRegion?: string;
787
+ awsAccountRegion?: string | undefined;
788
788
  /**
789
789
  * <p>The Amazon DataZone user who created this environment profile.</p>
790
790
  * @public
@@ -794,12 +794,12 @@ export interface GetEnvironmentProfileOutput {
794
794
  * <p>The timestamp of when this environment profile was created.</p>
795
795
  * @public
796
796
  */
797
- createdAt?: Date;
797
+ createdAt?: Date | undefined;
798
798
  /**
799
799
  * <p>The timestamp of when this environment profile was upated.</p>
800
800
  * @public
801
801
  */
802
- updatedAt?: Date;
802
+ updatedAt?: Date | undefined;
803
803
  /**
804
804
  * <p>The name of the environment profile.</p>
805
805
  * @public
@@ -809,7 +809,7 @@ export interface GetEnvironmentProfileOutput {
809
809
  * <p>The description of the environment profile.</p>
810
810
  * @public
811
811
  */
812
- description?: string;
812
+ description?: string | undefined;
813
813
  /**
814
814
  * <p>The ID of the blueprint with which this environment profile is created.</p>
815
815
  * @public
@@ -819,12 +819,12 @@ export interface GetEnvironmentProfileOutput {
819
819
  * <p>The ID of the Amazon DataZone project in which this environment profile is created.</p>
820
820
  * @public
821
821
  */
822
- projectId?: string;
822
+ projectId?: string | undefined;
823
823
  /**
824
824
  * <p>The user parameters of the environment profile.</p>
825
825
  * @public
826
826
  */
827
- userParameters?: CustomParameter[];
827
+ userParameters?: CustomParameter[] | undefined;
828
828
  }
829
829
  /**
830
830
  * @public
@@ -849,22 +849,22 @@ export interface GetGroupProfileOutput {
849
849
  * <p>The identifier of the Amazon DataZone domain in which the group profile exists.</p>
850
850
  * @public
851
851
  */
852
- domainId?: string;
852
+ domainId?: string | undefined;
853
853
  /**
854
854
  * <p>The identifier of the group profile.</p>
855
855
  * @public
856
856
  */
857
- id?: string;
857
+ id?: string | undefined;
858
858
  /**
859
859
  * <p>The identifier of the group profile.</p>
860
860
  * @public
861
861
  */
862
- status?: GroupProfileStatus;
862
+ status?: GroupProfileStatus | undefined;
863
863
  /**
864
864
  * <p>The name of the group for which the specified group profile exists.</p>
865
865
  * @public
866
866
  */
867
- groupName?: string;
867
+ groupName?: string | undefined;
868
868
  }
869
869
  /**
870
870
  * @public
@@ -884,7 +884,7 @@ export interface GetIamPortalLoginUrlOutput {
884
884
  * <p>The data portal URL of the specified Amazon DataZone domain.</p>
885
885
  * @public
886
886
  */
887
- authCodeUrl?: string;
887
+ authCodeUrl?: string | undefined;
888
888
  /**
889
889
  * <p>The ID of the user profile.</p>
890
890
  * @public
@@ -913,7 +913,7 @@ export interface GetLineageNodeInput {
913
913
  * <p>The event time stamp for which you want to get the data lineage node.</p>
914
914
  * @public
915
915
  */
916
- eventTimestamp?: Date;
916
+ eventTimestamp?: Date | undefined;
917
917
  }
918
918
  /**
919
919
  * <p>The reference details for the data lineage node.</p>
@@ -924,12 +924,12 @@ export interface LineageNodeReference {
924
924
  * <p>The ID of the data lineage node.</p>
925
925
  * @public
926
926
  */
927
- id?: string;
927
+ id?: string | undefined;
928
928
  /**
929
929
  * <p>The event timestamp of the data lineage node.</p>
930
930
  * @public
931
931
  */
932
- eventTimestamp?: Date;
932
+ eventTimestamp?: Date | undefined;
933
933
  }
934
934
  /**
935
935
  * @public
@@ -944,32 +944,32 @@ export interface GetLineageNodeOutput {
944
944
  * <p>The name of the data lineage node.</p>
945
945
  * @public
946
946
  */
947
- name?: string;
947
+ name?: string | undefined;
948
948
  /**
949
949
  * <p>The description of the data lineage node.</p>
950
950
  * @public
951
951
  */
952
- description?: string;
952
+ description?: string | undefined;
953
953
  /**
954
954
  * <p>The timestamp at which the data lineage node was created.</p>
955
955
  * @public
956
956
  */
957
- createdAt?: Date;
957
+ createdAt?: Date | undefined;
958
958
  /**
959
959
  * <p>The user who created the data lineage node.</p>
960
960
  * @public
961
961
  */
962
- createdBy?: string;
962
+ createdBy?: string | undefined;
963
963
  /**
964
964
  * <p>The timestamp at which the data lineage node was updated.</p>
965
965
  * @public
966
966
  */
967
- updatedAt?: Date;
967
+ updatedAt?: Date | undefined;
968
968
  /**
969
969
  * <p>The user who updated the data lineage node.</p>
970
970
  * @public
971
971
  */
972
- updatedBy?: string;
972
+ updatedBy?: string | undefined;
973
973
  /**
974
974
  * <p>The ID of the data lineage node.</p>
975
975
  * @public
@@ -984,32 +984,32 @@ export interface GetLineageNodeOutput {
984
984
  * <p>The revision type of the specified data lineage node.</p>
985
985
  * @public
986
986
  */
987
- typeRevision?: string;
987
+ typeRevision?: string | undefined;
988
988
  /**
989
989
  * <p>The source identifier of the data lineage node.</p>
990
990
  * @public
991
991
  */
992
- sourceIdentifier?: string;
992
+ sourceIdentifier?: string | undefined;
993
993
  /**
994
994
  * <p>The timestamp of the event described in the data lineage node.</p>
995
995
  * @public
996
996
  */
997
- eventTimestamp?: Date;
997
+ eventTimestamp?: Date | undefined;
998
998
  /**
999
999
  * <p>The metadata of the specified data lineage node.</p>
1000
1000
  * @public
1001
1001
  */
1002
- formsOutput?: FormOutput[];
1002
+ formsOutput?: FormOutput[] | undefined;
1003
1003
  /**
1004
1004
  * <p>The upstream nodes of the specified data lineage node.</p>
1005
1005
  * @public
1006
1006
  */
1007
- upstreamNodes?: LineageNodeReference[];
1007
+ upstreamNodes?: LineageNodeReference[] | undefined;
1008
1008
  /**
1009
1009
  * <p>The downsteam nodes of the specified data lineage node.</p>
1010
1010
  * @public
1011
1011
  */
1012
- downstreamNodes?: LineageNodeReference[];
1012
+ downstreamNodes?: LineageNodeReference[] | undefined;
1013
1013
  }
1014
1014
  /**
1015
1015
  * @public
@@ -1049,18 +1049,18 @@ export interface GetProjectOutput {
1049
1049
  * <p>The description of the project.</p>
1050
1050
  * @public
1051
1051
  */
1052
- description?: string;
1052
+ description?: string | undefined;
1053
1053
  /**
1054
1054
  * <p>The status of the project.</p>
1055
1055
  * @public
1056
1056
  */
1057
- projectStatus?: ProjectStatus;
1057
+ projectStatus?: ProjectStatus | undefined;
1058
1058
  /**
1059
1059
  * <p>Specifies the error message that is returned if the operation cannot be successfully
1060
1060
  * completed.</p>
1061
1061
  * @public
1062
1062
  */
1063
- failureReasons?: ProjectDeletionError[];
1063
+ failureReasons?: ProjectDeletionError[] | undefined;
1064
1064
  /**
1065
1065
  * <p>The Amazon DataZone user who created the project.</p>
1066
1066
  * @public
@@ -1070,22 +1070,22 @@ export interface GetProjectOutput {
1070
1070
  * <p>The timestamp of when the project was created.</p>
1071
1071
  * @public
1072
1072
  */
1073
- createdAt?: Date;
1073
+ createdAt?: Date | undefined;
1074
1074
  /**
1075
1075
  * <p>The timestamp of when the project was last updated.</p>
1076
1076
  * @public
1077
1077
  */
1078
- lastUpdatedAt?: Date;
1078
+ lastUpdatedAt?: Date | undefined;
1079
1079
  /**
1080
1080
  * <p>The business glossary terms that can be used in the project.</p>
1081
1081
  * @public
1082
1082
  */
1083
- glossaryTerms?: string[];
1083
+ glossaryTerms?: string[] | undefined;
1084
1084
  /**
1085
1085
  * <p>The ID of the domain unit.</p>
1086
1086
  * @public
1087
1087
  */
1088
- domainUnitId?: string;
1088
+ domainUnitId?: string | undefined;
1089
1089
  }
1090
1090
  /**
1091
1091
  * @public
@@ -1120,7 +1120,7 @@ export interface GetSubscriptionOutput {
1120
1120
  * <p>The Amazon DataZone user who updated the subscription.</p>
1121
1121
  * @public
1122
1122
  */
1123
- updatedBy?: string;
1123
+ updatedBy?: string | undefined;
1124
1124
  /**
1125
1125
  * <p>The ID of the Amazon DataZone domain in which the subscription exists.</p>
1126
1126
  * @public
@@ -1155,12 +1155,12 @@ export interface GetSubscriptionOutput {
1155
1155
  * <p>The ID of the subscription request.</p>
1156
1156
  * @public
1157
1157
  */
1158
- subscriptionRequestId?: string;
1158
+ subscriptionRequestId?: string | undefined;
1159
1159
  /**
1160
1160
  * <p>The retain permissions of the subscription.</p>
1161
1161
  * @public
1162
1162
  */
1163
- retainPermissions?: boolean;
1163
+ retainPermissions?: boolean | undefined;
1164
1164
  }
1165
1165
  /**
1166
1166
  * @public
@@ -1195,7 +1195,7 @@ export interface GetSubscriptionGrantOutput {
1195
1195
  * <p>The Amazon DataZone user who updated the subscription grant.</p>
1196
1196
  * @public
1197
1197
  */
1198
- updatedBy?: string;
1198
+ updatedBy?: string | undefined;
1199
1199
  /**
1200
1200
  * <p>The ID of the Amazon DataZone domain in which the subscription grant exists.</p>
1201
1201
  * @public
@@ -1230,14 +1230,14 @@ export interface GetSubscriptionGrantOutput {
1230
1230
  * <p>The assets for which the subscription grant is created.</p>
1231
1231
  * @public
1232
1232
  */
1233
- assets?: SubscribedAsset[];
1233
+ assets?: SubscribedAsset[] | undefined;
1234
1234
  /**
1235
1235
  * @deprecated
1236
1236
  *
1237
1237
  * <p>The identifier of the subscription.</p>
1238
1238
  * @public
1239
1239
  */
1240
- subscriptionId?: string;
1240
+ subscriptionId?: string | undefined;
1241
1241
  }
1242
1242
  /**
1243
1243
  * @public
@@ -1273,7 +1273,7 @@ export interface GetSubscriptionRequestDetailsOutput {
1273
1273
  * <p>The Amazon DataZone user who updated the subscription request.</p>
1274
1274
  * @public
1275
1275
  */
1276
- updatedBy?: string;
1276
+ updatedBy?: string | undefined;
1277
1277
  /**
1278
1278
  * <p>The Amazon DataZone domain of the subscription request.</p>
1279
1279
  * @public
@@ -1313,12 +1313,12 @@ export interface GetSubscriptionRequestDetailsOutput {
1313
1313
  * <p>The identifier of the Amazon DataZone user who reviewed the subscription request.</p>
1314
1314
  * @public
1315
1315
  */
1316
- reviewerId?: string;
1316
+ reviewerId?: string | undefined;
1317
1317
  /**
1318
1318
  * <p>The decision comment of the subscription request.</p>
1319
1319
  * @public
1320
1320
  */
1321
- decisionComment?: string;
1321
+ decisionComment?: string | undefined;
1322
1322
  }
1323
1323
  /**
1324
1324
  * @public
@@ -1388,7 +1388,7 @@ export interface GetSubscriptionTargetOutput {
1388
1388
  * <p>The Amazon DataZone user who updated the subscription target.</p>
1389
1389
  * @public
1390
1390
  */
1391
- updatedBy?: string;
1391
+ updatedBy?: string | undefined;
1392
1392
  /**
1393
1393
  * <p>The timestamp of when the subscription target was created.</p>
1394
1394
  * @public
@@ -1398,7 +1398,7 @@ export interface GetSubscriptionTargetOutput {
1398
1398
  * <p>The timestamp of when the subscription target was updated.</p>
1399
1399
  * @public
1400
1400
  */
1401
- updatedAt?: Date;
1401
+ updatedAt?: Date | undefined;
1402
1402
  /**
1403
1403
  * <p>The manage access role with which the subscription target was created.</p>
1404
1404
  * @public
@@ -1470,7 +1470,7 @@ export interface TimeSeriesDataPointFormOutput {
1470
1470
  * <p>The revision type of the time series data points form.</p>
1471
1471
  * @public
1472
1472
  */
1473
- typeRevision?: string;
1473
+ typeRevision?: string | undefined;
1474
1474
  /**
1475
1475
  * <p>The timestamp of the time series data points form.</p>
1476
1476
  * @public
@@ -1480,12 +1480,12 @@ export interface TimeSeriesDataPointFormOutput {
1480
1480
  * <p>The content of the time series data points form.</p>
1481
1481
  * @public
1482
1482
  */
1483
- content?: string;
1483
+ content?: string | undefined;
1484
1484
  /**
1485
1485
  * <p>The ID of the time series data points form.</p>
1486
1486
  * @public
1487
1487
  */
1488
- id?: string;
1488
+ id?: string | undefined;
1489
1489
  }
1490
1490
  /**
1491
1491
  * @public
@@ -1496,27 +1496,27 @@ export interface GetTimeSeriesDataPointOutput {
1496
1496
  * get.</p>
1497
1497
  * @public
1498
1498
  */
1499
- domainId?: string;
1499
+ domainId?: string | undefined;
1500
1500
  /**
1501
1501
  * <p>The ID of the asset for which you want to get the data point.</p>
1502
1502
  * @public
1503
1503
  */
1504
- entityId?: string;
1504
+ entityId?: string | undefined;
1505
1505
  /**
1506
1506
  * <p>The type of the asset for which you want to get the data point.</p>
1507
1507
  * @public
1508
1508
  */
1509
- entityType?: TimeSeriesEntityType;
1509
+ entityType?: TimeSeriesEntityType | undefined;
1510
1510
  /**
1511
1511
  * <p>The name of the time series form that houses the data point that you want to get.</p>
1512
1512
  * @public
1513
1513
  */
1514
- formName?: string;
1514
+ formName?: string | undefined;
1515
1515
  /**
1516
1516
  * <p>The time series form that houses the data point that you want to get.</p>
1517
1517
  * @public
1518
1518
  */
1519
- form?: TimeSeriesDataPointFormOutput;
1519
+ form?: TimeSeriesDataPointFormOutput | undefined;
1520
1520
  }
1521
1521
  /**
1522
1522
  * @public
@@ -1536,7 +1536,7 @@ export interface GetUserProfileInput {
1536
1536
  * <p>The type of the user profile.</p>
1537
1537
  * @public
1538
1538
  */
1539
- type?: UserProfileType;
1539
+ type?: UserProfileType | undefined;
1540
1540
  }
1541
1541
  /**
1542
1542
  * @public
@@ -1547,27 +1547,27 @@ export interface GetUserProfileOutput {
1547
1547
  * profile.</p>
1548
1548
  * @public
1549
1549
  */
1550
- domainId?: string;
1550
+ domainId?: string | undefined;
1551
1551
  /**
1552
1552
  * <p>The identifier of the user profile.</p>
1553
1553
  * @public
1554
1554
  */
1555
- id?: string;
1555
+ id?: string | undefined;
1556
1556
  /**
1557
1557
  * <p>The type of the user profile.</p>
1558
1558
  * @public
1559
1559
  */
1560
- type?: UserProfileType;
1560
+ type?: UserProfileType | undefined;
1561
1561
  /**
1562
1562
  * <p>The status of the user profile.</p>
1563
1563
  * @public
1564
1564
  */
1565
- status?: UserProfileStatus;
1565
+ status?: UserProfileStatus | undefined;
1566
1566
  /**
1567
1567
  * <p>The details of the user profile in Amazon DataZone.</p>
1568
1568
  * @public
1569
1569
  */
1570
- details?: UserProfileDetails;
1570
+ details?: UserProfileDetails | undefined;
1571
1571
  }
1572
1572
  /**
1573
1573
  * @public
@@ -1632,7 +1632,7 @@ export interface GetGlossaryOutput {
1632
1632
  * <p>The description of the business glossary.</p>
1633
1633
  * @public
1634
1634
  */
1635
- description?: string;
1635
+ description?: string | undefined;
1636
1636
  /**
1637
1637
  * <p>The status of the business glossary.</p>
1638
1638
  * @public
@@ -1642,22 +1642,22 @@ export interface GetGlossaryOutput {
1642
1642
  * <p>The timestamp of when this business glossary was created.</p>
1643
1643
  * @public
1644
1644
  */
1645
- createdAt?: Date;
1645
+ createdAt?: Date | undefined;
1646
1646
  /**
1647
1647
  * <p>The Amazon DataZone user who created this business glossary.</p>
1648
1648
  * @public
1649
1649
  */
1650
- createdBy?: string;
1650
+ createdBy?: string | undefined;
1651
1651
  /**
1652
1652
  * <p>The timestamp of when the business glossary was updated.</p>
1653
1653
  * @public
1654
1654
  */
1655
- updatedAt?: Date;
1655
+ updatedAt?: Date | undefined;
1656
1656
  /**
1657
1657
  * <p>The Amazon DataZone user who updated the business glossary.</p>
1658
1658
  * @public
1659
1659
  */
1660
- updatedBy?: string;
1660
+ updatedBy?: string | undefined;
1661
1661
  }
1662
1662
  /**
1663
1663
  * @public
@@ -1678,23 +1678,23 @@ export interface UpdateGlossaryInput {
1678
1678
  * <p>The name to be updated as part of the <code>UpdateGlossary</code> action.</p>
1679
1679
  * @public
1680
1680
  */
1681
- name?: string;
1681
+ name?: string | undefined;
1682
1682
  /**
1683
1683
  * <p>The description to be updated as part of the <code>UpdateGlossary</code> action.</p>
1684
1684
  * @public
1685
1685
  */
1686
- description?: string;
1686
+ description?: string | undefined;
1687
1687
  /**
1688
1688
  * <p>The status to be updated as part of the <code>UpdateGlossary</code> action.</p>
1689
1689
  * @public
1690
1690
  */
1691
- status?: GlossaryStatus;
1691
+ status?: GlossaryStatus | undefined;
1692
1692
  /**
1693
1693
  * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
1694
1694
  * request.</p>
1695
1695
  * @public
1696
1696
  */
1697
- clientToken?: string;
1697
+ clientToken?: string | undefined;
1698
1698
  }
1699
1699
  /**
1700
1700
  * @public
@@ -1725,12 +1725,12 @@ export interface UpdateGlossaryOutput {
1725
1725
  * <p>The description to be updated as part of the <code>UpdateGlossary</code> action.</p>
1726
1726
  * @public
1727
1727
  */
1728
- description?: string;
1728
+ description?: string | undefined;
1729
1729
  /**
1730
1730
  * <p>The status to be updated as part of the <code>UpdateGlossary</code> action.</p>
1731
1731
  * @public
1732
1732
  */
1733
- status?: GlossaryStatus;
1733
+ status?: GlossaryStatus | undefined;
1734
1734
  }
1735
1735
  /**
1736
1736
  * @public
@@ -1795,17 +1795,17 @@ export interface GetGlossaryTermOutput {
1795
1795
  * <p>The short decription of the business glossary term.</p>
1796
1796
  * @public
1797
1797
  */
1798
- shortDescription?: string;
1798
+ shortDescription?: string | undefined;
1799
1799
  /**
1800
1800
  * <p>The long description of the business glossary term.</p>
1801
1801
  * @public
1802
1802
  */
1803
- longDescription?: string;
1803
+ longDescription?: string | undefined;
1804
1804
  /**
1805
1805
  * <p>The relations of the business glossary term.</p>
1806
1806
  * @public
1807
1807
  */
1808
- termRelations?: TermRelations;
1808
+ termRelations?: TermRelations | undefined;
1809
1809
  /**
1810
1810
  * <p>The status of the business glossary term.</p>
1811
1811
  * @public
@@ -1815,22 +1815,22 @@ export interface GetGlossaryTermOutput {
1815
1815
  * <p>The timestamp of when the business glossary term was created.</p>
1816
1816
  * @public
1817
1817
  */
1818
- createdAt?: Date;
1818
+ createdAt?: Date | undefined;
1819
1819
  /**
1820
1820
  * <p>The Amazon DataZone user who created the business glossary.</p>
1821
1821
  * @public
1822
1822
  */
1823
- createdBy?: string;
1823
+ createdBy?: string | undefined;
1824
1824
  /**
1825
1825
  * <p>The timestamp of when the business glossary term was updated.</p>
1826
1826
  * @public
1827
1827
  */
1828
- updatedAt?: Date;
1828
+ updatedAt?: Date | undefined;
1829
1829
  /**
1830
1830
  * <p>The Amazon DataZone user who updated the business glossary term.</p>
1831
1831
  * @public
1832
1832
  */
1833
- updatedBy?: string;
1833
+ updatedBy?: string | undefined;
1834
1834
  }
1835
1835
  /**
1836
1836
  * @public
@@ -1846,7 +1846,7 @@ export interface UpdateGlossaryTermInput {
1846
1846
  * <p>The identifier of the business glossary in which a term is to be updated.</p>
1847
1847
  * @public
1848
1848
  */
1849
- glossaryIdentifier?: string;
1849
+ glossaryIdentifier?: string | undefined;
1850
1850
  /**
1851
1851
  * <p>The identifier of the business glossary term that is to be updated.</p>
1852
1852
  * @public
@@ -1856,30 +1856,30 @@ export interface UpdateGlossaryTermInput {
1856
1856
  * <p>The name to be updated as part of the <code>UpdateGlossaryTerm</code> action.</p>
1857
1857
  * @public
1858
1858
  */
1859
- name?: string;
1859
+ name?: string | undefined;
1860
1860
  /**
1861
1861
  * <p>The short description to be updated as part of the <code>UpdateGlossaryTerm</code>
1862
1862
  * action.</p>
1863
1863
  * @public
1864
1864
  */
1865
- shortDescription?: string;
1865
+ shortDescription?: string | undefined;
1866
1866
  /**
1867
1867
  * <p>The long description to be updated as part of the <code>UpdateGlossaryTerm</code>
1868
1868
  * action.</p>
1869
1869
  * @public
1870
1870
  */
1871
- longDescription?: string;
1871
+ longDescription?: string | undefined;
1872
1872
  /**
1873
1873
  * <p>The term relations to be updated as part of the <code>UpdateGlossaryTerm</code>
1874
1874
  * action.</p>
1875
1875
  * @public
1876
1876
  */
1877
- termRelations?: TermRelations;
1877
+ termRelations?: TermRelations | undefined;
1878
1878
  /**
1879
1879
  * <p>The status to be updated as part of the <code>UpdateGlossaryTerm</code> action.</p>
1880
1880
  * @public
1881
1881
  */
1882
- status?: GlossaryTermStatus;
1882
+ status?: GlossaryTermStatus | undefined;
1883
1883
  }
1884
1884
  /**
1885
1885
  * @public
@@ -1916,19 +1916,19 @@ export interface UpdateGlossaryTermOutput {
1916
1916
  * action.</p>
1917
1917
  * @public
1918
1918
  */
1919
- shortDescription?: string;
1919
+ shortDescription?: string | undefined;
1920
1920
  /**
1921
1921
  * <p>The long description to be updated as part of the <code>UpdateGlossaryTerm</code>
1922
1922
  * action.</p>
1923
1923
  * @public
1924
1924
  */
1925
- longDescription?: string;
1925
+ longDescription?: string | undefined;
1926
1926
  /**
1927
1927
  * <p>The term relations to be updated as part of the <code>UpdateGlossaryTerm</code>
1928
1928
  * action.</p>
1929
1929
  * @public
1930
1930
  */
1931
- termRelations?: TermRelations;
1931
+ termRelations?: TermRelations | undefined;
1932
1932
  }
1933
1933
  /**
1934
1934
  * @public
@@ -1948,7 +1948,7 @@ export interface ListAssetFiltersInput {
1948
1948
  * <p>The status of the asset filter.</p>
1949
1949
  * @public
1950
1950
  */
1951
- status?: FilterStatus;
1951
+ status?: FilterStatus | undefined;
1952
1952
  /**
1953
1953
  * <p>When the number of asset filters is greater than the default value for the
1954
1954
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -1958,7 +1958,7 @@ export interface ListAssetFiltersInput {
1958
1958
  * list the next set of asset filters.</p>
1959
1959
  * @public
1960
1960
  */
1961
- nextToken?: string;
1961
+ nextToken?: string | undefined;
1962
1962
  /**
1963
1963
  * <p>The maximum number of asset filters to return in a single call to
1964
1964
  * <code>ListAssetFilters</code>. When the number of asset filters to be listed is greater
@@ -1967,7 +1967,7 @@ export interface ListAssetFiltersInput {
1967
1967
  * next set of asset filters.</p>
1968
1968
  * @public
1969
1969
  */
1970
- maxResults?: number;
1970
+ maxResults?: number | undefined;
1971
1971
  }
1972
1972
  /**
1973
1973
  * @public
@@ -1987,7 +1987,7 @@ export interface ListAssetFiltersOutput {
1987
1987
  * list the next set of asset filters.</p>
1988
1988
  * @public
1989
1989
  */
1990
- nextToken?: string;
1990
+ nextToken?: string | undefined;
1991
1991
  }
1992
1992
  /**
1993
1993
  * @public
@@ -2012,7 +2012,7 @@ export interface ListAssetRevisionsInput {
2012
2012
  * list the next set of revisions.</p>
2013
2013
  * @public
2014
2014
  */
2015
- nextToken?: string;
2015
+ nextToken?: string | undefined;
2016
2016
  /**
2017
2017
  * <p>The maximum number of revisions to return in a single call to
2018
2018
  * <code>ListAssetRevisions</code>. When the number of revisions to be listed is greater
@@ -2021,7 +2021,7 @@ export interface ListAssetRevisionsInput {
2021
2021
  * next set of revisions.</p>
2022
2022
  * @public
2023
2023
  */
2024
- maxResults?: number;
2024
+ maxResults?: number | undefined;
2025
2025
  }
2026
2026
  /**
2027
2027
  * @public
@@ -2031,7 +2031,7 @@ export interface ListAssetRevisionsOutput {
2031
2031
  * <p>The results of the <code>ListAssetRevisions</code> action.</p>
2032
2032
  * @public
2033
2033
  */
2034
- items?: AssetRevision[];
2034
+ items?: AssetRevision[] | undefined;
2035
2035
  /**
2036
2036
  * <p>When the number of revisions is greater than the default value for the
2037
2037
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2041,7 +2041,7 @@ export interface ListAssetRevisionsOutput {
2041
2041
  * list the next set of revisions.</p>
2042
2042
  * @public
2043
2043
  */
2044
- nextToken?: string;
2044
+ nextToken?: string | undefined;
2045
2045
  }
2046
2046
  /**
2047
2047
  * @public
@@ -2066,7 +2066,7 @@ export interface ListDataProductRevisionsInput {
2066
2066
  * revisions.</p>
2067
2067
  * @public
2068
2068
  */
2069
- maxResults?: number;
2069
+ maxResults?: number | undefined;
2070
2070
  /**
2071
2071
  * <p>When the number of data product revisions is greater than the default value for the
2072
2072
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2077,7 +2077,7 @@ export interface ListDataProductRevisionsInput {
2077
2077
  * revisions.</p>
2078
2078
  * @public
2079
2079
  */
2080
- nextToken?: string;
2080
+ nextToken?: string | undefined;
2081
2081
  }
2082
2082
  /**
2083
2083
  * @public
@@ -2098,7 +2098,7 @@ export interface ListDataProductRevisionsOutput {
2098
2098
  * revisions.</p>
2099
2099
  * @public
2100
2100
  */
2101
- nextToken?: string;
2101
+ nextToken?: string | undefined;
2102
2102
  }
2103
2103
  /**
2104
2104
  * @public
@@ -2119,7 +2119,7 @@ export interface ListDataSourceRunActivitiesInput {
2119
2119
  * <p>The status of the data source run.</p>
2120
2120
  * @public
2121
2121
  */
2122
- status?: DataAssetActivityStatus;
2122
+ status?: DataAssetActivityStatus | undefined;
2123
2123
  /**
2124
2124
  * <p>When the number of activities is greater than the default value for the
2125
2125
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2129,7 +2129,7 @@ export interface ListDataSourceRunActivitiesInput {
2129
2129
  * <code>ListDataSourceRunActivities</code> to list the next set of activities.</p>
2130
2130
  * @public
2131
2131
  */
2132
- nextToken?: string;
2132
+ nextToken?: string | undefined;
2133
2133
  /**
2134
2134
  * <p>The maximum number of activities to return in a single call to
2135
2135
  * <code>ListDataSourceRunActivities</code>. When the number of activities to be listed is
@@ -2138,7 +2138,7 @@ export interface ListDataSourceRunActivitiesInput {
2138
2138
  * <code>ListDataSourceRunActivities</code> to list the next set of activities.</p>
2139
2139
  * @public
2140
2140
  */
2141
- maxResults?: number;
2141
+ maxResults?: number | undefined;
2142
2142
  }
2143
2143
  /**
2144
2144
  * @public
@@ -2158,7 +2158,7 @@ export interface ListDataSourceRunActivitiesOutput {
2158
2158
  * <code>ListDataSourceRunActivities</code> to list the next set of activities.</p>
2159
2159
  * @public
2160
2160
  */
2161
- nextToken?: string;
2161
+ nextToken?: string | undefined;
2162
2162
  }
2163
2163
  /**
2164
2164
  * @public
@@ -2187,7 +2187,7 @@ export interface ListEntityOwnersInput {
2187
2187
  * of entities.</p>
2188
2188
  * @public
2189
2189
  */
2190
- maxResults?: number;
2190
+ maxResults?: number | undefined;
2191
2191
  /**
2192
2192
  * <p>When the number of entities is greater than the default value for the
2193
2193
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2197,7 +2197,7 @@ export interface ListEntityOwnersInput {
2197
2197
  * list the next set of entities.</p>
2198
2198
  * @public
2199
2199
  */
2200
- nextToken?: string;
2200
+ nextToken?: string | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * <p>The properties of the domain unit owners group.</p>
@@ -2208,7 +2208,7 @@ export interface OwnerGroupPropertiesOutput {
2208
2208
  * <p>The ID of the domain unit owners group.</p>
2209
2209
  * @public
2210
2210
  */
2211
- groupId?: string;
2211
+ groupId?: string | undefined;
2212
2212
  }
2213
2213
  /**
2214
2214
  * <p>The properties of the owner user.</p>
@@ -2219,7 +2219,7 @@ export interface OwnerUserPropertiesOutput {
2219
2219
  * <p>The ID of the owner user.</p>
2220
2220
  * @public
2221
2221
  */
2222
- userId?: string;
2222
+ userId?: string | undefined;
2223
2223
  }
2224
2224
  /**
2225
2225
  * <p>The ID of the domain unit owners group.</p>
@@ -2281,7 +2281,7 @@ export interface ListEntityOwnersOutput {
2281
2281
  * list the next set of entities.</p>
2282
2282
  * @public
2283
2283
  */
2284
- nextToken?: string;
2284
+ nextToken?: string | undefined;
2285
2285
  }
2286
2286
  /**
2287
2287
  * @public
@@ -2306,7 +2306,7 @@ export interface ListEnvironmentActionsInput {
2306
2306
  * to list the next set of environment actions.</p>
2307
2307
  * @public
2308
2308
  */
2309
- nextToken?: string;
2309
+ nextToken?: string | undefined;
2310
2310
  /**
2311
2311
  * <p>The maximum number of environment actions to return in a single call to
2312
2312
  * <code>ListEnvironmentActions</code>. When the number of environment actions to be listed
@@ -2315,7 +2315,7 @@ export interface ListEnvironmentActionsInput {
2315
2315
  * <code>ListEnvironmentActions</code> to list the next set of environment actions.</p>
2316
2316
  * @public
2317
2317
  */
2318
- maxResults?: number;
2318
+ maxResults?: number | undefined;
2319
2319
  }
2320
2320
  /**
2321
2321
  * <p>The details about the specified action configured for an environment. For example, the
@@ -2353,7 +2353,7 @@ export interface EnvironmentActionSummary {
2353
2353
  * <p>The environment action description.</p>
2354
2354
  * @public
2355
2355
  */
2356
- description?: string;
2356
+ description?: string | undefined;
2357
2357
  }
2358
2358
  /**
2359
2359
  * @public
@@ -2363,7 +2363,7 @@ export interface ListEnvironmentActionsOutput {
2363
2363
  * <p>The results of <code>ListEnvironmentActions</code>.</p>
2364
2364
  * @public
2365
2365
  */
2366
- items?: EnvironmentActionSummary[];
2366
+ items?: EnvironmentActionSummary[] | undefined;
2367
2367
  /**
2368
2368
  * <p>When the number of environment actions is greater than the default value for the
2369
2369
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2373,7 +2373,7 @@ export interface ListEnvironmentActionsOutput {
2373
2373
  * to list the next set of environment actions.</p>
2374
2374
  * @public
2375
2375
  */
2376
- nextToken?: string;
2376
+ nextToken?: string | undefined;
2377
2377
  }
2378
2378
  /**
2379
2379
  * @public
@@ -2392,7 +2392,7 @@ export interface ListEnvironmentBlueprintsInput {
2392
2392
  * <code>ListEnvironmentBlueprints</code> to list the next set of blueprints.</p>
2393
2393
  * @public
2394
2394
  */
2395
- maxResults?: number;
2395
+ maxResults?: number | undefined;
2396
2396
  /**
2397
2397
  * <p>When the number of blueprints in the environment is greater than the default value for
2398
2398
  * the <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2402,17 +2402,17 @@ export interface ListEnvironmentBlueprintsInput {
2402
2402
  * <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
2403
2403
  * @public
2404
2404
  */
2405
- nextToken?: string;
2405
+ nextToken?: string | undefined;
2406
2406
  /**
2407
2407
  * <p>The name of the Amazon DataZone environment.</p>
2408
2408
  * @public
2409
2409
  */
2410
- name?: string;
2410
+ name?: string | undefined;
2411
2411
  /**
2412
2412
  * <p>Specifies whether the environment blueprint is managed by Amazon DataZone.</p>
2413
2413
  * @public
2414
2414
  */
2415
- managed?: boolean;
2415
+ managed?: boolean | undefined;
2416
2416
  }
2417
2417
  /**
2418
2418
  * <p>The details of an environment blueprint summary.</p>
@@ -2433,7 +2433,7 @@ export interface EnvironmentBlueprintSummary {
2433
2433
  * <p>The description of a blueprint.</p>
2434
2434
  * @public
2435
2435
  */
2436
- description?: string;
2436
+ description?: string | undefined;
2437
2437
  /**
2438
2438
  * <p>The provider of the blueprint.</p>
2439
2439
  * @public
@@ -2448,12 +2448,12 @@ export interface EnvironmentBlueprintSummary {
2448
2448
  * <p>The timestamp of when an environment blueprint was created.</p>
2449
2449
  * @public
2450
2450
  */
2451
- createdAt?: Date;
2451
+ createdAt?: Date | undefined;
2452
2452
  /**
2453
2453
  * <p>The timestamp of when the blueprint was enabled.</p>
2454
2454
  * @public
2455
2455
  */
2456
- updatedAt?: Date;
2456
+ updatedAt?: Date | undefined;
2457
2457
  }
2458
2458
  /**
2459
2459
  * @public
@@ -2473,7 +2473,7 @@ export interface ListEnvironmentBlueprintsOutput {
2473
2473
  * <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
2474
2474
  * @public
2475
2475
  */
2476
- nextToken?: string;
2476
+ nextToken?: string | undefined;
2477
2477
  }
2478
2478
  /**
2479
2479
  * @public
@@ -2489,28 +2489,28 @@ export interface ListEnvironmentProfilesInput {
2489
2489
  * profiles.</p>
2490
2490
  * @public
2491
2491
  */
2492
- awsAccountId?: string;
2492
+ awsAccountId?: string | undefined;
2493
2493
  /**
2494
2494
  * <p>The Amazon Web Services region where you want to list environment profiles.</p>
2495
2495
  * @public
2496
2496
  */
2497
- awsAccountRegion?: string;
2497
+ awsAccountRegion?: string | undefined;
2498
2498
  /**
2499
2499
  * <p>The identifier of the blueprint that was used to create the environment profiles that
2500
2500
  * you want to list.</p>
2501
2501
  * @public
2502
2502
  */
2503
- environmentBlueprintIdentifier?: string;
2503
+ environmentBlueprintIdentifier?: string | undefined;
2504
2504
  /**
2505
2505
  * <p>The identifier of the Amazon DataZone project.</p>
2506
2506
  * @public
2507
2507
  */
2508
- projectIdentifier?: string;
2508
+ projectIdentifier?: string | undefined;
2509
2509
  /**
2510
2510
  * <p/>
2511
2511
  * @public
2512
2512
  */
2513
- name?: string;
2513
+ name?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>When the number of environment profiles is greater than the default value for the
2516
2516
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2521,7 +2521,7 @@ export interface ListEnvironmentProfilesInput {
2521
2521
  * profiles.</p>
2522
2522
  * @public
2523
2523
  */
2524
- nextToken?: string;
2524
+ nextToken?: string | undefined;
2525
2525
  /**
2526
2526
  * <p>The maximum number of environment profiles to return in a single call to
2527
2527
  * <code>ListEnvironmentProfiles</code>. When the number of environment profiles to be
@@ -2531,7 +2531,7 @@ export interface ListEnvironmentProfilesInput {
2531
2531
  * profiles.</p>
2532
2532
  * @public
2533
2533
  */
2534
- maxResults?: number;
2534
+ maxResults?: number | undefined;
2535
2535
  }
2536
2536
  /**
2537
2537
  * <p>The details of an environment profile.</p>
@@ -2552,12 +2552,12 @@ export interface EnvironmentProfileSummary {
2552
2552
  * <p>The identifier of an Amazon Web Services account in which an environment profile exists.</p>
2553
2553
  * @public
2554
2554
  */
2555
- awsAccountId?: string;
2555
+ awsAccountId?: string | undefined;
2556
2556
  /**
2557
2557
  * <p>The Amazon Web Services Region in which an environment profile exists.</p>
2558
2558
  * @public
2559
2559
  */
2560
- awsAccountRegion?: string;
2560
+ awsAccountRegion?: string | undefined;
2561
2561
  /**
2562
2562
  * <p>The Amazon DataZone user who created the environment profile.</p>
2563
2563
  * @public
@@ -2567,12 +2567,12 @@ export interface EnvironmentProfileSummary {
2567
2567
  * <p>The timestamp of when an environment profile was created.</p>
2568
2568
  * @public
2569
2569
  */
2570
- createdAt?: Date;
2570
+ createdAt?: Date | undefined;
2571
2571
  /**
2572
2572
  * <p>The timestamp of when the environment profile was updated.</p>
2573
2573
  * @public
2574
2574
  */
2575
- updatedAt?: Date;
2575
+ updatedAt?: Date | undefined;
2576
2576
  /**
2577
2577
  * <p>The name of the environment profile.</p>
2578
2578
  * @public
@@ -2582,7 +2582,7 @@ export interface EnvironmentProfileSummary {
2582
2582
  * <p>The description of the environment profile.</p>
2583
2583
  * @public
2584
2584
  */
2585
- description?: string;
2585
+ description?: string | undefined;
2586
2586
  /**
2587
2587
  * <p>The identifier of a blueprint with which an environment profile is created.</p>
2588
2588
  * @public
@@ -2592,7 +2592,7 @@ export interface EnvironmentProfileSummary {
2592
2592
  * <p>The identifier of a project in which an environment profile exists.</p>
2593
2593
  * @public
2594
2594
  */
2595
- projectId?: string;
2595
+ projectId?: string | undefined;
2596
2596
  }
2597
2597
  /**
2598
2598
  * @public
@@ -2613,7 +2613,7 @@ export interface ListEnvironmentProfilesOutput {
2613
2613
  * profiles.</p>
2614
2614
  * @public
2615
2615
  */
2616
- nextToken?: string;
2616
+ nextToken?: string | undefined;
2617
2617
  }
2618
2618
  /**
2619
2619
  * @public
@@ -2629,17 +2629,17 @@ export interface ListEnvironmentsInput {
2629
2629
  * environments.</p>
2630
2630
  * @public
2631
2631
  */
2632
- awsAccountId?: string;
2632
+ awsAccountId?: string | undefined;
2633
2633
  /**
2634
2634
  * <p>The status of the environments that you want to list.</p>
2635
2635
  * @public
2636
2636
  */
2637
- status?: EnvironmentStatus;
2637
+ status?: EnvironmentStatus | undefined;
2638
2638
  /**
2639
2639
  * <p>The Amazon Web Services region where you want to list environments.</p>
2640
2640
  * @public
2641
2641
  */
2642
- awsAccountRegion?: string;
2642
+ awsAccountRegion?: string | undefined;
2643
2643
  /**
2644
2644
  * <p>The identifier of the Amazon DataZone project.</p>
2645
2645
  * @public
@@ -2649,22 +2649,22 @@ export interface ListEnvironmentsInput {
2649
2649
  * <p>The identifier of the environment profile.</p>
2650
2650
  * @public
2651
2651
  */
2652
- environmentProfileIdentifier?: string;
2652
+ environmentProfileIdentifier?: string | undefined;
2653
2653
  /**
2654
2654
  * <p>The identifier of the Amazon DataZone blueprint.</p>
2655
2655
  * @public
2656
2656
  */
2657
- environmentBlueprintIdentifier?: string;
2657
+ environmentBlueprintIdentifier?: string | undefined;
2658
2658
  /**
2659
2659
  * <p>The provider of the environment.</p>
2660
2660
  * @public
2661
2661
  */
2662
- provider?: string;
2662
+ provider?: string | undefined;
2663
2663
  /**
2664
2664
  * <p>The name of the environment.</p>
2665
2665
  * @public
2666
2666
  */
2667
- name?: string;
2667
+ name?: string | undefined;
2668
2668
  /**
2669
2669
  * <p>The maximum number of environments to return in a single call to
2670
2670
  * <code>ListEnvironments</code>. When the number of environments to be listed is greater
@@ -2673,7 +2673,7 @@ export interface ListEnvironmentsInput {
2673
2673
  * next set of environments.</p>
2674
2674
  * @public
2675
2675
  */
2676
- maxResults?: number;
2676
+ maxResults?: number | undefined;
2677
2677
  /**
2678
2678
  * <p>When the number of environments is greater than the default value for the
2679
2679
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -2683,7 +2683,7 @@ export interface ListEnvironmentsInput {
2683
2683
  * list the next set of environments.</p>
2684
2684
  * @public
2685
2685
  */
2686
- nextToken?: string;
2686
+ nextToken?: string | undefined;
2687
2687
  }
2688
2688
  /**
2689
2689
  * <p>The details of an environment.</p>
@@ -2699,7 +2699,7 @@ export interface EnvironmentSummary {
2699
2699
  * <p>The identifier of the environment.</p>
2700
2700
  * @public
2701
2701
  */
2702
- id?: string;
2702
+ id?: string | undefined;
2703
2703
  /**
2704
2704
  * <p>The identifier of the Amazon DataZone domain in which the environment exists.</p>
2705
2705
  * @public
@@ -2714,12 +2714,12 @@ export interface EnvironmentSummary {
2714
2714
  * <p>The timestamp of when the environment was created.</p>
2715
2715
  * @public
2716
2716
  */
2717
- createdAt?: Date;
2717
+ createdAt?: Date | undefined;
2718
2718
  /**
2719
2719
  * <p>The timestamp of when the environment was updated.</p>
2720
2720
  * @public
2721
2721
  */
2722
- updatedAt?: Date;
2722
+ updatedAt?: Date | undefined;
2723
2723
  /**
2724
2724
  * <p>The name of the environment.</p>
2725
2725
  * @public
@@ -2729,22 +2729,22 @@ export interface EnvironmentSummary {
2729
2729
  * <p>The description of the environment.</p>
2730
2730
  * @public
2731
2731
  */
2732
- description?: string;
2732
+ description?: string | undefined;
2733
2733
  /**
2734
2734
  * <p>The identifier of the environment profile with which the environment was created.</p>
2735
2735
  * @public
2736
2736
  */
2737
- environmentProfileId?: string;
2737
+ environmentProfileId?: string | undefined;
2738
2738
  /**
2739
2739
  * <p>The identifier of the Amazon Web Services account in which an environment exists.</p>
2740
2740
  * @public
2741
2741
  */
2742
- awsAccountId?: string;
2742
+ awsAccountId?: string | undefined;
2743
2743
  /**
2744
2744
  * <p>The Amazon Web Services Region in which an environment exists.</p>
2745
2745
  * @public
2746
2746
  */
2747
- awsAccountRegion?: string;
2747
+ awsAccountRegion?: string | undefined;
2748
2748
  /**
2749
2749
  * <p>The provider of the environment.</p>
2750
2750
  * @public
@@ -2754,7 +2754,7 @@ export interface EnvironmentSummary {
2754
2754
  * <p>The status of the environment.</p>
2755
2755
  * @public
2756
2756
  */
2757
- status?: EnvironmentStatus;
2757
+ status?: EnvironmentStatus | undefined;
2758
2758
  }
2759
2759
  /**
2760
2760
  * @public
@@ -2774,7 +2774,7 @@ export interface ListEnvironmentsOutput {
2774
2774
  * list the next set of environments.</p>
2775
2775
  * @public
2776
2776
  */
2777
- nextToken?: string;
2777
+ nextToken?: string | undefined;
2778
2778
  }
2779
2779
  /**
2780
2780
  * @public
@@ -2814,7 +2814,7 @@ export interface GetListingInput {
2814
2814
  * <p>The revision of the listing.</p>
2815
2815
  * @public
2816
2816
  */
2817
- listingRevision?: string;
2817
+ listingRevision?: string | undefined;
2818
2818
  }
2819
2819
  /**
2820
2820
  * <p>The details of a listing (aka asset published in a Amazon DataZone catalog).</p>
@@ -2881,42 +2881,42 @@ export interface GetListingOutput {
2881
2881
  * <p>The timestamp of when the listing was created.</p>
2882
2882
  * @public
2883
2883
  */
2884
- createdAt?: Date;
2884
+ createdAt?: Date | undefined;
2885
2885
  /**
2886
2886
  * <p>The timestamp of when the listing was updated.</p>
2887
2887
  * @public
2888
2888
  */
2889
- updatedAt?: Date;
2889
+ updatedAt?: Date | undefined;
2890
2890
  /**
2891
2891
  * <p>The Amazon DataZone user who created the listing.</p>
2892
2892
  * @public
2893
2893
  */
2894
- createdBy?: string;
2894
+ createdBy?: string | undefined;
2895
2895
  /**
2896
2896
  * <p>The Amazon DataZone user who updated the listing.</p>
2897
2897
  * @public
2898
2898
  */
2899
- updatedBy?: string;
2899
+ updatedBy?: string | undefined;
2900
2900
  /**
2901
2901
  * <p>The details of a listing.</p>
2902
2902
  * @public
2903
2903
  */
2904
- item?: ListingItem;
2904
+ item?: ListingItem | undefined;
2905
2905
  /**
2906
2906
  * <p>The name of the listing.</p>
2907
2907
  * @public
2908
2908
  */
2909
- name?: string;
2909
+ name?: string | undefined;
2910
2910
  /**
2911
2911
  * <p>The description of the listing.</p>
2912
2912
  * @public
2913
2913
  */
2914
- description?: string;
2914
+ description?: string | undefined;
2915
2915
  /**
2916
2916
  * <p>The status of the listing.</p>
2917
2917
  * @public
2918
2918
  */
2919
- status?: ListingStatus;
2919
+ status?: ListingStatus | undefined;
2920
2920
  }
2921
2921
  /**
2922
2922
  * @public
@@ -2959,7 +2959,7 @@ export interface ListLineageNodeHistoryInput {
2959
2959
  * subsequent call to ListLineageNodeHistory to list the next set of items.</p>
2960
2960
  * @public
2961
2961
  */
2962
- maxResults?: number;
2962
+ maxResults?: number | undefined;
2963
2963
  /**
2964
2964
  * <p>When the number of history items is greater than the default value for the MaxResults
2965
2965
  * parameter, or if you explicitly specify a value for MaxResults that is less than the number
@@ -2968,7 +2968,7 @@ export interface ListLineageNodeHistoryInput {
2968
2968
  * items.</p>
2969
2969
  * @public
2970
2970
  */
2971
- nextToken?: string;
2971
+ nextToken?: string | undefined;
2972
2972
  /**
2973
2973
  * <p>The ID of the data lineage node whose history you want to list.</p>
2974
2974
  * @public
@@ -2981,24 +2981,24 @@ export interface ListLineageNodeHistoryInput {
2981
2981
  * neighbors only.</p>
2982
2982
  * @public
2983
2983
  */
2984
- direction?: EdgeDirection;
2984
+ direction?: EdgeDirection | undefined;
2985
2985
  /**
2986
2986
  * <p>Specifies whether the action is to return data lineage node history from the time after
2987
2987
  * the event timestamp.</p>
2988
2988
  * @public
2989
2989
  */
2990
- eventTimestampGTE?: Date;
2990
+ eventTimestampGTE?: Date | undefined;
2991
2991
  /**
2992
2992
  * <p>Specifies whether the action is to return data lineage node history from the time prior
2993
2993
  * of the event timestamp.</p>
2994
2994
  * @public
2995
2995
  */
2996
- eventTimestampLTE?: Date;
2996
+ eventTimestampLTE?: Date | undefined;
2997
2997
  /**
2998
2998
  * <p>The order by which you want data lineage node history to be sorted.</p>
2999
2999
  * @public
3000
3000
  */
3001
- sortOrder?: SortOrder;
3001
+ sortOrder?: SortOrder | undefined;
3002
3002
  }
3003
3003
  /**
3004
3004
  * <p>The summary of the data lineage node.</p>
@@ -3014,32 +3014,32 @@ export interface LineageNodeSummary {
3014
3014
  * <p>The name of the data lineage node.</p>
3015
3015
  * @public
3016
3016
  */
3017
- name?: string;
3017
+ name?: string | undefined;
3018
3018
  /**
3019
3019
  * <p>The description of the data lineage node.</p>
3020
3020
  * @public
3021
3021
  */
3022
- description?: string;
3022
+ description?: string | undefined;
3023
3023
  /**
3024
3024
  * <p>The timestamp at which the data lineage node was created.</p>
3025
3025
  * @public
3026
3026
  */
3027
- createdAt?: Date;
3027
+ createdAt?: Date | undefined;
3028
3028
  /**
3029
3029
  * <p>The user who created the data lineage node.</p>
3030
3030
  * @public
3031
3031
  */
3032
- createdBy?: string;
3032
+ createdBy?: string | undefined;
3033
3033
  /**
3034
3034
  * <p>The timestamp at which the data lineage node was updated.</p>
3035
3035
  * @public
3036
3036
  */
3037
- updatedAt?: Date;
3037
+ updatedAt?: Date | undefined;
3038
3038
  /**
3039
3039
  * <p>The user who updated the data lineage node.</p>
3040
3040
  * @public
3041
3041
  */
3042
- updatedBy?: string;
3042
+ updatedBy?: string | undefined;
3043
3043
  /**
3044
3044
  * <p>The ID of the data lineage node.</p>
3045
3045
  * @public
@@ -3054,17 +3054,17 @@ export interface LineageNodeSummary {
3054
3054
  * <p>The type of the revision of the data lineage node.</p>
3055
3055
  * @public
3056
3056
  */
3057
- typeRevision?: string;
3057
+ typeRevision?: string | undefined;
3058
3058
  /**
3059
3059
  * <p>The alternate ID of the data lineage node.</p>
3060
3060
  * @public
3061
3061
  */
3062
- sourceIdentifier?: string;
3062
+ sourceIdentifier?: string | undefined;
3063
3063
  /**
3064
3064
  * <p>The event timestamp of the data lineage node.</p>
3065
3065
  * @public
3066
3066
  */
3067
- eventTimestamp?: Date;
3067
+ eventTimestamp?: Date | undefined;
3068
3068
  }
3069
3069
  /**
3070
3070
  * @public
@@ -3074,7 +3074,7 @@ export interface ListLineageNodeHistoryOutput {
3074
3074
  * <p>The nodes returned by the ListLineageNodeHistory action.</p>
3075
3075
  * @public
3076
3076
  */
3077
- nodes?: LineageNodeSummary[];
3077
+ nodes?: LineageNodeSummary[] | undefined;
3078
3078
  /**
3079
3079
  * <p>When the number of history items is greater than the default value for the MaxResults
3080
3080
  * parameter, or if you explicitly specify a value for MaxResults that is less than the number
@@ -3083,7 +3083,7 @@ export interface ListLineageNodeHistoryOutput {
3083
3083
  * items.</p>
3084
3084
  * @public
3085
3085
  */
3086
- nextToken?: string;
3086
+ nextToken?: string | undefined;
3087
3087
  }
3088
3088
  /**
3089
3089
  * @public
@@ -3127,22 +3127,22 @@ export interface ListNotificationsInput {
3127
3127
  * <p>The time after which you want to list notifications.</p>
3128
3128
  * @public
3129
3129
  */
3130
- afterTimestamp?: Date;
3130
+ afterTimestamp?: Date | undefined;
3131
3131
  /**
3132
3132
  * <p>The time before which you want to list notifications.</p>
3133
3133
  * @public
3134
3134
  */
3135
- beforeTimestamp?: Date;
3135
+ beforeTimestamp?: Date | undefined;
3136
3136
  /**
3137
3137
  * <p>The subjects of notifications.</p>
3138
3138
  * @public
3139
3139
  */
3140
- subjects?: string[];
3140
+ subjects?: string[] | undefined;
3141
3141
  /**
3142
3142
  * <p>The task status of notifications.</p>
3143
3143
  * @public
3144
3144
  */
3145
- taskStatus?: TaskStatus;
3145
+ taskStatus?: TaskStatus | undefined;
3146
3146
  /**
3147
3147
  * <p>The maximum number of notifications to return in a single call to
3148
3148
  * <code>ListNotifications</code>. When the number of notifications to be listed is greater
@@ -3151,7 +3151,7 @@ export interface ListNotificationsInput {
3151
3151
  * next set of notifications.</p>
3152
3152
  * @public
3153
3153
  */
3154
- maxResults?: number;
3154
+ maxResults?: number | undefined;
3155
3155
  /**
3156
3156
  * <p>When the number of notifications is greater than the default value for the
3157
3157
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3161,7 +3161,7 @@ export interface ListNotificationsInput {
3161
3161
  * list the next set of notifications.</p>
3162
3162
  * @public
3163
3163
  */
3164
- nextToken?: string;
3164
+ nextToken?: string | undefined;
3165
3165
  }
3166
3166
  /**
3167
3167
  * @public
@@ -3193,7 +3193,7 @@ export interface NotificationResource {
3193
3193
  * <p>The name of the resource mentioned in a notification.</p>
3194
3194
  * @public
3195
3195
  */
3196
- name?: string;
3196
+ name?: string | undefined;
3197
3197
  }
3198
3198
  /**
3199
3199
  * @public
@@ -3270,7 +3270,7 @@ export interface NotificationOutput {
3270
3270
  * <p>The status included in the notification.</p>
3271
3271
  * @public
3272
3272
  */
3273
- status?: TaskStatus;
3273
+ status?: TaskStatus | undefined;
3274
3274
  /**
3275
3275
  * <p>The action link included in the notification.</p>
3276
3276
  * @public
@@ -3290,7 +3290,7 @@ export interface NotificationOutput {
3290
3290
  * <p>The metadata included in the notification.</p>
3291
3291
  * @public
3292
3292
  */
3293
- metadata?: Record<string, string>;
3293
+ metadata?: Record<string, string> | undefined;
3294
3294
  }
3295
3295
  /**
3296
3296
  * @public
@@ -3300,7 +3300,7 @@ export interface ListNotificationsOutput {
3300
3300
  * <p>The results of the <code>ListNotifications</code> action.</p>
3301
3301
  * @public
3302
3302
  */
3303
- notifications?: NotificationOutput[];
3303
+ notifications?: NotificationOutput[] | undefined;
3304
3304
  /**
3305
3305
  * <p>When the number of notifications is greater than the default value for the
3306
3306
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3310,7 +3310,7 @@ export interface ListNotificationsOutput {
3310
3310
  * list the next set of notifications.</p>
3311
3311
  * @public
3312
3312
  */
3313
- nextToken?: string;
3313
+ nextToken?: string | undefined;
3314
3314
  }
3315
3315
  /**
3316
3316
  * @public
@@ -3344,7 +3344,7 @@ export interface ListPolicyGrantsInput {
3344
3344
  * grants.</p>
3345
3345
  * @public
3346
3346
  */
3347
- maxResults?: number;
3347
+ maxResults?: number | undefined;
3348
3348
  /**
3349
3349
  * <p>When the number of grants is greater than the default value for the
3350
3350
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3354,7 +3354,7 @@ export interface ListPolicyGrantsInput {
3354
3354
  * grants.</p>
3355
3355
  * @public
3356
3356
  */
3357
- nextToken?: string;
3357
+ nextToken?: string | undefined;
3358
3358
  }
3359
3359
  /**
3360
3360
  * <p>A member of the policy grant list.</p>
@@ -3365,22 +3365,22 @@ export interface PolicyGrantMember {
3365
3365
  * <p>The principal of the policy grant member.</p>
3366
3366
  * @public
3367
3367
  */
3368
- principal?: PolicyGrantPrincipal;
3368
+ principal?: PolicyGrantPrincipal | undefined;
3369
3369
  /**
3370
3370
  * <p>The details of the policy grant member.</p>
3371
3371
  * @public
3372
3372
  */
3373
- detail?: PolicyGrantDetail;
3373
+ detail?: PolicyGrantDetail | undefined;
3374
3374
  /**
3375
3375
  * <p>Specifies the timestamp at which policy grant member was created.</p>
3376
3376
  * @public
3377
3377
  */
3378
- createdAt?: Date;
3378
+ createdAt?: Date | undefined;
3379
3379
  /**
3380
3380
  * <p>Specifies the user who created the policy grant member.</p>
3381
3381
  * @public
3382
3382
  */
3383
- createdBy?: string;
3383
+ createdBy?: string | undefined;
3384
3384
  }
3385
3385
  /**
3386
3386
  * @public
@@ -3400,7 +3400,7 @@ export interface ListPolicyGrantsOutput {
3400
3400
  * grants.</p>
3401
3401
  * @public
3402
3402
  */
3403
- nextToken?: string;
3403
+ nextToken?: string | undefined;
3404
3404
  }
3405
3405
  /**
3406
3406
  * @public
@@ -3432,12 +3432,12 @@ export interface ListProjectMembershipsInput {
3432
3432
  * <p>The method by which you want to sort the project memberships.</p>
3433
3433
  * @public
3434
3434
  */
3435
- sortBy?: SortFieldProject;
3435
+ sortBy?: SortFieldProject | undefined;
3436
3436
  /**
3437
3437
  * <p>The sort order of the project memberships.</p>
3438
3438
  * @public
3439
3439
  */
3440
- sortOrder?: SortOrder;
3440
+ sortOrder?: SortOrder | undefined;
3441
3441
  /**
3442
3442
  * <p>When the number of memberships is greater than the default value for the
3443
3443
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3447,7 +3447,7 @@ export interface ListProjectMembershipsInput {
3447
3447
  * to list the next set of memberships.</p>
3448
3448
  * @public
3449
3449
  */
3450
- nextToken?: string;
3450
+ nextToken?: string | undefined;
3451
3451
  /**
3452
3452
  * <p>The maximum number of memberships to return in a single call to
3453
3453
  * <code>ListProjectMemberships</code>. When the number of memberships to be listed is
@@ -3456,7 +3456,7 @@ export interface ListProjectMembershipsInput {
3456
3456
  * <code>ListProjectMemberships</code> to list the next set of memberships.</p>
3457
3457
  * @public
3458
3458
  */
3459
- maxResults?: number;
3459
+ maxResults?: number | undefined;
3460
3460
  }
3461
3461
  /**
3462
3462
  * <p>The details of a group in Amazon DataZone.</p>
@@ -3556,7 +3556,7 @@ export interface ListProjectMembershipsOutput {
3556
3556
  * to list the next set of memberships.</p>
3557
3557
  * @public
3558
3558
  */
3559
- nextToken?: string;
3559
+ nextToken?: string | undefined;
3560
3560
  }
3561
3561
  /**
3562
3562
  * @public
@@ -3571,17 +3571,17 @@ export interface ListProjectsInput {
3571
3571
  * <p>The identifier of the Amazon DataZone user.</p>
3572
3572
  * @public
3573
3573
  */
3574
- userIdentifier?: string;
3574
+ userIdentifier?: string | undefined;
3575
3575
  /**
3576
3576
  * <p>The identifier of a group.</p>
3577
3577
  * @public
3578
3578
  */
3579
- groupIdentifier?: string;
3579
+ groupIdentifier?: string | undefined;
3580
3580
  /**
3581
3581
  * <p>The name of the project.</p>
3582
3582
  * @public
3583
3583
  */
3584
- name?: string;
3584
+ name?: string | undefined;
3585
3585
  /**
3586
3586
  * <p>When the number of projects is greater than the default value for the
3587
3587
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3591,7 +3591,7 @@ export interface ListProjectsInput {
3591
3591
  * the next set of projects.</p>
3592
3592
  * @public
3593
3593
  */
3594
- nextToken?: string;
3594
+ nextToken?: string | undefined;
3595
3595
  /**
3596
3596
  * <p>The maximum number of projects to return in a single call to <code>ListProjects</code>.
3597
3597
  * When the number of projects to be listed is greater than the value of
@@ -3600,7 +3600,7 @@ export interface ListProjectsInput {
3600
3600
  * projects.</p>
3601
3601
  * @public
3602
3602
  */
3603
- maxResults?: number;
3603
+ maxResults?: number | undefined;
3604
3604
  }
3605
3605
  /**
3606
3606
  * <p>The details of a Amazon DataZone project.</p>
@@ -3626,18 +3626,18 @@ export interface ProjectSummary {
3626
3626
  * <p>The description of a project.</p>
3627
3627
  * @public
3628
3628
  */
3629
- description?: string;
3629
+ description?: string | undefined;
3630
3630
  /**
3631
3631
  * <p>The status of the project.</p>
3632
3632
  * @public
3633
3633
  */
3634
- projectStatus?: ProjectStatus;
3634
+ projectStatus?: ProjectStatus | undefined;
3635
3635
  /**
3636
3636
  * <p>Specifies the error message that is returned if the operation cannot be successfully
3637
3637
  * completed.</p>
3638
3638
  * @public
3639
3639
  */
3640
- failureReasons?: ProjectDeletionError[];
3640
+ failureReasons?: ProjectDeletionError[] | undefined;
3641
3641
  /**
3642
3642
  * <p>The Amazon DataZone user who created the project.</p>
3643
3643
  * @public
@@ -3647,17 +3647,17 @@ export interface ProjectSummary {
3647
3647
  * <p>The timestamp of when a project was created.</p>
3648
3648
  * @public
3649
3649
  */
3650
- createdAt?: Date;
3650
+ createdAt?: Date | undefined;
3651
3651
  /**
3652
3652
  * <p>The timestamp of when the project was updated.</p>
3653
3653
  * @public
3654
3654
  */
3655
- updatedAt?: Date;
3655
+ updatedAt?: Date | undefined;
3656
3656
  /**
3657
3657
  * <p>The ID of the domain unit.</p>
3658
3658
  * @public
3659
3659
  */
3660
- domainUnitId?: string;
3660
+ domainUnitId?: string | undefined;
3661
3661
  }
3662
3662
  /**
3663
3663
  * @public
@@ -3667,7 +3667,7 @@ export interface ListProjectsOutput {
3667
3667
  * <p>The results of the <code>ListProjects</code> action.</p>
3668
3668
  * @public
3669
3669
  */
3670
- items?: ProjectSummary[];
3670
+ items?: ProjectSummary[] | undefined;
3671
3671
  /**
3672
3672
  * <p>When the number of projects is greater than the default value for the
3673
3673
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3677,7 +3677,7 @@ export interface ListProjectsOutput {
3677
3677
  * the next set of projects.</p>
3678
3678
  * @public
3679
3679
  */
3680
- nextToken?: string;
3680
+ nextToken?: string | undefined;
3681
3681
  }
3682
3682
  /**
3683
3683
  * @public
@@ -3704,37 +3704,37 @@ export interface ListSubscriptionGrantsInput {
3704
3704
  * <p>The identifier of the Amazon DataZone environment.</p>
3705
3705
  * @public
3706
3706
  */
3707
- environmentId?: string;
3707
+ environmentId?: string | undefined;
3708
3708
  /**
3709
3709
  * <p>The identifier of the subscription target.</p>
3710
3710
  * @public
3711
3711
  */
3712
- subscriptionTargetId?: string;
3712
+ subscriptionTargetId?: string | undefined;
3713
3713
  /**
3714
3714
  * <p>The identifier of the subscribed listing.</p>
3715
3715
  * @public
3716
3716
  */
3717
- subscribedListingId?: string;
3717
+ subscribedListingId?: string | undefined;
3718
3718
  /**
3719
3719
  * <p>The identifier of the subscription.</p>
3720
3720
  * @public
3721
3721
  */
3722
- subscriptionId?: string;
3722
+ subscriptionId?: string | undefined;
3723
3723
  /**
3724
3724
  * <p>The ID of the owning project of the subscription grants.</p>
3725
3725
  * @public
3726
3726
  */
3727
- owningProjectId?: string;
3727
+ owningProjectId?: string | undefined;
3728
3728
  /**
3729
3729
  * <p>Specifies the way of sorting the results of this action.</p>
3730
3730
  * @public
3731
3731
  */
3732
- sortBy?: SortKey;
3732
+ sortBy?: SortKey | undefined;
3733
3733
  /**
3734
3734
  * <p>Specifies the sort order of this action.</p>
3735
3735
  * @public
3736
3736
  */
3737
- sortOrder?: SortOrder;
3737
+ sortOrder?: SortOrder | undefined;
3738
3738
  /**
3739
3739
  * <p>The maximum number of subscription grants to return in a single call to
3740
3740
  * <code>ListSubscriptionGrants</code>. When the number of subscription grants to be listed
@@ -3743,7 +3743,7 @@ export interface ListSubscriptionGrantsInput {
3743
3743
  * <code>ListSubscriptionGrants</code> to list the next set of subscription grants.</p>
3744
3744
  * @public
3745
3745
  */
3746
- maxResults?: number;
3746
+ maxResults?: number | undefined;
3747
3747
  /**
3748
3748
  * <p>When the number of subscription grants is greater than the default value for the
3749
3749
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3753,7 +3753,7 @@ export interface ListSubscriptionGrantsInput {
3753
3753
  * to list the next set of subscription grants.</p>
3754
3754
  * @public
3755
3755
  */
3756
- nextToken?: string;
3756
+ nextToken?: string | undefined;
3757
3757
  }
3758
3758
  /**
3759
3759
  * <p>The details of the subscription grant.</p>
@@ -3774,7 +3774,7 @@ export interface SubscriptionGrantSummary {
3774
3774
  * <p>The Amazon DataZone user who updated the subscription grant.</p>
3775
3775
  * @public
3776
3776
  */
3777
- updatedBy?: string;
3777
+ updatedBy?: string | undefined;
3778
3778
  /**
3779
3779
  * <p>The identifier of the Amazon DataZone domain in which a subscription grant exists.</p>
3780
3780
  * @public
@@ -3809,14 +3809,14 @@ export interface SubscriptionGrantSummary {
3809
3809
  * <p>The assets included in the subscription grant.</p>
3810
3810
  * @public
3811
3811
  */
3812
- assets?: SubscribedAsset[];
3812
+ assets?: SubscribedAsset[] | undefined;
3813
3813
  /**
3814
3814
  * @deprecated
3815
3815
  *
3816
3816
  * <p>The ID of the subscription.</p>
3817
3817
  * @public
3818
3818
  */
3819
- subscriptionId?: string;
3819
+ subscriptionId?: string | undefined;
3820
3820
  }
3821
3821
  /**
3822
3822
  * @public
@@ -3836,7 +3836,7 @@ export interface ListSubscriptionGrantsOutput {
3836
3836
  * to list the next set of subscription grants.</p>
3837
3837
  * @public
3838
3838
  */
3839
- nextToken?: string;
3839
+ nextToken?: string | undefined;
3840
3840
  }
3841
3841
  /**
3842
3842
  * @public
@@ -3855,32 +3855,32 @@ export interface ListSubscriptionRequestsInput {
3855
3855
  * </note>
3856
3856
  * @public
3857
3857
  */
3858
- status?: SubscriptionRequestStatus;
3858
+ status?: SubscriptionRequestStatus | undefined;
3859
3859
  /**
3860
3860
  * <p>The identifier of the subscribed listing.</p>
3861
3861
  * @public
3862
3862
  */
3863
- subscribedListingId?: string;
3863
+ subscribedListingId?: string | undefined;
3864
3864
  /**
3865
3865
  * <p>The identifier of the project for the subscription requests.</p>
3866
3866
  * @public
3867
3867
  */
3868
- owningProjectId?: string;
3868
+ owningProjectId?: string | undefined;
3869
3869
  /**
3870
3870
  * <p>The identifier of the subscription request approver's project.</p>
3871
3871
  * @public
3872
3872
  */
3873
- approverProjectId?: string;
3873
+ approverProjectId?: string | undefined;
3874
3874
  /**
3875
3875
  * <p>Specifies the way to sort the results of this action.</p>
3876
3876
  * @public
3877
3877
  */
3878
- sortBy?: SortKey;
3878
+ sortBy?: SortKey | undefined;
3879
3879
  /**
3880
3880
  * <p>Specifies the sort order for the results of this action.</p>
3881
3881
  * @public
3882
3882
  */
3883
- sortOrder?: SortOrder;
3883
+ sortOrder?: SortOrder | undefined;
3884
3884
  /**
3885
3885
  * <p>The maximum number of subscription requests to return in a single call to
3886
3886
  * <code>ListSubscriptionRequests</code>. When the number of subscription requests to be
@@ -3890,7 +3890,7 @@ export interface ListSubscriptionRequestsInput {
3890
3890
  * requests.</p>
3891
3891
  * @public
3892
3892
  */
3893
- maxResults?: number;
3893
+ maxResults?: number | undefined;
3894
3894
  /**
3895
3895
  * <p>When the number of subscription requests is greater than the default value for the
3896
3896
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -3901,7 +3901,7 @@ export interface ListSubscriptionRequestsInput {
3901
3901
  * requests.</p>
3902
3902
  * @public
3903
3903
  */
3904
- nextToken?: string;
3904
+ nextToken?: string | undefined;
3905
3905
  }
3906
3906
  /**
3907
3907
  * <p>The details of the subscription request.</p>
@@ -3922,7 +3922,7 @@ export interface SubscriptionRequestSummary {
3922
3922
  * <p>The identifier of the Amazon DataZone user who updated the subscription request.</p>
3923
3923
  * @public
3924
3924
  */
3925
- updatedBy?: string;
3925
+ updatedBy?: string | undefined;
3926
3926
  /**
3927
3927
  * <p>The identifier of the Amazon DataZone domain in which a subscription request exists.</p>
3928
3928
  * @public
@@ -3962,12 +3962,12 @@ export interface SubscriptionRequestSummary {
3962
3962
  * <p>The identifier of the subscription request reviewer.</p>
3963
3963
  * @public
3964
3964
  */
3965
- reviewerId?: string;
3965
+ reviewerId?: string | undefined;
3966
3966
  /**
3967
3967
  * <p>The decision comment of the subscription request.</p>
3968
3968
  * @public
3969
3969
  */
3970
- decisionComment?: string;
3970
+ decisionComment?: string | undefined;
3971
3971
  }
3972
3972
  /**
3973
3973
  * @public
@@ -3988,7 +3988,7 @@ export interface ListSubscriptionRequestsOutput {
3988
3988
  * requests.</p>
3989
3989
  * @public
3990
3990
  */
3991
- nextToken?: string;
3991
+ nextToken?: string | undefined;
3992
3992
  }
3993
3993
  /**
3994
3994
  * @public
@@ -4004,7 +4004,7 @@ export interface ListSubscriptionsInput {
4004
4004
  * list.</p>
4005
4005
  * @public
4006
4006
  */
4007
- subscriptionRequestIdentifier?: string;
4007
+ subscriptionRequestIdentifier?: string | undefined;
4008
4008
  /**
4009
4009
  * <p>The status of the subscriptions that you want to list.</p>
4010
4010
  * <note>
@@ -4013,33 +4013,33 @@ export interface ListSubscriptionsInput {
4013
4013
  * </note>
4014
4014
  * @public
4015
4015
  */
4016
- status?: SubscriptionStatus;
4016
+ status?: SubscriptionStatus | undefined;
4017
4017
  /**
4018
4018
  * <p>The identifier of the subscribed listing for the subscriptions that you want to
4019
4019
  * list.</p>
4020
4020
  * @public
4021
4021
  */
4022
- subscribedListingId?: string;
4022
+ subscribedListingId?: string | undefined;
4023
4023
  /**
4024
4024
  * <p>The identifier of the owning project.</p>
4025
4025
  * @public
4026
4026
  */
4027
- owningProjectId?: string;
4027
+ owningProjectId?: string | undefined;
4028
4028
  /**
4029
4029
  * <p>The identifier of the project for the subscription's approver.</p>
4030
4030
  * @public
4031
4031
  */
4032
- approverProjectId?: string;
4032
+ approverProjectId?: string | undefined;
4033
4033
  /**
4034
4034
  * <p>Specifies the way in which the results of this action are to be sorted.</p>
4035
4035
  * @public
4036
4036
  */
4037
- sortBy?: SortKey;
4037
+ sortBy?: SortKey | undefined;
4038
4038
  /**
4039
4039
  * <p>Specifies the sort order for the results of this action.</p>
4040
4040
  * @public
4041
4041
  */
4042
- sortOrder?: SortOrder;
4042
+ sortOrder?: SortOrder | undefined;
4043
4043
  /**
4044
4044
  * <p>The maximum number of subscriptions to return in a single call to
4045
4045
  * <code>ListSubscriptions</code>. When the number of subscriptions to be listed is greater
@@ -4048,7 +4048,7 @@ export interface ListSubscriptionsInput {
4048
4048
  * next set of Subscriptions. </p>
4049
4049
  * @public
4050
4050
  */
4051
- maxResults?: number;
4051
+ maxResults?: number | undefined;
4052
4052
  /**
4053
4053
  * <p>When the number of subscriptions is greater than the default value for the
4054
4054
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -4058,7 +4058,7 @@ export interface ListSubscriptionsInput {
4058
4058
  * list the next set of subscriptions.</p>
4059
4059
  * @public
4060
4060
  */
4061
- nextToken?: string;
4061
+ nextToken?: string | undefined;
4062
4062
  }
4063
4063
  /**
4064
4064
  * <p>The details of the subscription.</p>
@@ -4079,7 +4079,7 @@ export interface SubscriptionSummary {
4079
4079
  * <p>The Amazon DataZone user who updated the subscription.</p>
4080
4080
  * @public
4081
4081
  */
4082
- updatedBy?: string;
4082
+ updatedBy?: string | undefined;
4083
4083
  /**
4084
4084
  * <p>The identifier of the Amazon DataZone domain in which a subscription exists.</p>
4085
4085
  * @public
@@ -4114,12 +4114,12 @@ export interface SubscriptionSummary {
4114
4114
  * <p>The identifier of the subscription request for the subscription.</p>
4115
4115
  * @public
4116
4116
  */
4117
- subscriptionRequestId?: string;
4117
+ subscriptionRequestId?: string | undefined;
4118
4118
  /**
4119
4119
  * <p>The retain permissions included in the subscription.</p>
4120
4120
  * @public
4121
4121
  */
4122
- retainPermissions?: boolean;
4122
+ retainPermissions?: boolean | undefined;
4123
4123
  }
4124
4124
  /**
4125
4125
  * @public
@@ -4139,7 +4139,7 @@ export interface ListSubscriptionsOutput {
4139
4139
  * list the next set of subscriptions.</p>
4140
4140
  * @public
4141
4141
  */
4142
- nextToken?: string;
4142
+ nextToken?: string | undefined;
4143
4143
  }
4144
4144
  /**
4145
4145
  * @public
@@ -4160,12 +4160,12 @@ export interface ListSubscriptionTargetsInput {
4160
4160
  * <p>Specifies the way in which the results of this action are to be sorted.</p>
4161
4161
  * @public
4162
4162
  */
4163
- sortBy?: SortKey;
4163
+ sortBy?: SortKey | undefined;
4164
4164
  /**
4165
4165
  * <p>Specifies the sort order for the results of this action.</p>
4166
4166
  * @public
4167
4167
  */
4168
- sortOrder?: SortOrder;
4168
+ sortOrder?: SortOrder | undefined;
4169
4169
  /**
4170
4170
  * <p>The maximum number of subscription targets to return in a single call to
4171
4171
  * <code>ListSubscriptionTargets</code>. When the number of subscription targets to be
@@ -4175,7 +4175,7 @@ export interface ListSubscriptionTargetsInput {
4175
4175
  * </p>
4176
4176
  * @public
4177
4177
  */
4178
- maxResults?: number;
4178
+ maxResults?: number | undefined;
4179
4179
  /**
4180
4180
  * <p>When the number of subscription targets is greater than the default value for the
4181
4181
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -4186,7 +4186,7 @@ export interface ListSubscriptionTargetsInput {
4186
4186
  * targets.</p>
4187
4187
  * @public
4188
4188
  */
4189
- nextToken?: string;
4189
+ nextToken?: string | undefined;
4190
4190
  }
4191
4191
  /**
4192
4192
  * <p>The details of the subscription target.</p>
@@ -4237,7 +4237,7 @@ export interface SubscriptionTargetSummary {
4237
4237
  * <p>The Amazon DataZone user who updated the subscription target.</p>
4238
4238
  * @public
4239
4239
  */
4240
- updatedBy?: string;
4240
+ updatedBy?: string | undefined;
4241
4241
  /**
4242
4242
  * <p>The timestamp of when the subscription target was created.</p>
4243
4243
  * @public
@@ -4247,7 +4247,7 @@ export interface SubscriptionTargetSummary {
4247
4247
  * <p>The timestamp of when the subscription target was updated.</p>
4248
4248
  * @public
4249
4249
  */
4250
- updatedAt?: Date;
4250
+ updatedAt?: Date | undefined;
4251
4251
  /**
4252
4252
  * <p>The manage access role specified in the subscription target.</p>
4253
4253
  * @public
@@ -4288,7 +4288,7 @@ export interface ListSubscriptionTargetsOutput {
4288
4288
  * targets.</p>
4289
4289
  * @public
4290
4290
  */
4291
- nextToken?: string;
4291
+ nextToken?: string | undefined;
4292
4292
  }
4293
4293
  /**
4294
4294
  * @public
@@ -4308,7 +4308,7 @@ export interface ListTagsForResourceResponse {
4308
4308
  * <p>The tags of the specified resource.</p>
4309
4309
  * @public
4310
4310
  */
4311
- tags?: Record<string, string>;
4311
+ tags?: Record<string, string> | undefined;
4312
4312
  }
4313
4313
  /**
4314
4314
  * @public
@@ -4339,12 +4339,12 @@ export interface ListTimeSeriesDataPointsInput {
4339
4339
  * <p>The timestamp at which the data points that you want to list started.</p>
4340
4340
  * @public
4341
4341
  */
4342
- startedAt?: Date;
4342
+ startedAt?: Date | undefined;
4343
4343
  /**
4344
4344
  * <p>The timestamp at which the data points that you wanted to list ended.</p>
4345
4345
  * @public
4346
4346
  */
4347
- endedAt?: Date;
4347
+ endedAt?: Date | undefined;
4348
4348
  /**
4349
4349
  * <p>When the number of data points is greater than the default value for the MaxResults
4350
4350
  * parameter, or if you explicitly specify a value for MaxResults that is less than the number
@@ -4353,7 +4353,7 @@ export interface ListTimeSeriesDataPointsInput {
4353
4353
  * of data points.</p>
4354
4354
  * @public
4355
4355
  */
4356
- nextToken?: string;
4356
+ nextToken?: string | undefined;
4357
4357
  /**
4358
4358
  * <p>The maximum number of data points to return in a single call to
4359
4359
  * ListTimeSeriesDataPoints. When the number of data points to be listed is greater than the
@@ -4361,7 +4361,7 @@ export interface ListTimeSeriesDataPointsInput {
4361
4361
  * subsequent call to ListTimeSeriesDataPoints to list the next set of data points.</p>
4362
4362
  * @public
4363
4363
  */
4364
- maxResults?: number;
4364
+ maxResults?: number | undefined;
4365
4365
  }
4366
4366
  /**
4367
4367
  * @public
@@ -4371,7 +4371,7 @@ export interface ListTimeSeriesDataPointsOutput {
4371
4371
  * <p>The results of the ListTimeSeriesDataPoints action. </p>
4372
4372
  * @public
4373
4373
  */
4374
- items?: TimeSeriesDataPointSummaryFormOutput[];
4374
+ items?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
4375
4375
  /**
4376
4376
  * <p>When the number of data points is greater than the default value for the MaxResults
4377
4377
  * parameter, or if you explicitly specify a value for MaxResults that is less than the number
@@ -4380,7 +4380,7 @@ export interface ListTimeSeriesDataPointsOutput {
4380
4380
  * of data points.</p>
4381
4381
  * @public
4382
4382
  */
4383
- nextToken?: string;
4383
+ nextToken?: string | undefined;
4384
4384
  }
4385
4385
  /**
4386
4386
  * @public
@@ -4443,7 +4443,7 @@ export interface MetadataGenerationRunTarget {
4443
4443
  * <p>The revision of the asset for which metadata was generated.</p>
4444
4444
  * @public
4445
4445
  */
4446
- revision?: string;
4446
+ revision?: string | undefined;
4447
4447
  }
4448
4448
  /**
4449
4449
  * @public
@@ -4475,27 +4475,27 @@ export interface GetMetadataGenerationRunOutput {
4475
4475
  * <p>The asset for which you're generating metadata.</p>
4476
4476
  * @public
4477
4477
  */
4478
- target?: MetadataGenerationRunTarget;
4478
+ target?: MetadataGenerationRunTarget | undefined;
4479
4479
  /**
4480
4480
  * <p>The status of the metadata generation run.</p>
4481
4481
  * @public
4482
4482
  */
4483
- status?: MetadataGenerationRunStatus;
4483
+ status?: MetadataGenerationRunStatus | undefined;
4484
4484
  /**
4485
4485
  * <p>The type of metadata generation run.</p>
4486
4486
  * @public
4487
4487
  */
4488
- type?: MetadataGenerationRunType;
4488
+ type?: MetadataGenerationRunType | undefined;
4489
4489
  /**
4490
4490
  * <p>The timestamp of when the metadata generation run was start.</p>
4491
4491
  * @public
4492
4492
  */
4493
- createdAt?: Date;
4493
+ createdAt?: Date | undefined;
4494
4494
  /**
4495
4495
  * <p>The Amazon DataZone user who started the metadata generation run.</p>
4496
4496
  * @public
4497
4497
  */
4498
- createdBy?: string;
4498
+ createdBy?: string | undefined;
4499
4499
  /**
4500
4500
  * <p>The ID of the project that owns the assets for which you're running metadata
4501
4501
  * generation.</p>
@@ -4517,12 +4517,12 @@ export interface ListMetadataGenerationRunsInput {
4517
4517
  * <p>The status of the metadata generation runs.</p>
4518
4518
  * @public
4519
4519
  */
4520
- status?: MetadataGenerationRunStatus;
4520
+ status?: MetadataGenerationRunStatus | undefined;
4521
4521
  /**
4522
4522
  * <p>The type of the metadata generation runs.</p>
4523
4523
  * @public
4524
4524
  */
4525
- type?: MetadataGenerationRunType;
4525
+ type?: MetadataGenerationRunType | undefined;
4526
4526
  /**
4527
4527
  * <p>When the number of metadata generation runs is greater than the default value for the
4528
4528
  * MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than
@@ -4531,7 +4531,7 @@ export interface ListMetadataGenerationRunsInput {
4531
4531
  * ListMetadataGenerationRuns to list the next set of revisions.</p>
4532
4532
  * @public
4533
4533
  */
4534
- nextToken?: string;
4534
+ nextToken?: string | undefined;
4535
4535
  /**
4536
4536
  * <p>The maximum number of metadata generation runs to return in a single call to
4537
4537
  * ListMetadataGenerationRuns. When the number of metadata generation runs to be listed is
@@ -4540,7 +4540,7 @@ export interface ListMetadataGenerationRunsInput {
4540
4540
  * revisions.</p>
4541
4541
  * @public
4542
4542
  */
4543
- maxResults?: number;
4543
+ maxResults?: number | undefined;
4544
4544
  }
4545
4545
  /**
4546
4546
  * <p>The metadata generation run.</p>
@@ -4562,27 +4562,27 @@ export interface MetadataGenerationRunItem {
4562
4562
  * <p>The asset for which metadata was generated.</p>
4563
4563
  * @public
4564
4564
  */
4565
- target?: MetadataGenerationRunTarget;
4565
+ target?: MetadataGenerationRunTarget | undefined;
4566
4566
  /**
4567
4567
  * <p>The status of the metadata generation run.</p>
4568
4568
  * @public
4569
4569
  */
4570
- status?: MetadataGenerationRunStatus;
4570
+ status?: MetadataGenerationRunStatus | undefined;
4571
4571
  /**
4572
4572
  * <p>The type of the metadata generation run.</p>
4573
4573
  * @public
4574
4574
  */
4575
- type?: MetadataGenerationRunType;
4575
+ type?: MetadataGenerationRunType | undefined;
4576
4576
  /**
4577
4577
  * <p>The timestamp at which the metadata generation run was created.</p>
4578
4578
  * @public
4579
4579
  */
4580
- createdAt?: Date;
4580
+ createdAt?: Date | undefined;
4581
4581
  /**
4582
4582
  * <p>The user who created the metadata generation run.</p>
4583
4583
  * @public
4584
4584
  */
4585
- createdBy?: string;
4585
+ createdBy?: string | undefined;
4586
4586
  /**
4587
4587
  * <p>The ID of the project that owns the asset for which the metadata generation was
4588
4588
  * ran.</p>
@@ -4598,7 +4598,7 @@ export interface ListMetadataGenerationRunsOutput {
4598
4598
  * <p>The results of the ListMetadataGenerationRuns action.</p>
4599
4599
  * @public
4600
4600
  */
4601
- items?: MetadataGenerationRunItem[];
4601
+ items?: MetadataGenerationRunItem[] | undefined;
4602
4602
  /**
4603
4603
  * <p>When the number of metadata generation runs is greater than the default value for the
4604
4604
  * MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than
@@ -4607,7 +4607,7 @@ export interface ListMetadataGenerationRunsOutput {
4607
4607
  * ListMetadataGenerationRuns to list the next set of revisions.</p>
4608
4608
  * @public
4609
4609
  */
4610
- nextToken?: string;
4610
+ nextToken?: string | undefined;
4611
4611
  }
4612
4612
  /**
4613
4613
  * @public
@@ -4634,7 +4634,7 @@ export interface StartMetadataGenerationRunInput {
4634
4634
  * automatically populated if not provided.</p>
4635
4635
  * @public
4636
4636
  */
4637
- clientToken?: string;
4637
+ clientToken?: string | undefined;
4638
4638
  /**
4639
4639
  * <p>The ID of the project that owns the asset for which you want to start a metadata
4640
4640
  * generation run.</p>
@@ -4661,28 +4661,28 @@ export interface StartMetadataGenerationRunOutput {
4661
4661
  * <p>The status of the metadata generation run.</p>
4662
4662
  * @public
4663
4663
  */
4664
- status?: MetadataGenerationRunStatus;
4664
+ status?: MetadataGenerationRunStatus | undefined;
4665
4665
  /**
4666
4666
  * <p>The type of the metadata generation run.</p>
4667
4667
  * @public
4668
4668
  */
4669
- type?: MetadataGenerationRunType;
4669
+ type?: MetadataGenerationRunType | undefined;
4670
4670
  /**
4671
4671
  * <p>The timestamp at which the metadata generation run was started.</p>
4672
4672
  * @public
4673
4673
  */
4674
- createdAt?: Date;
4674
+ createdAt?: Date | undefined;
4675
4675
  /**
4676
4676
  * <p>The ID of the user who started the metadata generation run.</p>
4677
4677
  * @public
4678
4678
  */
4679
- createdBy?: string;
4679
+ createdBy?: string | undefined;
4680
4680
  /**
4681
4681
  * <p>The ID of the project that owns the asset for which the metadata generation run was
4682
4682
  * started.</p>
4683
4683
  * @public
4684
4684
  */
4685
- owningProjectId?: string;
4685
+ owningProjectId?: string | undefined;
4686
4686
  }
4687
4687
  /**
4688
4688
  * @public
@@ -4704,7 +4704,7 @@ export interface PostLineageEventInput {
4704
4704
  * request.</p>
4705
4705
  * @public
4706
4706
  */
4707
- clientToken?: string;
4707
+ clientToken?: string | undefined;
4708
4708
  }
4709
4709
  /**
4710
4710
  * @public
@@ -4730,7 +4730,7 @@ export interface TimeSeriesDataPointFormInput {
4730
4730
  * <p>The revision type of the time series data points form.</p>
4731
4731
  * @public
4732
4732
  */
4733
- typeRevision?: string;
4733
+ typeRevision?: string | undefined;
4734
4734
  /**
4735
4735
  * <p>The timestamp of the time series data points form.</p>
4736
4736
  * @public
@@ -4740,7 +4740,7 @@ export interface TimeSeriesDataPointFormInput {
4740
4740
  * <p>The content of the time series data points form.</p>
4741
4741
  * @public
4742
4742
  */
4743
- content?: string;
4743
+ content?: string | undefined;
4744
4744
  }
4745
4745
  /**
4746
4746
  * @public
@@ -4772,7 +4772,7 @@ export interface PostTimeSeriesDataPointsInput {
4772
4772
  * request.</p>
4773
4773
  * @public
4774
4774
  */
4775
- clientToken?: string;
4775
+ clientToken?: string | undefined;
4776
4776
  }
4777
4777
  /**
4778
4778
  * @public
@@ -4783,22 +4783,22 @@ export interface PostTimeSeriesDataPointsOutput {
4783
4783
  * points.</p>
4784
4784
  * @public
4785
4785
  */
4786
- domainId?: string;
4786
+ domainId?: string | undefined;
4787
4787
  /**
4788
4788
  * <p>The ID of the asset for which you want to post time series data points.</p>
4789
4789
  * @public
4790
4790
  */
4791
- entityId?: string;
4791
+ entityId?: string | undefined;
4792
4792
  /**
4793
4793
  * <p>The type of the asset for which you want to post data points.</p>
4794
4794
  * @public
4795
4795
  */
4796
- entityType?: TimeSeriesEntityType;
4796
+ entityType?: TimeSeriesEntityType | undefined;
4797
4797
  /**
4798
4798
  * <p>The forms that contain the data points that you have posted.</p>
4799
4799
  * @public
4800
4800
  */
4801
- forms?: TimeSeriesDataPointFormOutput[];
4801
+ forms?: TimeSeriesDataPointFormOutput[] | undefined;
4802
4802
  }
4803
4803
  /**
4804
4804
  * <p>The details of the automatically generated business metadata that is rejected.</p>
@@ -4815,7 +4815,7 @@ export interface RejectChoice {
4815
4815
  * <p>Specifies the the automatically generated business metadata that can be rejected.</p>
4816
4816
  * @public
4817
4817
  */
4818
- predictionChoices?: number[];
4818
+ predictionChoices?: number[] | undefined;
4819
4819
  }
4820
4820
  /**
4821
4821
  * @public
@@ -4838,13 +4838,13 @@ export interface RejectRule {
4838
4838
  * <p>Specifies whether you want to reject the top prediction for all targets or none.</p>
4839
4839
  * @public
4840
4840
  */
4841
- rule?: RejectRuleBehavior;
4841
+ rule?: RejectRuleBehavior | undefined;
4842
4842
  /**
4843
4843
  * <p>The confidence score that specifies the condition at which a prediction can be
4844
4844
  * rejected.</p>
4845
4845
  * @public
4846
4846
  */
4847
- threshold?: number;
4847
+ threshold?: number | undefined;
4848
4848
  }
4849
4849
  /**
4850
4850
  * @public
@@ -4864,24 +4864,24 @@ export interface RejectPredictionsInput {
4864
4864
  * <p>The revision that is to be made to the asset.</p>
4865
4865
  * @public
4866
4866
  */
4867
- revision?: string;
4867
+ revision?: string | undefined;
4868
4868
  /**
4869
4869
  * <p>Specifies the rule (or the conditions) under which a prediction can be rejected.</p>
4870
4870
  * @public
4871
4871
  */
4872
- rejectRule?: RejectRule;
4872
+ rejectRule?: RejectRule | undefined;
4873
4873
  /**
4874
4874
  * <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the
4875
4875
  * target (for example, a column name) that can be rejected.</p>
4876
4876
  * @public
4877
4877
  */
4878
- rejectChoices?: RejectChoice[];
4878
+ rejectChoices?: RejectChoice[] | undefined;
4879
4879
  /**
4880
4880
  * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
4881
4881
  * request.</p>
4882
4882
  * @public
4883
4883
  */
4884
- clientToken?: string;
4884
+ clientToken?: string | undefined;
4885
4885
  }
4886
4886
  /**
4887
4887
  * @public
@@ -4922,7 +4922,7 @@ export interface RejectSubscriptionRequestInput {
4922
4922
  * <p>The decision comment of the rejected subscription request.</p>
4923
4923
  * @public
4924
4924
  */
4925
- decisionComment?: string;
4925
+ decisionComment?: string | undefined;
4926
4926
  }
4927
4927
  /**
4928
4928
  * @public
@@ -4942,7 +4942,7 @@ export interface RejectSubscriptionRequestOutput {
4942
4942
  * <p>The Amazon DataZone user who updated the subscription request.</p>
4943
4943
  * @public
4944
4944
  */
4945
- updatedBy?: string;
4945
+ updatedBy?: string | undefined;
4946
4946
  /**
4947
4947
  * <p>The identifier of the Amazon DataZone domain in which the subscription request was
4948
4948
  * rejected.</p>
@@ -4983,12 +4983,12 @@ export interface RejectSubscriptionRequestOutput {
4983
4983
  * <p>The identifier of the subscription request reviewer.</p>
4984
4984
  * @public
4985
4985
  */
4986
- reviewerId?: string;
4986
+ reviewerId?: string | undefined;
4987
4987
  /**
4988
4988
  * <p>The decision comment of the rejected subscription request.</p>
4989
4989
  * @public
4990
4990
  */
4991
- decisionComment?: string;
4991
+ decisionComment?: string | undefined;
4992
4992
  }
4993
4993
  /**
4994
4994
  * @public
@@ -5019,7 +5019,7 @@ export interface RemoveEntityOwnerInput {
5019
5019
  * request.</p>
5020
5020
  * @public
5021
5021
  */
5022
- clientToken?: string;
5022
+ clientToken?: string | undefined;
5023
5023
  }
5024
5024
  /**
5025
5025
  * @public
@@ -5060,7 +5060,7 @@ export interface RemovePolicyGrantInput {
5060
5060
  * request.</p>
5061
5061
  * @public
5062
5062
  */
5063
- clientToken?: string;
5063
+ clientToken?: string | undefined;
5064
5064
  }
5065
5065
  /**
5066
5066
  * @public
@@ -5085,7 +5085,7 @@ export interface RevokeSubscriptionInput {
5085
5085
  * <p>Specifies whether permissions are retained when the subscription is revoked.</p>
5086
5086
  * @public
5087
5087
  */
5088
- retainPermissions?: boolean;
5088
+ retainPermissions?: boolean | undefined;
5089
5089
  }
5090
5090
  /**
5091
5091
  * @public
@@ -5105,7 +5105,7 @@ export interface RevokeSubscriptionOutput {
5105
5105
  * <p>The Amazon DataZone user who revoked the subscription.</p>
5106
5106
  * @public
5107
5107
  */
5108
- updatedBy?: string;
5108
+ updatedBy?: string | undefined;
5109
5109
  /**
5110
5110
  * <p>The identifier of the Amazon DataZone domain where you want to revoke a subscription.</p>
5111
5111
  * @public
@@ -5140,12 +5140,12 @@ export interface RevokeSubscriptionOutput {
5140
5140
  * <p>The identifier of the subscription request for the revoked subscription.</p>
5141
5141
  * @public
5142
5142
  */
5143
- subscriptionRequestId?: string;
5143
+ subscriptionRequestId?: string | undefined;
5144
5144
  /**
5145
5145
  * <p>Specifies whether permissions are retained when the subscription is revoked.</p>
5146
5146
  * @public
5147
5147
  */
5148
- retainPermissions?: boolean;
5148
+ retainPermissions?: boolean | undefined;
5149
5149
  }
5150
5150
  /**
5151
5151
  * @public
@@ -5214,7 +5214,7 @@ export interface SearchSort {
5214
5214
  * <p>The order detail of the wya to sort search results.</p>
5215
5215
  * @public
5216
5216
  */
5217
- order?: SortOrder;
5217
+ order?: SortOrder | undefined;
5218
5218
  }
5219
5219
  /**
5220
5220
  * <p>The details of a business glossary.</p>
@@ -5245,7 +5245,7 @@ export interface GlossaryItem {
5245
5245
  * <p>The business glossary description.</p>
5246
5246
  * @public
5247
5247
  */
5248
- description?: string;
5248
+ description?: string | undefined;
5249
5249
  /**
5250
5250
  * <p>The business glossary status.</p>
5251
5251
  * @public
@@ -5255,22 +5255,22 @@ export interface GlossaryItem {
5255
5255
  * <p>The timestamp of when the glossary was created.</p>
5256
5256
  * @public
5257
5257
  */
5258
- createdAt?: Date;
5258
+ createdAt?: Date | undefined;
5259
5259
  /**
5260
5260
  * <p>The Amazon DataZone user who created the glossary.</p>
5261
5261
  * @public
5262
5262
  */
5263
- createdBy?: string;
5263
+ createdBy?: string | undefined;
5264
5264
  /**
5265
5265
  * <p>The timestamp of when the business glossary was updated.</p>
5266
5266
  * @public
5267
5267
  */
5268
- updatedAt?: Date;
5268
+ updatedAt?: Date | undefined;
5269
5269
  /**
5270
5270
  * <p>The Amazon DataZone user who updated the business glossary.</p>
5271
5271
  * @public
5272
5272
  */
5273
- updatedBy?: string;
5273
+ updatedBy?: string | undefined;
5274
5274
  }
5275
5275
  /**
5276
5276
  * <p>The details of a business glossary term.</p>
@@ -5301,17 +5301,17 @@ export interface GlossaryTermItem {
5301
5301
  * <p>The short description of the business glossary term.</p>
5302
5302
  * @public
5303
5303
  */
5304
- shortDescription?: string;
5304
+ shortDescription?: string | undefined;
5305
5305
  /**
5306
5306
  * <p>The long description of the business glossary term.</p>
5307
5307
  * @public
5308
5308
  */
5309
- longDescription?: string;
5309
+ longDescription?: string | undefined;
5310
5310
  /**
5311
5311
  * <p>The relations of the business glossary term.</p>
5312
5312
  * @public
5313
5313
  */
5314
- termRelations?: TermRelations;
5314
+ termRelations?: TermRelations | undefined;
5315
5315
  /**
5316
5316
  * <p>The status of the business glossary term.</p>
5317
5317
  * @public
@@ -5321,22 +5321,22 @@ export interface GlossaryTermItem {
5321
5321
  * <p>The timestamp of when a business glossary term was created.</p>
5322
5322
  * @public
5323
5323
  */
5324
- createdAt?: Date;
5324
+ createdAt?: Date | undefined;
5325
5325
  /**
5326
5326
  * <p>The Amazon DataZone user who created the business glossary.</p>
5327
5327
  * @public
5328
5328
  */
5329
- createdBy?: string;
5329
+ createdBy?: string | undefined;
5330
5330
  /**
5331
5331
  * <p>The timestamp of when a business glossary term was updated.</p>
5332
5332
  * @public
5333
5333
  */
5334
- updatedAt?: Date;
5334
+ updatedAt?: Date | undefined;
5335
5335
  /**
5336
5336
  * <p>The Amazon DataZone user who updated the business glossary term.</p>
5337
5337
  * @public
5338
5338
  */
5339
- updatedBy?: string;
5339
+ updatedBy?: string | undefined;
5340
5340
  }
5341
5341
  /**
5342
5342
  * <p>The details of the search results.</p>
@@ -5418,7 +5418,7 @@ export interface SearchOutput {
5418
5418
  * <p>The results of the <code>Search</code> action.</p>
5419
5419
  * @public
5420
5420
  */
5421
- items?: SearchInventoryResultItem[];
5421
+ items?: SearchInventoryResultItem[] | undefined;
5422
5422
  /**
5423
5423
  * <p>When the number of results is greater than the default value for the
5424
5424
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5427,12 +5427,12 @@ export interface SearchOutput {
5427
5427
  * value in a subsequent call to <code>Search</code> to list the next set of results.</p>
5428
5428
  * @public
5429
5429
  */
5430
- nextToken?: string;
5430
+ nextToken?: string | undefined;
5431
5431
  /**
5432
5432
  * <p>Total number of search results.</p>
5433
5433
  * @public
5434
5434
  */
5435
- totalMatchCount?: number;
5435
+ totalMatchCount?: number | undefined;
5436
5436
  }
5437
5437
  /**
5438
5438
  * @public
@@ -5465,7 +5465,7 @@ export interface SearchGroupProfilesInput {
5465
5465
  * <p>Specifies the text for which to search.</p>
5466
5466
  * @public
5467
5467
  */
5468
- searchText?: string;
5468
+ searchText?: string | undefined;
5469
5469
  /**
5470
5470
  * <p>The maximum number of results to return in a single call to
5471
5471
  * <code>SearchGroupProfiles</code>. When the number of results to be listed is greater
@@ -5474,7 +5474,7 @@ export interface SearchGroupProfilesInput {
5474
5474
  * next set of results. </p>
5475
5475
  * @public
5476
5476
  */
5477
- maxResults?: number;
5477
+ maxResults?: number | undefined;
5478
5478
  /**
5479
5479
  * <p>When the number of results is greater than the default value for the
5480
5480
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5484,7 +5484,7 @@ export interface SearchGroupProfilesInput {
5484
5484
  * results.</p>
5485
5485
  * @public
5486
5486
  */
5487
- nextToken?: string;
5487
+ nextToken?: string | undefined;
5488
5488
  }
5489
5489
  /**
5490
5490
  * <p>The details of a group profile.</p>
@@ -5495,22 +5495,22 @@ export interface GroupProfileSummary {
5495
5495
  * <p>The ID of the Amazon DataZone domain of a group profile.</p>
5496
5496
  * @public
5497
5497
  */
5498
- domainId?: string;
5498
+ domainId?: string | undefined;
5499
5499
  /**
5500
5500
  * <p>The ID of a group profile.</p>
5501
5501
  * @public
5502
5502
  */
5503
- id?: string;
5503
+ id?: string | undefined;
5504
5504
  /**
5505
5505
  * <p>The status of a group profile.</p>
5506
5506
  * @public
5507
5507
  */
5508
- status?: GroupProfileStatus;
5508
+ status?: GroupProfileStatus | undefined;
5509
5509
  /**
5510
5510
  * <p>The group name of a group profile.</p>
5511
5511
  * @public
5512
5512
  */
5513
- groupName?: string;
5513
+ groupName?: string | undefined;
5514
5514
  }
5515
5515
  /**
5516
5516
  * @public
@@ -5520,7 +5520,7 @@ export interface SearchGroupProfilesOutput {
5520
5520
  * <p>The results of the <code>SearchGroupProfiles</code> action.</p>
5521
5521
  * @public
5522
5522
  */
5523
- items?: GroupProfileSummary[];
5523
+ items?: GroupProfileSummary[] | undefined;
5524
5524
  /**
5525
5525
  * <p>When the number of results is greater than the default value for the
5526
5526
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5530,7 +5530,7 @@ export interface SearchGroupProfilesOutput {
5530
5530
  * results.</p>
5531
5531
  * @public
5532
5532
  */
5533
- nextToken?: string;
5533
+ nextToken?: string | undefined;
5534
5534
  }
5535
5535
  /**
5536
5536
  * <p>The details of the results of the <code>SearchListings</code> action.</p>
@@ -5583,7 +5583,7 @@ export interface SearchListingsOutput {
5583
5583
  * <p>The results of the <code>SearchListings</code> action.</p>
5584
5584
  * @public
5585
5585
  */
5586
- items?: SearchResultItem[];
5586
+ items?: SearchResultItem[] | undefined;
5587
5587
  /**
5588
5588
  * <p>When the number of results is greater than the default value for the
5589
5589
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5593,12 +5593,12 @@ export interface SearchListingsOutput {
5593
5593
  * results.</p>
5594
5594
  * @public
5595
5595
  */
5596
- nextToken?: string;
5596
+ nextToken?: string | undefined;
5597
5597
  /**
5598
5598
  * <p>Total number of search results.</p>
5599
5599
  * @public
5600
5600
  */
5601
- totalMatchCount?: number;
5601
+ totalMatchCount?: number | undefined;
5602
5602
  }
5603
5603
  /**
5604
5604
  * @public
@@ -5637,48 +5637,48 @@ export interface FormTypeData {
5637
5637
  * <p>The model of the form type.</p>
5638
5638
  * @public
5639
5639
  */
5640
- model?: Model;
5640
+ model?: Model | undefined;
5641
5641
  /**
5642
5642
  * <p>The status of the form type.</p>
5643
5643
  * @public
5644
5644
  */
5645
- status?: FormTypeStatus;
5645
+ status?: FormTypeStatus | undefined;
5646
5646
  /**
5647
5647
  * <p>The identifier of the project that owns the form type.</p>
5648
5648
  * @public
5649
5649
  */
5650
- owningProjectId?: string;
5650
+ owningProjectId?: string | undefined;
5651
5651
  /**
5652
5652
  * <p>The identifier of the Amazon DataZone domain in which the form type was originally
5653
5653
  * created.</p>
5654
5654
  * @public
5655
5655
  */
5656
- originDomainId?: string;
5656
+ originDomainId?: string | undefined;
5657
5657
  /**
5658
5658
  * <p>The identifier of the project in which the form type was originally created.</p>
5659
5659
  * @public
5660
5660
  */
5661
- originProjectId?: string;
5661
+ originProjectId?: string | undefined;
5662
5662
  /**
5663
5663
  * <p>The timestamp of when the metadata form type was created.</p>
5664
5664
  * @public
5665
5665
  */
5666
- createdAt?: Date;
5666
+ createdAt?: Date | undefined;
5667
5667
  /**
5668
5668
  * <p>The Amazon DataZone user who created teh metadata form type.</p>
5669
5669
  * @public
5670
5670
  */
5671
- createdBy?: string;
5671
+ createdBy?: string | undefined;
5672
5672
  /**
5673
5673
  * <p>The description of the metadata form type.</p>
5674
5674
  * @public
5675
5675
  */
5676
- description?: string;
5676
+ description?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>The imports specified in the form type.</p>
5679
5679
  * @public
5680
5680
  */
5681
- imports?: Import[];
5681
+ imports?: Import[] | undefined;
5682
5682
  }
5683
5683
  /**
5684
5684
  * <p>The details of a data lineage node type.</p>
@@ -5694,32 +5694,32 @@ export interface LineageNodeTypeItem {
5694
5694
  * <p>The name of the data lineage node type.</p>
5695
5695
  * @public
5696
5696
  */
5697
- name?: string;
5697
+ name?: string | undefined;
5698
5698
  /**
5699
5699
  * <p>The description of the data lineage node type.</p>
5700
5700
  * @public
5701
5701
  */
5702
- description?: string;
5702
+ description?: string | undefined;
5703
5703
  /**
5704
5704
  * <p>The timestamp at which the data lineage node type was created.</p>
5705
5705
  * @public
5706
5706
  */
5707
- createdAt?: Date;
5707
+ createdAt?: Date | undefined;
5708
5708
  /**
5709
5709
  * <p>The user who created the data lineage node type.</p>
5710
5710
  * @public
5711
5711
  */
5712
- createdBy?: string;
5712
+ createdBy?: string | undefined;
5713
5713
  /**
5714
5714
  * <p>The timestamp at which the data lineage node type was updated.</p>
5715
5715
  * @public
5716
5716
  */
5717
- updatedAt?: Date;
5717
+ updatedAt?: Date | undefined;
5718
5718
  /**
5719
5719
  * <p>The user who updated the data lineage node type.</p>
5720
5720
  * @public
5721
5721
  */
5722
- updatedBy?: string;
5722
+ updatedBy?: string | undefined;
5723
5723
  /**
5724
5724
  * <p>The revision of the data lineage node type.</p>
5725
5725
  * @public
@@ -5795,7 +5795,7 @@ export interface SearchTypesOutput {
5795
5795
  * <p>The results of the <code>SearchTypes</code> action.</p>
5796
5796
  * @public
5797
5797
  */
5798
- items?: SearchTypesResultItem[];
5798
+ items?: SearchTypesResultItem[] | undefined;
5799
5799
  /**
5800
5800
  * <p>When the number of results is greater than the default value for the
5801
5801
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5805,12 +5805,12 @@ export interface SearchTypesOutput {
5805
5805
  * results.</p>
5806
5806
  * @public
5807
5807
  */
5808
- nextToken?: string;
5808
+ nextToken?: string | undefined;
5809
5809
  /**
5810
5810
  * <p>Total number of search results.</p>
5811
5811
  * @public
5812
5812
  */
5813
- totalMatchCount?: number;
5813
+ totalMatchCount?: number | undefined;
5814
5814
  }
5815
5815
  /**
5816
5816
  * @public
@@ -5845,7 +5845,7 @@ export interface SearchUserProfilesInput {
5845
5845
  * <p>Specifies the text for which to search.</p>
5846
5846
  * @public
5847
5847
  */
5848
- searchText?: string;
5848
+ searchText?: string | undefined;
5849
5849
  /**
5850
5850
  * <p>The maximum number of results to return in a single call to
5851
5851
  * <code>SearchUserProfiles</code>. When the number of results to be listed is greater than
@@ -5854,7 +5854,7 @@ export interface SearchUserProfilesInput {
5854
5854
  * set of results. </p>
5855
5855
  * @public
5856
5856
  */
5857
- maxResults?: number;
5857
+ maxResults?: number | undefined;
5858
5858
  /**
5859
5859
  * <p>When the number of results is greater than the default value for the
5860
5860
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5864,7 +5864,7 @@ export interface SearchUserProfilesInput {
5864
5864
  * results.</p>
5865
5865
  * @public
5866
5866
  */
5867
- nextToken?: string;
5867
+ nextToken?: string | undefined;
5868
5868
  }
5869
5869
  /**
5870
5870
  * <p>The details of the user profile.</p>
@@ -5875,27 +5875,27 @@ export interface UserProfileSummary {
5875
5875
  * <p>The ID of the Amazon DataZone domain of the user profile.</p>
5876
5876
  * @public
5877
5877
  */
5878
- domainId?: string;
5878
+ domainId?: string | undefined;
5879
5879
  /**
5880
5880
  * <p>The ID of the user profile.</p>
5881
5881
  * @public
5882
5882
  */
5883
- id?: string;
5883
+ id?: string | undefined;
5884
5884
  /**
5885
5885
  * <p>The type of the user profile.</p>
5886
5886
  * @public
5887
5887
  */
5888
- type?: UserProfileType;
5888
+ type?: UserProfileType | undefined;
5889
5889
  /**
5890
5890
  * <p>The status of the user profile.</p>
5891
5891
  * @public
5892
5892
  */
5893
- status?: UserProfileStatus;
5893
+ status?: UserProfileStatus | undefined;
5894
5894
  /**
5895
5895
  * <p>The details of the user profile.</p>
5896
5896
  * @public
5897
5897
  */
5898
- details?: UserProfileDetails;
5898
+ details?: UserProfileDetails | undefined;
5899
5899
  }
5900
5900
  /**
5901
5901
  * @public
@@ -5905,7 +5905,7 @@ export interface SearchUserProfilesOutput {
5905
5905
  * <p>The results of the <code>SearchUserProfiles</code> action.</p>
5906
5906
  * @public
5907
5907
  */
5908
- items?: UserProfileSummary[];
5908
+ items?: UserProfileSummary[] | undefined;
5909
5909
  /**
5910
5910
  * <p>When the number of results is greater than the default value for the
5911
5911
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -5915,7 +5915,7 @@ export interface SearchUserProfilesOutput {
5915
5915
  * results.</p>
5916
5916
  * @public
5917
5917
  */
5918
- nextToken?: string;
5918
+ nextToken?: string | undefined;
5919
5919
  }
5920
5920
  /**
5921
5921
  * @public
@@ -5975,19 +5975,19 @@ export interface UpdateEnvironmentInput {
5975
5975
  * <p>The name to be updated as part of the <code>UpdateEnvironment</code> action.</p>
5976
5976
  * @public
5977
5977
  */
5978
- name?: string;
5978
+ name?: string | undefined;
5979
5979
  /**
5980
5980
  * <p>The description to be updated as part of the <code>UpdateEnvironment</code>
5981
5981
  * action.</p>
5982
5982
  * @public
5983
5983
  */
5984
- description?: string;
5984
+ description?: string | undefined;
5985
5985
  /**
5986
5986
  * <p>The glossary terms to be updated as part of the <code>UpdateEnvironment</code>
5987
5987
  * action.</p>
5988
5988
  * @public
5989
5989
  */
5990
- glossaryTerms?: string[];
5990
+ glossaryTerms?: string[] | undefined;
5991
5991
  }
5992
5992
  /**
5993
5993
  * @public
@@ -6002,7 +6002,7 @@ export interface UpdateEnvironmentOutput {
6002
6002
  * <p>The identifier of the environment that is to be updated.</p>
6003
6003
  * @public
6004
6004
  */
6005
- id?: string;
6005
+ id?: string | undefined;
6006
6006
  /**
6007
6007
  * <p>The identifier of the domain in which the environment is to be updated.</p>
6008
6008
  * @public
@@ -6017,12 +6017,12 @@ export interface UpdateEnvironmentOutput {
6017
6017
  * <p>The timestamp of when the environment was created.</p>
6018
6018
  * @public
6019
6019
  */
6020
- createdAt?: Date;
6020
+ createdAt?: Date | undefined;
6021
6021
  /**
6022
6022
  * <p>The timestamp of when the environment was updated.</p>
6023
6023
  * @public
6024
6024
  */
6025
- updatedAt?: Date;
6025
+ updatedAt?: Date | undefined;
6026
6026
  /**
6027
6027
  * <p>The name to be updated as part of the <code>UpdateEnvironment</code> action.</p>
6028
6028
  * @public
@@ -6033,23 +6033,23 @@ export interface UpdateEnvironmentOutput {
6033
6033
  * action.</p>
6034
6034
  * @public
6035
6035
  */
6036
- description?: string;
6036
+ description?: string | undefined;
6037
6037
  /**
6038
6038
  * <p>The profile identifier of the environment.</p>
6039
6039
  * @public
6040
6040
  */
6041
- environmentProfileId?: string;
6041
+ environmentProfileId?: string | undefined;
6042
6042
  /**
6043
6043
  * <p>The identifier of the Amazon Web Services account in which the environment is to be
6044
6044
  * updated.</p>
6045
6045
  * @public
6046
6046
  */
6047
- awsAccountId?: string;
6047
+ awsAccountId?: string | undefined;
6048
6048
  /**
6049
6049
  * <p>The Amazon Web Services Region in which the environment is updated.</p>
6050
6050
  * @public
6051
6051
  */
6052
- awsAccountRegion?: string;
6052
+ awsAccountRegion?: string | undefined;
6053
6053
  /**
6054
6054
  * <p>The provider identifier of the environment.</p>
6055
6055
  * @public
@@ -6060,52 +6060,52 @@ export interface UpdateEnvironmentOutput {
6060
6060
  * action.</p>
6061
6061
  * @public
6062
6062
  */
6063
- provisionedResources?: Resource[];
6063
+ provisionedResources?: Resource[] | undefined;
6064
6064
  /**
6065
6065
  * <p>The status to be updated as part of the <code>UpdateEnvironment</code> action.</p>
6066
6066
  * @public
6067
6067
  */
6068
- status?: EnvironmentStatus;
6068
+ status?: EnvironmentStatus | undefined;
6069
6069
  /**
6070
6070
  * <p>The environment actions to be updated as part of the <code>UpdateEnvironment</code>
6071
6071
  * action.</p>
6072
6072
  * @public
6073
6073
  */
6074
- environmentActions?: ConfigurableEnvironmentAction[];
6074
+ environmentActions?: ConfigurableEnvironmentAction[] | undefined;
6075
6075
  /**
6076
6076
  * <p>The glossary terms to be updated as part of the <code>UpdateEnvironment</code>
6077
6077
  * action.</p>
6078
6078
  * @public
6079
6079
  */
6080
- glossaryTerms?: string[];
6080
+ glossaryTerms?: string[] | undefined;
6081
6081
  /**
6082
6082
  * <p>The user parameters to be updated as part of the <code>UpdateEnvironment</code>
6083
6083
  * action.</p>
6084
6084
  * @public
6085
6085
  */
6086
- userParameters?: CustomParameter[];
6086
+ userParameters?: CustomParameter[] | undefined;
6087
6087
  /**
6088
6088
  * <p>The last deployment of the environment.</p>
6089
6089
  * @public
6090
6090
  */
6091
- lastDeployment?: Deployment;
6091
+ lastDeployment?: Deployment | undefined;
6092
6092
  /**
6093
6093
  * <p>The provisioning properties to be updated as part of the <code>UpdateEnvironment</code>
6094
6094
  * action.</p>
6095
6095
  * @public
6096
6096
  */
6097
- provisioningProperties?: ProvisioningProperties;
6097
+ provisioningProperties?: ProvisioningProperties | undefined;
6098
6098
  /**
6099
6099
  * <p>The deployment properties to be updated as part of the <code>UpdateEnvironment</code>
6100
6100
  * action.</p>
6101
6101
  * @public
6102
6102
  */
6103
- deploymentProperties?: DeploymentProperties;
6103
+ deploymentProperties?: DeploymentProperties | undefined;
6104
6104
  /**
6105
6105
  * <p>The blueprint identifier of the environment.</p>
6106
6106
  * @public
6107
6107
  */
6108
- environmentBlueprintId?: string;
6108
+ environmentBlueprintId?: string | undefined;
6109
6109
  }
6110
6110
  /**
6111
6111
  * @public
@@ -6130,17 +6130,17 @@ export interface UpdateEnvironmentActionInput {
6130
6130
  * <p>The parameters of the environment action.</p>
6131
6131
  * @public
6132
6132
  */
6133
- parameters?: ActionParameters;
6133
+ parameters?: ActionParameters | undefined;
6134
6134
  /**
6135
6135
  * <p>The name of the environment action.</p>
6136
6136
  * @public
6137
6137
  */
6138
- name?: string;
6138
+ name?: string | undefined;
6139
6139
  /**
6140
6140
  * <p>The description of the environment action.</p>
6141
6141
  * @public
6142
6142
  */
6143
- description?: string;
6143
+ description?: string | undefined;
6144
6144
  }
6145
6145
  /**
6146
6146
  * @public
@@ -6175,7 +6175,7 @@ export interface UpdateEnvironmentActionOutput {
6175
6175
  * <p>The description of the environment action.</p>
6176
6176
  * @public
6177
6177
  */
6178
- description?: string;
6178
+ description?: string | undefined;
6179
6179
  }
6180
6180
  /**
6181
6181
  * @public
@@ -6197,31 +6197,31 @@ export interface UpdateEnvironmentProfileInput {
6197
6197
  * action.</p>
6198
6198
  * @public
6199
6199
  */
6200
- name?: string;
6200
+ name?: string | undefined;
6201
6201
  /**
6202
6202
  * <p>The description to be updated as part of the <code>UpdateEnvironmentProfile</code>
6203
6203
  * action.</p>
6204
6204
  * @public
6205
6205
  */
6206
- description?: string;
6206
+ description?: string | undefined;
6207
6207
  /**
6208
6208
  * <p>The user parameters to be updated as part of the <code>UpdateEnvironmentProfile</code>
6209
6209
  * action.</p>
6210
6210
  * @public
6211
6211
  */
6212
- userParameters?: EnvironmentParameter[];
6212
+ userParameters?: EnvironmentParameter[] | undefined;
6213
6213
  /**
6214
6214
  * <p>The Amazon Web Services account in which a specified environment profile is to be
6215
6215
  * udpated.</p>
6216
6216
  * @public
6217
6217
  */
6218
- awsAccountId?: string;
6218
+ awsAccountId?: string | undefined;
6219
6219
  /**
6220
6220
  * <p>The Amazon Web Services Region in which a specified environment profile is to be
6221
6221
  * updated.</p>
6222
6222
  * @public
6223
6223
  */
6224
- awsAccountRegion?: string;
6224
+ awsAccountRegion?: string | undefined;
6225
6225
  }
6226
6226
  /**
6227
6227
  * @public
@@ -6243,13 +6243,13 @@ export interface UpdateEnvironmentProfileOutput {
6243
6243
  * udpated.</p>
6244
6244
  * @public
6245
6245
  */
6246
- awsAccountId?: string;
6246
+ awsAccountId?: string | undefined;
6247
6247
  /**
6248
6248
  * <p>The Amazon Web Services Region in which a specified environment profile is to be
6249
6249
  * updated.</p>
6250
6250
  * @public
6251
6251
  */
6252
- awsAccountRegion?: string;
6252
+ awsAccountRegion?: string | undefined;
6253
6253
  /**
6254
6254
  * <p>The Amazon DataZone user who created the environment profile.</p>
6255
6255
  * @public
@@ -6259,12 +6259,12 @@ export interface UpdateEnvironmentProfileOutput {
6259
6259
  * <p>The timestamp of when the environment profile was created.</p>
6260
6260
  * @public
6261
6261
  */
6262
- createdAt?: Date;
6262
+ createdAt?: Date | undefined;
6263
6263
  /**
6264
6264
  * <p>The timestamp of when the environment profile was updated.</p>
6265
6265
  * @public
6266
6266
  */
6267
- updatedAt?: Date;
6267
+ updatedAt?: Date | undefined;
6268
6268
  /**
6269
6269
  * <p>The name to be updated as part of the <code>UpdateEnvironmentProfile</code>
6270
6270
  * action.</p>
@@ -6276,7 +6276,7 @@ export interface UpdateEnvironmentProfileOutput {
6276
6276
  * action.</p>
6277
6277
  * @public
6278
6278
  */
6279
- description?: string;
6279
+ description?: string | undefined;
6280
6280
  /**
6281
6281
  * <p>The identifier of the blueprint of the environment profile that is to be updated.</p>
6282
6282
  * @public
@@ -6286,13 +6286,13 @@ export interface UpdateEnvironmentProfileOutput {
6286
6286
  * <p>The identifier of the project of the environment profile that is to be updated.</p>
6287
6287
  * @public
6288
6288
  */
6289
- projectId?: string;
6289
+ projectId?: string | undefined;
6290
6290
  /**
6291
6291
  * <p>The user parameters to be updated as part of the <code>UpdateEnvironmentProfile</code>
6292
6292
  * action.</p>
6293
6293
  * @public
6294
6294
  */
6295
- userParameters?: CustomParameter[];
6295
+ userParameters?: CustomParameter[] | undefined;
6296
6296
  }
6297
6297
  /**
6298
6298
  * @public
@@ -6322,22 +6322,22 @@ export interface UpdateGroupProfileOutput {
6322
6322
  * <p>The identifier of the Amazon DataZone domain in which a group profile is updated.</p>
6323
6323
  * @public
6324
6324
  */
6325
- domainId?: string;
6325
+ domainId?: string | undefined;
6326
6326
  /**
6327
6327
  * <p>The identifier of the group profile that is updated.</p>
6328
6328
  * @public
6329
6329
  */
6330
- id?: string;
6330
+ id?: string | undefined;
6331
6331
  /**
6332
6332
  * <p>The status of the group profile that is updated.</p>
6333
6333
  * @public
6334
6334
  */
6335
- status?: GroupProfileStatus;
6335
+ status?: GroupProfileStatus | undefined;
6336
6336
  /**
6337
6337
  * <p>The name of the group profile that is updated.</p>
6338
6338
  * @public
6339
6339
  */
6340
- groupName?: string;
6340
+ groupName?: string | undefined;
6341
6341
  }
6342
6342
  /**
6343
6343
  * @public
@@ -6357,18 +6357,18 @@ export interface UpdateProjectInput {
6357
6357
  * <p>The name to be updated as part of the <code>UpdateProject</code> action.</p>
6358
6358
  * @public
6359
6359
  */
6360
- name?: string;
6360
+ name?: string | undefined;
6361
6361
  /**
6362
6362
  * <p>The description to be updated as part of the <code>UpdateProject</code> action.</p>
6363
6363
  * @public
6364
6364
  */
6365
- description?: string;
6365
+ description?: string | undefined;
6366
6366
  /**
6367
6367
  * <p>The glossary terms to be updated as part of the <code>UpdateProject</code>
6368
6368
  * action.</p>
6369
6369
  * @public
6370
6370
  */
6371
- glossaryTerms?: string[];
6371
+ glossaryTerms?: string[] | undefined;
6372
6372
  }
6373
6373
  /**
6374
6374
  * @public
@@ -6393,18 +6393,18 @@ export interface UpdateProjectOutput {
6393
6393
  * <p>The description of the project that is to be updated.</p>
6394
6394
  * @public
6395
6395
  */
6396
- description?: string;
6396
+ description?: string | undefined;
6397
6397
  /**
6398
6398
  * <p>The status of the project.</p>
6399
6399
  * @public
6400
6400
  */
6401
- projectStatus?: ProjectStatus;
6401
+ projectStatus?: ProjectStatus | undefined;
6402
6402
  /**
6403
6403
  * <p>Specifies the error message that is returned if the operation cannot be successfully
6404
6404
  * completed.</p>
6405
6405
  * @public
6406
6406
  */
6407
- failureReasons?: ProjectDeletionError[];
6407
+ failureReasons?: ProjectDeletionError[] | undefined;
6408
6408
  /**
6409
6409
  * <p>The Amazon DataZone user who created the project.</p>
6410
6410
  * @public
@@ -6414,22 +6414,22 @@ export interface UpdateProjectOutput {
6414
6414
  * <p>The timestamp of when the project was created.</p>
6415
6415
  * @public
6416
6416
  */
6417
- createdAt?: Date;
6417
+ createdAt?: Date | undefined;
6418
6418
  /**
6419
6419
  * <p>The timestamp of when the project was last updated.</p>
6420
6420
  * @public
6421
6421
  */
6422
- lastUpdatedAt?: Date;
6422
+ lastUpdatedAt?: Date | undefined;
6423
6423
  /**
6424
6424
  * <p>The glossary terms of the project that are to be updated.</p>
6425
6425
  * @public
6426
6426
  */
6427
- glossaryTerms?: string[];
6427
+ glossaryTerms?: string[] | undefined;
6428
6428
  /**
6429
6429
  * <p>The ID of the domain unit.</p>
6430
6430
  * @public
6431
6431
  */
6432
- domainUnitId?: string;
6432
+ domainUnitId?: string | undefined;
6433
6433
  }
6434
6434
  /**
6435
6435
  * @public
@@ -6463,13 +6463,13 @@ export interface UpdateSubscriptionGrantStatusInput {
6463
6463
  * completed.</p>
6464
6464
  * @public
6465
6465
  */
6466
- failureCause?: FailureCause;
6466
+ failureCause?: FailureCause | undefined;
6467
6467
  /**
6468
6468
  * <p>The target name to be updated as part of the <code>UpdateSubscriptionGrantStatus</code>
6469
6469
  * action.</p>
6470
6470
  * @public
6471
6471
  */
6472
- targetName?: string;
6472
+ targetName?: string | undefined;
6473
6473
  }
6474
6474
  /**
6475
6475
  * @public
@@ -6489,7 +6489,7 @@ export interface UpdateSubscriptionGrantStatusOutput {
6489
6489
  * <p>The Amazon DataZone user who updated the subscription grant status.</p>
6490
6490
  * @public
6491
6491
  */
6492
- updatedBy?: string;
6492
+ updatedBy?: string | undefined;
6493
6493
  /**
6494
6494
  * <p>The identifier of the Amazon DataZone domain in which a subscription grant status is to be
6495
6495
  * updated.</p>
@@ -6528,14 +6528,14 @@ export interface UpdateSubscriptionGrantStatusOutput {
6528
6528
  * <p>The details of the asset for which the subscription grant is created.</p>
6529
6529
  * @public
6530
6530
  */
6531
- assets?: SubscribedAsset[];
6531
+ assets?: SubscribedAsset[] | undefined;
6532
6532
  /**
6533
6533
  * @deprecated
6534
6534
  *
6535
6535
  * <p>The identifier of the subscription.</p>
6536
6536
  * @public
6537
6537
  */
6538
- subscriptionId?: string;
6538
+ subscriptionId?: string | undefined;
6539
6539
  }
6540
6540
  /**
6541
6541
  * @public
@@ -6576,7 +6576,7 @@ export interface UpdateSubscriptionRequestOutput {
6576
6576
  * <p>The Amazon DataZone user who updated the subscription request.</p>
6577
6577
  * @public
6578
6578
  */
6579
- updatedBy?: string;
6579
+ updatedBy?: string | undefined;
6580
6580
  /**
6581
6581
  * <p>The identifier of the Amazon DataZone domain in which a subscription request is to be
6582
6582
  * updated.</p>
@@ -6617,12 +6617,12 @@ export interface UpdateSubscriptionRequestOutput {
6617
6617
  * <p>The identifier of the Amazon DataZone user who reviews the subscription request.</p>
6618
6618
  * @public
6619
6619
  */
6620
- reviewerId?: string;
6620
+ reviewerId?: string | undefined;
6621
6621
  /**
6622
6622
  * <p>The decision comment of the <code>UpdateSubscriptionRequest</code> action.</p>
6623
6623
  * @public
6624
6624
  */
6625
- decisionComment?: string;
6625
+ decisionComment?: string | undefined;
6626
6626
  }
6627
6627
  /**
6628
6628
  * @public
@@ -6650,37 +6650,37 @@ export interface UpdateSubscriptionTargetInput {
6650
6650
  * action.</p>
6651
6651
  * @public
6652
6652
  */
6653
- name?: string;
6653
+ name?: string | undefined;
6654
6654
  /**
6655
6655
  * <p>The authorized principals to be updated as part of the
6656
6656
  * <code>UpdateSubscriptionTarget</code> action.</p>
6657
6657
  * @public
6658
6658
  */
6659
- authorizedPrincipals?: string[];
6659
+ authorizedPrincipals?: string[] | undefined;
6660
6660
  /**
6661
6661
  * <p>The applicable asset types to be updated as part of the
6662
6662
  * <code>UpdateSubscriptionTarget</code> action.</p>
6663
6663
  * @public
6664
6664
  */
6665
- applicableAssetTypes?: string[];
6665
+ applicableAssetTypes?: string[] | undefined;
6666
6666
  /**
6667
6667
  * <p>The configuration to be updated as part of the <code>UpdateSubscriptionTarget</code>
6668
6668
  * action.</p>
6669
6669
  * @public
6670
6670
  */
6671
- subscriptionTargetConfig?: SubscriptionTargetForm[];
6671
+ subscriptionTargetConfig?: SubscriptionTargetForm[] | undefined;
6672
6672
  /**
6673
6673
  * <p>The manage access role to be updated as part of the
6674
6674
  * <code>UpdateSubscriptionTarget</code> action.</p>
6675
6675
  * @public
6676
6676
  */
6677
- manageAccessRole?: string;
6677
+ manageAccessRole?: string | undefined;
6678
6678
  /**
6679
6679
  * <p>The provider to be updated as part of the <code>UpdateSubscriptionTarget</code>
6680
6680
  * action.</p>
6681
6681
  * @public
6682
6682
  */
6683
- provider?: string;
6683
+ provider?: string | undefined;
6684
6684
  }
6685
6685
  /**
6686
6686
  * @public
@@ -6735,7 +6735,7 @@ export interface UpdateSubscriptionTargetOutput {
6735
6735
  * <p>The Amazon DataZone user who updated the subscription target.</p>
6736
6736
  * @public
6737
6737
  */
6738
- updatedBy?: string;
6738
+ updatedBy?: string | undefined;
6739
6739
  /**
6740
6740
  * <p>The timestamp of when a subscription target was created.</p>
6741
6741
  * @public
@@ -6745,7 +6745,7 @@ export interface UpdateSubscriptionTargetOutput {
6745
6745
  * <p>The timestamp of when the subscription target was updated.</p>
6746
6746
  * @public
6747
6747
  */
6748
- updatedAt?: Date;
6748
+ updatedAt?: Date | undefined;
6749
6749
  /**
6750
6750
  * <p>The manage access role to be updated as part of the
6751
6751
  * <code>UpdateSubscriptionTarget</code> action.</p>
@@ -6789,7 +6789,7 @@ export interface UpdateUserProfileInput {
6789
6789
  * <p>The type of the user profile that are to be updated.</p>
6790
6790
  * @public
6791
6791
  */
6792
- type?: UserProfileType;
6792
+ type?: UserProfileType | undefined;
6793
6793
  /**
6794
6794
  * <p>The status of the user profile that are to be updated.</p>
6795
6795
  * @public
@@ -6804,27 +6804,27 @@ export interface UpdateUserProfileOutput {
6804
6804
  * <p>The identifier of the Amazon DataZone domain in which a user profile is updated.</p>
6805
6805
  * @public
6806
6806
  */
6807
- domainId?: string;
6807
+ domainId?: string | undefined;
6808
6808
  /**
6809
6809
  * <p>The identifier of the user profile.</p>
6810
6810
  * @public
6811
6811
  */
6812
- id?: string;
6812
+ id?: string | undefined;
6813
6813
  /**
6814
6814
  * <p>The type of the user profile.</p>
6815
6815
  * @public
6816
6816
  */
6817
- type?: UserProfileType;
6817
+ type?: UserProfileType | undefined;
6818
6818
  /**
6819
6819
  * <p>The status of the user profile.</p>
6820
6820
  * @public
6821
6821
  */
6822
- status?: UserProfileStatus;
6822
+ status?: UserProfileStatus | undefined;
6823
6823
  /**
6824
6824
  * <p>The details of the user profile in Amazon DataZone.</p>
6825
6825
  * @public
6826
6826
  */
6827
- details?: UserProfileDetails;
6827
+ details?: UserProfileDetails | undefined;
6828
6828
  }
6829
6829
  /**
6830
6830
  * <p>A search filter clause in Amazon DataZone.</p>
@@ -6952,7 +6952,7 @@ export interface RowFilterConfiguration {
6952
6952
  * <p>Specifies whether the row filter is sensitive.</p>
6953
6953
  * @public
6954
6954
  */
6955
- sensitive?: boolean;
6955
+ sensitive?: boolean | undefined;
6956
6956
  }
6957
6957
  /**
6958
6958
  * @public
@@ -6967,7 +6967,7 @@ export interface SearchInput {
6967
6967
  * <p>The identifier of the owning project specified for the search.</p>
6968
6968
  * @public
6969
6969
  */
6970
- owningProjectIdentifier?: string;
6970
+ owningProjectIdentifier?: string | undefined;
6971
6971
  /**
6972
6972
  * <p>The maximum number of results to return in a single call to <code>Search</code>. When
6973
6973
  * the number of results to be listed is greater than the value of <code>MaxResults</code>,
@@ -6975,7 +6975,7 @@ export interface SearchInput {
6975
6975
  * to <code>Search</code> to list the next set of results.</p>
6976
6976
  * @public
6977
6977
  */
6978
- maxResults?: number;
6978
+ maxResults?: number | undefined;
6979
6979
  /**
6980
6980
  * <p>When the number of results is greater than the default value for the
6981
6981
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -6984,7 +6984,7 @@ export interface SearchInput {
6984
6984
  * value in a subsequent call to <code>Search</code> to list the next set of results.</p>
6985
6985
  * @public
6986
6986
  */
6987
- nextToken?: string;
6987
+ nextToken?: string | undefined;
6988
6988
  /**
6989
6989
  * <p>The scope of the search.</p>
6990
6990
  * @public
@@ -6994,27 +6994,27 @@ export interface SearchInput {
6994
6994
  * <p>Specifies the text for which to search.</p>
6995
6995
  * @public
6996
6996
  */
6997
- searchText?: string;
6997
+ searchText?: string | undefined;
6998
6998
  /**
6999
6999
  * <p>The details of the search.</p>
7000
7000
  * @public
7001
7001
  */
7002
- searchIn?: SearchInItem[];
7002
+ searchIn?: SearchInItem[] | undefined;
7003
7003
  /**
7004
7004
  * <p>Specifies the search filters.</p>
7005
7005
  * @public
7006
7006
  */
7007
- filters?: FilterClause;
7007
+ filters?: FilterClause | undefined;
7008
7008
  /**
7009
7009
  * <p>Specifies the way in which the search results are to be sorted.</p>
7010
7010
  * @public
7011
7011
  */
7012
- sort?: SearchSort;
7012
+ sort?: SearchSort | undefined;
7013
7013
  /**
7014
7014
  * <p>Specifies additional attributes for the <code>Search</code> action.</p>
7015
7015
  * @public
7016
7016
  */
7017
- additionalAttributes?: SearchOutputAdditionalAttribute[];
7017
+ additionalAttributes?: SearchOutputAdditionalAttribute[] | undefined;
7018
7018
  }
7019
7019
  /**
7020
7020
  * @public
@@ -7029,12 +7029,12 @@ export interface SearchListingsInput {
7029
7029
  * <p>Specifies the text for which to search.</p>
7030
7030
  * @public
7031
7031
  */
7032
- searchText?: string;
7032
+ searchText?: string | undefined;
7033
7033
  /**
7034
7034
  * <p>The details of the search.</p>
7035
7035
  * @public
7036
7036
  */
7037
- searchIn?: SearchInItem[];
7037
+ searchIn?: SearchInItem[] | undefined;
7038
7038
  /**
7039
7039
  * <p>The maximum number of results to return in a single call to <code>SearchListings</code>.
7040
7040
  * When the number of results to be listed is greater than the value of
@@ -7043,7 +7043,7 @@ export interface SearchListingsInput {
7043
7043
  * results. </p>
7044
7044
  * @public
7045
7045
  */
7046
- maxResults?: number;
7046
+ maxResults?: number | undefined;
7047
7047
  /**
7048
7048
  * <p>When the number of results is greater than the default value for the
7049
7049
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -7053,22 +7053,22 @@ export interface SearchListingsInput {
7053
7053
  * results.</p>
7054
7054
  * @public
7055
7055
  */
7056
- nextToken?: string;
7056
+ nextToken?: string | undefined;
7057
7057
  /**
7058
7058
  * <p>Specifies the filters for the search of listings.</p>
7059
7059
  * @public
7060
7060
  */
7061
- filters?: FilterClause;
7061
+ filters?: FilterClause | undefined;
7062
7062
  /**
7063
7063
  * <p>Specifies the way for sorting the search results.</p>
7064
7064
  * @public
7065
7065
  */
7066
- sort?: SearchSort;
7066
+ sort?: SearchSort | undefined;
7067
7067
  /**
7068
7068
  * <p>Specifies additional attributes for the search.</p>
7069
7069
  * @public
7070
7070
  */
7071
- additionalAttributes?: SearchOutputAdditionalAttribute[];
7071
+ additionalAttributes?: SearchOutputAdditionalAttribute[] | undefined;
7072
7072
  }
7073
7073
  /**
7074
7074
  * @public
@@ -7088,7 +7088,7 @@ export interface SearchTypesInput {
7088
7088
  * </p>
7089
7089
  * @public
7090
7090
  */
7091
- maxResults?: number;
7091
+ maxResults?: number | undefined;
7092
7092
  /**
7093
7093
  * <p>When the number of results is greater than the default value for the
7094
7094
  * <code>MaxResults</code> parameter, or if you explicitly specify a value for
@@ -7098,7 +7098,7 @@ export interface SearchTypesInput {
7098
7098
  * results.</p>
7099
7099
  * @public
7100
7100
  */
7101
- nextToken?: string;
7101
+ nextToken?: string | undefined;
7102
7102
  /**
7103
7103
  * <p>Specifies the scope of the search for types.</p>
7104
7104
  * @public
@@ -7108,22 +7108,22 @@ export interface SearchTypesInput {
7108
7108
  * <p>Specifies the text for which to search.</p>
7109
7109
  * @public
7110
7110
  */
7111
- searchText?: string;
7111
+ searchText?: string | undefined;
7112
7112
  /**
7113
7113
  * <p>The details of the search.</p>
7114
7114
  * @public
7115
7115
  */
7116
- searchIn?: SearchInItem[];
7116
+ searchIn?: SearchInItem[] | undefined;
7117
7117
  /**
7118
7118
  * <p>The filters for the <code>SearchTypes</code> action.</p>
7119
7119
  * @public
7120
7120
  */
7121
- filters?: FilterClause;
7121
+ filters?: FilterClause | undefined;
7122
7122
  /**
7123
7123
  * <p>The specifies the way to sort the <code>SearchTypes</code> results.</p>
7124
7124
  * @public
7125
7125
  */
7126
- sort?: SearchSort;
7126
+ sort?: SearchSort | undefined;
7127
7127
  /**
7128
7128
  * <p>Specifies whether the search is managed.</p>
7129
7129
  * @public
@@ -7195,7 +7195,7 @@ export interface CreateAssetFilterInput {
7195
7195
  * <p>The description of the asset filter.</p>
7196
7196
  * @public
7197
7197
  */
7198
- description?: string;
7198
+ description?: string | undefined;
7199
7199
  /**
7200
7200
  * <p>The configuration of the asset filter.</p>
7201
7201
  * @public
@@ -7206,7 +7206,7 @@ export interface CreateAssetFilterInput {
7206
7206
  * request.</p>
7207
7207
  * @public
7208
7208
  */
7209
- clientToken?: string;
7209
+ clientToken?: string | undefined;
7210
7210
  }
7211
7211
  /**
7212
7212
  * @public
@@ -7236,12 +7236,12 @@ export interface CreateAssetFilterOutput {
7236
7236
  * <p>The description of the asset filter.</p>
7237
7237
  * @public
7238
7238
  */
7239
- description?: string;
7239
+ description?: string | undefined;
7240
7240
  /**
7241
7241
  * <p>The status of the asset filter.</p>
7242
7242
  * @public
7243
7243
  */
7244
- status?: FilterStatus;
7244
+ status?: FilterStatus | undefined;
7245
7245
  /**
7246
7246
  * <p>The configuration of the asset filter.</p>
7247
7247
  * @public
@@ -7251,23 +7251,23 @@ export interface CreateAssetFilterOutput {
7251
7251
  * <p>The timestamp at which the asset filter was created.</p>
7252
7252
  * @public
7253
7253
  */
7254
- createdAt?: Date;
7254
+ createdAt?: Date | undefined;
7255
7255
  /**
7256
7256
  * <p>The error message that is displayed if the asset filter is not created
7257
7257
  * successfully.</p>
7258
7258
  * @public
7259
7259
  */
7260
- errorMessage?: string;
7260
+ errorMessage?: string | undefined;
7261
7261
  /**
7262
7262
  * <p>The column names in the asset filter.</p>
7263
7263
  * @public
7264
7264
  */
7265
- effectiveColumnNames?: string[];
7265
+ effectiveColumnNames?: string[] | undefined;
7266
7266
  /**
7267
7267
  * <p>The row filter in the asset filter.</p>
7268
7268
  * @public
7269
7269
  */
7270
- effectiveRowFilter?: string;
7270
+ effectiveRowFilter?: string | undefined;
7271
7271
  }
7272
7272
  /**
7273
7273
  * @public
@@ -7297,12 +7297,12 @@ export interface GetAssetFilterOutput {
7297
7297
  * <p>The description of the asset filter.</p>
7298
7298
  * @public
7299
7299
  */
7300
- description?: string;
7300
+ description?: string | undefined;
7301
7301
  /**
7302
7302
  * <p>The status of the asset filter.</p>
7303
7303
  * @public
7304
7304
  */
7305
- status?: FilterStatus;
7305
+ status?: FilterStatus | undefined;
7306
7306
  /**
7307
7307
  * <p>The configuration of the asset filter.</p>
7308
7308
  * @public
@@ -7312,22 +7312,22 @@ export interface GetAssetFilterOutput {
7312
7312
  * <p>The timestamp at which the asset filter was created.</p>
7313
7313
  * @public
7314
7314
  */
7315
- createdAt?: Date;
7315
+ createdAt?: Date | undefined;
7316
7316
  /**
7317
7317
  * <p>The error message that is displayed if the action does not complete successfully.</p>
7318
7318
  * @public
7319
7319
  */
7320
- errorMessage?: string;
7320
+ errorMessage?: string | undefined;
7321
7321
  /**
7322
7322
  * <p>The column names of the asset filter.</p>
7323
7323
  * @public
7324
7324
  */
7325
- effectiveColumnNames?: string[];
7325
+ effectiveColumnNames?: string[] | undefined;
7326
7326
  /**
7327
7327
  * <p>The row filter of the asset filter.</p>
7328
7328
  * @public
7329
7329
  */
7330
- effectiveRowFilter?: string;
7330
+ effectiveRowFilter?: string | undefined;
7331
7331
  }
7332
7332
  /**
7333
7333
  * @public
@@ -7352,17 +7352,17 @@ export interface UpdateAssetFilterInput {
7352
7352
  * <p>The name of the asset filter.</p>
7353
7353
  * @public
7354
7354
  */
7355
- name?: string;
7355
+ name?: string | undefined;
7356
7356
  /**
7357
7357
  * <p>The description of the asset filter.</p>
7358
7358
  * @public
7359
7359
  */
7360
- description?: string;
7360
+ description?: string | undefined;
7361
7361
  /**
7362
7362
  * <p>The configuration of the asset filter.</p>
7363
7363
  * @public
7364
7364
  */
7365
- configuration?: AssetFilterConfiguration;
7365
+ configuration?: AssetFilterConfiguration | undefined;
7366
7366
  }
7367
7367
  /**
7368
7368
  * @public
@@ -7392,12 +7392,12 @@ export interface UpdateAssetFilterOutput {
7392
7392
  * <p>The description of the asset filter.</p>
7393
7393
  * @public
7394
7394
  */
7395
- description?: string;
7395
+ description?: string | undefined;
7396
7396
  /**
7397
7397
  * <p>The status of the asset filter.</p>
7398
7398
  * @public
7399
7399
  */
7400
- status?: FilterStatus;
7400
+ status?: FilterStatus | undefined;
7401
7401
  /**
7402
7402
  * <p>The configuration of the asset filter.</p>
7403
7403
  * @public
@@ -7407,22 +7407,22 @@ export interface UpdateAssetFilterOutput {
7407
7407
  * <p>The timestamp at which the asset filter was created.</p>
7408
7408
  * @public
7409
7409
  */
7410
- createdAt?: Date;
7410
+ createdAt?: Date | undefined;
7411
7411
  /**
7412
7412
  * <p>The error message that is displayed if the action is not completed successfully.</p>
7413
7413
  * @public
7414
7414
  */
7415
- errorMessage?: string;
7415
+ errorMessage?: string | undefined;
7416
7416
  /**
7417
7417
  * <p>The column names of the asset filter.</p>
7418
7418
  * @public
7419
7419
  */
7420
- effectiveColumnNames?: string[];
7420
+ effectiveColumnNames?: string[] | undefined;
7421
7421
  /**
7422
7422
  * <p>The row filter of the asset filter.</p>
7423
7423
  * @public
7424
7424
  */
7425
- effectiveRowFilter?: string;
7425
+ effectiveRowFilter?: string | undefined;
7426
7426
  }
7427
7427
  /**
7428
7428
  * @internal