@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.
@@ -63,8 +63,8 @@ export interface GetEnvironmentBlueprintConfigurationInput {
63
63
  environmentBlueprintIdentifier: string | undefined;
64
64
  }
65
65
  export interface LakeFormationConfiguration {
66
- locationRegistrationRole?: string;
67
- locationRegistrationExcludeS3Locations?: string[];
66
+ locationRegistrationRole?: string | undefined;
67
+ locationRegistrationExcludeS3Locations?: string[] | undefined;
68
68
  }
69
69
  export type ProvisioningConfiguration =
70
70
  | ProvisioningConfiguration.LakeFormationConfigurationMember
@@ -87,53 +87,53 @@ export declare namespace ProvisioningConfiguration {
87
87
  export interface GetEnvironmentBlueprintConfigurationOutput {
88
88
  domainId: string | undefined;
89
89
  environmentBlueprintId: string | undefined;
90
- provisioningRoleArn?: string;
91
- manageAccessRoleArn?: string;
92
- enabledRegions?: string[];
93
- regionalParameters?: Record<string, Record<string, string>>;
94
- createdAt?: Date;
95
- updatedAt?: Date;
96
- provisioningConfigurations?: ProvisioningConfiguration[];
90
+ provisioningRoleArn?: string | undefined;
91
+ manageAccessRoleArn?: string | undefined;
92
+ enabledRegions?: string[] | undefined;
93
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
94
+ createdAt?: Date | undefined;
95
+ updatedAt?: Date | undefined;
96
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
97
97
  }
98
98
  export interface ListEnvironmentBlueprintConfigurationsInput {
99
99
  domainIdentifier: string | undefined;
100
- maxResults?: number;
101
- nextToken?: string;
100
+ maxResults?: number | undefined;
101
+ nextToken?: string | undefined;
102
102
  }
103
103
  export interface EnvironmentBlueprintConfigurationItem {
104
104
  domainId: string | undefined;
105
105
  environmentBlueprintId: string | undefined;
106
- provisioningRoleArn?: string;
107
- manageAccessRoleArn?: string;
108
- enabledRegions?: string[];
109
- regionalParameters?: Record<string, Record<string, string>>;
110
- createdAt?: Date;
111
- updatedAt?: Date;
112
- provisioningConfigurations?: ProvisioningConfiguration[];
106
+ provisioningRoleArn?: string | undefined;
107
+ manageAccessRoleArn?: string | undefined;
108
+ enabledRegions?: string[] | undefined;
109
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
110
+ createdAt?: Date | undefined;
111
+ updatedAt?: Date | undefined;
112
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
113
113
  }
114
114
  export interface ListEnvironmentBlueprintConfigurationsOutput {
115
- items?: EnvironmentBlueprintConfigurationItem[];
116
- nextToken?: string;
115
+ items?: EnvironmentBlueprintConfigurationItem[] | undefined;
116
+ nextToken?: string | undefined;
117
117
  }
118
118
  export interface PutEnvironmentBlueprintConfigurationInput {
119
119
  domainIdentifier: string | undefined;
120
120
  environmentBlueprintIdentifier: string | undefined;
121
- provisioningRoleArn?: string;
122
- manageAccessRoleArn?: string;
121
+ provisioningRoleArn?: string | undefined;
122
+ manageAccessRoleArn?: string | undefined;
123
123
  enabledRegions: string[] | undefined;
124
- regionalParameters?: Record<string, Record<string, string>>;
125
- provisioningConfigurations?: ProvisioningConfiguration[];
124
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
125
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
126
126
  }
127
127
  export interface PutEnvironmentBlueprintConfigurationOutput {
128
128
  domainId: string | undefined;
129
129
  environmentBlueprintId: string | undefined;
130
- provisioningRoleArn?: string;
131
- manageAccessRoleArn?: string;
132
- enabledRegions?: string[];
133
- regionalParameters?: Record<string, Record<string, string>>;
134
- createdAt?: Date;
135
- updatedAt?: Date;
136
- provisioningConfigurations?: ProvisioningConfiguration[];
130
+ provisioningRoleArn?: string | undefined;
131
+ manageAccessRoleArn?: string | undefined;
132
+ enabledRegions?: string[] | undefined;
133
+ regionalParameters?: Record<string, Record<string, string>> | undefined;
134
+ createdAt?: Date | undefined;
135
+ updatedAt?: Date | undefined;
136
+ provisioningConfigurations?: ProvisioningConfiguration[] | undefined;
137
137
  }
138
138
  export interface DeleteFormTypeInput {
139
139
  domainIdentifier: string | undefined;
@@ -143,7 +143,7 @@ export interface DeleteFormTypeOutput {}
143
143
  export interface GetFormTypeInput {
144
144
  domainIdentifier: string | undefined;
145
145
  formTypeIdentifier: string | undefined;
146
- revision?: string;
146
+ revision?: string | undefined;
147
147
  }
148
148
  export interface Import {
149
149
  name: string | undefined;
@@ -154,14 +154,14 @@ export interface GetFormTypeOutput {
154
154
  name: string | undefined;
155
155
  revision: string | undefined;
156
156
  model: Model | undefined;
157
- owningProjectId?: string;
158
- originDomainId?: string;
159
- originProjectId?: string;
160
- status?: FormTypeStatus;
161
- createdAt?: Date;
162
- createdBy?: string;
163
- description?: string;
164
- imports?: Import[];
157
+ owningProjectId?: string | undefined;
158
+ originDomainId?: string | undefined;
159
+ originProjectId?: string | undefined;
160
+ status?: FormTypeStatus | undefined;
161
+ createdAt?: Date | undefined;
162
+ createdBy?: string | undefined;
163
+ description?: string | undefined;
164
+ imports?: Import[] | undefined;
165
165
  }
166
166
  export interface GetAssetFilterInput {
167
167
  domainIdentifier: string | undefined;
@@ -174,26 +174,26 @@ export interface GetEnvironmentInput {
174
174
  }
175
175
  export interface GetEnvironmentOutput {
176
176
  projectId: string | undefined;
177
- id?: string;
177
+ id?: string | undefined;
178
178
  domainId: string | undefined;
179
179
  createdBy: string | undefined;
180
- createdAt?: Date;
181
- updatedAt?: Date;
180
+ createdAt?: Date | undefined;
181
+ updatedAt?: Date | undefined;
182
182
  name: string | undefined;
183
- description?: string;
184
- environmentProfileId?: string;
185
- awsAccountId?: string;
186
- awsAccountRegion?: string;
183
+ description?: string | undefined;
184
+ environmentProfileId?: string | undefined;
185
+ awsAccountId?: string | undefined;
186
+ awsAccountRegion?: string | undefined;
187
187
  provider: string | undefined;
188
- provisionedResources?: Resource[];
189
- status?: EnvironmentStatus;
190
- environmentActions?: ConfigurableEnvironmentAction[];
191
- glossaryTerms?: string[];
192
- userParameters?: CustomParameter[];
193
- lastDeployment?: Deployment;
194
- provisioningProperties?: ProvisioningProperties;
195
- deploymentProperties?: DeploymentProperties;
196
- environmentBlueprintId?: string;
188
+ provisionedResources?: Resource[] | undefined;
189
+ status?: EnvironmentStatus | undefined;
190
+ environmentActions?: ConfigurableEnvironmentAction[] | undefined;
191
+ glossaryTerms?: string[] | undefined;
192
+ userParameters?: CustomParameter[] | undefined;
193
+ lastDeployment?: Deployment | undefined;
194
+ provisioningProperties?: ProvisioningProperties | undefined;
195
+ deploymentProperties?: DeploymentProperties | undefined;
196
+ environmentBlueprintId?: string | undefined;
197
197
  }
198
198
  export interface GetEnvironmentActionInput {
199
199
  domainIdentifier: string | undefined;
@@ -206,7 +206,7 @@ export interface GetEnvironmentActionOutput {
206
206
  id: string | undefined;
207
207
  name: string | undefined;
208
208
  parameters: ActionParameters | undefined;
209
- description?: string;
209
+ description?: string | undefined;
210
210
  }
211
211
  export interface GetEnvironmentBlueprintInput {
212
212
  domainIdentifier: string | undefined;
@@ -215,24 +215,24 @@ export interface GetEnvironmentBlueprintInput {
215
215
  export interface GetEnvironmentBlueprintOutput {
216
216
  id: string | undefined;
217
217
  name: string | undefined;
218
- description?: string;
218
+ description?: string | undefined;
219
219
  provider: string | undefined;
220
220
  provisioningProperties: ProvisioningProperties | undefined;
221
- deploymentProperties?: DeploymentProperties;
222
- userParameters?: CustomParameter[];
223
- glossaryTerms?: string[];
224
- createdAt?: Date;
225
- updatedAt?: Date;
221
+ deploymentProperties?: DeploymentProperties | undefined;
222
+ userParameters?: CustomParameter[] | undefined;
223
+ glossaryTerms?: string[] | undefined;
224
+ createdAt?: Date | undefined;
225
+ updatedAt?: Date | undefined;
226
226
  }
227
227
  export interface GetEnvironmentCredentialsInput {
228
228
  domainIdentifier: string | undefined;
229
229
  environmentIdentifier: string | undefined;
230
230
  }
231
231
  export interface GetEnvironmentCredentialsOutput {
232
- accessKeyId?: string;
233
- secretAccessKey?: string;
234
- sessionToken?: string;
235
- expiration?: Date;
232
+ accessKeyId?: string | undefined;
233
+ secretAccessKey?: string | undefined;
234
+ sessionToken?: string | undefined;
235
+ expiration?: Date | undefined;
236
236
  }
237
237
  export interface GetEnvironmentProfileInput {
238
238
  domainIdentifier: string | undefined;
@@ -241,59 +241,59 @@ export interface GetEnvironmentProfileInput {
241
241
  export interface GetEnvironmentProfileOutput {
242
242
  id: string | undefined;
243
243
  domainId: string | undefined;
244
- awsAccountId?: string;
245
- awsAccountRegion?: string;
244
+ awsAccountId?: string | undefined;
245
+ awsAccountRegion?: string | undefined;
246
246
  createdBy: string | undefined;
247
- createdAt?: Date;
248
- updatedAt?: Date;
247
+ createdAt?: Date | undefined;
248
+ updatedAt?: Date | undefined;
249
249
  name: string | undefined;
250
- description?: string;
250
+ description?: string | undefined;
251
251
  environmentBlueprintId: string | undefined;
252
- projectId?: string;
253
- userParameters?: CustomParameter[];
252
+ projectId?: string | undefined;
253
+ userParameters?: CustomParameter[] | undefined;
254
254
  }
255
255
  export interface GetGroupProfileInput {
256
256
  domainIdentifier: string | undefined;
257
257
  groupIdentifier: string | undefined;
258
258
  }
259
259
  export interface GetGroupProfileOutput {
260
- domainId?: string;
261
- id?: string;
262
- status?: GroupProfileStatus;
263
- groupName?: string;
260
+ domainId?: string | undefined;
261
+ id?: string | undefined;
262
+ status?: GroupProfileStatus | undefined;
263
+ groupName?: string | undefined;
264
264
  }
265
265
  export interface GetIamPortalLoginUrlInput {
266
266
  domainIdentifier: string | undefined;
267
267
  }
268
268
  export interface GetIamPortalLoginUrlOutput {
269
- authCodeUrl?: string;
269
+ authCodeUrl?: string | undefined;
270
270
  userProfileId: string | undefined;
271
271
  }
272
272
  export interface GetLineageNodeInput {
273
273
  domainIdentifier: string | undefined;
274
274
  identifier: string | undefined;
275
- eventTimestamp?: Date;
275
+ eventTimestamp?: Date | undefined;
276
276
  }
277
277
  export interface LineageNodeReference {
278
- id?: string;
279
- eventTimestamp?: Date;
278
+ id?: string | undefined;
279
+ eventTimestamp?: Date | undefined;
280
280
  }
281
281
  export interface GetLineageNodeOutput {
282
282
  domainId: string | undefined;
283
- name?: string;
284
- description?: string;
285
- createdAt?: Date;
286
- createdBy?: string;
287
- updatedAt?: Date;
288
- updatedBy?: string;
283
+ name?: string | undefined;
284
+ description?: string | undefined;
285
+ createdAt?: Date | undefined;
286
+ createdBy?: string | undefined;
287
+ updatedAt?: Date | undefined;
288
+ updatedBy?: string | undefined;
289
289
  id: string | undefined;
290
290
  typeName: string | undefined;
291
- typeRevision?: string;
292
- sourceIdentifier?: string;
293
- eventTimestamp?: Date;
294
- formsOutput?: FormOutput[];
295
- upstreamNodes?: LineageNodeReference[];
296
- downstreamNodes?: LineageNodeReference[];
291
+ typeRevision?: string | undefined;
292
+ sourceIdentifier?: string | undefined;
293
+ eventTimestamp?: Date | undefined;
294
+ formsOutput?: FormOutput[] | undefined;
295
+ upstreamNodes?: LineageNodeReference[] | undefined;
296
+ downstreamNodes?: LineageNodeReference[] | undefined;
297
297
  }
298
298
  export interface GetProjectInput {
299
299
  domainIdentifier: string | undefined;
@@ -303,14 +303,14 @@ export interface GetProjectOutput {
303
303
  domainId: string | undefined;
304
304
  id: string | undefined;
305
305
  name: string | undefined;
306
- description?: string;
307
- projectStatus?: ProjectStatus;
308
- failureReasons?: ProjectDeletionError[];
306
+ description?: string | undefined;
307
+ projectStatus?: ProjectStatus | undefined;
308
+ failureReasons?: ProjectDeletionError[] | undefined;
309
309
  createdBy: string | undefined;
310
- createdAt?: Date;
311
- lastUpdatedAt?: Date;
312
- glossaryTerms?: string[];
313
- domainUnitId?: string;
310
+ createdAt?: Date | undefined;
311
+ lastUpdatedAt?: Date | undefined;
312
+ glossaryTerms?: string[] | undefined;
313
+ domainUnitId?: string | undefined;
314
314
  }
315
315
  export interface GetSubscriptionInput {
316
316
  domainIdentifier: string | undefined;
@@ -319,15 +319,15 @@ export interface GetSubscriptionInput {
319
319
  export interface GetSubscriptionOutput {
320
320
  id: string | undefined;
321
321
  createdBy: string | undefined;
322
- updatedBy?: string;
322
+ updatedBy?: string | undefined;
323
323
  domainId: string | undefined;
324
324
  status: SubscriptionStatus | undefined;
325
325
  createdAt: Date | undefined;
326
326
  updatedAt: Date | undefined;
327
327
  subscribedPrincipal: SubscribedPrincipal | undefined;
328
328
  subscribedListing: SubscribedListing | undefined;
329
- subscriptionRequestId?: string;
330
- retainPermissions?: boolean;
329
+ subscriptionRequestId?: string | undefined;
330
+ retainPermissions?: boolean | undefined;
331
331
  }
332
332
  export interface GetSubscriptionGrantInput {
333
333
  domainIdentifier: string | undefined;
@@ -336,15 +336,15 @@ export interface GetSubscriptionGrantInput {
336
336
  export interface GetSubscriptionGrantOutput {
337
337
  id: string | undefined;
338
338
  createdBy: string | undefined;
339
- updatedBy?: string;
339
+ updatedBy?: string | undefined;
340
340
  domainId: string | undefined;
341
341
  createdAt: Date | undefined;
342
342
  updatedAt: Date | undefined;
343
343
  subscriptionTargetId: string | undefined;
344
344
  grantedEntity: GrantedEntity | undefined;
345
345
  status: SubscriptionGrantOverallStatus | undefined;
346
- assets?: SubscribedAsset[];
347
- subscriptionId?: string;
346
+ assets?: SubscribedAsset[] | undefined;
347
+ subscriptionId?: string | undefined;
348
348
  }
349
349
  export interface GetSubscriptionRequestDetailsInput {
350
350
  domainIdentifier: string | undefined;
@@ -353,7 +353,7 @@ export interface GetSubscriptionRequestDetailsInput {
353
353
  export interface GetSubscriptionRequestDetailsOutput {
354
354
  id: string | undefined;
355
355
  createdBy: string | undefined;
356
- updatedBy?: string;
356
+ updatedBy?: string | undefined;
357
357
  domainId: string | undefined;
358
358
  status: SubscriptionRequestStatus | undefined;
359
359
  createdAt: Date | undefined;
@@ -361,8 +361,8 @@ export interface GetSubscriptionRequestDetailsOutput {
361
361
  requestReason: string | undefined;
362
362
  subscribedPrincipals: SubscribedPrincipal[] | undefined;
363
363
  subscribedListings: SubscribedListing[] | undefined;
364
- reviewerId?: string;
365
- decisionComment?: string;
364
+ reviewerId?: string | undefined;
365
+ decisionComment?: string | undefined;
366
366
  }
367
367
  export interface GetSubscriptionTargetInput {
368
368
  domainIdentifier: string | undefined;
@@ -378,9 +378,9 @@ export interface GetSubscriptionTargetOutput {
378
378
  name: string | undefined;
379
379
  type: string | undefined;
380
380
  createdBy: string | undefined;
381
- updatedBy?: string;
381
+ updatedBy?: string | undefined;
382
382
  createdAt: Date | undefined;
383
- updatedAt?: Date;
383
+ updatedAt?: Date | undefined;
384
384
  manageAccessRole: string | undefined;
385
385
  applicableAssetTypes: string[] | undefined;
386
386
  subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
@@ -396,29 +396,29 @@ export interface GetTimeSeriesDataPointInput {
396
396
  export interface TimeSeriesDataPointFormOutput {
397
397
  formName: string | undefined;
398
398
  typeIdentifier: string | undefined;
399
- typeRevision?: string;
399
+ typeRevision?: string | undefined;
400
400
  timestamp: Date | undefined;
401
- content?: string;
402
- id?: string;
401
+ content?: string | undefined;
402
+ id?: string | undefined;
403
403
  }
404
404
  export interface GetTimeSeriesDataPointOutput {
405
- domainId?: string;
406
- entityId?: string;
407
- entityType?: TimeSeriesEntityType;
408
- formName?: string;
409
- form?: TimeSeriesDataPointFormOutput;
405
+ domainId?: string | undefined;
406
+ entityId?: string | undefined;
407
+ entityType?: TimeSeriesEntityType | undefined;
408
+ formName?: string | undefined;
409
+ form?: TimeSeriesDataPointFormOutput | undefined;
410
410
  }
411
411
  export interface GetUserProfileInput {
412
412
  domainIdentifier: string | undefined;
413
413
  userIdentifier: string | undefined;
414
- type?: UserProfileType;
414
+ type?: UserProfileType | undefined;
415
415
  }
416
416
  export interface GetUserProfileOutput {
417
- domainId?: string;
418
- id?: string;
419
- type?: UserProfileType;
420
- status?: UserProfileStatus;
421
- details?: UserProfileDetails;
417
+ domainId?: string | undefined;
418
+ id?: string | undefined;
419
+ type?: UserProfileType | undefined;
420
+ status?: UserProfileStatus | undefined;
421
+ details?: UserProfileDetails | undefined;
422
422
  }
423
423
  export interface DeleteGlossaryInput {
424
424
  domainIdentifier: string | undefined;
@@ -434,28 +434,28 @@ export interface GetGlossaryOutput {
434
434
  id: string | undefined;
435
435
  owningProjectId: string | undefined;
436
436
  name: string | undefined;
437
- description?: string;
437
+ description?: string | undefined;
438
438
  status: GlossaryStatus | undefined;
439
- createdAt?: Date;
440
- createdBy?: string;
441
- updatedAt?: Date;
442
- updatedBy?: string;
439
+ createdAt?: Date | undefined;
440
+ createdBy?: string | undefined;
441
+ updatedAt?: Date | undefined;
442
+ updatedBy?: string | undefined;
443
443
  }
444
444
  export interface UpdateGlossaryInput {
445
445
  domainIdentifier: string | undefined;
446
446
  identifier: string | undefined;
447
- name?: string;
448
- description?: string;
449
- status?: GlossaryStatus;
450
- clientToken?: string;
447
+ name?: string | undefined;
448
+ description?: string | undefined;
449
+ status?: GlossaryStatus | undefined;
450
+ clientToken?: string | undefined;
451
451
  }
452
452
  export interface UpdateGlossaryOutput {
453
453
  domainId: string | undefined;
454
454
  id: string | undefined;
455
455
  name: string | undefined;
456
456
  owningProjectId: string | undefined;
457
- description?: string;
458
- status?: GlossaryStatus;
457
+ description?: string | undefined;
458
+ status?: GlossaryStatus | undefined;
459
459
  }
460
460
  export interface DeleteGlossaryTermInput {
461
461
  domainIdentifier: string | undefined;
@@ -471,24 +471,24 @@ export interface GetGlossaryTermOutput {
471
471
  glossaryId: string | undefined;
472
472
  id: string | undefined;
473
473
  name: string | undefined;
474
- shortDescription?: string;
475
- longDescription?: string;
476
- termRelations?: TermRelations;
474
+ shortDescription?: string | undefined;
475
+ longDescription?: string | undefined;
476
+ termRelations?: TermRelations | undefined;
477
477
  status: GlossaryTermStatus | undefined;
478
- createdAt?: Date;
479
- createdBy?: string;
480
- updatedAt?: Date;
481
- updatedBy?: string;
478
+ createdAt?: Date | undefined;
479
+ createdBy?: string | undefined;
480
+ updatedAt?: Date | undefined;
481
+ updatedBy?: string | undefined;
482
482
  }
483
483
  export interface UpdateGlossaryTermInput {
484
484
  domainIdentifier: string | undefined;
485
- glossaryIdentifier?: string;
485
+ glossaryIdentifier?: string | undefined;
486
486
  identifier: string | undefined;
487
- name?: string;
488
- shortDescription?: string;
489
- longDescription?: string;
490
- termRelations?: TermRelations;
491
- status?: GlossaryTermStatus;
487
+ name?: string | undefined;
488
+ shortDescription?: string | undefined;
489
+ longDescription?: string | undefined;
490
+ termRelations?: TermRelations | undefined;
491
+ status?: GlossaryTermStatus | undefined;
492
492
  }
493
493
  export interface UpdateGlossaryTermOutput {
494
494
  id: string | undefined;
@@ -496,64 +496,64 @@ export interface UpdateGlossaryTermOutput {
496
496
  glossaryId: string | undefined;
497
497
  name: string | undefined;
498
498
  status: GlossaryTermStatus | undefined;
499
- shortDescription?: string;
500
- longDescription?: string;
501
- termRelations?: TermRelations;
499
+ shortDescription?: string | undefined;
500
+ longDescription?: string | undefined;
501
+ termRelations?: TermRelations | undefined;
502
502
  }
503
503
  export interface ListAssetFiltersInput {
504
504
  domainIdentifier: string | undefined;
505
505
  assetIdentifier: string | undefined;
506
- status?: FilterStatus;
507
- nextToken?: string;
508
- maxResults?: number;
506
+ status?: FilterStatus | undefined;
507
+ nextToken?: string | undefined;
508
+ maxResults?: number | undefined;
509
509
  }
510
510
  export interface ListAssetFiltersOutput {
511
511
  items: AssetFilterSummary[] | undefined;
512
- nextToken?: string;
512
+ nextToken?: string | undefined;
513
513
  }
514
514
  export interface ListAssetRevisionsInput {
515
515
  domainIdentifier: string | undefined;
516
516
  identifier: string | undefined;
517
- nextToken?: string;
518
- maxResults?: number;
517
+ nextToken?: string | undefined;
518
+ maxResults?: number | undefined;
519
519
  }
520
520
  export interface ListAssetRevisionsOutput {
521
- items?: AssetRevision[];
522
- nextToken?: string;
521
+ items?: AssetRevision[] | undefined;
522
+ nextToken?: string | undefined;
523
523
  }
524
524
  export interface ListDataProductRevisionsInput {
525
525
  domainIdentifier: string | undefined;
526
526
  identifier: string | undefined;
527
- maxResults?: number;
528
- nextToken?: string;
527
+ maxResults?: number | undefined;
528
+ nextToken?: string | undefined;
529
529
  }
530
530
  export interface ListDataProductRevisionsOutput {
531
531
  items: DataProductRevision[] | undefined;
532
- nextToken?: string;
532
+ nextToken?: string | undefined;
533
533
  }
534
534
  export interface ListDataSourceRunActivitiesInput {
535
535
  domainIdentifier: string | undefined;
536
536
  identifier: string | undefined;
537
- status?: DataAssetActivityStatus;
538
- nextToken?: string;
539
- maxResults?: number;
537
+ status?: DataAssetActivityStatus | undefined;
538
+ nextToken?: string | undefined;
539
+ maxResults?: number | undefined;
540
540
  }
541
541
  export interface ListDataSourceRunActivitiesOutput {
542
542
  items: DataSourceRunActivity[] | undefined;
543
- nextToken?: string;
543
+ nextToken?: string | undefined;
544
544
  }
545
545
  export interface ListEntityOwnersInput {
546
546
  domainIdentifier: string | undefined;
547
547
  entityType: DataZoneEntityType | undefined;
548
548
  entityIdentifier: string | undefined;
549
- maxResults?: number;
550
- nextToken?: string;
549
+ maxResults?: number | undefined;
550
+ nextToken?: string | undefined;
551
551
  }
552
552
  export interface OwnerGroupPropertiesOutput {
553
- groupId?: string;
553
+ groupId?: string | undefined;
554
554
  }
555
555
  export interface OwnerUserPropertiesOutput {
556
- userId?: string;
556
+ userId?: string | undefined;
557
557
  }
558
558
  export type OwnerPropertiesOutput =
559
559
  | OwnerPropertiesOutput.GroupMember
@@ -584,13 +584,13 @@ export declare namespace OwnerPropertiesOutput {
584
584
  }
585
585
  export interface ListEntityOwnersOutput {
586
586
  owners: OwnerPropertiesOutput[] | undefined;
587
- nextToken?: string;
587
+ nextToken?: string | undefined;
588
588
  }
589
589
  export interface ListEnvironmentActionsInput {
590
590
  domainIdentifier: string | undefined;
591
591
  environmentIdentifier: string | undefined;
592
- nextToken?: string;
593
- maxResults?: number;
592
+ nextToken?: string | undefined;
593
+ maxResults?: number | undefined;
594
594
  }
595
595
  export interface EnvironmentActionSummary {
596
596
  domainId: string | undefined;
@@ -598,90 +598,90 @@ export interface EnvironmentActionSummary {
598
598
  id: string | undefined;
599
599
  name: string | undefined;
600
600
  parameters: ActionParameters | undefined;
601
- description?: string;
601
+ description?: string | undefined;
602
602
  }
603
603
  export interface ListEnvironmentActionsOutput {
604
- items?: EnvironmentActionSummary[];
605
- nextToken?: string;
604
+ items?: EnvironmentActionSummary[] | undefined;
605
+ nextToken?: string | undefined;
606
606
  }
607
607
  export interface ListEnvironmentBlueprintsInput {
608
608
  domainIdentifier: string | undefined;
609
- maxResults?: number;
610
- nextToken?: string;
611
- name?: string;
612
- managed?: boolean;
609
+ maxResults?: number | undefined;
610
+ nextToken?: string | undefined;
611
+ name?: string | undefined;
612
+ managed?: boolean | undefined;
613
613
  }
614
614
  export interface EnvironmentBlueprintSummary {
615
615
  id: string | undefined;
616
616
  name: string | undefined;
617
- description?: string;
617
+ description?: string | undefined;
618
618
  provider: string | undefined;
619
619
  provisioningProperties: ProvisioningProperties | undefined;
620
- createdAt?: Date;
621
- updatedAt?: Date;
620
+ createdAt?: Date | undefined;
621
+ updatedAt?: Date | undefined;
622
622
  }
623
623
  export interface ListEnvironmentBlueprintsOutput {
624
624
  items: EnvironmentBlueprintSummary[] | undefined;
625
- nextToken?: string;
625
+ nextToken?: string | undefined;
626
626
  }
627
627
  export interface ListEnvironmentProfilesInput {
628
628
  domainIdentifier: string | undefined;
629
- awsAccountId?: string;
630
- awsAccountRegion?: string;
631
- environmentBlueprintIdentifier?: string;
632
- projectIdentifier?: string;
633
- name?: string;
634
- nextToken?: string;
635
- maxResults?: number;
629
+ awsAccountId?: string | undefined;
630
+ awsAccountRegion?: string | undefined;
631
+ environmentBlueprintIdentifier?: string | undefined;
632
+ projectIdentifier?: string | undefined;
633
+ name?: string | undefined;
634
+ nextToken?: string | undefined;
635
+ maxResults?: number | undefined;
636
636
  }
637
637
  export interface EnvironmentProfileSummary {
638
638
  id: string | undefined;
639
639
  domainId: string | undefined;
640
- awsAccountId?: string;
641
- awsAccountRegion?: string;
640
+ awsAccountId?: string | undefined;
641
+ awsAccountRegion?: string | undefined;
642
642
  createdBy: string | undefined;
643
- createdAt?: Date;
644
- updatedAt?: Date;
643
+ createdAt?: Date | undefined;
644
+ updatedAt?: Date | undefined;
645
645
  name: string | undefined;
646
- description?: string;
646
+ description?: string | undefined;
647
647
  environmentBlueprintId: string | undefined;
648
- projectId?: string;
648
+ projectId?: string | undefined;
649
649
  }
650
650
  export interface ListEnvironmentProfilesOutput {
651
651
  items: EnvironmentProfileSummary[] | undefined;
652
- nextToken?: string;
652
+ nextToken?: string | undefined;
653
653
  }
654
654
  export interface ListEnvironmentsInput {
655
655
  domainIdentifier: string | undefined;
656
- awsAccountId?: string;
657
- status?: EnvironmentStatus;
658
- awsAccountRegion?: string;
656
+ awsAccountId?: string | undefined;
657
+ status?: EnvironmentStatus | undefined;
658
+ awsAccountRegion?: string | undefined;
659
659
  projectIdentifier: string | undefined;
660
- environmentProfileIdentifier?: string;
661
- environmentBlueprintIdentifier?: string;
662
- provider?: string;
663
- name?: string;
664
- maxResults?: number;
665
- nextToken?: string;
660
+ environmentProfileIdentifier?: string | undefined;
661
+ environmentBlueprintIdentifier?: string | undefined;
662
+ provider?: string | undefined;
663
+ name?: string | undefined;
664
+ maxResults?: number | undefined;
665
+ nextToken?: string | undefined;
666
666
  }
667
667
  export interface EnvironmentSummary {
668
668
  projectId: string | undefined;
669
- id?: string;
669
+ id?: string | undefined;
670
670
  domainId: string | undefined;
671
671
  createdBy: string | undefined;
672
- createdAt?: Date;
673
- updatedAt?: Date;
672
+ createdAt?: Date | undefined;
673
+ updatedAt?: Date | undefined;
674
674
  name: string | undefined;
675
- description?: string;
676
- environmentProfileId?: string;
677
- awsAccountId?: string;
678
- awsAccountRegion?: string;
675
+ description?: string | undefined;
676
+ environmentProfileId?: string | undefined;
677
+ awsAccountId?: string | undefined;
678
+ awsAccountRegion?: string | undefined;
679
679
  provider: string | undefined;
680
- status?: EnvironmentStatus;
680
+ status?: EnvironmentStatus | undefined;
681
681
  }
682
682
  export interface ListEnvironmentsOutput {
683
683
  items: EnvironmentSummary[] | undefined;
684
- nextToken?: string;
684
+ nextToken?: string | undefined;
685
685
  }
686
686
  export interface DeleteListingInput {
687
687
  domainIdentifier: string | undefined;
@@ -691,7 +691,7 @@ export interface DeleteListingOutput {}
691
691
  export interface GetListingInput {
692
692
  domainIdentifier: string | undefined;
693
693
  identifier: string | undefined;
694
- listingRevision?: string;
694
+ listingRevision?: string | undefined;
695
695
  }
696
696
  export type ListingItem =
697
697
  | ListingItem.AssetListingMember
@@ -724,14 +724,14 @@ export interface GetListingOutput {
724
724
  domainId: string | undefined;
725
725
  id: string | undefined;
726
726
  listingRevision: string | undefined;
727
- createdAt?: Date;
728
- updatedAt?: Date;
729
- createdBy?: string;
730
- updatedBy?: string;
731
- item?: ListingItem;
732
- name?: string;
733
- description?: string;
734
- status?: ListingStatus;
727
+ createdAt?: Date | undefined;
728
+ updatedAt?: Date | undefined;
729
+ createdBy?: string | undefined;
730
+ updatedBy?: string | undefined;
731
+ item?: ListingItem | undefined;
732
+ name?: string | undefined;
733
+ description?: string | undefined;
734
+ status?: ListingStatus | undefined;
735
735
  }
736
736
  export declare const EdgeDirection: {
737
737
  readonly DOWNSTREAM: "DOWNSTREAM";
@@ -745,31 +745,31 @@ export declare const SortOrder: {
745
745
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
746
746
  export interface ListLineageNodeHistoryInput {
747
747
  domainIdentifier: string | undefined;
748
- maxResults?: number;
749
- nextToken?: string;
748
+ maxResults?: number | undefined;
749
+ nextToken?: string | undefined;
750
750
  identifier: string | undefined;
751
- direction?: EdgeDirection;
752
- eventTimestampGTE?: Date;
753
- eventTimestampLTE?: Date;
754
- sortOrder?: SortOrder;
751
+ direction?: EdgeDirection | undefined;
752
+ eventTimestampGTE?: Date | undefined;
753
+ eventTimestampLTE?: Date | undefined;
754
+ sortOrder?: SortOrder | undefined;
755
755
  }
756
756
  export interface LineageNodeSummary {
757
757
  domainId: string | undefined;
758
- name?: string;
759
- description?: string;
760
- createdAt?: Date;
761
- createdBy?: string;
762
- updatedAt?: Date;
763
- updatedBy?: string;
758
+ name?: string | undefined;
759
+ description?: string | undefined;
760
+ createdAt?: Date | undefined;
761
+ createdBy?: string | undefined;
762
+ updatedAt?: Date | undefined;
763
+ updatedBy?: string | undefined;
764
764
  id: string | undefined;
765
765
  typeName: string | undefined;
766
- typeRevision?: string;
767
- sourceIdentifier?: string;
768
- eventTimestamp?: Date;
766
+ typeRevision?: string | undefined;
767
+ sourceIdentifier?: string | undefined;
768
+ eventTimestamp?: Date | undefined;
769
769
  }
770
770
  export interface ListLineageNodeHistoryOutput {
771
- nodes?: LineageNodeSummary[];
772
- nextToken?: string;
771
+ nodes?: LineageNodeSummary[] | undefined;
772
+ nextToken?: string | undefined;
773
773
  }
774
774
  export declare const TaskStatus: {
775
775
  readonly ACTIVE: "ACTIVE";
@@ -785,12 +785,12 @@ export type NotificationType =
785
785
  export interface ListNotificationsInput {
786
786
  domainIdentifier: string | undefined;
787
787
  type: NotificationType | undefined;
788
- afterTimestamp?: Date;
789
- beforeTimestamp?: Date;
790
- subjects?: string[];
791
- taskStatus?: TaskStatus;
792
- maxResults?: number;
793
- nextToken?: string;
788
+ afterTimestamp?: Date | undefined;
789
+ beforeTimestamp?: Date | undefined;
790
+ subjects?: string[] | undefined;
791
+ taskStatus?: TaskStatus | undefined;
792
+ maxResults?: number | undefined;
793
+ nextToken?: string | undefined;
794
794
  }
795
795
  export declare const NotificationResourceType: {
796
796
  readonly PROJECT: "PROJECT";
@@ -800,7 +800,7 @@ export type NotificationResourceType =
800
800
  export interface NotificationResource {
801
801
  type: NotificationResourceType | undefined;
802
802
  id: string | undefined;
803
- name?: string;
803
+ name?: string | undefined;
804
804
  }
805
805
  export declare const NotificationRole: {
806
806
  readonly DOMAIN_OWNER: "DOMAIN_OWNER";
@@ -823,33 +823,33 @@ export interface NotificationOutput {
823
823
  topic: Topic | undefined;
824
824
  title: string | undefined;
825
825
  message: string | undefined;
826
- status?: TaskStatus;
826
+ status?: TaskStatus | undefined;
827
827
  actionLink: string | undefined;
828
828
  creationTimestamp: Date | undefined;
829
829
  lastUpdatedTimestamp: Date | undefined;
830
- metadata?: Record<string, string>;
830
+ metadata?: Record<string, string> | undefined;
831
831
  }
832
832
  export interface ListNotificationsOutput {
833
- notifications?: NotificationOutput[];
834
- nextToken?: string;
833
+ notifications?: NotificationOutput[] | undefined;
834
+ nextToken?: string | undefined;
835
835
  }
836
836
  export interface ListPolicyGrantsInput {
837
837
  domainIdentifier: string | undefined;
838
838
  entityType: TargetEntityType | undefined;
839
839
  entityIdentifier: string | undefined;
840
840
  policyType: ManagedPolicyType | undefined;
841
- maxResults?: number;
842
- nextToken?: string;
841
+ maxResults?: number | undefined;
842
+ nextToken?: string | undefined;
843
843
  }
844
844
  export interface PolicyGrantMember {
845
- principal?: PolicyGrantPrincipal;
846
- detail?: PolicyGrantDetail;
847
- createdAt?: Date;
848
- createdBy?: string;
845
+ principal?: PolicyGrantPrincipal | undefined;
846
+ detail?: PolicyGrantDetail | undefined;
847
+ createdAt?: Date | undefined;
848
+ createdBy?: string | undefined;
849
849
  }
850
850
  export interface ListPolicyGrantsOutput {
851
851
  grantList: PolicyGrantMember[] | undefined;
852
- nextToken?: string;
852
+ nextToken?: string | undefined;
853
853
  }
854
854
  export declare const SortFieldProject: {
855
855
  readonly NAME: "NAME";
@@ -859,10 +859,10 @@ export type SortFieldProject =
859
859
  export interface ListProjectMembershipsInput {
860
860
  domainIdentifier: string | undefined;
861
861
  projectIdentifier: string | undefined;
862
- sortBy?: SortFieldProject;
863
- sortOrder?: SortOrder;
864
- nextToken?: string;
865
- maxResults?: number;
862
+ sortBy?: SortFieldProject | undefined;
863
+ sortOrder?: SortOrder | undefined;
864
+ nextToken?: string | undefined;
865
+ maxResults?: number | undefined;
866
866
  }
867
867
  export interface GroupDetails {
868
868
  groupId: string | undefined;
@@ -903,31 +903,31 @@ export interface ProjectMember {
903
903
  }
904
904
  export interface ListProjectMembershipsOutput {
905
905
  members: ProjectMember[] | undefined;
906
- nextToken?: string;
906
+ nextToken?: string | undefined;
907
907
  }
908
908
  export interface ListProjectsInput {
909
909
  domainIdentifier: string | undefined;
910
- userIdentifier?: string;
911
- groupIdentifier?: string;
912
- name?: string;
913
- nextToken?: string;
914
- maxResults?: number;
910
+ userIdentifier?: string | undefined;
911
+ groupIdentifier?: string | undefined;
912
+ name?: string | undefined;
913
+ nextToken?: string | undefined;
914
+ maxResults?: number | undefined;
915
915
  }
916
916
  export interface ProjectSummary {
917
917
  domainId: string | undefined;
918
918
  id: string | undefined;
919
919
  name: string | undefined;
920
- description?: string;
921
- projectStatus?: ProjectStatus;
922
- failureReasons?: ProjectDeletionError[];
920
+ description?: string | undefined;
921
+ projectStatus?: ProjectStatus | undefined;
922
+ failureReasons?: ProjectDeletionError[] | undefined;
923
923
  createdBy: string | undefined;
924
- createdAt?: Date;
925
- updatedAt?: Date;
926
- domainUnitId?: string;
924
+ createdAt?: Date | undefined;
925
+ updatedAt?: Date | undefined;
926
+ domainUnitId?: string | undefined;
927
927
  }
928
928
  export interface ListProjectsOutput {
929
- items?: ProjectSummary[];
930
- nextToken?: string;
929
+ items?: ProjectSummary[] | undefined;
930
+ nextToken?: string | undefined;
931
931
  }
932
932
  export declare const SortKey: {
933
933
  readonly CREATED_AT: "CREATED_AT";
@@ -936,48 +936,48 @@ export declare const SortKey: {
936
936
  export type SortKey = (typeof SortKey)[keyof typeof SortKey];
937
937
  export interface ListSubscriptionGrantsInput {
938
938
  domainIdentifier: string | undefined;
939
- environmentId?: string;
940
- subscriptionTargetId?: string;
941
- subscribedListingId?: string;
942
- subscriptionId?: string;
943
- owningProjectId?: string;
944
- sortBy?: SortKey;
945
- sortOrder?: SortOrder;
946
- maxResults?: number;
947
- nextToken?: string;
939
+ environmentId?: string | undefined;
940
+ subscriptionTargetId?: string | undefined;
941
+ subscribedListingId?: string | undefined;
942
+ subscriptionId?: string | undefined;
943
+ owningProjectId?: string | undefined;
944
+ sortBy?: SortKey | undefined;
945
+ sortOrder?: SortOrder | undefined;
946
+ maxResults?: number | undefined;
947
+ nextToken?: string | undefined;
948
948
  }
949
949
  export interface SubscriptionGrantSummary {
950
950
  id: string | undefined;
951
951
  createdBy: string | undefined;
952
- updatedBy?: string;
952
+ updatedBy?: string | undefined;
953
953
  domainId: string | undefined;
954
954
  createdAt: Date | undefined;
955
955
  updatedAt: Date | undefined;
956
956
  subscriptionTargetId: string | undefined;
957
957
  grantedEntity: GrantedEntity | undefined;
958
958
  status: SubscriptionGrantOverallStatus | undefined;
959
- assets?: SubscribedAsset[];
960
- subscriptionId?: string;
959
+ assets?: SubscribedAsset[] | undefined;
960
+ subscriptionId?: string | undefined;
961
961
  }
962
962
  export interface ListSubscriptionGrantsOutput {
963
963
  items: SubscriptionGrantSummary[] | undefined;
964
- nextToken?: string;
964
+ nextToken?: string | undefined;
965
965
  }
966
966
  export interface ListSubscriptionRequestsInput {
967
967
  domainIdentifier: string | undefined;
968
- status?: SubscriptionRequestStatus;
969
- subscribedListingId?: string;
970
- owningProjectId?: string;
971
- approverProjectId?: string;
972
- sortBy?: SortKey;
973
- sortOrder?: SortOrder;
974
- maxResults?: number;
975
- nextToken?: string;
968
+ status?: SubscriptionRequestStatus | undefined;
969
+ subscribedListingId?: string | undefined;
970
+ owningProjectId?: string | undefined;
971
+ approverProjectId?: string | undefined;
972
+ sortBy?: SortKey | undefined;
973
+ sortOrder?: SortOrder | undefined;
974
+ maxResults?: number | undefined;
975
+ nextToken?: string | undefined;
976
976
  }
977
977
  export interface SubscriptionRequestSummary {
978
978
  id: string | undefined;
979
979
  createdBy: string | undefined;
980
- updatedBy?: string;
980
+ updatedBy?: string | undefined;
981
981
  domainId: string | undefined;
982
982
  status: SubscriptionRequestStatus | undefined;
983
983
  createdAt: Date | undefined;
@@ -985,49 +985,49 @@ export interface SubscriptionRequestSummary {
985
985
  requestReason: string | undefined;
986
986
  subscribedPrincipals: SubscribedPrincipal[] | undefined;
987
987
  subscribedListings: SubscribedListing[] | undefined;
988
- reviewerId?: string;
989
- decisionComment?: string;
988
+ reviewerId?: string | undefined;
989
+ decisionComment?: string | undefined;
990
990
  }
991
991
  export interface ListSubscriptionRequestsOutput {
992
992
  items: SubscriptionRequestSummary[] | undefined;
993
- nextToken?: string;
993
+ nextToken?: string | undefined;
994
994
  }
995
995
  export interface ListSubscriptionsInput {
996
996
  domainIdentifier: string | undefined;
997
- subscriptionRequestIdentifier?: string;
998
- status?: SubscriptionStatus;
999
- subscribedListingId?: string;
1000
- owningProjectId?: string;
1001
- approverProjectId?: string;
1002
- sortBy?: SortKey;
1003
- sortOrder?: SortOrder;
1004
- maxResults?: number;
1005
- nextToken?: string;
997
+ subscriptionRequestIdentifier?: string | undefined;
998
+ status?: SubscriptionStatus | undefined;
999
+ subscribedListingId?: string | undefined;
1000
+ owningProjectId?: string | undefined;
1001
+ approverProjectId?: string | undefined;
1002
+ sortBy?: SortKey | undefined;
1003
+ sortOrder?: SortOrder | undefined;
1004
+ maxResults?: number | undefined;
1005
+ nextToken?: string | undefined;
1006
1006
  }
1007
1007
  export interface SubscriptionSummary {
1008
1008
  id: string | undefined;
1009
1009
  createdBy: string | undefined;
1010
- updatedBy?: string;
1010
+ updatedBy?: string | undefined;
1011
1011
  domainId: string | undefined;
1012
1012
  status: SubscriptionStatus | undefined;
1013
1013
  createdAt: Date | undefined;
1014
1014
  updatedAt: Date | undefined;
1015
1015
  subscribedPrincipal: SubscribedPrincipal | undefined;
1016
1016
  subscribedListing: SubscribedListing | undefined;
1017
- subscriptionRequestId?: string;
1018
- retainPermissions?: boolean;
1017
+ subscriptionRequestId?: string | undefined;
1018
+ retainPermissions?: boolean | undefined;
1019
1019
  }
1020
1020
  export interface ListSubscriptionsOutput {
1021
1021
  items: SubscriptionSummary[] | undefined;
1022
- nextToken?: string;
1022
+ nextToken?: string | undefined;
1023
1023
  }
1024
1024
  export interface ListSubscriptionTargetsInput {
1025
1025
  domainIdentifier: string | undefined;
1026
1026
  environmentIdentifier: string | undefined;
1027
- sortBy?: SortKey;
1028
- sortOrder?: SortOrder;
1029
- maxResults?: number;
1030
- nextToken?: string;
1027
+ sortBy?: SortKey | undefined;
1028
+ sortOrder?: SortOrder | undefined;
1029
+ maxResults?: number | undefined;
1030
+ nextToken?: string | undefined;
1031
1031
  }
1032
1032
  export interface SubscriptionTargetSummary {
1033
1033
  id: string | undefined;
@@ -1038,9 +1038,9 @@ export interface SubscriptionTargetSummary {
1038
1038
  name: string | undefined;
1039
1039
  type: string | undefined;
1040
1040
  createdBy: string | undefined;
1041
- updatedBy?: string;
1041
+ updatedBy?: string | undefined;
1042
1042
  createdAt: Date | undefined;
1043
- updatedAt?: Date;
1043
+ updatedAt?: Date | undefined;
1044
1044
  manageAccessRole: string | undefined;
1045
1045
  applicableAssetTypes: string[] | undefined;
1046
1046
  subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
@@ -1048,27 +1048,27 @@ export interface SubscriptionTargetSummary {
1048
1048
  }
1049
1049
  export interface ListSubscriptionTargetsOutput {
1050
1050
  items: SubscriptionTargetSummary[] | undefined;
1051
- nextToken?: string;
1051
+ nextToken?: string | undefined;
1052
1052
  }
1053
1053
  export interface ListTagsForResourceRequest {
1054
1054
  resourceArn: string | undefined;
1055
1055
  }
1056
1056
  export interface ListTagsForResourceResponse {
1057
- tags?: Record<string, string>;
1057
+ tags?: Record<string, string> | undefined;
1058
1058
  }
1059
1059
  export interface ListTimeSeriesDataPointsInput {
1060
1060
  domainIdentifier: string | undefined;
1061
1061
  entityIdentifier: string | undefined;
1062
1062
  entityType: TimeSeriesEntityType | undefined;
1063
1063
  formName: string | undefined;
1064
- startedAt?: Date;
1065
- endedAt?: Date;
1066
- nextToken?: string;
1067
- maxResults?: number;
1064
+ startedAt?: Date | undefined;
1065
+ endedAt?: Date | undefined;
1066
+ nextToken?: string | undefined;
1067
+ maxResults?: number | undefined;
1068
1068
  }
1069
1069
  export interface ListTimeSeriesDataPointsOutput {
1070
- items?: TimeSeriesDataPointSummaryFormOutput[];
1071
- nextToken?: string;
1070
+ items?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
1071
+ nextToken?: string | undefined;
1072
1072
  }
1073
1073
  export interface GetMetadataGenerationRunInput {
1074
1074
  domainIdentifier: string | undefined;
@@ -1091,7 +1091,7 @@ export type MetadataGenerationTargetType =
1091
1091
  export interface MetadataGenerationRunTarget {
1092
1092
  type: MetadataGenerationTargetType | undefined;
1093
1093
  identifier: string | undefined;
1094
- revision?: string;
1094
+ revision?: string | undefined;
1095
1095
  }
1096
1096
  export declare const MetadataGenerationRunType: {
1097
1097
  readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
@@ -1101,79 +1101,79 @@ export type MetadataGenerationRunType =
1101
1101
  export interface GetMetadataGenerationRunOutput {
1102
1102
  domainId: string | undefined;
1103
1103
  id: string | undefined;
1104
- target?: MetadataGenerationRunTarget;
1105
- status?: MetadataGenerationRunStatus;
1106
- type?: MetadataGenerationRunType;
1107
- createdAt?: Date;
1108
- createdBy?: string;
1104
+ target?: MetadataGenerationRunTarget | undefined;
1105
+ status?: MetadataGenerationRunStatus | undefined;
1106
+ type?: MetadataGenerationRunType | undefined;
1107
+ createdAt?: Date | undefined;
1108
+ createdBy?: string | undefined;
1109
1109
  owningProjectId: string | undefined;
1110
1110
  }
1111
1111
  export interface ListMetadataGenerationRunsInput {
1112
1112
  domainIdentifier: string | undefined;
1113
- status?: MetadataGenerationRunStatus;
1114
- type?: MetadataGenerationRunType;
1115
- nextToken?: string;
1116
- maxResults?: number;
1113
+ status?: MetadataGenerationRunStatus | undefined;
1114
+ type?: MetadataGenerationRunType | undefined;
1115
+ nextToken?: string | undefined;
1116
+ maxResults?: number | undefined;
1117
1117
  }
1118
1118
  export interface MetadataGenerationRunItem {
1119
1119
  domainId: string | undefined;
1120
1120
  id: string | undefined;
1121
- target?: MetadataGenerationRunTarget;
1122
- status?: MetadataGenerationRunStatus;
1123
- type?: MetadataGenerationRunType;
1124
- createdAt?: Date;
1125
- createdBy?: string;
1121
+ target?: MetadataGenerationRunTarget | undefined;
1122
+ status?: MetadataGenerationRunStatus | undefined;
1123
+ type?: MetadataGenerationRunType | undefined;
1124
+ createdAt?: Date | undefined;
1125
+ createdBy?: string | undefined;
1126
1126
  owningProjectId: string | undefined;
1127
1127
  }
1128
1128
  export interface ListMetadataGenerationRunsOutput {
1129
- items?: MetadataGenerationRunItem[];
1130
- nextToken?: string;
1129
+ items?: MetadataGenerationRunItem[] | undefined;
1130
+ nextToken?: string | undefined;
1131
1131
  }
1132
1132
  export interface StartMetadataGenerationRunInput {
1133
1133
  domainIdentifier: string | undefined;
1134
1134
  type: MetadataGenerationRunType | undefined;
1135
1135
  target: MetadataGenerationRunTarget | undefined;
1136
- clientToken?: string;
1136
+ clientToken?: string | undefined;
1137
1137
  owningProjectIdentifier: string | undefined;
1138
1138
  }
1139
1139
  export interface StartMetadataGenerationRunOutput {
1140
1140
  domainId: string | undefined;
1141
1141
  id: string | undefined;
1142
- status?: MetadataGenerationRunStatus;
1143
- type?: MetadataGenerationRunType;
1144
- createdAt?: Date;
1145
- createdBy?: string;
1146
- owningProjectId?: string;
1142
+ status?: MetadataGenerationRunStatus | undefined;
1143
+ type?: MetadataGenerationRunType | undefined;
1144
+ createdAt?: Date | undefined;
1145
+ createdBy?: string | undefined;
1146
+ owningProjectId?: string | undefined;
1147
1147
  }
1148
1148
  export interface PostLineageEventInput {
1149
1149
  domainIdentifier: string | undefined;
1150
1150
  event: Uint8Array | undefined;
1151
- clientToken?: string;
1151
+ clientToken?: string | undefined;
1152
1152
  }
1153
1153
  export interface PostLineageEventOutput {}
1154
1154
  export interface TimeSeriesDataPointFormInput {
1155
1155
  formName: string | undefined;
1156
1156
  typeIdentifier: string | undefined;
1157
- typeRevision?: string;
1157
+ typeRevision?: string | undefined;
1158
1158
  timestamp: Date | undefined;
1159
- content?: string;
1159
+ content?: string | undefined;
1160
1160
  }
1161
1161
  export interface PostTimeSeriesDataPointsInput {
1162
1162
  domainIdentifier: string | undefined;
1163
1163
  entityIdentifier: string | undefined;
1164
1164
  entityType: TimeSeriesEntityType | undefined;
1165
1165
  forms: TimeSeriesDataPointFormInput[] | undefined;
1166
- clientToken?: string;
1166
+ clientToken?: string | undefined;
1167
1167
  }
1168
1168
  export interface PostTimeSeriesDataPointsOutput {
1169
- domainId?: string;
1170
- entityId?: string;
1171
- entityType?: TimeSeriesEntityType;
1172
- forms?: TimeSeriesDataPointFormOutput[];
1169
+ domainId?: string | undefined;
1170
+ entityId?: string | undefined;
1171
+ entityType?: TimeSeriesEntityType | undefined;
1172
+ forms?: TimeSeriesDataPointFormOutput[] | undefined;
1173
1173
  }
1174
1174
  export interface RejectChoice {
1175
1175
  predictionTarget: string | undefined;
1176
- predictionChoices?: number[];
1176
+ predictionChoices?: number[] | undefined;
1177
1177
  }
1178
1178
  export declare const RejectRuleBehavior: {
1179
1179
  readonly ALL: "ALL";
@@ -1182,16 +1182,16 @@ export declare const RejectRuleBehavior: {
1182
1182
  export type RejectRuleBehavior =
1183
1183
  (typeof RejectRuleBehavior)[keyof typeof RejectRuleBehavior];
1184
1184
  export interface RejectRule {
1185
- rule?: RejectRuleBehavior;
1186
- threshold?: number;
1185
+ rule?: RejectRuleBehavior | undefined;
1186
+ threshold?: number | undefined;
1187
1187
  }
1188
1188
  export interface RejectPredictionsInput {
1189
1189
  domainIdentifier: string | undefined;
1190
1190
  identifier: string | undefined;
1191
- revision?: string;
1192
- rejectRule?: RejectRule;
1193
- rejectChoices?: RejectChoice[];
1194
- clientToken?: string;
1191
+ revision?: string | undefined;
1192
+ rejectRule?: RejectRule | undefined;
1193
+ rejectChoices?: RejectChoice[] | undefined;
1194
+ clientToken?: string | undefined;
1195
1195
  }
1196
1196
  export interface RejectPredictionsOutput {
1197
1197
  domainId: string | undefined;
@@ -1201,12 +1201,12 @@ export interface RejectPredictionsOutput {
1201
1201
  export interface RejectSubscriptionRequestInput {
1202
1202
  domainIdentifier: string | undefined;
1203
1203
  identifier: string | undefined;
1204
- decisionComment?: string;
1204
+ decisionComment?: string | undefined;
1205
1205
  }
1206
1206
  export interface RejectSubscriptionRequestOutput {
1207
1207
  id: string | undefined;
1208
1208
  createdBy: string | undefined;
1209
- updatedBy?: string;
1209
+ updatedBy?: string | undefined;
1210
1210
  domainId: string | undefined;
1211
1211
  status: SubscriptionRequestStatus | undefined;
1212
1212
  createdAt: Date | undefined;
@@ -1214,15 +1214,15 @@ export interface RejectSubscriptionRequestOutput {
1214
1214
  requestReason: string | undefined;
1215
1215
  subscribedPrincipals: SubscribedPrincipal[] | undefined;
1216
1216
  subscribedListings: SubscribedListing[] | undefined;
1217
- reviewerId?: string;
1218
- decisionComment?: string;
1217
+ reviewerId?: string | undefined;
1218
+ decisionComment?: string | undefined;
1219
1219
  }
1220
1220
  export interface RemoveEntityOwnerInput {
1221
1221
  domainIdentifier: string | undefined;
1222
1222
  entityType: DataZoneEntityType | undefined;
1223
1223
  entityIdentifier: string | undefined;
1224
1224
  owner: OwnerProperties | undefined;
1225
- clientToken?: string;
1225
+ clientToken?: string | undefined;
1226
1226
  }
1227
1227
  export interface RemoveEntityOwnerOutput {}
1228
1228
  export interface RemovePolicyGrantInput {
@@ -1231,26 +1231,26 @@ export interface RemovePolicyGrantInput {
1231
1231
  entityIdentifier: string | undefined;
1232
1232
  policyType: ManagedPolicyType | undefined;
1233
1233
  principal: PolicyGrantPrincipal | undefined;
1234
- clientToken?: string;
1234
+ clientToken?: string | undefined;
1235
1235
  }
1236
1236
  export interface RemovePolicyGrantOutput {}
1237
1237
  export interface RevokeSubscriptionInput {
1238
1238
  domainIdentifier: string | undefined;
1239
1239
  identifier: string | undefined;
1240
- retainPermissions?: boolean;
1240
+ retainPermissions?: boolean | undefined;
1241
1241
  }
1242
1242
  export interface RevokeSubscriptionOutput {
1243
1243
  id: string | undefined;
1244
1244
  createdBy: string | undefined;
1245
- updatedBy?: string;
1245
+ updatedBy?: string | undefined;
1246
1246
  domainId: string | undefined;
1247
1247
  status: SubscriptionStatus | undefined;
1248
1248
  createdAt: Date | undefined;
1249
1249
  updatedAt: Date | undefined;
1250
1250
  subscribedPrincipal: SubscribedPrincipal | undefined;
1251
1251
  subscribedListing: SubscribedListing | undefined;
1252
- subscriptionRequestId?: string;
1253
- retainPermissions?: boolean;
1252
+ subscriptionRequestId?: string | undefined;
1253
+ retainPermissions?: boolean | undefined;
1254
1254
  }
1255
1255
  export declare const SearchOutputAdditionalAttribute: {
1256
1256
  readonly FORMS: "FORMS";
@@ -1275,33 +1275,33 @@ export type InventorySearchScope =
1275
1275
  (typeof InventorySearchScope)[keyof typeof InventorySearchScope];
1276
1276
  export interface SearchSort {
1277
1277
  attribute: string | undefined;
1278
- order?: SortOrder;
1278
+ order?: SortOrder | undefined;
1279
1279
  }
1280
1280
  export interface GlossaryItem {
1281
1281
  domainId: string | undefined;
1282
1282
  id: string | undefined;
1283
1283
  name: string | undefined;
1284
1284
  owningProjectId: string | undefined;
1285
- description?: string;
1285
+ description?: string | undefined;
1286
1286
  status: GlossaryStatus | undefined;
1287
- createdAt?: Date;
1288
- createdBy?: string;
1289
- updatedAt?: Date;
1290
- updatedBy?: string;
1287
+ createdAt?: Date | undefined;
1288
+ createdBy?: string | undefined;
1289
+ updatedAt?: Date | undefined;
1290
+ updatedBy?: string | undefined;
1291
1291
  }
1292
1292
  export interface GlossaryTermItem {
1293
1293
  domainId: string | undefined;
1294
1294
  glossaryId: string | undefined;
1295
1295
  id: string | undefined;
1296
1296
  name: string | undefined;
1297
- shortDescription?: string;
1298
- longDescription?: string;
1299
- termRelations?: TermRelations;
1297
+ shortDescription?: string | undefined;
1298
+ longDescription?: string | undefined;
1299
+ termRelations?: TermRelations | undefined;
1300
1300
  status: GlossaryTermStatus | undefined;
1301
- createdAt?: Date;
1302
- createdBy?: string;
1303
- updatedAt?: Date;
1304
- updatedBy?: string;
1301
+ createdAt?: Date | undefined;
1302
+ createdBy?: string | undefined;
1303
+ updatedAt?: Date | undefined;
1304
+ updatedBy?: string | undefined;
1305
1305
  }
1306
1306
  export type SearchInventoryResultItem =
1307
1307
  | SearchInventoryResultItem.AssetItemMember
@@ -1355,9 +1355,9 @@ export declare namespace SearchInventoryResultItem {
1355
1355
  const visit: <T>(value: SearchInventoryResultItem, visitor: Visitor<T>) => T;
1356
1356
  }
1357
1357
  export interface SearchOutput {
1358
- items?: SearchInventoryResultItem[];
1359
- nextToken?: string;
1360
- totalMatchCount?: number;
1358
+ items?: SearchInventoryResultItem[] | undefined;
1359
+ nextToken?: string | undefined;
1360
+ totalMatchCount?: number | undefined;
1361
1361
  }
1362
1362
  export declare const GroupSearchType: {
1363
1363
  readonly DATAZONE_SSO_GROUP: "DATAZONE_SSO_GROUP";
@@ -1368,19 +1368,19 @@ export type GroupSearchType =
1368
1368
  export interface SearchGroupProfilesInput {
1369
1369
  domainIdentifier: string | undefined;
1370
1370
  groupType: GroupSearchType | undefined;
1371
- searchText?: string;
1372
- maxResults?: number;
1373
- nextToken?: string;
1371
+ searchText?: string | undefined;
1372
+ maxResults?: number | undefined;
1373
+ nextToken?: string | undefined;
1374
1374
  }
1375
1375
  export interface GroupProfileSummary {
1376
- domainId?: string;
1377
- id?: string;
1378
- status?: GroupProfileStatus;
1379
- groupName?: string;
1376
+ domainId?: string | undefined;
1377
+ id?: string | undefined;
1378
+ status?: GroupProfileStatus | undefined;
1379
+ groupName?: string | undefined;
1380
1380
  }
1381
1381
  export interface SearchGroupProfilesOutput {
1382
- items?: GroupProfileSummary[];
1383
- nextToken?: string;
1382
+ items?: GroupProfileSummary[] | undefined;
1383
+ nextToken?: string | undefined;
1384
1384
  }
1385
1385
  export type SearchResultItem =
1386
1386
  | SearchResultItem.AssetListingMember
@@ -1410,9 +1410,9 @@ export declare namespace SearchResultItem {
1410
1410
  const visit: <T>(value: SearchResultItem, visitor: Visitor<T>) => T;
1411
1411
  }
1412
1412
  export interface SearchListingsOutput {
1413
- items?: SearchResultItem[];
1414
- nextToken?: string;
1415
- totalMatchCount?: number;
1413
+ items?: SearchResultItem[] | undefined;
1414
+ nextToken?: string | undefined;
1415
+ totalMatchCount?: number | undefined;
1416
1416
  }
1417
1417
  export declare const TypesSearchScope: {
1418
1418
  readonly ASSET_TYPE: "ASSET_TYPE";
@@ -1425,24 +1425,24 @@ export interface FormTypeData {
1425
1425
  domainId: string | undefined;
1426
1426
  name: string | undefined;
1427
1427
  revision: string | undefined;
1428
- model?: Model;
1429
- status?: FormTypeStatus;
1430
- owningProjectId?: string;
1431
- originDomainId?: string;
1432
- originProjectId?: string;
1433
- createdAt?: Date;
1434
- createdBy?: string;
1435
- description?: string;
1436
- imports?: Import[];
1428
+ model?: Model | undefined;
1429
+ status?: FormTypeStatus | undefined;
1430
+ owningProjectId?: string | undefined;
1431
+ originDomainId?: string | undefined;
1432
+ originProjectId?: string | undefined;
1433
+ createdAt?: Date | undefined;
1434
+ createdBy?: string | undefined;
1435
+ description?: string | undefined;
1436
+ imports?: Import[] | undefined;
1437
1437
  }
1438
1438
  export interface LineageNodeTypeItem {
1439
1439
  domainId: string | undefined;
1440
- name?: string;
1441
- description?: string;
1442
- createdAt?: Date;
1443
- createdBy?: string;
1444
- updatedAt?: Date;
1445
- updatedBy?: string;
1440
+ name?: string | undefined;
1441
+ description?: string | undefined;
1442
+ createdAt?: Date | undefined;
1443
+ createdBy?: string | undefined;
1444
+ updatedAt?: Date | undefined;
1445
+ updatedBy?: string | undefined;
1446
1446
  revision: string | undefined;
1447
1447
  formsOutput: Record<string, FormEntryOutput> | undefined;
1448
1448
  }
@@ -1485,9 +1485,9 @@ export declare namespace SearchTypesResultItem {
1485
1485
  const visit: <T>(value: SearchTypesResultItem, visitor: Visitor<T>) => T;
1486
1486
  }
1487
1487
  export interface SearchTypesOutput {
1488
- items?: SearchTypesResultItem[];
1489
- nextToken?: string;
1490
- totalMatchCount?: number;
1488
+ items?: SearchTypesResultItem[] | undefined;
1489
+ nextToken?: string | undefined;
1490
+ totalMatchCount?: number | undefined;
1491
1491
  }
1492
1492
  export declare const UserSearchType: {
1493
1493
  readonly DATAZONE_IAM_USER: "DATAZONE_IAM_USER";
@@ -1500,20 +1500,20 @@ export type UserSearchType =
1500
1500
  export interface SearchUserProfilesInput {
1501
1501
  domainIdentifier: string | undefined;
1502
1502
  userType: UserSearchType | undefined;
1503
- searchText?: string;
1504
- maxResults?: number;
1505
- nextToken?: string;
1503
+ searchText?: string | undefined;
1504
+ maxResults?: number | undefined;
1505
+ nextToken?: string | undefined;
1506
1506
  }
1507
1507
  export interface UserProfileSummary {
1508
- domainId?: string;
1509
- id?: string;
1510
- type?: UserProfileType;
1511
- status?: UserProfileStatus;
1512
- details?: UserProfileDetails;
1508
+ domainId?: string | undefined;
1509
+ id?: string | undefined;
1510
+ type?: UserProfileType | undefined;
1511
+ status?: UserProfileStatus | undefined;
1512
+ details?: UserProfileDetails | undefined;
1513
1513
  }
1514
1514
  export interface SearchUserProfilesOutput {
1515
- items?: UserProfileSummary[];
1516
- nextToken?: string;
1515
+ items?: UserProfileSummary[] | undefined;
1516
+ nextToken?: string | undefined;
1517
1517
  }
1518
1518
  export interface TagResourceRequest {
1519
1519
  resourceArn: string | undefined;
@@ -1528,40 +1528,40 @@ export interface UntagResourceResponse {}
1528
1528
  export interface UpdateEnvironmentInput {
1529
1529
  domainIdentifier: string | undefined;
1530
1530
  identifier: string | undefined;
1531
- name?: string;
1532
- description?: string;
1533
- glossaryTerms?: string[];
1531
+ name?: string | undefined;
1532
+ description?: string | undefined;
1533
+ glossaryTerms?: string[] | undefined;
1534
1534
  }
1535
1535
  export interface UpdateEnvironmentOutput {
1536
1536
  projectId: string | undefined;
1537
- id?: string;
1537
+ id?: string | undefined;
1538
1538
  domainId: string | undefined;
1539
1539
  createdBy: string | undefined;
1540
- createdAt?: Date;
1541
- updatedAt?: Date;
1540
+ createdAt?: Date | undefined;
1541
+ updatedAt?: Date | undefined;
1542
1542
  name: string | undefined;
1543
- description?: string;
1544
- environmentProfileId?: string;
1545
- awsAccountId?: string;
1546
- awsAccountRegion?: string;
1543
+ description?: string | undefined;
1544
+ environmentProfileId?: string | undefined;
1545
+ awsAccountId?: string | undefined;
1546
+ awsAccountRegion?: string | undefined;
1547
1547
  provider: string | undefined;
1548
- provisionedResources?: Resource[];
1549
- status?: EnvironmentStatus;
1550
- environmentActions?: ConfigurableEnvironmentAction[];
1551
- glossaryTerms?: string[];
1552
- userParameters?: CustomParameter[];
1553
- lastDeployment?: Deployment;
1554
- provisioningProperties?: ProvisioningProperties;
1555
- deploymentProperties?: DeploymentProperties;
1556
- environmentBlueprintId?: string;
1548
+ provisionedResources?: Resource[] | undefined;
1549
+ status?: EnvironmentStatus | undefined;
1550
+ environmentActions?: ConfigurableEnvironmentAction[] | undefined;
1551
+ glossaryTerms?: string[] | undefined;
1552
+ userParameters?: CustomParameter[] | undefined;
1553
+ lastDeployment?: Deployment | undefined;
1554
+ provisioningProperties?: ProvisioningProperties | undefined;
1555
+ deploymentProperties?: DeploymentProperties | undefined;
1556
+ environmentBlueprintId?: string | undefined;
1557
1557
  }
1558
1558
  export interface UpdateEnvironmentActionInput {
1559
1559
  domainIdentifier: string | undefined;
1560
1560
  environmentIdentifier: string | undefined;
1561
1561
  identifier: string | undefined;
1562
- parameters?: ActionParameters;
1563
- name?: string;
1564
- description?: string;
1562
+ parameters?: ActionParameters | undefined;
1563
+ name?: string | undefined;
1564
+ description?: string | undefined;
1565
1565
  }
1566
1566
  export interface UpdateEnvironmentActionOutput {
1567
1567
  domainId: string | undefined;
@@ -1569,30 +1569,30 @@ export interface UpdateEnvironmentActionOutput {
1569
1569
  id: string | undefined;
1570
1570
  name: string | undefined;
1571
1571
  parameters: ActionParameters | undefined;
1572
- description?: string;
1572
+ description?: string | undefined;
1573
1573
  }
1574
1574
  export interface UpdateEnvironmentProfileInput {
1575
1575
  domainIdentifier: string | undefined;
1576
1576
  identifier: string | undefined;
1577
- name?: string;
1578
- description?: string;
1579
- userParameters?: EnvironmentParameter[];
1580
- awsAccountId?: string;
1581
- awsAccountRegion?: string;
1577
+ name?: string | undefined;
1578
+ description?: string | undefined;
1579
+ userParameters?: EnvironmentParameter[] | undefined;
1580
+ awsAccountId?: string | undefined;
1581
+ awsAccountRegion?: string | undefined;
1582
1582
  }
1583
1583
  export interface UpdateEnvironmentProfileOutput {
1584
1584
  id: string | undefined;
1585
1585
  domainId: string | undefined;
1586
- awsAccountId?: string;
1587
- awsAccountRegion?: string;
1586
+ awsAccountId?: string | undefined;
1587
+ awsAccountRegion?: string | undefined;
1588
1588
  createdBy: string | undefined;
1589
- createdAt?: Date;
1590
- updatedAt?: Date;
1589
+ createdAt?: Date | undefined;
1590
+ updatedAt?: Date | undefined;
1591
1591
  name: string | undefined;
1592
- description?: string;
1592
+ description?: string | undefined;
1593
1593
  environmentBlueprintId: string | undefined;
1594
- projectId?: string;
1595
- userParameters?: CustomParameter[];
1594
+ projectId?: string | undefined;
1595
+ userParameters?: CustomParameter[] | undefined;
1596
1596
  }
1597
1597
  export interface UpdateGroupProfileInput {
1598
1598
  domainIdentifier: string | undefined;
@@ -1600,51 +1600,51 @@ export interface UpdateGroupProfileInput {
1600
1600
  status: GroupProfileStatus | undefined;
1601
1601
  }
1602
1602
  export interface UpdateGroupProfileOutput {
1603
- domainId?: string;
1604
- id?: string;
1605
- status?: GroupProfileStatus;
1606
- groupName?: string;
1603
+ domainId?: string | undefined;
1604
+ id?: string | undefined;
1605
+ status?: GroupProfileStatus | undefined;
1606
+ groupName?: string | undefined;
1607
1607
  }
1608
1608
  export interface UpdateProjectInput {
1609
1609
  domainIdentifier: string | undefined;
1610
1610
  identifier: string | undefined;
1611
- name?: string;
1612
- description?: string;
1613
- glossaryTerms?: string[];
1611
+ name?: string | undefined;
1612
+ description?: string | undefined;
1613
+ glossaryTerms?: string[] | undefined;
1614
1614
  }
1615
1615
  export interface UpdateProjectOutput {
1616
1616
  domainId: string | undefined;
1617
1617
  id: string | undefined;
1618
1618
  name: string | undefined;
1619
- description?: string;
1620
- projectStatus?: ProjectStatus;
1621
- failureReasons?: ProjectDeletionError[];
1619
+ description?: string | undefined;
1620
+ projectStatus?: ProjectStatus | undefined;
1621
+ failureReasons?: ProjectDeletionError[] | undefined;
1622
1622
  createdBy: string | undefined;
1623
- createdAt?: Date;
1624
- lastUpdatedAt?: Date;
1625
- glossaryTerms?: string[];
1626
- domainUnitId?: string;
1623
+ createdAt?: Date | undefined;
1624
+ lastUpdatedAt?: Date | undefined;
1625
+ glossaryTerms?: string[] | undefined;
1626
+ domainUnitId?: string | undefined;
1627
1627
  }
1628
1628
  export interface UpdateSubscriptionGrantStatusInput {
1629
1629
  domainIdentifier: string | undefined;
1630
1630
  identifier: string | undefined;
1631
1631
  assetIdentifier: string | undefined;
1632
1632
  status: SubscriptionGrantStatus | undefined;
1633
- failureCause?: FailureCause;
1634
- targetName?: string;
1633
+ failureCause?: FailureCause | undefined;
1634
+ targetName?: string | undefined;
1635
1635
  }
1636
1636
  export interface UpdateSubscriptionGrantStatusOutput {
1637
1637
  id: string | undefined;
1638
1638
  createdBy: string | undefined;
1639
- updatedBy?: string;
1639
+ updatedBy?: string | undefined;
1640
1640
  domainId: string | undefined;
1641
1641
  createdAt: Date | undefined;
1642
1642
  updatedAt: Date | undefined;
1643
1643
  subscriptionTargetId: string | undefined;
1644
1644
  grantedEntity: GrantedEntity | undefined;
1645
1645
  status: SubscriptionGrantOverallStatus | undefined;
1646
- assets?: SubscribedAsset[];
1647
- subscriptionId?: string;
1646
+ assets?: SubscribedAsset[] | undefined;
1647
+ subscriptionId?: string | undefined;
1648
1648
  }
1649
1649
  export interface UpdateSubscriptionRequestInput {
1650
1650
  domainIdentifier: string | undefined;
@@ -1654,7 +1654,7 @@ export interface UpdateSubscriptionRequestInput {
1654
1654
  export interface UpdateSubscriptionRequestOutput {
1655
1655
  id: string | undefined;
1656
1656
  createdBy: string | undefined;
1657
- updatedBy?: string;
1657
+ updatedBy?: string | undefined;
1658
1658
  domainId: string | undefined;
1659
1659
  status: SubscriptionRequestStatus | undefined;
1660
1660
  createdAt: Date | undefined;
@@ -1662,19 +1662,19 @@ export interface UpdateSubscriptionRequestOutput {
1662
1662
  requestReason: string | undefined;
1663
1663
  subscribedPrincipals: SubscribedPrincipal[] | undefined;
1664
1664
  subscribedListings: SubscribedListing[] | undefined;
1665
- reviewerId?: string;
1666
- decisionComment?: string;
1665
+ reviewerId?: string | undefined;
1666
+ decisionComment?: string | undefined;
1667
1667
  }
1668
1668
  export interface UpdateSubscriptionTargetInput {
1669
1669
  domainIdentifier: string | undefined;
1670
1670
  environmentIdentifier: string | undefined;
1671
1671
  identifier: string | undefined;
1672
- name?: string;
1673
- authorizedPrincipals?: string[];
1674
- applicableAssetTypes?: string[];
1675
- subscriptionTargetConfig?: SubscriptionTargetForm[];
1676
- manageAccessRole?: string;
1677
- provider?: string;
1672
+ name?: string | undefined;
1673
+ authorizedPrincipals?: string[] | undefined;
1674
+ applicableAssetTypes?: string[] | undefined;
1675
+ subscriptionTargetConfig?: SubscriptionTargetForm[] | undefined;
1676
+ manageAccessRole?: string | undefined;
1677
+ provider?: string | undefined;
1678
1678
  }
1679
1679
  export interface UpdateSubscriptionTargetOutput {
1680
1680
  id: string | undefined;
@@ -1685,9 +1685,9 @@ export interface UpdateSubscriptionTargetOutput {
1685
1685
  name: string | undefined;
1686
1686
  type: string | undefined;
1687
1687
  createdBy: string | undefined;
1688
- updatedBy?: string;
1688
+ updatedBy?: string | undefined;
1689
1689
  createdAt: Date | undefined;
1690
- updatedAt?: Date;
1690
+ updatedAt?: Date | undefined;
1691
1691
  manageAccessRole: string | undefined;
1692
1692
  applicableAssetTypes: string[] | undefined;
1693
1693
  subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
@@ -1696,15 +1696,15 @@ export interface UpdateSubscriptionTargetOutput {
1696
1696
  export interface UpdateUserProfileInput {
1697
1697
  domainIdentifier: string | undefined;
1698
1698
  userIdentifier: string | undefined;
1699
- type?: UserProfileType;
1699
+ type?: UserProfileType | undefined;
1700
1700
  status: UserProfileStatus | undefined;
1701
1701
  }
1702
1702
  export interface UpdateUserProfileOutput {
1703
- domainId?: string;
1704
- id?: string;
1705
- type?: UserProfileType;
1706
- status?: UserProfileStatus;
1707
- details?: UserProfileDetails;
1703
+ domainId?: string | undefined;
1704
+ id?: string | undefined;
1705
+ type?: UserProfileType | undefined;
1706
+ status?: UserProfileStatus | undefined;
1707
+ details?: UserProfileDetails | undefined;
1708
1708
  }
1709
1709
  export type FilterClause =
1710
1710
  | FilterClause.AndMember
@@ -1784,39 +1784,39 @@ export declare namespace RowFilter {
1784
1784
  }
1785
1785
  export interface RowFilterConfiguration {
1786
1786
  rowFilter: RowFilter | undefined;
1787
- sensitive?: boolean;
1787
+ sensitive?: boolean | undefined;
1788
1788
  }
1789
1789
  export interface SearchInput {
1790
1790
  domainIdentifier: string | undefined;
1791
- owningProjectIdentifier?: string;
1792
- maxResults?: number;
1793
- nextToken?: string;
1791
+ owningProjectIdentifier?: string | undefined;
1792
+ maxResults?: number | undefined;
1793
+ nextToken?: string | undefined;
1794
1794
  searchScope: InventorySearchScope | undefined;
1795
- searchText?: string;
1796
- searchIn?: SearchInItem[];
1797
- filters?: FilterClause;
1798
- sort?: SearchSort;
1799
- additionalAttributes?: SearchOutputAdditionalAttribute[];
1795
+ searchText?: string | undefined;
1796
+ searchIn?: SearchInItem[] | undefined;
1797
+ filters?: FilterClause | undefined;
1798
+ sort?: SearchSort | undefined;
1799
+ additionalAttributes?: SearchOutputAdditionalAttribute[] | undefined;
1800
1800
  }
1801
1801
  export interface SearchListingsInput {
1802
1802
  domainIdentifier: string | undefined;
1803
- searchText?: string;
1804
- searchIn?: SearchInItem[];
1805
- maxResults?: number;
1806
- nextToken?: string;
1807
- filters?: FilterClause;
1808
- sort?: SearchSort;
1809
- additionalAttributes?: SearchOutputAdditionalAttribute[];
1803
+ searchText?: string | undefined;
1804
+ searchIn?: SearchInItem[] | undefined;
1805
+ maxResults?: number | undefined;
1806
+ nextToken?: string | undefined;
1807
+ filters?: FilterClause | undefined;
1808
+ sort?: SearchSort | undefined;
1809
+ additionalAttributes?: SearchOutputAdditionalAttribute[] | undefined;
1810
1810
  }
1811
1811
  export interface SearchTypesInput {
1812
1812
  domainIdentifier: string | undefined;
1813
- maxResults?: number;
1814
- nextToken?: string;
1813
+ maxResults?: number | undefined;
1814
+ nextToken?: string | undefined;
1815
1815
  searchScope: TypesSearchScope | undefined;
1816
- searchText?: string;
1817
- searchIn?: SearchInItem[];
1818
- filters?: FilterClause;
1819
- sort?: SearchSort;
1816
+ searchText?: string | undefined;
1817
+ searchIn?: SearchInItem[] | undefined;
1818
+ filters?: FilterClause | undefined;
1819
+ sort?: SearchSort | undefined;
1820
1820
  managed: boolean | undefined;
1821
1821
  }
1822
1822
  export type AssetFilterConfiguration =
@@ -1850,56 +1850,56 @@ export interface CreateAssetFilterInput {
1850
1850
  domainIdentifier: string | undefined;
1851
1851
  assetIdentifier: string | undefined;
1852
1852
  name: string | undefined;
1853
- description?: string;
1853
+ description?: string | undefined;
1854
1854
  configuration: AssetFilterConfiguration | undefined;
1855
- clientToken?: string;
1855
+ clientToken?: string | undefined;
1856
1856
  }
1857
1857
  export interface CreateAssetFilterOutput {
1858
1858
  id: string | undefined;
1859
1859
  domainId: string | undefined;
1860
1860
  assetId: string | undefined;
1861
1861
  name: string | undefined;
1862
- description?: string;
1863
- status?: FilterStatus;
1862
+ description?: string | undefined;
1863
+ status?: FilterStatus | undefined;
1864
1864
  configuration: AssetFilterConfiguration | undefined;
1865
- createdAt?: Date;
1866
- errorMessage?: string;
1867
- effectiveColumnNames?: string[];
1868
- effectiveRowFilter?: string;
1865
+ createdAt?: Date | undefined;
1866
+ errorMessage?: string | undefined;
1867
+ effectiveColumnNames?: string[] | undefined;
1868
+ effectiveRowFilter?: string | undefined;
1869
1869
  }
1870
1870
  export interface GetAssetFilterOutput {
1871
1871
  id: string | undefined;
1872
1872
  domainId: string | undefined;
1873
1873
  assetId: string | undefined;
1874
1874
  name: string | undefined;
1875
- description?: string;
1876
- status?: FilterStatus;
1875
+ description?: string | undefined;
1876
+ status?: FilterStatus | undefined;
1877
1877
  configuration: AssetFilterConfiguration | undefined;
1878
- createdAt?: Date;
1879
- errorMessage?: string;
1880
- effectiveColumnNames?: string[];
1881
- effectiveRowFilter?: string;
1878
+ createdAt?: Date | undefined;
1879
+ errorMessage?: string | undefined;
1880
+ effectiveColumnNames?: string[] | undefined;
1881
+ effectiveRowFilter?: string | undefined;
1882
1882
  }
1883
1883
  export interface UpdateAssetFilterInput {
1884
1884
  domainIdentifier: string | undefined;
1885
1885
  assetIdentifier: string | undefined;
1886
1886
  identifier: string | undefined;
1887
- name?: string;
1888
- description?: string;
1889
- configuration?: AssetFilterConfiguration;
1887
+ name?: string | undefined;
1888
+ description?: string | undefined;
1889
+ configuration?: AssetFilterConfiguration | undefined;
1890
1890
  }
1891
1891
  export interface UpdateAssetFilterOutput {
1892
1892
  id: string | undefined;
1893
1893
  domainId: string | undefined;
1894
1894
  assetId: string | undefined;
1895
1895
  name: string | undefined;
1896
- description?: string;
1897
- status?: FilterStatus;
1896
+ description?: string | undefined;
1897
+ status?: FilterStatus | undefined;
1898
1898
  configuration: AssetFilterConfiguration | undefined;
1899
- createdAt?: Date;
1900
- errorMessage?: string;
1901
- effectiveColumnNames?: string[];
1902
- effectiveRowFilter?: string;
1899
+ createdAt?: Date | undefined;
1900
+ errorMessage?: string | undefined;
1901
+ effectiveColumnNames?: string[] | undefined;
1902
+ effectiveRowFilter?: string | undefined;
1903
1903
  }
1904
1904
  export declare const ImportFilterSensitiveLog: (obj: Import) => any;
1905
1905
  export declare const GetFormTypeOutputFilterSensitiveLog: (