@aws-sdk/client-quicksight 3.686.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.
@@ -41,7 +41,6 @@ import {
41
41
  LogicalTable,
42
42
  PhysicalTable,
43
43
  ResourcePermission,
44
- RowLevelPermissionDataSet,
45
44
  ServiceType,
46
45
  SharedViewConfigurations,
47
46
  SslProperties,
@@ -73,6 +72,7 @@ import {
73
72
  RefreshSchedule,
74
73
  RegisteredCustomerManagedKey,
75
74
  Role,
75
+ RowLevelPermissionDataSet,
76
76
  RowLevelPermissionTagConfiguration,
77
77
  SharingModel,
78
78
  SnapshotConfiguration,
@@ -89,6 +89,18 @@ import {
89
89
  VPCConnectionResourceStatus,
90
90
  } from "./models_3";
91
91
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
92
+ export interface DescribeTopicPermissionsResponse {
93
+ TopicId?: string | undefined;
94
+ TopicArn?: string | undefined;
95
+ Permissions?: ResourcePermission[] | undefined;
96
+ Status?: number | undefined;
97
+ RequestId?: string | undefined;
98
+ }
99
+ export interface DescribeTopicRefreshRequest {
100
+ AwsAccountId: string | undefined;
101
+ TopicId: string | undefined;
102
+ RefreshId: string | undefined;
103
+ }
92
104
  export declare const TopicRefreshStatus: {
93
105
  readonly CANCELLED: "CANCELLED";
94
106
  readonly COMPLETED: "COMPLETED";
@@ -99,14 +111,14 @@ export declare const TopicRefreshStatus: {
99
111
  export type TopicRefreshStatus =
100
112
  (typeof TopicRefreshStatus)[keyof typeof TopicRefreshStatus];
101
113
  export interface TopicRefreshDetails {
102
- RefreshArn?: string;
103
- RefreshId?: string;
104
- RefreshStatus?: TopicRefreshStatus;
114
+ RefreshArn?: string | undefined;
115
+ RefreshId?: string | undefined;
116
+ RefreshStatus?: TopicRefreshStatus | undefined;
105
117
  }
106
118
  export interface DescribeTopicRefreshResponse {
107
- RefreshDetails?: TopicRefreshDetails;
108
- RequestId?: string;
109
- Status?: number;
119
+ RefreshDetails?: TopicRefreshDetails | undefined;
120
+ RequestId?: string | undefined;
121
+ Status?: number | undefined;
110
122
  }
111
123
  export interface DescribeTopicRefreshScheduleRequest {
112
124
  AwsAccountId: string | undefined;
@@ -114,12 +126,12 @@ export interface DescribeTopicRefreshScheduleRequest {
114
126
  DatasetId: string | undefined;
115
127
  }
116
128
  export interface DescribeTopicRefreshScheduleResponse {
117
- TopicId?: string;
118
- TopicArn?: string;
119
- DatasetArn?: string;
120
- RefreshSchedule?: TopicRefreshSchedule;
121
- Status?: number;
122
- RequestId?: string;
129
+ TopicId?: string | undefined;
130
+ TopicArn?: string | undefined;
131
+ DatasetArn?: string | undefined;
132
+ RefreshSchedule?: TopicRefreshSchedule | undefined;
133
+ Status?: number | undefined;
134
+ RequestId?: string | undefined;
123
135
  }
124
136
  export interface DescribeUserRequest {
125
137
  UserName: string | undefined;
@@ -144,22 +156,22 @@ export declare const UserRole: {
144
156
  };
145
157
  export type UserRole = (typeof UserRole)[keyof typeof UserRole];
146
158
  export interface User {
147
- Arn?: string;
148
- UserName?: string;
149
- Email?: string;
150
- Role?: UserRole;
151
- IdentityType?: IdentityType;
152
- Active?: boolean;
153
- PrincipalId?: string;
154
- CustomPermissionsName?: string;
155
- ExternalLoginFederationProviderType?: string;
156
- ExternalLoginFederationProviderUrl?: string;
157
- ExternalLoginId?: string;
159
+ Arn?: string | undefined;
160
+ UserName?: string | undefined;
161
+ Email?: string | undefined;
162
+ Role?: UserRole | undefined;
163
+ IdentityType?: IdentityType | undefined;
164
+ Active?: boolean | undefined;
165
+ PrincipalId?: string | undefined;
166
+ CustomPermissionsName?: string | undefined;
167
+ ExternalLoginFederationProviderType?: string | undefined;
168
+ ExternalLoginFederationProviderUrl?: string | undefined;
169
+ ExternalLoginId?: string | undefined;
158
170
  }
159
171
  export interface DescribeUserResponse {
160
- User?: User;
161
- RequestId?: string;
162
- Status?: number;
172
+ User?: User | undefined;
173
+ RequestId?: string | undefined;
174
+ Status?: number | undefined;
163
175
  }
164
176
  export interface DescribeVPCConnectionRequest {
165
177
  AwsAccountId: string | undefined;
@@ -180,36 +192,36 @@ export declare const NetworkInterfaceStatus: {
180
192
  export type NetworkInterfaceStatus =
181
193
  (typeof NetworkInterfaceStatus)[keyof typeof NetworkInterfaceStatus];
182
194
  export interface NetworkInterface {
183
- SubnetId?: string;
184
- AvailabilityZone?: string;
185
- ErrorMessage?: string;
186
- Status?: NetworkInterfaceStatus;
187
- NetworkInterfaceId?: string;
195
+ SubnetId?: string | undefined;
196
+ AvailabilityZone?: string | undefined;
197
+ ErrorMessage?: string | undefined;
198
+ Status?: NetworkInterfaceStatus | undefined;
199
+ NetworkInterfaceId?: string | undefined;
188
200
  }
189
201
  export interface VPCConnection {
190
- VPCConnectionId?: string;
191
- Arn?: string;
192
- Name?: string;
193
- VPCId?: string;
194
- SecurityGroupIds?: string[];
195
- DnsResolvers?: string[];
196
- Status?: VPCConnectionResourceStatus;
197
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
198
- NetworkInterfaces?: NetworkInterface[];
199
- RoleArn?: string;
200
- CreatedTime?: Date;
201
- LastUpdatedTime?: Date;
202
+ VPCConnectionId?: string | undefined;
203
+ Arn?: string | undefined;
204
+ Name?: string | undefined;
205
+ VPCId?: string | undefined;
206
+ SecurityGroupIds?: string[] | undefined;
207
+ DnsResolvers?: string[] | undefined;
208
+ Status?: VPCConnectionResourceStatus | undefined;
209
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
210
+ NetworkInterfaces?: NetworkInterface[] | undefined;
211
+ RoleArn?: string | undefined;
212
+ CreatedTime?: Date | undefined;
213
+ LastUpdatedTime?: Date | undefined;
202
214
  }
203
215
  export interface DescribeVPCConnectionResponse {
204
- VPCConnection?: VPCConnection;
205
- RequestId?: string;
206
- Status?: number;
216
+ VPCConnection?: VPCConnection | undefined;
217
+ RequestId?: string | undefined;
218
+ Status?: number | undefined;
207
219
  }
208
220
  export declare class DomainNotWhitelistedException extends __BaseException {
209
221
  readonly name: "DomainNotWhitelistedException";
210
222
  readonly $fault: "client";
211
- Message?: string;
212
- RequestId?: string;
223
+ Message?: string | undefined;
224
+ RequestId?: string | undefined;
213
225
  constructor(
214
226
  opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>
215
227
  );
@@ -222,7 +234,7 @@ export declare const EmbeddingIdentityType: {
222
234
  export type EmbeddingIdentityType =
223
235
  (typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
224
236
  export interface FailedKeyRegistrationEntry {
225
- KeyArn?: string;
237
+ KeyArn?: string | undefined;
226
238
  Message: string | undefined;
227
239
  StatusCode: number | undefined;
228
240
  SenderFault: boolean | undefined;
@@ -239,22 +251,22 @@ export declare const FolderFilterAttribute: {
239
251
  export type FolderFilterAttribute =
240
252
  (typeof FolderFilterAttribute)[keyof typeof FolderFilterAttribute];
241
253
  export interface MemberIdArnPair {
242
- MemberId?: string;
243
- MemberArn?: string;
254
+ MemberId?: string | undefined;
255
+ MemberArn?: string | undefined;
244
256
  }
245
257
  export interface FolderSearchFilter {
246
- Operator?: FilterOperator;
247
- Name?: FolderFilterAttribute;
248
- Value?: string;
258
+ Operator?: FilterOperator | undefined;
259
+ Name?: FolderFilterAttribute | undefined;
260
+ Value?: string | undefined;
249
261
  }
250
262
  export interface FolderSummary {
251
- Arn?: string;
252
- FolderId?: string;
253
- Name?: string;
254
- FolderType?: FolderType;
255
- CreatedTime?: Date;
256
- LastUpdatedTime?: Date;
257
- SharingModel?: SharingModel;
263
+ Arn?: string | undefined;
264
+ FolderId?: string | undefined;
265
+ Name?: string | undefined;
266
+ FolderType?: FolderType | undefined;
267
+ CreatedTime?: Date | undefined;
268
+ LastUpdatedTime?: Date | undefined;
269
+ SharingModel?: SharingModel | undefined;
258
270
  }
259
271
  export interface SessionTag {
260
272
  Key: string | undefined;
@@ -262,14 +274,14 @@ export interface SessionTag {
262
274
  }
263
275
  export interface GenerateEmbedUrlForAnonymousUserRequest {
264
276
  AwsAccountId: string | undefined;
265
- SessionLifetimeInMinutes?: number;
277
+ SessionLifetimeInMinutes?: number | undefined;
266
278
  Namespace: string | undefined;
267
- SessionTags?: SessionTag[];
279
+ SessionTags?: SessionTag[] | undefined;
268
280
  AuthorizedResourceArns: string[] | undefined;
269
281
  ExperienceConfiguration:
270
282
  | AnonymousUserEmbeddingExperienceConfiguration
271
283
  | undefined;
272
- AllowedDomains?: string[];
284
+ AllowedDomains?: string[] | undefined;
273
285
  }
274
286
  export interface GenerateEmbedUrlForAnonymousUserResponse {
275
287
  EmbedUrl: string | undefined;
@@ -280,8 +292,8 @@ export interface GenerateEmbedUrlForAnonymousUserResponse {
280
292
  export declare class SessionLifetimeInMinutesInvalidException extends __BaseException {
281
293
  readonly name: "SessionLifetimeInMinutesInvalidException";
282
294
  readonly $fault: "client";
283
- Message?: string;
284
- RequestId?: string;
295
+ Message?: string | undefined;
296
+ RequestId?: string | undefined;
285
297
  constructor(
286
298
  opts: __ExceptionOptionType<
287
299
  SessionLifetimeInMinutesInvalidException,
@@ -292,8 +304,8 @@ export declare class SessionLifetimeInMinutesInvalidException extends __BaseExce
292
304
  export declare class UnsupportedPricingPlanException extends __BaseException {
293
305
  readonly name: "UnsupportedPricingPlanException";
294
306
  readonly $fault: "client";
295
- Message?: string;
296
- RequestId?: string;
307
+ Message?: string | undefined;
308
+ RequestId?: string | undefined;
297
309
  constructor(
298
310
  opts: __ExceptionOptionType<
299
311
  UnsupportedPricingPlanException,
@@ -305,46 +317,54 @@ export interface StatePersistenceConfigurations {
305
317
  Enabled: boolean | undefined;
306
318
  }
307
319
  export interface RegisteredUserDashboardFeatureConfigurations {
308
- StatePersistence?: StatePersistenceConfigurations;
309
- SharedView?: SharedViewConfigurations;
310
- Bookmarks?: BookmarksConfigurations;
320
+ StatePersistence?: StatePersistenceConfigurations | undefined;
321
+ SharedView?: SharedViewConfigurations | undefined;
322
+ Bookmarks?: BookmarksConfigurations | undefined;
311
323
  }
312
324
  export interface RegisteredUserDashboardEmbeddingConfiguration {
313
325
  InitialDashboardId: string | undefined;
314
- FeatureConfigurations?: RegisteredUserDashboardFeatureConfigurations;
326
+ FeatureConfigurations?:
327
+ | RegisteredUserDashboardFeatureConfigurations
328
+ | undefined;
315
329
  }
316
330
  export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
317
331
  InitialDashboardVisualId: DashboardVisualId | undefined;
318
332
  }
319
333
  export interface RegisteredUserGenerativeQnAEmbeddingConfiguration {
320
- InitialTopicId?: string;
334
+ InitialTopicId?: string | undefined;
321
335
  }
322
336
  export interface RegisteredUserQSearchBarEmbeddingConfiguration {
323
- InitialTopicId?: string;
337
+ InitialTopicId?: string | undefined;
324
338
  }
325
339
  export interface RegisteredUserConsoleFeatureConfigurations {
326
- StatePersistence?: StatePersistenceConfigurations;
327
- SharedView?: SharedViewConfigurations;
340
+ StatePersistence?: StatePersistenceConfigurations | undefined;
341
+ SharedView?: SharedViewConfigurations | undefined;
328
342
  }
329
343
  export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
330
- InitialPath?: string;
331
- FeatureConfigurations?: RegisteredUserConsoleFeatureConfigurations;
344
+ InitialPath?: string | undefined;
345
+ FeatureConfigurations?:
346
+ | RegisteredUserConsoleFeatureConfigurations
347
+ | undefined;
332
348
  }
333
349
  export interface RegisteredUserEmbeddingExperienceConfiguration {
334
- Dashboard?: RegisteredUserDashboardEmbeddingConfiguration;
335
- QuickSightConsole?: RegisteredUserQuickSightConsoleEmbeddingConfiguration;
336
- QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration;
337
- DashboardVisual?: RegisteredUserDashboardVisualEmbeddingConfiguration;
338
- GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration;
350
+ Dashboard?: RegisteredUserDashboardEmbeddingConfiguration | undefined;
351
+ QuickSightConsole?:
352
+ | RegisteredUserQuickSightConsoleEmbeddingConfiguration
353
+ | undefined;
354
+ QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration | undefined;
355
+ DashboardVisual?:
356
+ | RegisteredUserDashboardVisualEmbeddingConfiguration
357
+ | undefined;
358
+ GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration | undefined;
339
359
  }
340
360
  export interface GenerateEmbedUrlForRegisteredUserRequest {
341
361
  AwsAccountId: string | undefined;
342
- SessionLifetimeInMinutes?: number;
362
+ SessionLifetimeInMinutes?: number | undefined;
343
363
  UserArn: string | undefined;
344
364
  ExperienceConfiguration:
345
365
  | RegisteredUserEmbeddingExperienceConfiguration
346
366
  | undefined;
347
- AllowedDomains?: string[];
367
+ AllowedDomains?: string[] | undefined;
348
368
  }
349
369
  export interface GenerateEmbedUrlForRegisteredUserResponse {
350
370
  EmbedUrl: string | undefined;
@@ -354,8 +374,8 @@ export interface GenerateEmbedUrlForRegisteredUserResponse {
354
374
  export declare class QuickSightUserNotFoundException extends __BaseException {
355
375
  readonly name: "QuickSightUserNotFoundException";
356
376
  readonly $fault: "client";
357
- Message?: string;
358
- RequestId?: string;
377
+ Message?: string | undefined;
378
+ RequestId?: string | undefined;
359
379
  constructor(
360
380
  opts: __ExceptionOptionType<
361
381
  QuickSightUserNotFoundException,
@@ -367,24 +387,24 @@ export interface GetDashboardEmbedUrlRequest {
367
387
  AwsAccountId: string | undefined;
368
388
  DashboardId: string | undefined;
369
389
  IdentityType: EmbeddingIdentityType | undefined;
370
- SessionLifetimeInMinutes?: number;
371
- UndoRedoDisabled?: boolean;
372
- ResetDisabled?: boolean;
373
- StatePersistenceEnabled?: boolean;
374
- UserArn?: string;
375
- Namespace?: string;
376
- AdditionalDashboardIds?: string[];
390
+ SessionLifetimeInMinutes?: number | undefined;
391
+ UndoRedoDisabled?: boolean | undefined;
392
+ ResetDisabled?: boolean | undefined;
393
+ StatePersistenceEnabled?: boolean | undefined;
394
+ UserArn?: string | undefined;
395
+ Namespace?: string | undefined;
396
+ AdditionalDashboardIds?: string[] | undefined;
377
397
  }
378
398
  export interface GetDashboardEmbedUrlResponse {
379
- EmbedUrl?: string;
380
- Status?: number;
381
- RequestId?: string;
399
+ EmbedUrl?: string | undefined;
400
+ Status?: number | undefined;
401
+ RequestId?: string | undefined;
382
402
  }
383
403
  export declare class IdentityTypeNotSupportedException extends __BaseException {
384
404
  readonly name: "IdentityTypeNotSupportedException";
385
405
  readonly $fault: "client";
386
- Message?: string;
387
- RequestId?: string;
406
+ Message?: string | undefined;
407
+ RequestId?: string | undefined;
388
408
  constructor(
389
409
  opts: __ExceptionOptionType<
390
410
  IdentityTypeNotSupportedException,
@@ -394,14 +414,14 @@ export declare class IdentityTypeNotSupportedException extends __BaseException {
394
414
  }
395
415
  export interface GetSessionEmbedUrlRequest {
396
416
  AwsAccountId: string | undefined;
397
- EntryPoint?: string;
398
- SessionLifetimeInMinutes?: number;
399
- UserArn?: string;
417
+ EntryPoint?: string | undefined;
418
+ SessionLifetimeInMinutes?: number | undefined;
419
+ UserArn?: string | undefined;
400
420
  }
401
421
  export interface GetSessionEmbedUrlResponse {
402
- EmbedUrl?: string;
403
- Status?: number;
404
- RequestId?: string;
422
+ EmbedUrl?: string | undefined;
423
+ Status?: number | undefined;
424
+ RequestId?: string | undefined;
405
425
  }
406
426
  export declare const GroupFilterAttribute: {
407
427
  readonly GROUP_NAME: "GROUP_NAME";
@@ -419,363 +439,363 @@ export interface GroupSearchFilter {
419
439
  Value: string | undefined;
420
440
  }
421
441
  export interface IAMPolicyAssignmentSummary {
422
- AssignmentName?: string;
423
- AssignmentStatus?: AssignmentStatus;
442
+ AssignmentName?: string | undefined;
443
+ AssignmentStatus?: AssignmentStatus | undefined;
424
444
  }
425
445
  export declare class InvalidRequestException extends __BaseException {
426
446
  readonly name: "InvalidRequestException";
427
447
  readonly $fault: "client";
428
- Message?: string;
429
- RequestId?: string;
448
+ Message?: string | undefined;
449
+ RequestId?: string | undefined;
430
450
  constructor(
431
451
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
432
452
  );
433
453
  }
434
454
  export interface ListAnalysesRequest {
435
455
  AwsAccountId: string | undefined;
436
- NextToken?: string;
437
- MaxResults?: number;
456
+ NextToken?: string | undefined;
457
+ MaxResults?: number | undefined;
438
458
  }
439
459
  export interface ListAnalysesResponse {
440
- AnalysisSummaryList?: AnalysisSummary[];
441
- NextToken?: string;
442
- Status?: number;
443
- RequestId?: string;
460
+ AnalysisSummaryList?: AnalysisSummary[] | undefined;
461
+ NextToken?: string | undefined;
462
+ Status?: number | undefined;
463
+ RequestId?: string | undefined;
444
464
  }
445
465
  export interface ListAssetBundleExportJobsRequest {
446
466
  AwsAccountId: string | undefined;
447
- NextToken?: string;
448
- MaxResults?: number;
467
+ NextToken?: string | undefined;
468
+ MaxResults?: number | undefined;
449
469
  }
450
470
  export interface ListAssetBundleExportJobsResponse {
451
- AssetBundleExportJobSummaryList?: AssetBundleExportJobSummary[];
452
- NextToken?: string;
453
- RequestId?: string;
454
- Status?: number;
471
+ AssetBundleExportJobSummaryList?: AssetBundleExportJobSummary[] | undefined;
472
+ NextToken?: string | undefined;
473
+ RequestId?: string | undefined;
474
+ Status?: number | undefined;
455
475
  }
456
476
  export interface ListAssetBundleImportJobsRequest {
457
477
  AwsAccountId: string | undefined;
458
- NextToken?: string;
459
- MaxResults?: number;
478
+ NextToken?: string | undefined;
479
+ MaxResults?: number | undefined;
460
480
  }
461
481
  export interface ListAssetBundleImportJobsResponse {
462
- AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[];
463
- NextToken?: string;
464
- RequestId?: string;
465
- Status?: number;
482
+ AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[] | undefined;
483
+ NextToken?: string | undefined;
484
+ RequestId?: string | undefined;
485
+ Status?: number | undefined;
466
486
  }
467
487
  export interface ListDashboardsRequest {
468
488
  AwsAccountId: string | undefined;
469
- NextToken?: string;
470
- MaxResults?: number;
489
+ NextToken?: string | undefined;
490
+ MaxResults?: number | undefined;
471
491
  }
472
492
  export interface ListDashboardsResponse {
473
- DashboardSummaryList?: DashboardSummary[];
474
- NextToken?: string;
475
- Status?: number;
476
- RequestId?: string;
493
+ DashboardSummaryList?: DashboardSummary[] | undefined;
494
+ NextToken?: string | undefined;
495
+ Status?: number | undefined;
496
+ RequestId?: string | undefined;
477
497
  }
478
498
  export interface ListDashboardVersionsRequest {
479
499
  AwsAccountId: string | undefined;
480
500
  DashboardId: string | undefined;
481
- NextToken?: string;
482
- MaxResults?: number;
501
+ NextToken?: string | undefined;
502
+ MaxResults?: number | undefined;
483
503
  }
484
504
  export interface ListDashboardVersionsResponse {
485
- DashboardVersionSummaryList?: DashboardVersionSummary[];
486
- NextToken?: string;
487
- Status?: number;
488
- RequestId?: string;
505
+ DashboardVersionSummaryList?: DashboardVersionSummary[] | undefined;
506
+ NextToken?: string | undefined;
507
+ Status?: number | undefined;
508
+ RequestId?: string | undefined;
489
509
  }
490
510
  export interface ListDataSetsRequest {
491
511
  AwsAccountId: string | undefined;
492
- NextToken?: string;
493
- MaxResults?: number;
512
+ NextToken?: string | undefined;
513
+ MaxResults?: number | undefined;
494
514
  }
495
515
  export interface ListDataSetsResponse {
496
- DataSetSummaries?: DataSetSummary[];
497
- NextToken?: string;
498
- RequestId?: string;
499
- Status?: number;
516
+ DataSetSummaries?: DataSetSummary[] | undefined;
517
+ NextToken?: string | undefined;
518
+ RequestId?: string | undefined;
519
+ Status?: number | undefined;
500
520
  }
501
521
  export interface ListDataSourcesRequest {
502
522
  AwsAccountId: string | undefined;
503
- NextToken?: string;
504
- MaxResults?: number;
523
+ NextToken?: string | undefined;
524
+ MaxResults?: number | undefined;
505
525
  }
506
526
  export interface ListDataSourcesResponse {
507
- DataSources?: DataSource[];
508
- NextToken?: string;
509
- RequestId?: string;
510
- Status?: number;
527
+ DataSources?: DataSource[] | undefined;
528
+ NextToken?: string | undefined;
529
+ RequestId?: string | undefined;
530
+ Status?: number | undefined;
511
531
  }
512
532
  export interface ListFolderMembersRequest {
513
533
  AwsAccountId: string | undefined;
514
534
  FolderId: string | undefined;
515
- NextToken?: string;
516
- MaxResults?: number;
535
+ NextToken?: string | undefined;
536
+ MaxResults?: number | undefined;
517
537
  }
518
538
  export interface ListFolderMembersResponse {
519
- Status?: number;
520
- FolderMemberList?: MemberIdArnPair[];
521
- NextToken?: string;
522
- RequestId?: string;
539
+ Status?: number | undefined;
540
+ FolderMemberList?: MemberIdArnPair[] | undefined;
541
+ NextToken?: string | undefined;
542
+ RequestId?: string | undefined;
523
543
  }
524
544
  export interface ListFoldersRequest {
525
545
  AwsAccountId: string | undefined;
526
- NextToken?: string;
527
- MaxResults?: number;
546
+ NextToken?: string | undefined;
547
+ MaxResults?: number | undefined;
528
548
  }
529
549
  export interface ListFoldersResponse {
530
- Status?: number;
531
- FolderSummaryList?: FolderSummary[];
532
- NextToken?: string;
533
- RequestId?: string;
550
+ Status?: number | undefined;
551
+ FolderSummaryList?: FolderSummary[] | undefined;
552
+ NextToken?: string | undefined;
553
+ RequestId?: string | undefined;
534
554
  }
535
555
  export interface ListFoldersForResourceRequest {
536
556
  AwsAccountId: string | undefined;
537
557
  ResourceArn: string | undefined;
538
- NextToken?: string;
539
- MaxResults?: number;
558
+ NextToken?: string | undefined;
559
+ MaxResults?: number | undefined;
540
560
  }
541
561
  export interface ListFoldersForResourceResponse {
542
- Status?: number;
543
- Folders?: string[];
544
- NextToken?: string;
545
- RequestId?: string;
562
+ Status?: number | undefined;
563
+ Folders?: string[] | undefined;
564
+ NextToken?: string | undefined;
565
+ RequestId?: string | undefined;
546
566
  }
547
567
  export interface ListGroupMembershipsRequest {
548
568
  GroupName: string | undefined;
549
- NextToken?: string;
550
- MaxResults?: number;
569
+ NextToken?: string | undefined;
570
+ MaxResults?: number | undefined;
551
571
  AwsAccountId: string | undefined;
552
572
  Namespace: string | undefined;
553
573
  }
554
574
  export interface ListGroupMembershipsResponse {
555
- GroupMemberList?: GroupMember[];
556
- NextToken?: string;
557
- RequestId?: string;
558
- Status?: number;
575
+ GroupMemberList?: GroupMember[] | undefined;
576
+ NextToken?: string | undefined;
577
+ RequestId?: string | undefined;
578
+ Status?: number | undefined;
559
579
  }
560
580
  export interface ListGroupsRequest {
561
581
  AwsAccountId: string | undefined;
562
- NextToken?: string;
563
- MaxResults?: number;
582
+ NextToken?: string | undefined;
583
+ MaxResults?: number | undefined;
564
584
  Namespace: string | undefined;
565
585
  }
566
586
  export interface ListGroupsResponse {
567
- GroupList?: Group[];
568
- NextToken?: string;
569
- RequestId?: string;
570
- Status?: number;
587
+ GroupList?: Group[] | undefined;
588
+ NextToken?: string | undefined;
589
+ RequestId?: string | undefined;
590
+ Status?: number | undefined;
571
591
  }
572
592
  export interface ListIAMPolicyAssignmentsRequest {
573
593
  AwsAccountId: string | undefined;
574
- AssignmentStatus?: AssignmentStatus;
594
+ AssignmentStatus?: AssignmentStatus | undefined;
575
595
  Namespace: string | undefined;
576
- NextToken?: string;
577
- MaxResults?: number;
596
+ NextToken?: string | undefined;
597
+ MaxResults?: number | undefined;
578
598
  }
579
599
  export interface ListIAMPolicyAssignmentsResponse {
580
- IAMPolicyAssignments?: IAMPolicyAssignmentSummary[];
581
- NextToken?: string;
582
- RequestId?: string;
583
- Status?: number;
600
+ IAMPolicyAssignments?: IAMPolicyAssignmentSummary[] | undefined;
601
+ NextToken?: string | undefined;
602
+ RequestId?: string | undefined;
603
+ Status?: number | undefined;
584
604
  }
585
605
  export interface ListIAMPolicyAssignmentsForUserRequest {
586
606
  AwsAccountId: string | undefined;
587
607
  UserName: string | undefined;
588
- NextToken?: string;
589
- MaxResults?: number;
608
+ NextToken?: string | undefined;
609
+ MaxResults?: number | undefined;
590
610
  Namespace: string | undefined;
591
611
  }
592
612
  export interface ListIAMPolicyAssignmentsForUserResponse {
593
- ActiveAssignments?: ActiveIAMPolicyAssignment[];
594
- RequestId?: string;
595
- NextToken?: string;
596
- Status?: number;
613
+ ActiveAssignments?: ActiveIAMPolicyAssignment[] | undefined;
614
+ RequestId?: string | undefined;
615
+ NextToken?: string | undefined;
616
+ Status?: number | undefined;
597
617
  }
598
618
  export interface ListIdentityPropagationConfigsRequest {
599
619
  AwsAccountId: string | undefined;
600
- MaxResults?: number;
601
- NextToken?: string;
620
+ MaxResults?: number | undefined;
621
+ NextToken?: string | undefined;
602
622
  }
603
623
  export interface ListIdentityPropagationConfigsResponse {
604
- Services?: AuthorizedTargetsByService[];
605
- NextToken?: string;
606
- Status?: number;
607
- RequestId?: string;
624
+ Services?: AuthorizedTargetsByService[] | undefined;
625
+ NextToken?: string | undefined;
626
+ Status?: number | undefined;
627
+ RequestId?: string | undefined;
608
628
  }
609
629
  export interface ListIngestionsRequest {
610
630
  DataSetId: string | undefined;
611
- NextToken?: string;
631
+ NextToken?: string | undefined;
612
632
  AwsAccountId: string | undefined;
613
- MaxResults?: number;
633
+ MaxResults?: number | undefined;
614
634
  }
615
635
  export interface ListIngestionsResponse {
616
- Ingestions?: Ingestion[];
617
- NextToken?: string;
618
- RequestId?: string;
619
- Status?: number;
636
+ Ingestions?: Ingestion[] | undefined;
637
+ NextToken?: string | undefined;
638
+ RequestId?: string | undefined;
639
+ Status?: number | undefined;
620
640
  }
621
641
  export interface ListNamespacesRequest {
622
642
  AwsAccountId: string | undefined;
623
- NextToken?: string;
624
- MaxResults?: number;
643
+ NextToken?: string | undefined;
644
+ MaxResults?: number | undefined;
625
645
  }
626
646
  export interface ListNamespacesResponse {
627
- Namespaces?: NamespaceInfoV2[];
628
- NextToken?: string;
629
- RequestId?: string;
630
- Status?: number;
647
+ Namespaces?: NamespaceInfoV2[] | undefined;
648
+ NextToken?: string | undefined;
649
+ RequestId?: string | undefined;
650
+ Status?: number | undefined;
631
651
  }
632
652
  export interface ListRefreshSchedulesRequest {
633
653
  AwsAccountId: string | undefined;
634
654
  DataSetId: string | undefined;
635
655
  }
636
656
  export interface ListRefreshSchedulesResponse {
637
- RefreshSchedules?: RefreshSchedule[];
638
- Status?: number;
639
- RequestId?: string;
657
+ RefreshSchedules?: RefreshSchedule[] | undefined;
658
+ Status?: number | undefined;
659
+ RequestId?: string | undefined;
640
660
  }
641
661
  export interface ListRoleMembershipsRequest {
642
662
  Role: Role | undefined;
643
- NextToken?: string;
644
- MaxResults?: number;
663
+ NextToken?: string | undefined;
664
+ MaxResults?: number | undefined;
645
665
  AwsAccountId: string | undefined;
646
666
  Namespace: string | undefined;
647
667
  }
648
668
  export interface ListRoleMembershipsResponse {
649
- MembersList?: string[];
650
- NextToken?: string;
651
- RequestId?: string;
652
- Status?: number;
669
+ MembersList?: string[] | undefined;
670
+ NextToken?: string | undefined;
671
+ RequestId?: string | undefined;
672
+ Status?: number | undefined;
653
673
  }
654
674
  export interface ListTagsForResourceRequest {
655
675
  ResourceArn: string | undefined;
656
676
  }
657
677
  export interface ListTagsForResourceResponse {
658
- Tags?: Tag[];
659
- RequestId?: string;
660
- Status?: number;
678
+ Tags?: Tag[] | undefined;
679
+ RequestId?: string | undefined;
680
+ Status?: number | undefined;
661
681
  }
662
682
  export interface ListTemplateAliasesRequest {
663
683
  AwsAccountId: string | undefined;
664
684
  TemplateId: string | undefined;
665
- NextToken?: string;
666
- MaxResults?: number;
685
+ NextToken?: string | undefined;
686
+ MaxResults?: number | undefined;
667
687
  }
668
688
  export interface ListTemplateAliasesResponse {
669
- TemplateAliasList?: TemplateAlias[];
670
- Status?: number;
671
- RequestId?: string;
672
- NextToken?: string;
689
+ TemplateAliasList?: TemplateAlias[] | undefined;
690
+ Status?: number | undefined;
691
+ RequestId?: string | undefined;
692
+ NextToken?: string | undefined;
673
693
  }
674
694
  export interface ListTemplatesRequest {
675
695
  AwsAccountId: string | undefined;
676
- NextToken?: string;
677
- MaxResults?: number;
696
+ NextToken?: string | undefined;
697
+ MaxResults?: number | undefined;
678
698
  }
679
699
  export interface TemplateSummary {
680
- Arn?: string;
681
- TemplateId?: string;
682
- Name?: string;
683
- LatestVersionNumber?: number;
684
- CreatedTime?: Date;
685
- LastUpdatedTime?: Date;
700
+ Arn?: string | undefined;
701
+ TemplateId?: string | undefined;
702
+ Name?: string | undefined;
703
+ LatestVersionNumber?: number | undefined;
704
+ CreatedTime?: Date | undefined;
705
+ LastUpdatedTime?: Date | undefined;
686
706
  }
687
707
  export interface ListTemplatesResponse {
688
- TemplateSummaryList?: TemplateSummary[];
689
- NextToken?: string;
690
- Status?: number;
691
- RequestId?: string;
708
+ TemplateSummaryList?: TemplateSummary[] | undefined;
709
+ NextToken?: string | undefined;
710
+ Status?: number | undefined;
711
+ RequestId?: string | undefined;
692
712
  }
693
713
  export interface ListTemplateVersionsRequest {
694
714
  AwsAccountId: string | undefined;
695
715
  TemplateId: string | undefined;
696
- NextToken?: string;
697
- MaxResults?: number;
716
+ NextToken?: string | undefined;
717
+ MaxResults?: number | undefined;
698
718
  }
699
719
  export interface TemplateVersionSummary {
700
- Arn?: string;
701
- VersionNumber?: number;
702
- CreatedTime?: Date;
703
- Status?: ResourceStatus;
704
- Description?: string;
720
+ Arn?: string | undefined;
721
+ VersionNumber?: number | undefined;
722
+ CreatedTime?: Date | undefined;
723
+ Status?: ResourceStatus | undefined;
724
+ Description?: string | undefined;
705
725
  }
706
726
  export interface ListTemplateVersionsResponse {
707
- TemplateVersionSummaryList?: TemplateVersionSummary[];
708
- NextToken?: string;
709
- Status?: number;
710
- RequestId?: string;
727
+ TemplateVersionSummaryList?: TemplateVersionSummary[] | undefined;
728
+ NextToken?: string | undefined;
729
+ Status?: number | undefined;
730
+ RequestId?: string | undefined;
711
731
  }
712
732
  export interface ListThemeAliasesRequest {
713
733
  AwsAccountId: string | undefined;
714
734
  ThemeId: string | undefined;
715
- NextToken?: string;
716
- MaxResults?: number;
735
+ NextToken?: string | undefined;
736
+ MaxResults?: number | undefined;
717
737
  }
718
738
  export interface ListThemeAliasesResponse {
719
- ThemeAliasList?: ThemeAlias[];
720
- Status?: number;
721
- RequestId?: string;
722
- NextToken?: string;
739
+ ThemeAliasList?: ThemeAlias[] | undefined;
740
+ Status?: number | undefined;
741
+ RequestId?: string | undefined;
742
+ NextToken?: string | undefined;
723
743
  }
724
744
  export interface ListThemesRequest {
725
745
  AwsAccountId: string | undefined;
726
- NextToken?: string;
727
- MaxResults?: number;
728
- Type?: ThemeType;
746
+ NextToken?: string | undefined;
747
+ MaxResults?: number | undefined;
748
+ Type?: ThemeType | undefined;
729
749
  }
730
750
  export interface ThemeSummary {
731
- Arn?: string;
732
- Name?: string;
733
- ThemeId?: string;
734
- LatestVersionNumber?: number;
735
- CreatedTime?: Date;
736
- LastUpdatedTime?: Date;
751
+ Arn?: string | undefined;
752
+ Name?: string | undefined;
753
+ ThemeId?: string | undefined;
754
+ LatestVersionNumber?: number | undefined;
755
+ CreatedTime?: Date | undefined;
756
+ LastUpdatedTime?: Date | undefined;
737
757
  }
738
758
  export interface ListThemesResponse {
739
- ThemeSummaryList?: ThemeSummary[];
740
- NextToken?: string;
741
- Status?: number;
742
- RequestId?: string;
759
+ ThemeSummaryList?: ThemeSummary[] | undefined;
760
+ NextToken?: string | undefined;
761
+ Status?: number | undefined;
762
+ RequestId?: string | undefined;
743
763
  }
744
764
  export interface ListThemeVersionsRequest {
745
765
  AwsAccountId: string | undefined;
746
766
  ThemeId: string | undefined;
747
- NextToken?: string;
748
- MaxResults?: number;
767
+ NextToken?: string | undefined;
768
+ MaxResults?: number | undefined;
749
769
  }
750
770
  export interface ThemeVersionSummary {
751
- VersionNumber?: number;
752
- Arn?: string;
753
- Description?: string;
754
- CreatedTime?: Date;
755
- Status?: ResourceStatus;
771
+ VersionNumber?: number | undefined;
772
+ Arn?: string | undefined;
773
+ Description?: string | undefined;
774
+ CreatedTime?: Date | undefined;
775
+ Status?: ResourceStatus | undefined;
756
776
  }
757
777
  export interface ListThemeVersionsResponse {
758
- ThemeVersionSummaryList?: ThemeVersionSummary[];
759
- NextToken?: string;
760
- Status?: number;
761
- RequestId?: string;
778
+ ThemeVersionSummaryList?: ThemeVersionSummary[] | undefined;
779
+ NextToken?: string | undefined;
780
+ Status?: number | undefined;
781
+ RequestId?: string | undefined;
762
782
  }
763
783
  export interface ListTopicRefreshSchedulesRequest {
764
784
  AwsAccountId: string | undefined;
765
785
  TopicId: string | undefined;
766
786
  }
767
787
  export interface TopicRefreshScheduleSummary {
768
- DatasetId?: string;
769
- DatasetArn?: string;
770
- DatasetName?: string;
771
- RefreshSchedule?: TopicRefreshSchedule;
788
+ DatasetId?: string | undefined;
789
+ DatasetArn?: string | undefined;
790
+ DatasetName?: string | undefined;
791
+ RefreshSchedule?: TopicRefreshSchedule | undefined;
772
792
  }
773
793
  export interface ListTopicRefreshSchedulesResponse {
774
- TopicId?: string;
775
- TopicArn?: string;
776
- RefreshSchedules?: TopicRefreshScheduleSummary[];
777
- Status?: number;
778
- RequestId?: string;
794
+ TopicId?: string | undefined;
795
+ TopicArn?: string | undefined;
796
+ RefreshSchedules?: TopicRefreshScheduleSummary[] | undefined;
797
+ Status?: number | undefined;
798
+ RequestId?: string | undefined;
779
799
  }
780
800
  export interface ListTopicReviewedAnswersRequest {
781
801
  AwsAccountId: string | undefined;
@@ -783,70 +803,70 @@ export interface ListTopicReviewedAnswersRequest {
783
803
  }
784
804
  export interface ListTopicsRequest {
785
805
  AwsAccountId: string | undefined;
786
- NextToken?: string;
787
- MaxResults?: number;
806
+ NextToken?: string | undefined;
807
+ MaxResults?: number | undefined;
788
808
  }
789
809
  export interface TopicSummary {
790
- Arn?: string;
791
- TopicId?: string;
792
- Name?: string;
793
- UserExperienceVersion?: TopicUserExperienceVersion;
810
+ Arn?: string | undefined;
811
+ TopicId?: string | undefined;
812
+ Name?: string | undefined;
813
+ UserExperienceVersion?: TopicUserExperienceVersion | undefined;
794
814
  }
795
815
  export interface ListTopicsResponse {
796
- TopicsSummaries?: TopicSummary[];
797
- NextToken?: string;
798
- RequestId?: string;
799
- Status?: number;
816
+ TopicsSummaries?: TopicSummary[] | undefined;
817
+ NextToken?: string | undefined;
818
+ RequestId?: string | undefined;
819
+ Status?: number | undefined;
800
820
  }
801
821
  export interface ListUserGroupsRequest {
802
822
  UserName: string | undefined;
803
823
  AwsAccountId: string | undefined;
804
824
  Namespace: string | undefined;
805
- NextToken?: string;
806
- MaxResults?: number;
825
+ NextToken?: string | undefined;
826
+ MaxResults?: number | undefined;
807
827
  }
808
828
  export interface ListUserGroupsResponse {
809
- GroupList?: Group[];
810
- NextToken?: string;
811
- RequestId?: string;
812
- Status?: number;
829
+ GroupList?: Group[] | undefined;
830
+ NextToken?: string | undefined;
831
+ RequestId?: string | undefined;
832
+ Status?: number | undefined;
813
833
  }
814
834
  export interface ListUsersRequest {
815
835
  AwsAccountId: string | undefined;
816
- NextToken?: string;
817
- MaxResults?: number;
836
+ NextToken?: string | undefined;
837
+ MaxResults?: number | undefined;
818
838
  Namespace: string | undefined;
819
839
  }
820
840
  export interface ListUsersResponse {
821
- UserList?: User[];
822
- NextToken?: string;
823
- RequestId?: string;
824
- Status?: number;
841
+ UserList?: User[] | undefined;
842
+ NextToken?: string | undefined;
843
+ RequestId?: string | undefined;
844
+ Status?: number | undefined;
825
845
  }
826
846
  export interface ListVPCConnectionsRequest {
827
847
  AwsAccountId: string | undefined;
828
- NextToken?: string;
829
- MaxResults?: number;
848
+ NextToken?: string | undefined;
849
+ MaxResults?: number | undefined;
830
850
  }
831
851
  export interface VPCConnectionSummary {
832
- VPCConnectionId?: string;
833
- Arn?: string;
834
- Name?: string;
835
- VPCId?: string;
836
- SecurityGroupIds?: string[];
837
- DnsResolvers?: string[];
838
- Status?: VPCConnectionResourceStatus;
839
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
840
- NetworkInterfaces?: NetworkInterface[];
841
- RoleArn?: string;
842
- CreatedTime?: Date;
843
- LastUpdatedTime?: Date;
852
+ VPCConnectionId?: string | undefined;
853
+ Arn?: string | undefined;
854
+ Name?: string | undefined;
855
+ VPCId?: string | undefined;
856
+ SecurityGroupIds?: string[] | undefined;
857
+ DnsResolvers?: string[] | undefined;
858
+ Status?: VPCConnectionResourceStatus | undefined;
859
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
860
+ NetworkInterfaces?: NetworkInterface[] | undefined;
861
+ RoleArn?: string | undefined;
862
+ CreatedTime?: Date | undefined;
863
+ LastUpdatedTime?: Date | undefined;
844
864
  }
845
865
  export interface ListVPCConnectionsResponse {
846
- VPCConnectionSummaries?: VPCConnectionSummary[];
847
- NextToken?: string;
848
- RequestId?: string;
849
- Status?: number;
866
+ VPCConnectionSummaries?: VPCConnectionSummary[] | undefined;
867
+ NextToken?: string | undefined;
868
+ RequestId?: string | undefined;
869
+ Status?: number | undefined;
850
870
  }
851
871
  export declare const PurchaseMode: {
852
872
  readonly AUTO_PURCHASE: "AUTO_PURCHASE";
@@ -859,155 +879,159 @@ export interface PutDataSetRefreshPropertiesRequest {
859
879
  DataSetRefreshProperties: DataSetRefreshProperties | undefined;
860
880
  }
861
881
  export interface PutDataSetRefreshPropertiesResponse {
862
- RequestId?: string;
863
- Status?: number;
882
+ RequestId?: string | undefined;
883
+ Status?: number | undefined;
864
884
  }
865
885
  export interface RegisterUserRequest {
866
886
  IdentityType: IdentityType | undefined;
867
887
  Email: string | undefined;
868
888
  UserRole: UserRole | undefined;
869
- IamArn?: string;
870
- SessionName?: string;
889
+ IamArn?: string | undefined;
890
+ SessionName?: string | undefined;
871
891
  AwsAccountId: string | undefined;
872
892
  Namespace: string | undefined;
873
- UserName?: string;
874
- CustomPermissionsName?: string;
875
- ExternalLoginFederationProviderType?: string;
876
- CustomFederationProviderUrl?: string;
877
- ExternalLoginId?: string;
878
- Tags?: Tag[];
893
+ UserName?: string | undefined;
894
+ CustomPermissionsName?: string | undefined;
895
+ ExternalLoginFederationProviderType?: string | undefined;
896
+ CustomFederationProviderUrl?: string | undefined;
897
+ ExternalLoginId?: string | undefined;
898
+ Tags?: Tag[] | undefined;
879
899
  }
880
900
  export interface RegisterUserResponse {
881
- User?: User;
882
- UserInvitationUrl?: string;
883
- RequestId?: string;
884
- Status?: number;
901
+ User?: User | undefined;
902
+ UserInvitationUrl?: string | undefined;
903
+ RequestId?: string | undefined;
904
+ Status?: number | undefined;
885
905
  }
886
906
  export interface RestoreAnalysisRequest {
887
907
  AwsAccountId: string | undefined;
888
908
  AnalysisId: string | undefined;
889
- RestoreToFolders?: boolean;
909
+ RestoreToFolders?: boolean | undefined;
890
910
  }
891
911
  export interface RestoreAnalysisResponse {
892
- Status?: number;
893
- Arn?: string;
894
- AnalysisId?: string;
895
- RequestId?: string;
896
- RestorationFailedFolderArns?: string[];
912
+ Status?: number | undefined;
913
+ Arn?: string | undefined;
914
+ AnalysisId?: string | undefined;
915
+ RequestId?: string | undefined;
916
+ RestorationFailedFolderArns?: string[] | undefined;
897
917
  }
898
918
  export interface SearchAnalysesRequest {
899
919
  AwsAccountId: string | undefined;
900
920
  Filters: AnalysisSearchFilter[] | undefined;
901
- NextToken?: string;
902
- MaxResults?: number;
921
+ NextToken?: string | undefined;
922
+ MaxResults?: number | undefined;
903
923
  }
904
924
  export interface SearchAnalysesResponse {
905
- AnalysisSummaryList?: AnalysisSummary[];
906
- NextToken?: string;
907
- Status?: number;
908
- RequestId?: string;
925
+ AnalysisSummaryList?: AnalysisSummary[] | undefined;
926
+ NextToken?: string | undefined;
927
+ Status?: number | undefined;
928
+ RequestId?: string | undefined;
909
929
  }
910
930
  export interface SearchDashboardsRequest {
911
931
  AwsAccountId: string | undefined;
912
932
  Filters: DashboardSearchFilter[] | undefined;
913
- NextToken?: string;
914
- MaxResults?: number;
933
+ NextToken?: string | undefined;
934
+ MaxResults?: number | undefined;
915
935
  }
916
936
  export interface SearchDashboardsResponse {
917
- DashboardSummaryList?: DashboardSummary[];
918
- NextToken?: string;
919
- Status?: number;
920
- RequestId?: string;
937
+ DashboardSummaryList?: DashboardSummary[] | undefined;
938
+ NextToken?: string | undefined;
939
+ Status?: number | undefined;
940
+ RequestId?: string | undefined;
921
941
  }
922
942
  export interface SearchDataSetsRequest {
923
943
  AwsAccountId: string | undefined;
924
944
  Filters: DataSetSearchFilter[] | undefined;
925
- NextToken?: string;
926
- MaxResults?: number;
945
+ NextToken?: string | undefined;
946
+ MaxResults?: number | undefined;
927
947
  }
928
948
  export interface SearchDataSetsResponse {
929
- DataSetSummaries?: DataSetSummary[];
930
- NextToken?: string;
931
- Status?: number;
932
- RequestId?: string;
949
+ DataSetSummaries?: DataSetSummary[] | undefined;
950
+ NextToken?: string | undefined;
951
+ Status?: number | undefined;
952
+ RequestId?: string | undefined;
933
953
  }
934
954
  export interface SearchDataSourcesRequest {
935
955
  AwsAccountId: string | undefined;
936
956
  Filters: DataSourceSearchFilter[] | undefined;
937
- NextToken?: string;
938
- MaxResults?: number;
957
+ NextToken?: string | undefined;
958
+ MaxResults?: number | undefined;
939
959
  }
940
960
  export interface SearchDataSourcesResponse {
941
- DataSourceSummaries?: DataSourceSummary[];
942
- NextToken?: string;
943
- Status?: number;
944
- RequestId?: string;
961
+ DataSourceSummaries?: DataSourceSummary[] | undefined;
962
+ NextToken?: string | undefined;
963
+ Status?: number | undefined;
964
+ RequestId?: string | undefined;
945
965
  }
946
966
  export interface SearchFoldersRequest {
947
967
  AwsAccountId: string | undefined;
948
968
  Filters: FolderSearchFilter[] | undefined;
949
- NextToken?: string;
950
- MaxResults?: number;
969
+ NextToken?: string | undefined;
970
+ MaxResults?: number | undefined;
951
971
  }
952
972
  export interface SearchFoldersResponse {
953
- Status?: number;
954
- FolderSummaryList?: FolderSummary[];
955
- NextToken?: string;
956
- RequestId?: string;
973
+ Status?: number | undefined;
974
+ FolderSummaryList?: FolderSummary[] | undefined;
975
+ NextToken?: string | undefined;
976
+ RequestId?: string | undefined;
957
977
  }
958
978
  export interface SearchGroupsRequest {
959
979
  AwsAccountId: string | undefined;
960
- NextToken?: string;
961
- MaxResults?: number;
980
+ NextToken?: string | undefined;
981
+ MaxResults?: number | undefined;
962
982
  Namespace: string | undefined;
963
983
  Filters: GroupSearchFilter[] | undefined;
964
984
  }
965
985
  export interface SearchGroupsResponse {
966
- GroupList?: Group[];
967
- NextToken?: string;
968
- RequestId?: string;
969
- Status?: number;
986
+ GroupList?: Group[] | undefined;
987
+ NextToken?: string | undefined;
988
+ RequestId?: string | undefined;
989
+ Status?: number | undefined;
970
990
  }
971
991
  export interface StartAssetBundleExportJobRequest {
972
992
  AwsAccountId: string | undefined;
973
993
  AssetBundleExportJobId: string | undefined;
974
994
  ResourceArns: string[] | undefined;
975
- IncludeAllDependencies?: boolean;
995
+ IncludeAllDependencies?: boolean | undefined;
976
996
  ExportFormat: AssetBundleExportFormat | undefined;
977
- CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
978
- IncludePermissions?: boolean;
979
- IncludeTags?: boolean;
980
- ValidationStrategy?: AssetBundleExportJobValidationStrategy;
981
- IncludeFolderMemberships?: boolean;
982
- IncludeFolderMembers?: IncludeFolderMembers;
997
+ CloudFormationOverridePropertyConfiguration?:
998
+ | AssetBundleCloudFormationOverridePropertyConfiguration
999
+ | undefined;
1000
+ IncludePermissions?: boolean | undefined;
1001
+ IncludeTags?: boolean | undefined;
1002
+ ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
1003
+ IncludeFolderMemberships?: boolean | undefined;
1004
+ IncludeFolderMembers?: IncludeFolderMembers | undefined;
983
1005
  }
984
1006
  export interface StartAssetBundleExportJobResponse {
985
- Arn?: string;
986
- AssetBundleExportJobId?: string;
987
- RequestId?: string;
988
- Status?: number;
1007
+ Arn?: string | undefined;
1008
+ AssetBundleExportJobId?: string | undefined;
1009
+ RequestId?: string | undefined;
1010
+ Status?: number | undefined;
989
1011
  }
990
1012
  export interface StartAssetBundleImportJobRequest {
991
1013
  AwsAccountId: string | undefined;
992
1014
  AssetBundleImportJobId: string | undefined;
993
1015
  AssetBundleImportSource: AssetBundleImportSource | undefined;
994
- OverrideParameters?: AssetBundleImportJobOverrideParameters;
995
- FailureAction?: AssetBundleImportFailureAction;
996
- OverridePermissions?: AssetBundleImportJobOverridePermissions;
997
- OverrideTags?: AssetBundleImportJobOverrideTags;
998
- OverrideValidationStrategy?: AssetBundleImportJobOverrideValidationStrategy;
1016
+ OverrideParameters?: AssetBundleImportJobOverrideParameters | undefined;
1017
+ FailureAction?: AssetBundleImportFailureAction | undefined;
1018
+ OverridePermissions?: AssetBundleImportJobOverridePermissions | undefined;
1019
+ OverrideTags?: AssetBundleImportJobOverrideTags | undefined;
1020
+ OverrideValidationStrategy?:
1021
+ | AssetBundleImportJobOverrideValidationStrategy
1022
+ | undefined;
999
1023
  }
1000
1024
  export interface StartAssetBundleImportJobResponse {
1001
- Arn?: string;
1002
- AssetBundleImportJobId?: string;
1003
- RequestId?: string;
1004
- Status?: number;
1025
+ Arn?: string | undefined;
1026
+ AssetBundleImportJobId?: string | undefined;
1027
+ RequestId?: string | undefined;
1028
+ Status?: number | undefined;
1005
1029
  }
1006
1030
  export interface SnapshotAnonymousUser {
1007
- RowLevelPermissionTags?: SessionTag[];
1031
+ RowLevelPermissionTags?: SessionTag[] | undefined;
1008
1032
  }
1009
1033
  export interface SnapshotUserConfiguration {
1010
- AnonymousUsers?: SnapshotAnonymousUser[];
1034
+ AnonymousUsers?: SnapshotAnonymousUser[] | undefined;
1011
1035
  }
1012
1036
  export interface StartDashboardSnapshotJobRequest {
1013
1037
  AwsAccountId: string | undefined;
@@ -1017,10 +1041,10 @@ export interface StartDashboardSnapshotJobRequest {
1017
1041
  SnapshotConfiguration: SnapshotConfiguration | undefined;
1018
1042
  }
1019
1043
  export interface StartDashboardSnapshotJobResponse {
1020
- Arn?: string;
1021
- SnapshotJobId?: string;
1022
- RequestId?: string;
1023
- Status?: number;
1044
+ Arn?: string | undefined;
1045
+ SnapshotJobId?: string | undefined;
1046
+ RequestId?: string | undefined;
1047
+ Status?: number | undefined;
1024
1048
  }
1025
1049
  export interface StartDashboardSnapshotJobScheduleRequest {
1026
1050
  AwsAccountId: string | undefined;
@@ -1028,97 +1052,97 @@ export interface StartDashboardSnapshotJobScheduleRequest {
1028
1052
  ScheduleId: string | undefined;
1029
1053
  }
1030
1054
  export interface StartDashboardSnapshotJobScheduleResponse {
1031
- RequestId?: string;
1032
- Status?: number;
1055
+ RequestId?: string | undefined;
1056
+ Status?: number | undefined;
1033
1057
  }
1034
1058
  export interface TagResourceRequest {
1035
1059
  ResourceArn: string | undefined;
1036
1060
  Tags: Tag[] | undefined;
1037
1061
  }
1038
1062
  export interface TagResourceResponse {
1039
- RequestId?: string;
1040
- Status?: number;
1063
+ RequestId?: string | undefined;
1064
+ Status?: number | undefined;
1041
1065
  }
1042
1066
  export interface UntagResourceRequest {
1043
1067
  ResourceArn: string | undefined;
1044
1068
  TagKeys: string[] | undefined;
1045
1069
  }
1046
1070
  export interface UntagResourceResponse {
1047
- RequestId?: string;
1048
- Status?: number;
1071
+ RequestId?: string | undefined;
1072
+ Status?: number | undefined;
1049
1073
  }
1050
1074
  export interface UpdateAccountCustomizationRequest {
1051
1075
  AwsAccountId: string | undefined;
1052
- Namespace?: string;
1076
+ Namespace?: string | undefined;
1053
1077
  AccountCustomization: AccountCustomization | undefined;
1054
1078
  }
1055
1079
  export interface UpdateAccountCustomizationResponse {
1056
- Arn?: string;
1057
- AwsAccountId?: string;
1058
- Namespace?: string;
1059
- AccountCustomization?: AccountCustomization;
1060
- RequestId?: string;
1061
- Status?: number;
1080
+ Arn?: string | undefined;
1081
+ AwsAccountId?: string | undefined;
1082
+ Namespace?: string | undefined;
1083
+ AccountCustomization?: AccountCustomization | undefined;
1084
+ RequestId?: string | undefined;
1085
+ Status?: number | undefined;
1062
1086
  }
1063
1087
  export interface UpdateAccountSettingsRequest {
1064
1088
  AwsAccountId: string | undefined;
1065
1089
  DefaultNamespace: string | undefined;
1066
- NotificationEmail?: string;
1067
- TerminationProtectionEnabled?: boolean;
1090
+ NotificationEmail?: string | undefined;
1091
+ TerminationProtectionEnabled?: boolean | undefined;
1068
1092
  }
1069
1093
  export interface UpdateAccountSettingsResponse {
1070
- RequestId?: string;
1071
- Status?: number;
1094
+ RequestId?: string | undefined;
1095
+ Status?: number | undefined;
1072
1096
  }
1073
1097
  export interface UpdateAnalysisRequest {
1074
1098
  AwsAccountId: string | undefined;
1075
1099
  AnalysisId: string | undefined;
1076
1100
  Name: string | undefined;
1077
- Parameters?: _Parameters;
1078
- SourceEntity?: AnalysisSourceEntity;
1079
- ThemeArn?: string;
1080
- Definition?: AnalysisDefinition;
1081
- ValidationStrategy?: ValidationStrategy;
1101
+ Parameters?: _Parameters | undefined;
1102
+ SourceEntity?: AnalysisSourceEntity | undefined;
1103
+ ThemeArn?: string | undefined;
1104
+ Definition?: AnalysisDefinition | undefined;
1105
+ ValidationStrategy?: ValidationStrategy | undefined;
1082
1106
  }
1083
1107
  export interface UpdateAnalysisResponse {
1084
- Arn?: string;
1085
- AnalysisId?: string;
1086
- UpdateStatus?: ResourceStatus;
1087
- Status?: number;
1088
- RequestId?: string;
1108
+ Arn?: string | undefined;
1109
+ AnalysisId?: string | undefined;
1110
+ UpdateStatus?: ResourceStatus | undefined;
1111
+ Status?: number | undefined;
1112
+ RequestId?: string | undefined;
1089
1113
  }
1090
1114
  export interface UpdateAnalysisPermissionsRequest {
1091
1115
  AwsAccountId: string | undefined;
1092
1116
  AnalysisId: string | undefined;
1093
- GrantPermissions?: ResourcePermission[];
1094
- RevokePermissions?: ResourcePermission[];
1117
+ GrantPermissions?: ResourcePermission[] | undefined;
1118
+ RevokePermissions?: ResourcePermission[] | undefined;
1095
1119
  }
1096
1120
  export interface UpdateAnalysisPermissionsResponse {
1097
- AnalysisArn?: string;
1098
- AnalysisId?: string;
1099
- Permissions?: ResourcePermission[];
1100
- RequestId?: string;
1101
- Status?: number;
1121
+ AnalysisArn?: string | undefined;
1122
+ AnalysisId?: string | undefined;
1123
+ Permissions?: ResourcePermission[] | undefined;
1124
+ RequestId?: string | undefined;
1125
+ Status?: number | undefined;
1102
1126
  }
1103
1127
  export interface UpdateDashboardRequest {
1104
1128
  AwsAccountId: string | undefined;
1105
1129
  DashboardId: string | undefined;
1106
1130
  Name: string | undefined;
1107
- SourceEntity?: DashboardSourceEntity;
1108
- Parameters?: _Parameters;
1109
- VersionDescription?: string;
1110
- DashboardPublishOptions?: DashboardPublishOptions;
1111
- ThemeArn?: string;
1112
- Definition?: DashboardVersionDefinition;
1113
- ValidationStrategy?: ValidationStrategy;
1131
+ SourceEntity?: DashboardSourceEntity | undefined;
1132
+ Parameters?: _Parameters | undefined;
1133
+ VersionDescription?: string | undefined;
1134
+ DashboardPublishOptions?: DashboardPublishOptions | undefined;
1135
+ ThemeArn?: string | undefined;
1136
+ Definition?: DashboardVersionDefinition | undefined;
1137
+ ValidationStrategy?: ValidationStrategy | undefined;
1114
1138
  }
1115
1139
  export interface UpdateDashboardResponse {
1116
- Arn?: string;
1117
- VersionArn?: string;
1118
- DashboardId?: string;
1119
- CreationStatus?: ResourceStatus;
1120
- Status?: number;
1121
- RequestId?: string;
1140
+ Arn?: string | undefined;
1141
+ VersionArn?: string | undefined;
1142
+ DashboardId?: string | undefined;
1143
+ CreationStatus?: ResourceStatus | undefined;
1144
+ Status?: number | undefined;
1145
+ RequestId?: string | undefined;
1122
1146
  }
1123
1147
  export interface UpdateDashboardLinksRequest {
1124
1148
  AwsAccountId: string | undefined;
@@ -1126,26 +1150,26 @@ export interface UpdateDashboardLinksRequest {
1126
1150
  LinkEntities: string[] | undefined;
1127
1151
  }
1128
1152
  export interface UpdateDashboardLinksResponse {
1129
- RequestId?: string;
1130
- Status?: number;
1131
- DashboardArn?: string;
1132
- LinkEntities?: string[];
1153
+ RequestId?: string | undefined;
1154
+ Status?: number | undefined;
1155
+ DashboardArn?: string | undefined;
1156
+ LinkEntities?: string[] | undefined;
1133
1157
  }
1134
1158
  export interface UpdateDashboardPermissionsRequest {
1135
1159
  AwsAccountId: string | undefined;
1136
1160
  DashboardId: string | undefined;
1137
- GrantPermissions?: ResourcePermission[];
1138
- RevokePermissions?: ResourcePermission[];
1139
- GrantLinkPermissions?: ResourcePermission[];
1140
- RevokeLinkPermissions?: ResourcePermission[];
1161
+ GrantPermissions?: ResourcePermission[] | undefined;
1162
+ RevokePermissions?: ResourcePermission[] | undefined;
1163
+ GrantLinkPermissions?: ResourcePermission[] | undefined;
1164
+ RevokeLinkPermissions?: ResourcePermission[] | undefined;
1141
1165
  }
1142
1166
  export interface UpdateDashboardPermissionsResponse {
1143
- DashboardArn?: string;
1144
- DashboardId?: string;
1145
- Permissions?: ResourcePermission[];
1146
- RequestId?: string;
1147
- Status?: number;
1148
- LinkSharingConfiguration?: LinkSharingConfiguration;
1167
+ DashboardArn?: string | undefined;
1168
+ DashboardId?: string | undefined;
1169
+ Permissions?: ResourcePermission[] | undefined;
1170
+ RequestId?: string | undefined;
1171
+ Status?: number | undefined;
1172
+ LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
1149
1173
  }
1150
1174
  export interface UpdateDashboardPublishedVersionRequest {
1151
1175
  AwsAccountId: string | undefined;
@@ -1153,73 +1177,75 @@ export interface UpdateDashboardPublishedVersionRequest {
1153
1177
  VersionNumber: number | undefined;
1154
1178
  }
1155
1179
  export interface UpdateDashboardPublishedVersionResponse {
1156
- DashboardId?: string;
1157
- DashboardArn?: string;
1158
- Status?: number;
1159
- RequestId?: string;
1180
+ DashboardId?: string | undefined;
1181
+ DashboardArn?: string | undefined;
1182
+ Status?: number | undefined;
1183
+ RequestId?: string | undefined;
1160
1184
  }
1161
1185
  export interface UpdateDataSetRequest {
1162
1186
  AwsAccountId: string | undefined;
1163
1187
  DataSetId: string | undefined;
1164
1188
  Name: string | undefined;
1165
1189
  PhysicalTableMap: Record<string, PhysicalTable> | undefined;
1166
- LogicalTableMap?: Record<string, LogicalTable>;
1190
+ LogicalTableMap?: Record<string, LogicalTable> | undefined;
1167
1191
  ImportMode: DataSetImportMode | undefined;
1168
- ColumnGroups?: ColumnGroup[];
1169
- FieldFolders?: Record<string, FieldFolder>;
1170
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
1171
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
1172
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
1173
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
1174
- DatasetParameters?: DatasetParameter[];
1192
+ ColumnGroups?: ColumnGroup[] | undefined;
1193
+ FieldFolders?: Record<string, FieldFolder> | undefined;
1194
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
1195
+ RowLevelPermissionTagConfiguration?:
1196
+ | RowLevelPermissionTagConfiguration
1197
+ | undefined;
1198
+ ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
1199
+ DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
1200
+ DatasetParameters?: DatasetParameter[] | undefined;
1175
1201
  }
1176
1202
  export interface UpdateDataSetResponse {
1177
- Arn?: string;
1178
- DataSetId?: string;
1179
- IngestionArn?: string;
1180
- IngestionId?: string;
1181
- RequestId?: string;
1182
- Status?: number;
1203
+ Arn?: string | undefined;
1204
+ DataSetId?: string | undefined;
1205
+ IngestionArn?: string | undefined;
1206
+ IngestionId?: string | undefined;
1207
+ RequestId?: string | undefined;
1208
+ Status?: number | undefined;
1183
1209
  }
1184
1210
  export interface UpdateDataSetPermissionsRequest {
1185
1211
  AwsAccountId: string | undefined;
1186
1212
  DataSetId: string | undefined;
1187
- GrantPermissions?: ResourcePermission[];
1188
- RevokePermissions?: ResourcePermission[];
1213
+ GrantPermissions?: ResourcePermission[] | undefined;
1214
+ RevokePermissions?: ResourcePermission[] | undefined;
1189
1215
  }
1190
1216
  export interface UpdateDataSetPermissionsResponse {
1191
- DataSetArn?: string;
1192
- DataSetId?: string;
1193
- RequestId?: string;
1194
- Status?: number;
1217
+ DataSetArn?: string | undefined;
1218
+ DataSetId?: string | undefined;
1219
+ RequestId?: string | undefined;
1220
+ Status?: number | undefined;
1195
1221
  }
1196
1222
  export interface UpdateDataSourceRequest {
1197
1223
  AwsAccountId: string | undefined;
1198
1224
  DataSourceId: string | undefined;
1199
1225
  Name: string | undefined;
1200
- DataSourceParameters?: DataSourceParameters;
1201
- Credentials?: DataSourceCredentials;
1202
- VpcConnectionProperties?: VpcConnectionProperties;
1203
- SslProperties?: SslProperties;
1226
+ DataSourceParameters?: DataSourceParameters | undefined;
1227
+ Credentials?: DataSourceCredentials | undefined;
1228
+ VpcConnectionProperties?: VpcConnectionProperties | undefined;
1229
+ SslProperties?: SslProperties | undefined;
1204
1230
  }
1205
1231
  export interface UpdateDataSourceResponse {
1206
- Arn?: string;
1207
- DataSourceId?: string;
1208
- UpdateStatus?: ResourceStatus;
1209
- RequestId?: string;
1210
- Status?: number;
1232
+ Arn?: string | undefined;
1233
+ DataSourceId?: string | undefined;
1234
+ UpdateStatus?: ResourceStatus | undefined;
1235
+ RequestId?: string | undefined;
1236
+ Status?: number | undefined;
1211
1237
  }
1212
1238
  export interface UpdateDataSourcePermissionsRequest {
1213
1239
  AwsAccountId: string | undefined;
1214
1240
  DataSourceId: string | undefined;
1215
- GrantPermissions?: ResourcePermission[];
1216
- RevokePermissions?: ResourcePermission[];
1241
+ GrantPermissions?: ResourcePermission[] | undefined;
1242
+ RevokePermissions?: ResourcePermission[] | undefined;
1217
1243
  }
1218
1244
  export interface UpdateDataSourcePermissionsResponse {
1219
- DataSourceArn?: string;
1220
- DataSourceId?: string;
1221
- RequestId?: string;
1222
- Status?: number;
1245
+ DataSourceArn?: string | undefined;
1246
+ DataSourceId?: string | undefined;
1247
+ RequestId?: string | undefined;
1248
+ Status?: number | undefined;
1223
1249
  }
1224
1250
  export interface UpdateFolderRequest {
1225
1251
  AwsAccountId: string | undefined;
@@ -1227,72 +1253,72 @@ export interface UpdateFolderRequest {
1227
1253
  Name: string | undefined;
1228
1254
  }
1229
1255
  export interface UpdateFolderResponse {
1230
- Status?: number;
1231
- Arn?: string;
1232
- FolderId?: string;
1233
- RequestId?: string;
1256
+ Status?: number | undefined;
1257
+ Arn?: string | undefined;
1258
+ FolderId?: string | undefined;
1259
+ RequestId?: string | undefined;
1234
1260
  }
1235
1261
  export interface UpdateFolderPermissionsRequest {
1236
1262
  AwsAccountId: string | undefined;
1237
1263
  FolderId: string | undefined;
1238
- GrantPermissions?: ResourcePermission[];
1239
- RevokePermissions?: ResourcePermission[];
1264
+ GrantPermissions?: ResourcePermission[] | undefined;
1265
+ RevokePermissions?: ResourcePermission[] | undefined;
1240
1266
  }
1241
1267
  export interface UpdateFolderPermissionsResponse {
1242
- Status?: number;
1243
- Arn?: string;
1244
- FolderId?: string;
1245
- Permissions?: ResourcePermission[];
1246
- RequestId?: string;
1268
+ Status?: number | undefined;
1269
+ Arn?: string | undefined;
1270
+ FolderId?: string | undefined;
1271
+ Permissions?: ResourcePermission[] | undefined;
1272
+ RequestId?: string | undefined;
1247
1273
  }
1248
1274
  export interface UpdateGroupRequest {
1249
1275
  GroupName: string | undefined;
1250
- Description?: string;
1276
+ Description?: string | undefined;
1251
1277
  AwsAccountId: string | undefined;
1252
1278
  Namespace: string | undefined;
1253
1279
  }
1254
1280
  export interface UpdateGroupResponse {
1255
- Group?: Group;
1256
- RequestId?: string;
1257
- Status?: number;
1281
+ Group?: Group | undefined;
1282
+ RequestId?: string | undefined;
1283
+ Status?: number | undefined;
1258
1284
  }
1259
1285
  export interface UpdateIAMPolicyAssignmentRequest {
1260
1286
  AwsAccountId: string | undefined;
1261
1287
  AssignmentName: string | undefined;
1262
1288
  Namespace: string | undefined;
1263
- AssignmentStatus?: AssignmentStatus;
1264
- PolicyArn?: string;
1265
- Identities?: Record<string, string[]>;
1289
+ AssignmentStatus?: AssignmentStatus | undefined;
1290
+ PolicyArn?: string | undefined;
1291
+ Identities?: Record<string, string[]> | undefined;
1266
1292
  }
1267
1293
  export interface UpdateIAMPolicyAssignmentResponse {
1268
- AssignmentName?: string;
1269
- AssignmentId?: string;
1270
- PolicyArn?: string;
1271
- Identities?: Record<string, string[]>;
1272
- AssignmentStatus?: AssignmentStatus;
1273
- RequestId?: string;
1274
- Status?: number;
1294
+ AssignmentName?: string | undefined;
1295
+ AssignmentId?: string | undefined;
1296
+ PolicyArn?: string | undefined;
1297
+ Identities?: Record<string, string[]> | undefined;
1298
+ AssignmentStatus?: AssignmentStatus | undefined;
1299
+ RequestId?: string | undefined;
1300
+ Status?: number | undefined;
1275
1301
  }
1276
1302
  export interface UpdateIdentityPropagationConfigRequest {
1277
1303
  AwsAccountId: string | undefined;
1278
1304
  Service: ServiceType | undefined;
1279
- AuthorizedTargets?: string[];
1305
+ AuthorizedTargets?: string[] | undefined;
1280
1306
  }
1281
1307
  export interface UpdateIdentityPropagationConfigResponse {
1282
- RequestId?: string;
1283
- Status?: number;
1308
+ RequestId?: string | undefined;
1309
+ Status?: number | undefined;
1284
1310
  }
1285
1311
  export interface UpdateIpRestrictionRequest {
1286
1312
  AwsAccountId: string | undefined;
1287
- IpRestrictionRuleMap?: Record<string, string>;
1288
- VpcIdRestrictionRuleMap?: Record<string, string>;
1289
- VpcEndpointIdRestrictionRuleMap?: Record<string, string>;
1290
- Enabled?: boolean;
1313
+ IpRestrictionRuleMap?: Record<string, string> | undefined;
1314
+ VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
1315
+ VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
1316
+ Enabled?: boolean | undefined;
1291
1317
  }
1292
1318
  export interface UpdateIpRestrictionResponse {
1293
- AwsAccountId?: string;
1294
- RequestId?: string;
1295
- Status?: number;
1319
+ AwsAccountId?: string | undefined;
1320
+ RequestId?: string | undefined;
1321
+ Status?: number | undefined;
1296
1322
  }
1297
1323
  export interface UpdateKeyRegistrationRequest {
1298
1324
  AwsAccountId: string | undefined;
@@ -1303,26 +1329,26 @@ export interface SuccessfulKeyRegistrationEntry {
1303
1329
  StatusCode: number | undefined;
1304
1330
  }
1305
1331
  export interface UpdateKeyRegistrationResponse {
1306
- FailedKeyRegistration?: FailedKeyRegistrationEntry[];
1307
- SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[];
1308
- RequestId?: string;
1332
+ FailedKeyRegistration?: FailedKeyRegistrationEntry[] | undefined;
1333
+ SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[] | undefined;
1334
+ RequestId?: string | undefined;
1309
1335
  }
1310
1336
  export interface UpdatePublicSharingSettingsRequest {
1311
1337
  AwsAccountId: string | undefined;
1312
- PublicSharingEnabled?: boolean;
1338
+ PublicSharingEnabled?: boolean | undefined;
1313
1339
  }
1314
1340
  export interface UpdatePublicSharingSettingsResponse {
1315
- RequestId?: string;
1316
- Status?: number;
1341
+ RequestId?: string | undefined;
1342
+ Status?: number | undefined;
1317
1343
  }
1318
1344
  export interface UpdateQPersonalizationConfigurationRequest {
1319
1345
  AwsAccountId: string | undefined;
1320
1346
  PersonalizationMode: PersonalizationMode | undefined;
1321
1347
  }
1322
1348
  export interface UpdateQPersonalizationConfigurationResponse {
1323
- PersonalizationMode?: PersonalizationMode;
1324
- RequestId?: string;
1325
- Status?: number;
1349
+ PersonalizationMode?: PersonalizationMode | undefined;
1350
+ RequestId?: string | undefined;
1351
+ Status?: number | undefined;
1326
1352
  }
1327
1353
  export interface UpdateRefreshScheduleRequest {
1328
1354
  DataSetId: string | undefined;
@@ -1330,10 +1356,10 @@ export interface UpdateRefreshScheduleRequest {
1330
1356
  Schedule: RefreshSchedule | undefined;
1331
1357
  }
1332
1358
  export interface UpdateRefreshScheduleResponse {
1333
- Status?: number;
1334
- RequestId?: string;
1335
- ScheduleId?: string;
1336
- Arn?: string;
1359
+ Status?: number | undefined;
1360
+ RequestId?: string | undefined;
1361
+ ScheduleId?: string | undefined;
1362
+ Arn?: string | undefined;
1337
1363
  }
1338
1364
  export interface UpdateRoleCustomPermissionRequest {
1339
1365
  CustomPermissionsName: string | undefined;
@@ -1342,33 +1368,33 @@ export interface UpdateRoleCustomPermissionRequest {
1342
1368
  Namespace: string | undefined;
1343
1369
  }
1344
1370
  export interface UpdateRoleCustomPermissionResponse {
1345
- RequestId?: string;
1346
- Status?: number;
1371
+ RequestId?: string | undefined;
1372
+ Status?: number | undefined;
1347
1373
  }
1348
1374
  export interface UpdateSPICECapacityConfigurationRequest {
1349
1375
  AwsAccountId: string | undefined;
1350
1376
  PurchaseMode: PurchaseMode | undefined;
1351
1377
  }
1352
1378
  export interface UpdateSPICECapacityConfigurationResponse {
1353
- RequestId?: string;
1354
- Status?: number;
1379
+ RequestId?: string | undefined;
1380
+ Status?: number | undefined;
1355
1381
  }
1356
1382
  export interface UpdateTemplateRequest {
1357
1383
  AwsAccountId: string | undefined;
1358
1384
  TemplateId: string | undefined;
1359
- SourceEntity?: TemplateSourceEntity;
1360
- VersionDescription?: string;
1361
- Name?: string;
1362
- Definition?: TemplateVersionDefinition;
1363
- ValidationStrategy?: ValidationStrategy;
1385
+ SourceEntity?: TemplateSourceEntity | undefined;
1386
+ VersionDescription?: string | undefined;
1387
+ Name?: string | undefined;
1388
+ Definition?: TemplateVersionDefinition | undefined;
1389
+ ValidationStrategy?: ValidationStrategy | undefined;
1364
1390
  }
1365
1391
  export interface UpdateTemplateResponse {
1366
- TemplateId?: string;
1367
- Arn?: string;
1368
- VersionArn?: string;
1369
- CreationStatus?: ResourceStatus;
1370
- Status?: number;
1371
- RequestId?: string;
1392
+ TemplateId?: string | undefined;
1393
+ Arn?: string | undefined;
1394
+ VersionArn?: string | undefined;
1395
+ CreationStatus?: ResourceStatus | undefined;
1396
+ Status?: number | undefined;
1397
+ RequestId?: string | undefined;
1372
1398
  }
1373
1399
  export interface UpdateTemplateAliasRequest {
1374
1400
  AwsAccountId: string | undefined;
@@ -1377,38 +1403,38 @@ export interface UpdateTemplateAliasRequest {
1377
1403
  TemplateVersionNumber: number | undefined;
1378
1404
  }
1379
1405
  export interface UpdateTemplateAliasResponse {
1380
- TemplateAlias?: TemplateAlias;
1381
- Status?: number;
1382
- RequestId?: string;
1406
+ TemplateAlias?: TemplateAlias | undefined;
1407
+ Status?: number | undefined;
1408
+ RequestId?: string | undefined;
1383
1409
  }
1384
1410
  export interface UpdateTemplatePermissionsRequest {
1385
1411
  AwsAccountId: string | undefined;
1386
1412
  TemplateId: string | undefined;
1387
- GrantPermissions?: ResourcePermission[];
1388
- RevokePermissions?: ResourcePermission[];
1413
+ GrantPermissions?: ResourcePermission[] | undefined;
1414
+ RevokePermissions?: ResourcePermission[] | undefined;
1389
1415
  }
1390
1416
  export interface UpdateTemplatePermissionsResponse {
1391
- TemplateId?: string;
1392
- TemplateArn?: string;
1393
- Permissions?: ResourcePermission[];
1394
- RequestId?: string;
1395
- Status?: number;
1417
+ TemplateId?: string | undefined;
1418
+ TemplateArn?: string | undefined;
1419
+ Permissions?: ResourcePermission[] | undefined;
1420
+ RequestId?: string | undefined;
1421
+ Status?: number | undefined;
1396
1422
  }
1397
1423
  export interface UpdateThemeRequest {
1398
1424
  AwsAccountId: string | undefined;
1399
1425
  ThemeId: string | undefined;
1400
- Name?: string;
1426
+ Name?: string | undefined;
1401
1427
  BaseThemeId: string | undefined;
1402
- VersionDescription?: string;
1403
- Configuration?: ThemeConfiguration;
1428
+ VersionDescription?: string | undefined;
1429
+ Configuration?: ThemeConfiguration | undefined;
1404
1430
  }
1405
1431
  export interface UpdateThemeResponse {
1406
- ThemeId?: string;
1407
- Arn?: string;
1408
- VersionArn?: string;
1409
- CreationStatus?: ResourceStatus;
1410
- Status?: number;
1411
- RequestId?: string;
1432
+ ThemeId?: string | undefined;
1433
+ Arn?: string | undefined;
1434
+ VersionArn?: string | undefined;
1435
+ CreationStatus?: ResourceStatus | undefined;
1436
+ Status?: number | undefined;
1437
+ RequestId?: string | undefined;
1412
1438
  }
1413
1439
  export interface UpdateThemeAliasRequest {
1414
1440
  AwsAccountId: string | undefined;
@@ -1417,22 +1443,22 @@ export interface UpdateThemeAliasRequest {
1417
1443
  ThemeVersionNumber: number | undefined;
1418
1444
  }
1419
1445
  export interface UpdateThemeAliasResponse {
1420
- ThemeAlias?: ThemeAlias;
1421
- Status?: number;
1422
- RequestId?: string;
1446
+ ThemeAlias?: ThemeAlias | undefined;
1447
+ Status?: number | undefined;
1448
+ RequestId?: string | undefined;
1423
1449
  }
1424
1450
  export interface UpdateThemePermissionsRequest {
1425
1451
  AwsAccountId: string | undefined;
1426
1452
  ThemeId: string | undefined;
1427
- GrantPermissions?: ResourcePermission[];
1428
- RevokePermissions?: ResourcePermission[];
1453
+ GrantPermissions?: ResourcePermission[] | undefined;
1454
+ RevokePermissions?: ResourcePermission[] | undefined;
1429
1455
  }
1430
1456
  export interface UpdateThemePermissionsResponse {
1431
- ThemeId?: string;
1432
- ThemeArn?: string;
1433
- Permissions?: ResourcePermission[];
1434
- RequestId?: string;
1435
- Status?: number;
1457
+ ThemeId?: string | undefined;
1458
+ ThemeArn?: string | undefined;
1459
+ Permissions?: ResourcePermission[] | undefined;
1460
+ RequestId?: string | undefined;
1461
+ Status?: number | undefined;
1436
1462
  }
1437
1463
  export interface UpdateTopicRequest {
1438
1464
  AwsAccountId: string | undefined;
@@ -1440,24 +1466,24 @@ export interface UpdateTopicRequest {
1440
1466
  Topic: TopicDetails | undefined;
1441
1467
  }
1442
1468
  export interface UpdateTopicResponse {
1443
- TopicId?: string;
1444
- Arn?: string;
1445
- RefreshArn?: string;
1446
- RequestId?: string;
1447
- Status?: number;
1469
+ TopicId?: string | undefined;
1470
+ Arn?: string | undefined;
1471
+ RefreshArn?: string | undefined;
1472
+ RequestId?: string | undefined;
1473
+ Status?: number | undefined;
1448
1474
  }
1449
1475
  export interface UpdateTopicPermissionsRequest {
1450
1476
  AwsAccountId: string | undefined;
1451
1477
  TopicId: string | undefined;
1452
- GrantPermissions?: ResourcePermission[];
1453
- RevokePermissions?: ResourcePermission[];
1478
+ GrantPermissions?: ResourcePermission[] | undefined;
1479
+ RevokePermissions?: ResourcePermission[] | undefined;
1454
1480
  }
1455
1481
  export interface UpdateTopicPermissionsResponse {
1456
- TopicId?: string;
1457
- TopicArn?: string;
1458
- Permissions?: ResourcePermission[];
1459
- Status?: number;
1460
- RequestId?: string;
1482
+ TopicId?: string | undefined;
1483
+ TopicArn?: string | undefined;
1484
+ Permissions?: ResourcePermission[] | undefined;
1485
+ Status?: number | undefined;
1486
+ RequestId?: string | undefined;
1461
1487
  }
1462
1488
  export interface UpdateTopicRefreshScheduleRequest {
1463
1489
  AwsAccountId: string | undefined;
@@ -1466,11 +1492,11 @@ export interface UpdateTopicRefreshScheduleRequest {
1466
1492
  RefreshSchedule: TopicRefreshSchedule | undefined;
1467
1493
  }
1468
1494
  export interface UpdateTopicRefreshScheduleResponse {
1469
- TopicId?: string;
1470
- TopicArn?: string;
1471
- DatasetArn?: string;
1472
- Status?: number;
1473
- RequestId?: string;
1495
+ TopicId?: string | undefined;
1496
+ TopicArn?: string | undefined;
1497
+ DatasetArn?: string | undefined;
1498
+ Status?: number | undefined;
1499
+ RequestId?: string | undefined;
1474
1500
  }
1475
1501
  export interface UpdateUserRequest {
1476
1502
  UserName: string | undefined;
@@ -1478,16 +1504,16 @@ export interface UpdateUserRequest {
1478
1504
  Namespace: string | undefined;
1479
1505
  Email: string | undefined;
1480
1506
  Role: UserRole | undefined;
1481
- CustomPermissionsName?: string;
1482
- UnapplyCustomPermissions?: boolean;
1483
- ExternalLoginFederationProviderType?: string;
1484
- CustomFederationProviderUrl?: string;
1485
- ExternalLoginId?: string;
1507
+ CustomPermissionsName?: string | undefined;
1508
+ UnapplyCustomPermissions?: boolean | undefined;
1509
+ ExternalLoginFederationProviderType?: string | undefined;
1510
+ CustomFederationProviderUrl?: string | undefined;
1511
+ ExternalLoginId?: string | undefined;
1486
1512
  }
1487
1513
  export interface UpdateUserResponse {
1488
- User?: User;
1489
- RequestId?: string;
1490
- Status?: number;
1514
+ User?: User | undefined;
1515
+ RequestId?: string | undefined;
1516
+ Status?: number | undefined;
1491
1517
  }
1492
1518
  export interface UpdateVPCConnectionRequest {
1493
1519
  AwsAccountId: string | undefined;
@@ -1495,39 +1521,39 @@ export interface UpdateVPCConnectionRequest {
1495
1521
  Name: string | undefined;
1496
1522
  SubnetIds: string[] | undefined;
1497
1523
  SecurityGroupIds: string[] | undefined;
1498
- DnsResolvers?: string[];
1524
+ DnsResolvers?: string[] | undefined;
1499
1525
  RoleArn: string | undefined;
1500
1526
  }
1501
1527
  export interface UpdateVPCConnectionResponse {
1502
- Arn?: string;
1503
- VPCConnectionId?: string;
1504
- UpdateStatus?: VPCConnectionResourceStatus;
1505
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
1506
- RequestId?: string;
1507
- Status?: number;
1528
+ Arn?: string | undefined;
1529
+ VPCConnectionId?: string | undefined;
1530
+ UpdateStatus?: VPCConnectionResourceStatus | undefined;
1531
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
1532
+ RequestId?: string | undefined;
1533
+ Status?: number | undefined;
1508
1534
  }
1509
1535
  export interface TopicVisual {
1510
- VisualId?: string;
1511
- Role?: VisualRole;
1512
- Ir?: TopicIR;
1513
- SupportingVisuals?: TopicVisual[];
1536
+ VisualId?: string | undefined;
1537
+ Role?: VisualRole | undefined;
1538
+ Ir?: TopicIR | undefined;
1539
+ SupportingVisuals?: TopicVisual[] | undefined;
1514
1540
  }
1515
1541
  export interface CreateTopicReviewedAnswer {
1516
1542
  AnswerId: string | undefined;
1517
1543
  DatasetArn: string | undefined;
1518
1544
  Question: string | undefined;
1519
- Mir?: TopicIR;
1520
- PrimaryVisual?: TopicVisual;
1521
- Template?: TopicTemplate;
1545
+ Mir?: TopicIR | undefined;
1546
+ PrimaryVisual?: TopicVisual | undefined;
1547
+ Template?: TopicTemplate | undefined;
1522
1548
  }
1523
1549
  export interface TopicReviewedAnswer {
1524
- Arn?: string;
1550
+ Arn?: string | undefined;
1525
1551
  AnswerId: string | undefined;
1526
1552
  DatasetArn: string | undefined;
1527
1553
  Question: string | undefined;
1528
- Mir?: TopicIR;
1529
- PrimaryVisual?: TopicVisual;
1530
- Template?: TopicTemplate;
1554
+ Mir?: TopicIR | undefined;
1555
+ PrimaryVisual?: TopicVisual | undefined;
1556
+ Template?: TopicTemplate | undefined;
1531
1557
  }
1532
1558
  export interface BatchCreateTopicReviewedAnswerRequest {
1533
1559
  AwsAccountId: string | undefined;
@@ -1535,11 +1561,11 @@ export interface BatchCreateTopicReviewedAnswerRequest {
1535
1561
  Answers: CreateTopicReviewedAnswer[] | undefined;
1536
1562
  }
1537
1563
  export interface ListTopicReviewedAnswersResponse {
1538
- TopicId?: string;
1539
- TopicArn?: string;
1540
- Answers?: TopicReviewedAnswer[];
1541
- Status?: number;
1542
- RequestId?: string;
1564
+ TopicId?: string | undefined;
1565
+ TopicArn?: string | undefined;
1566
+ Answers?: TopicReviewedAnswer[] | undefined;
1567
+ Status?: number | undefined;
1568
+ RequestId?: string | undefined;
1543
1569
  }
1544
1570
  export declare const SessionTagFilterSensitiveLog: (obj: SessionTag) => any;
1545
1571
  export declare const GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog: (