@aws-sdk/client-quicksight 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.
@@ -86,58 +86,60 @@ export declare const Status: {
86
86
  };
87
87
  export type Status = (typeof Status)[keyof typeof Status];
88
88
  export interface RowLevelPermissionDataSet {
89
- Namespace?: string;
89
+ Namespace?: string | undefined;
90
90
  Arn: string | undefined;
91
91
  PermissionPolicy: RowLevelPermissionPolicy | undefined;
92
- FormatVersion?: RowLevelPermissionFormatVersion;
93
- Status?: Status;
92
+ FormatVersion?: RowLevelPermissionFormatVersion | undefined;
93
+ Status?: Status | undefined;
94
94
  }
95
95
  export interface RowLevelPermissionTagRule {
96
96
  TagKey: string | undefined;
97
97
  ColumnName: string | undefined;
98
- TagMultiValueDelimiter?: string;
99
- MatchAllValue?: string;
98
+ TagMultiValueDelimiter?: string | undefined;
99
+ MatchAllValue?: string | undefined;
100
100
  }
101
101
  export interface RowLevelPermissionTagConfiguration {
102
- Status?: Status;
102
+ Status?: Status | undefined;
103
103
  TagRules: RowLevelPermissionTagRule[] | undefined;
104
- TagRuleConfigurations?: string[][];
104
+ TagRuleConfigurations?: string[][] | undefined;
105
105
  }
106
106
  export interface CreateDataSetRequest {
107
107
  AwsAccountId: string | undefined;
108
108
  DataSetId: string | undefined;
109
109
  Name: string | undefined;
110
110
  PhysicalTableMap: Record<string, PhysicalTable> | undefined;
111
- LogicalTableMap?: Record<string, LogicalTable>;
111
+ LogicalTableMap?: Record<string, LogicalTable> | undefined;
112
112
  ImportMode: DataSetImportMode | undefined;
113
- ColumnGroups?: ColumnGroup[];
114
- FieldFolders?: Record<string, FieldFolder>;
115
- Permissions?: ResourcePermission[];
116
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
117
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
118
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
119
- Tags?: Tag[];
120
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
121
- DatasetParameters?: DatasetParameter[];
122
- FolderArns?: string[];
113
+ ColumnGroups?: ColumnGroup[] | undefined;
114
+ FieldFolders?: Record<string, FieldFolder> | undefined;
115
+ Permissions?: ResourcePermission[] | undefined;
116
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
117
+ RowLevelPermissionTagConfiguration?:
118
+ | RowLevelPermissionTagConfiguration
119
+ | undefined;
120
+ ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
121
+ Tags?: Tag[] | undefined;
122
+ DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
123
+ DatasetParameters?: DatasetParameter[] | undefined;
124
+ FolderArns?: string[] | undefined;
123
125
  }
124
126
  export interface CreateDataSetResponse {
125
- Arn?: string;
126
- DataSetId?: string;
127
- IngestionArn?: string;
128
- IngestionId?: string;
129
- RequestId?: string;
130
- Status?: number;
127
+ Arn?: string | undefined;
128
+ DataSetId?: string | undefined;
129
+ IngestionArn?: string | undefined;
130
+ IngestionId?: string | undefined;
131
+ RequestId?: string | undefined;
132
+ Status?: number | undefined;
131
133
  }
132
134
  export interface CredentialPair {
133
135
  Username: string | undefined;
134
136
  Password: string | undefined;
135
- AlternateDataSourceParameters?: DataSourceParameters[];
137
+ AlternateDataSourceParameters?: DataSourceParameters[] | undefined;
136
138
  }
137
139
  export interface DataSourceCredentials {
138
- CredentialPair?: CredentialPair;
139
- CopySourceArn?: string;
140
- SecretArn?: string;
140
+ CredentialPair?: CredentialPair | undefined;
141
+ CopySourceArn?: string | undefined;
142
+ SecretArn?: string | undefined;
141
143
  }
142
144
  export declare const DataSourceType: {
143
145
  readonly ADOBE_ANALYTICS: "ADOBE_ANALYTICS";
@@ -177,26 +179,26 @@ export interface CreateDataSourceRequest {
177
179
  DataSourceId: string | undefined;
178
180
  Name: string | undefined;
179
181
  Type: DataSourceType | undefined;
180
- DataSourceParameters?: DataSourceParameters;
181
- Credentials?: DataSourceCredentials;
182
- Permissions?: ResourcePermission[];
183
- VpcConnectionProperties?: VpcConnectionProperties;
184
- SslProperties?: SslProperties;
185
- Tags?: Tag[];
186
- FolderArns?: string[];
182
+ DataSourceParameters?: DataSourceParameters | undefined;
183
+ Credentials?: DataSourceCredentials | undefined;
184
+ Permissions?: ResourcePermission[] | undefined;
185
+ VpcConnectionProperties?: VpcConnectionProperties | undefined;
186
+ SslProperties?: SslProperties | undefined;
187
+ Tags?: Tag[] | undefined;
188
+ FolderArns?: string[] | undefined;
187
189
  }
188
190
  export interface CreateDataSourceResponse {
189
- Arn?: string;
190
- DataSourceId?: string;
191
- CreationStatus?: ResourceStatus;
192
- RequestId?: string;
193
- Status?: number;
191
+ Arn?: string | undefined;
192
+ DataSourceId?: string | undefined;
193
+ CreationStatus?: ResourceStatus | undefined;
194
+ RequestId?: string | undefined;
195
+ Status?: number | undefined;
194
196
  }
195
197
  export declare class CustomerManagedKeyUnavailableException extends __BaseException {
196
198
  readonly name: "CustomerManagedKeyUnavailableException";
197
199
  readonly $fault: "client";
198
- Message?: string;
199
- RequestId?: string;
200
+ Message?: string | undefined;
201
+ RequestId?: string | undefined;
200
202
  constructor(
201
203
  opts: __ExceptionOptionType<
202
204
  CustomerManagedKeyUnavailableException,
@@ -217,18 +219,18 @@ export type SharingModel = (typeof SharingModel)[keyof typeof SharingModel];
217
219
  export interface CreateFolderRequest {
218
220
  AwsAccountId: string | undefined;
219
221
  FolderId: string | undefined;
220
- Name?: string;
221
- FolderType?: FolderType;
222
- ParentFolderArn?: string;
223
- Permissions?: ResourcePermission[];
224
- Tags?: Tag[];
225
- SharingModel?: SharingModel;
222
+ Name?: string | undefined;
223
+ FolderType?: FolderType | undefined;
224
+ ParentFolderArn?: string | undefined;
225
+ Permissions?: ResourcePermission[] | undefined;
226
+ Tags?: Tag[] | undefined;
227
+ SharingModel?: SharingModel | undefined;
226
228
  }
227
229
  export interface CreateFolderResponse {
228
- Status?: number;
229
- Arn?: string;
230
- FolderId?: string;
231
- RequestId?: string;
230
+ Status?: number | undefined;
231
+ Arn?: string | undefined;
232
+ FolderId?: string | undefined;
233
+ RequestId?: string | undefined;
232
234
  }
233
235
  export declare const MemberType: {
234
236
  readonly ANALYSIS: "ANALYSIS";
@@ -245,30 +247,30 @@ export interface CreateFolderMembershipRequest {
245
247
  MemberType: MemberType | undefined;
246
248
  }
247
249
  export interface FolderMember {
248
- MemberId?: string;
249
- MemberType?: MemberType;
250
+ MemberId?: string | undefined;
251
+ MemberType?: MemberType | undefined;
250
252
  }
251
253
  export interface CreateFolderMembershipResponse {
252
- Status?: number;
253
- FolderMember?: FolderMember;
254
- RequestId?: string;
254
+ Status?: number | undefined;
255
+ FolderMember?: FolderMember | undefined;
256
+ RequestId?: string | undefined;
255
257
  }
256
258
  export interface CreateGroupRequest {
257
259
  GroupName: string | undefined;
258
- Description?: string;
260
+ Description?: string | undefined;
259
261
  AwsAccountId: string | undefined;
260
262
  Namespace: string | undefined;
261
263
  }
262
264
  export interface Group {
263
- Arn?: string;
264
- GroupName?: string;
265
- Description?: string;
266
- PrincipalId?: string;
265
+ Arn?: string | undefined;
266
+ GroupName?: string | undefined;
267
+ Description?: string | undefined;
268
+ PrincipalId?: string | undefined;
267
269
  }
268
270
  export interface CreateGroupResponse {
269
- Group?: Group;
270
- RequestId?: string;
271
- Status?: number;
271
+ Group?: Group | undefined;
272
+ RequestId?: string | undefined;
273
+ Status?: number | undefined;
272
274
  }
273
275
  export interface CreateGroupMembershipRequest {
274
276
  MemberName: string | undefined;
@@ -277,30 +279,30 @@ export interface CreateGroupMembershipRequest {
277
279
  Namespace: string | undefined;
278
280
  }
279
281
  export interface GroupMember {
280
- Arn?: string;
281
- MemberName?: string;
282
+ Arn?: string | undefined;
283
+ MemberName?: string | undefined;
282
284
  }
283
285
  export interface CreateGroupMembershipResponse {
284
- GroupMember?: GroupMember;
285
- RequestId?: string;
286
- Status?: number;
286
+ GroupMember?: GroupMember | undefined;
287
+ RequestId?: string | undefined;
288
+ Status?: number | undefined;
287
289
  }
288
290
  export interface CreateIAMPolicyAssignmentRequest {
289
291
  AwsAccountId: string | undefined;
290
292
  AssignmentName: string | undefined;
291
293
  AssignmentStatus: AssignmentStatus | undefined;
292
- PolicyArn?: string;
293
- Identities?: Record<string, string[]>;
294
+ PolicyArn?: string | undefined;
295
+ Identities?: Record<string, string[]> | undefined;
294
296
  Namespace: string | undefined;
295
297
  }
296
298
  export interface CreateIAMPolicyAssignmentResponse {
297
- AssignmentName?: string;
298
- AssignmentId?: string;
299
- AssignmentStatus?: AssignmentStatus;
300
- PolicyArn?: string;
301
- Identities?: Record<string, string[]>;
302
- RequestId?: string;
303
- Status?: number;
299
+ AssignmentName?: string | undefined;
300
+ AssignmentId?: string | undefined;
301
+ AssignmentStatus?: AssignmentStatus | undefined;
302
+ PolicyArn?: string | undefined;
303
+ Identities?: Record<string, string[]> | undefined;
304
+ RequestId?: string | undefined;
305
+ Status?: number | undefined;
304
306
  }
305
307
  export declare const IngestionType: {
306
308
  readonly FULL_REFRESH: "FULL_REFRESH";
@@ -311,7 +313,7 @@ export interface CreateIngestionRequest {
311
313
  DataSetId: string | undefined;
312
314
  IngestionId: string | undefined;
313
315
  AwsAccountId: string | undefined;
314
- IngestionType?: IngestionType;
316
+ IngestionType?: IngestionType | undefined;
315
317
  }
316
318
  export declare const IngestionStatus: {
317
319
  readonly CANCELLED: "CANCELLED";
@@ -324,11 +326,11 @@ export declare const IngestionStatus: {
324
326
  export type IngestionStatus =
325
327
  (typeof IngestionStatus)[keyof typeof IngestionStatus];
326
328
  export interface CreateIngestionResponse {
327
- Arn?: string;
328
- IngestionId?: string;
329
- IngestionStatus?: IngestionStatus;
330
- RequestId?: string;
331
- Status?: number;
329
+ Arn?: string | undefined;
330
+ IngestionId?: string | undefined;
331
+ IngestionStatus?: IngestionStatus | undefined;
332
+ RequestId?: string | undefined;
333
+ Status?: number | undefined;
332
334
  }
333
335
  export declare const IdentityStore: {
334
336
  readonly QUICKSIGHT: "QUICKSIGHT";
@@ -338,7 +340,7 @@ export interface CreateNamespaceRequest {
338
340
  AwsAccountId: string | undefined;
339
341
  Namespace: string | undefined;
340
342
  IdentityStore: IdentityStore | undefined;
341
- Tags?: Tag[];
343
+ Tags?: Tag[] | undefined;
342
344
  }
343
345
  export declare const NamespaceStatus: {
344
346
  readonly CREATED: "CREATED";
@@ -350,13 +352,13 @@ export declare const NamespaceStatus: {
350
352
  export type NamespaceStatus =
351
353
  (typeof NamespaceStatus)[keyof typeof NamespaceStatus];
352
354
  export interface CreateNamespaceResponse {
353
- Arn?: string;
354
- Name?: string;
355
- CapacityRegion?: string;
356
- CreationStatus?: NamespaceStatus;
357
- IdentityStore?: IdentityStore;
358
- RequestId?: string;
359
- Status?: number;
355
+ Arn?: string | undefined;
356
+ Name?: string | undefined;
357
+ CapacityRegion?: string | undefined;
358
+ CreationStatus?: NamespaceStatus | undefined;
359
+ IdentityStore?: IdentityStore | undefined;
360
+ RequestId?: string | undefined;
361
+ Status?: number | undefined;
360
362
  }
361
363
  export declare const RefreshInterval: {
362
364
  readonly DAILY: "DAILY";
@@ -379,21 +381,21 @@ export declare const DayOfWeek: {
379
381
  };
380
382
  export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
381
383
  export interface ScheduleRefreshOnEntity {
382
- DayOfWeek?: DayOfWeek;
383
- DayOfMonth?: string;
384
+ DayOfWeek?: DayOfWeek | undefined;
385
+ DayOfMonth?: string | undefined;
384
386
  }
385
387
  export interface RefreshFrequency {
386
388
  Interval: RefreshInterval | undefined;
387
- RefreshOnDay?: ScheduleRefreshOnEntity;
388
- Timezone?: string;
389
- TimeOfTheDay?: string;
389
+ RefreshOnDay?: ScheduleRefreshOnEntity | undefined;
390
+ Timezone?: string | undefined;
391
+ TimeOfTheDay?: string | undefined;
390
392
  }
391
393
  export interface RefreshSchedule {
392
394
  ScheduleId: string | undefined;
393
395
  ScheduleFrequency: RefreshFrequency | undefined;
394
- StartAfterDateTime?: Date;
396
+ StartAfterDateTime?: Date | undefined;
395
397
  RefreshType: IngestionType | undefined;
396
- Arn?: string;
398
+ Arn?: string | undefined;
397
399
  }
398
400
  export interface CreateRefreshScheduleRequest {
399
401
  DataSetId: string | undefined;
@@ -401,10 +403,10 @@ export interface CreateRefreshScheduleRequest {
401
403
  Schedule: RefreshSchedule | undefined;
402
404
  }
403
405
  export interface CreateRefreshScheduleResponse {
404
- Status?: number;
405
- RequestId?: string;
406
- ScheduleId?: string;
407
- Arn?: string;
406
+ Status?: number | undefined;
407
+ RequestId?: string | undefined;
408
+ ScheduleId?: string | undefined;
409
+ Arn?: string | undefined;
408
410
  }
409
411
  export declare const Role: {
410
412
  readonly ADMIN: "ADMIN";
@@ -422,27 +424,27 @@ export interface CreateRoleMembershipRequest {
422
424
  Role: Role | undefined;
423
425
  }
424
426
  export interface CreateRoleMembershipResponse {
425
- RequestId?: string;
426
- Status?: number;
427
+ RequestId?: string | undefined;
428
+ Status?: number | undefined;
427
429
  }
428
430
  export interface DataSetSchema {
429
- ColumnSchemaList?: ColumnSchema[];
431
+ ColumnSchemaList?: ColumnSchema[] | undefined;
430
432
  }
431
433
  export interface DataSetConfiguration {
432
- Placeholder?: string;
433
- DataSetSchema?: DataSetSchema;
434
- ColumnGroupSchemaList?: ColumnGroupSchema[];
434
+ Placeholder?: string | undefined;
435
+ DataSetSchema?: DataSetSchema | undefined;
436
+ ColumnGroupSchemaList?: ColumnGroupSchema[] | undefined;
435
437
  }
436
438
  export interface TemplateVersionDefinition {
437
439
  DataSetConfigurations: DataSetConfiguration[] | undefined;
438
- Sheets?: SheetDefinition[];
439
- CalculatedFields?: CalculatedField[];
440
- ParameterDeclarations?: ParameterDeclaration[];
441
- FilterGroups?: FilterGroup[];
442
- ColumnConfigurations?: ColumnConfiguration[];
443
- AnalysisDefaults?: AnalysisDefaults;
444
- Options?: AssetOptions;
445
- QueryExecutionOptions?: QueryExecutionOptions;
440
+ Sheets?: SheetDefinition[] | undefined;
441
+ CalculatedFields?: CalculatedField[] | undefined;
442
+ ParameterDeclarations?: ParameterDeclaration[] | undefined;
443
+ FilterGroups?: FilterGroup[] | undefined;
444
+ ColumnConfigurations?: ColumnConfiguration[] | undefined;
445
+ AnalysisDefaults?: AnalysisDefaults | undefined;
446
+ Options?: AssetOptions | undefined;
447
+ QueryExecutionOptions?: QueryExecutionOptions | undefined;
446
448
  }
447
449
  export interface TemplateSourceAnalysis {
448
450
  Arn: string | undefined;
@@ -452,27 +454,27 @@ export interface TemplateSourceTemplate {
452
454
  Arn: string | undefined;
453
455
  }
454
456
  export interface TemplateSourceEntity {
455
- SourceAnalysis?: TemplateSourceAnalysis;
456
- SourceTemplate?: TemplateSourceTemplate;
457
+ SourceAnalysis?: TemplateSourceAnalysis | undefined;
458
+ SourceTemplate?: TemplateSourceTemplate | undefined;
457
459
  }
458
460
  export interface CreateTemplateRequest {
459
461
  AwsAccountId: string | undefined;
460
462
  TemplateId: string | undefined;
461
- Name?: string;
462
- Permissions?: ResourcePermission[];
463
- SourceEntity?: TemplateSourceEntity;
464
- Tags?: Tag[];
465
- VersionDescription?: string;
466
- Definition?: TemplateVersionDefinition;
467
- ValidationStrategy?: ValidationStrategy;
463
+ Name?: string | undefined;
464
+ Permissions?: ResourcePermission[] | undefined;
465
+ SourceEntity?: TemplateSourceEntity | undefined;
466
+ Tags?: Tag[] | undefined;
467
+ VersionDescription?: string | undefined;
468
+ Definition?: TemplateVersionDefinition | undefined;
469
+ ValidationStrategy?: ValidationStrategy | undefined;
468
470
  }
469
471
  export interface CreateTemplateResponse {
470
- Arn?: string;
471
- VersionArn?: string;
472
- TemplateId?: string;
473
- CreationStatus?: ResourceStatus;
474
- Status?: number;
475
- RequestId?: string;
472
+ Arn?: string | undefined;
473
+ VersionArn?: string | undefined;
474
+ TemplateId?: string | undefined;
475
+ CreationStatus?: ResourceStatus | undefined;
476
+ Status?: number | undefined;
477
+ RequestId?: string | undefined;
476
478
  }
477
479
  export interface CreateTemplateAliasRequest {
478
480
  AwsAccountId: string | undefined;
@@ -481,84 +483,84 @@ export interface CreateTemplateAliasRequest {
481
483
  TemplateVersionNumber: number | undefined;
482
484
  }
483
485
  export interface TemplateAlias {
484
- AliasName?: string;
485
- Arn?: string;
486
- TemplateVersionNumber?: number;
486
+ AliasName?: string | undefined;
487
+ Arn?: string | undefined;
488
+ TemplateVersionNumber?: number | undefined;
487
489
  }
488
490
  export interface CreateTemplateAliasResponse {
489
- TemplateAlias?: TemplateAlias;
490
- Status?: number;
491
- RequestId?: string;
491
+ TemplateAlias?: TemplateAlias | undefined;
492
+ Status?: number | undefined;
493
+ RequestId?: string | undefined;
492
494
  }
493
495
  export interface DataColorPalette {
494
- Colors?: string[];
495
- MinMaxGradient?: string[];
496
- EmptyFillColor?: string;
496
+ Colors?: string[] | undefined;
497
+ MinMaxGradient?: string[] | undefined;
498
+ EmptyFillColor?: string | undefined;
497
499
  }
498
500
  export interface TileStyle {
499
- Border?: BorderStyle;
501
+ Border?: BorderStyle | undefined;
500
502
  }
501
503
  export interface GutterStyle {
502
- Show?: boolean;
504
+ Show?: boolean | undefined;
503
505
  }
504
506
  export interface MarginStyle {
505
- Show?: boolean;
507
+ Show?: boolean | undefined;
506
508
  }
507
509
  export interface TileLayoutStyle {
508
- Gutter?: GutterStyle;
509
- Margin?: MarginStyle;
510
+ Gutter?: GutterStyle | undefined;
511
+ Margin?: MarginStyle | undefined;
510
512
  }
511
513
  export interface SheetStyle {
512
- Tile?: TileStyle;
513
- TileLayout?: TileLayoutStyle;
514
+ Tile?: TileStyle | undefined;
515
+ TileLayout?: TileLayoutStyle | undefined;
514
516
  }
515
517
  export interface Font {
516
- FontFamily?: string;
518
+ FontFamily?: string | undefined;
517
519
  }
518
520
  export interface Typography {
519
- FontFamilies?: Font[];
521
+ FontFamilies?: Font[] | undefined;
520
522
  }
521
523
  export interface UIColorPalette {
522
- PrimaryForeground?: string;
523
- PrimaryBackground?: string;
524
- SecondaryForeground?: string;
525
- SecondaryBackground?: string;
526
- Accent?: string;
527
- AccentForeground?: string;
528
- Danger?: string;
529
- DangerForeground?: string;
530
- Warning?: string;
531
- WarningForeground?: string;
532
- Success?: string;
533
- SuccessForeground?: string;
534
- Dimension?: string;
535
- DimensionForeground?: string;
536
- Measure?: string;
537
- MeasureForeground?: string;
524
+ PrimaryForeground?: string | undefined;
525
+ PrimaryBackground?: string | undefined;
526
+ SecondaryForeground?: string | undefined;
527
+ SecondaryBackground?: string | undefined;
528
+ Accent?: string | undefined;
529
+ AccentForeground?: string | undefined;
530
+ Danger?: string | undefined;
531
+ DangerForeground?: string | undefined;
532
+ Warning?: string | undefined;
533
+ WarningForeground?: string | undefined;
534
+ Success?: string | undefined;
535
+ SuccessForeground?: string | undefined;
536
+ Dimension?: string | undefined;
537
+ DimensionForeground?: string | undefined;
538
+ Measure?: string | undefined;
539
+ MeasureForeground?: string | undefined;
538
540
  }
539
541
  export interface ThemeConfiguration {
540
- DataColorPalette?: DataColorPalette;
541
- UIColorPalette?: UIColorPalette;
542
- Sheet?: SheetStyle;
543
- Typography?: Typography;
542
+ DataColorPalette?: DataColorPalette | undefined;
543
+ UIColorPalette?: UIColorPalette | undefined;
544
+ Sheet?: SheetStyle | undefined;
545
+ Typography?: Typography | undefined;
544
546
  }
545
547
  export interface CreateThemeRequest {
546
548
  AwsAccountId: string | undefined;
547
549
  ThemeId: string | undefined;
548
550
  Name: string | undefined;
549
551
  BaseThemeId: string | undefined;
550
- VersionDescription?: string;
552
+ VersionDescription?: string | undefined;
551
553
  Configuration: ThemeConfiguration | undefined;
552
- Permissions?: ResourcePermission[];
553
- Tags?: Tag[];
554
+ Permissions?: ResourcePermission[] | undefined;
555
+ Tags?: Tag[] | undefined;
554
556
  }
555
557
  export interface CreateThemeResponse {
556
- Arn?: string;
557
- VersionArn?: string;
558
- ThemeId?: string;
559
- CreationStatus?: ResourceStatus;
560
- Status?: number;
561
- RequestId?: string;
558
+ Arn?: string | undefined;
559
+ VersionArn?: string | undefined;
560
+ ThemeId?: string | undefined;
561
+ CreationStatus?: ResourceStatus | undefined;
562
+ Status?: number | undefined;
563
+ RequestId?: string | undefined;
562
564
  }
563
565
  export interface CreateThemeAliasRequest {
564
566
  AwsAccountId: string | undefined;
@@ -567,17 +569,17 @@ export interface CreateThemeAliasRequest {
567
569
  ThemeVersionNumber: number | undefined;
568
570
  }
569
571
  export interface ThemeAlias {
570
- Arn?: string;
571
- AliasName?: string;
572
- ThemeVersionNumber?: number;
572
+ Arn?: string | undefined;
573
+ AliasName?: string | undefined;
574
+ ThemeVersionNumber?: number | undefined;
573
575
  }
574
576
  export interface CreateThemeAliasResponse {
575
- ThemeAlias?: ThemeAlias;
576
- Status?: number;
577
- RequestId?: string;
577
+ ThemeAlias?: ThemeAlias | undefined;
578
+ Status?: number | undefined;
579
+ RequestId?: string | undefined;
578
580
  }
579
581
  export interface TopicConfigOptions {
580
- QBusinessInsightsEnabled?: boolean;
582
+ QBusinessInsightsEnabled?: boolean | undefined;
581
583
  }
582
584
  export declare const DefaultAggregation: {
583
585
  readonly AVERAGE: "AVERAGE";
@@ -595,82 +597,82 @@ export declare const DefaultAggregation: {
595
597
  export type DefaultAggregation =
596
598
  (typeof DefaultAggregation)[keyof typeof DefaultAggregation];
597
599
  export interface DefaultFormatting {
598
- DisplayFormat?: DisplayFormat;
599
- DisplayFormatOptions?: DisplayFormatOptions;
600
+ DisplayFormat?: DisplayFormat | undefined;
601
+ DisplayFormatOptions?: DisplayFormatOptions | undefined;
600
602
  }
601
603
  export interface SemanticType {
602
- TypeName?: string;
603
- SubTypeName?: string;
604
- TypeParameters?: Record<string, string>;
605
- TruthyCellValue?: string;
606
- TruthyCellValueSynonyms?: string[];
607
- FalseyCellValue?: string;
608
- FalseyCellValueSynonyms?: string[];
604
+ TypeName?: string | undefined;
605
+ SubTypeName?: string | undefined;
606
+ TypeParameters?: Record<string, string> | undefined;
607
+ TruthyCellValue?: string | undefined;
608
+ TruthyCellValueSynonyms?: string[] | undefined;
609
+ FalseyCellValue?: string | undefined;
610
+ FalseyCellValueSynonyms?: string[] | undefined;
609
611
  }
610
612
  export interface TopicCalculatedField {
611
613
  CalculatedFieldName: string | undefined;
612
- CalculatedFieldDescription?: string;
614
+ CalculatedFieldDescription?: string | undefined;
613
615
  Expression: string | undefined;
614
- CalculatedFieldSynonyms?: string[];
615
- IsIncludedInTopic?: boolean;
616
- DisableIndexing?: boolean;
617
- ColumnDataRole?: ColumnDataRole;
618
- TimeGranularity?: TopicTimeGranularity;
619
- DefaultFormatting?: DefaultFormatting;
620
- Aggregation?: DefaultAggregation;
621
- ComparativeOrder?: ComparativeOrder;
622
- SemanticType?: SemanticType;
623
- AllowedAggregations?: AuthorSpecifiedAggregation[];
624
- NotAllowedAggregations?: AuthorSpecifiedAggregation[];
625
- NeverAggregateInFilter?: boolean;
626
- CellValueSynonyms?: CellValueSynonym[];
627
- NonAdditive?: boolean;
616
+ CalculatedFieldSynonyms?: string[] | undefined;
617
+ IsIncludedInTopic?: boolean | undefined;
618
+ DisableIndexing?: boolean | undefined;
619
+ ColumnDataRole?: ColumnDataRole | undefined;
620
+ TimeGranularity?: TopicTimeGranularity | undefined;
621
+ DefaultFormatting?: DefaultFormatting | undefined;
622
+ Aggregation?: DefaultAggregation | undefined;
623
+ ComparativeOrder?: ComparativeOrder | undefined;
624
+ SemanticType?: SemanticType | undefined;
625
+ AllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
626
+ NotAllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
627
+ NeverAggregateInFilter?: boolean | undefined;
628
+ CellValueSynonyms?: CellValueSynonym[] | undefined;
629
+ NonAdditive?: boolean | undefined;
628
630
  }
629
631
  export interface TopicColumn {
630
632
  ColumnName: string | undefined;
631
- ColumnFriendlyName?: string;
632
- ColumnDescription?: string;
633
- ColumnSynonyms?: string[];
634
- ColumnDataRole?: ColumnDataRole;
635
- Aggregation?: DefaultAggregation;
636
- IsIncludedInTopic?: boolean;
637
- DisableIndexing?: boolean;
638
- ComparativeOrder?: ComparativeOrder;
639
- SemanticType?: SemanticType;
640
- TimeGranularity?: TopicTimeGranularity;
641
- AllowedAggregations?: AuthorSpecifiedAggregation[];
642
- NotAllowedAggregations?: AuthorSpecifiedAggregation[];
643
- DefaultFormatting?: DefaultFormatting;
644
- NeverAggregateInFilter?: boolean;
645
- CellValueSynonyms?: CellValueSynonym[];
646
- NonAdditive?: boolean;
633
+ ColumnFriendlyName?: string | undefined;
634
+ ColumnDescription?: string | undefined;
635
+ ColumnSynonyms?: string[] | undefined;
636
+ ColumnDataRole?: ColumnDataRole | undefined;
637
+ Aggregation?: DefaultAggregation | undefined;
638
+ IsIncludedInTopic?: boolean | undefined;
639
+ DisableIndexing?: boolean | undefined;
640
+ ComparativeOrder?: ComparativeOrder | undefined;
641
+ SemanticType?: SemanticType | undefined;
642
+ TimeGranularity?: TopicTimeGranularity | undefined;
643
+ AllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
644
+ NotAllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
645
+ DefaultFormatting?: DefaultFormatting | undefined;
646
+ NeverAggregateInFilter?: boolean | undefined;
647
+ CellValueSynonyms?: CellValueSynonym[] | undefined;
648
+ NonAdditive?: boolean | undefined;
647
649
  }
648
650
  export interface DataAggregation {
649
- DatasetRowDateGranularity?: TopicTimeGranularity;
650
- DefaultDateColumnName?: string;
651
+ DatasetRowDateGranularity?: TopicTimeGranularity | undefined;
652
+ DefaultDateColumnName?: string | undefined;
651
653
  }
652
654
  export interface TopicCategoryFilterConstant {
653
- ConstantType?: ConstantType;
654
- SingularConstant?: string;
655
- CollectiveConstant?: CollectiveConstant;
655
+ ConstantType?: ConstantType | undefined;
656
+ SingularConstant?: string | undefined;
657
+ CollectiveConstant?: CollectiveConstant | undefined;
656
658
  }
657
659
  export interface TopicCategoryFilter {
658
- CategoryFilterFunction?: CategoryFilterFunction;
659
- CategoryFilterType?: CategoryFilterType;
660
- Constant?: TopicCategoryFilterConstant;
661
- Inverse?: boolean;
660
+ CategoryFilterFunction?: CategoryFilterFunction | undefined;
661
+ CategoryFilterType?: CategoryFilterType | undefined;
662
+ Constant?: TopicCategoryFilterConstant | undefined;
663
+ Inverse?: boolean | undefined;
662
664
  }
663
665
  export interface RangeConstant {
664
- Minimum?: string;
665
- Maximum?: string;
666
+ Minimum?: string | undefined;
667
+ Maximum?: string | undefined;
666
668
  }
667
669
  export interface TopicRangeFilterConstant {
668
- ConstantType?: ConstantType;
669
- RangeConstant?: RangeConstant;
670
+ ConstantType?: ConstantType | undefined;
671
+ RangeConstant?: RangeConstant | undefined;
670
672
  }
671
673
  export interface TopicDateRangeFilter {
672
- Inclusive?: boolean;
673
- Constant?: TopicRangeFilterConstant;
674
+ Inclusive?: boolean | undefined;
675
+ Constant?: TopicRangeFilterConstant | undefined;
674
676
  }
675
677
  export declare const NamedFilterType: {
676
678
  readonly CATEGORY_FILTER: "CATEGORY_FILTER";
@@ -698,17 +700,17 @@ export declare const NamedFilterAggType: {
698
700
  export type NamedFilterAggType =
699
701
  (typeof NamedFilterAggType)[keyof typeof NamedFilterAggType];
700
702
  export interface TopicSingularFilterConstant {
701
- ConstantType?: ConstantType;
702
- SingularConstant?: string;
703
+ ConstantType?: ConstantType | undefined;
704
+ SingularConstant?: string | undefined;
703
705
  }
704
706
  export interface TopicNumericEqualityFilter {
705
- Constant?: TopicSingularFilterConstant;
706
- Aggregation?: NamedFilterAggType;
707
+ Constant?: TopicSingularFilterConstant | undefined;
708
+ Aggregation?: NamedFilterAggType | undefined;
707
709
  }
708
710
  export interface TopicNumericRangeFilter {
709
- Inclusive?: boolean;
710
- Constant?: TopicRangeFilterConstant;
711
- Aggregation?: NamedFilterAggType;
711
+ Inclusive?: boolean | undefined;
712
+ Constant?: TopicRangeFilterConstant | undefined;
713
+ Aggregation?: NamedFilterAggType | undefined;
712
714
  }
713
715
  export declare const TopicRelativeDateFilterFunction: {
714
716
  readonly LAST: "LAST";
@@ -720,22 +722,22 @@ export declare const TopicRelativeDateFilterFunction: {
720
722
  export type TopicRelativeDateFilterFunction =
721
723
  (typeof TopicRelativeDateFilterFunction)[keyof typeof TopicRelativeDateFilterFunction];
722
724
  export interface TopicRelativeDateFilter {
723
- TimeGranularity?: TopicTimeGranularity;
724
- RelativeDateFilterFunction?: TopicRelativeDateFilterFunction;
725
- Constant?: TopicSingularFilterConstant;
725
+ TimeGranularity?: TopicTimeGranularity | undefined;
726
+ RelativeDateFilterFunction?: TopicRelativeDateFilterFunction | undefined;
727
+ Constant?: TopicSingularFilterConstant | undefined;
726
728
  }
727
729
  export interface TopicFilter {
728
- FilterDescription?: string;
729
- FilterClass?: FilterClass;
730
+ FilterDescription?: string | undefined;
731
+ FilterClass?: FilterClass | undefined;
730
732
  FilterName: string | undefined;
731
- FilterSynonyms?: string[];
733
+ FilterSynonyms?: string[] | undefined;
732
734
  OperandFieldName: string | undefined;
733
- FilterType?: NamedFilterType;
734
- CategoryFilter?: TopicCategoryFilter;
735
- NumericEqualityFilter?: TopicNumericEqualityFilter;
736
- NumericRangeFilter?: TopicNumericRangeFilter;
737
- DateRangeFilter?: TopicDateRangeFilter;
738
- RelativeDateFilter?: TopicRelativeDateFilter;
735
+ FilterType?: NamedFilterType | undefined;
736
+ CategoryFilter?: TopicCategoryFilter | undefined;
737
+ NumericEqualityFilter?: TopicNumericEqualityFilter | undefined;
738
+ NumericRangeFilter?: TopicNumericRangeFilter | undefined;
739
+ DateRangeFilter?: TopicDateRangeFilter | undefined;
740
+ RelativeDateFilter?: TopicRelativeDateFilter | undefined;
739
741
  }
740
742
  export declare const NamedEntityAggType: {
741
743
  readonly AVERAGE: "AVERAGE";
@@ -755,8 +757,8 @@ export declare const NamedEntityAggType: {
755
757
  export type NamedEntityAggType =
756
758
  (typeof NamedEntityAggType)[keyof typeof NamedEntityAggType];
757
759
  export interface NamedEntityDefinitionMetric {
758
- Aggregation?: NamedEntityAggType;
759
- AggregationFunctionParameters?: Record<string, string>;
760
+ Aggregation?: NamedEntityAggType | undefined;
761
+ AggregationFunctionParameters?: Record<string, string> | undefined;
760
762
  }
761
763
  export declare const PropertyRole: {
762
764
  readonly ID: "ID";
@@ -770,33 +772,33 @@ export declare const PropertyUsage: {
770
772
  };
771
773
  export type PropertyUsage = (typeof PropertyUsage)[keyof typeof PropertyUsage];
772
774
  export interface NamedEntityDefinition {
773
- FieldName?: string;
774
- PropertyName?: string;
775
- PropertyRole?: PropertyRole;
776
- PropertyUsage?: PropertyUsage;
777
- Metric?: NamedEntityDefinitionMetric;
775
+ FieldName?: string | undefined;
776
+ PropertyName?: string | undefined;
777
+ PropertyRole?: PropertyRole | undefined;
778
+ PropertyUsage?: PropertyUsage | undefined;
779
+ Metric?: NamedEntityDefinitionMetric | undefined;
778
780
  }
779
781
  export interface SemanticEntityType {
780
- TypeName?: string;
781
- SubTypeName?: string;
782
- TypeParameters?: Record<string, string>;
782
+ TypeName?: string | undefined;
783
+ SubTypeName?: string | undefined;
784
+ TypeParameters?: Record<string, string> | undefined;
783
785
  }
784
786
  export interface TopicNamedEntity {
785
787
  EntityName: string | undefined;
786
- EntityDescription?: string;
787
- EntitySynonyms?: string[];
788
- SemanticEntityType?: SemanticEntityType;
789
- Definition?: NamedEntityDefinition[];
788
+ EntityDescription?: string | undefined;
789
+ EntitySynonyms?: string[] | undefined;
790
+ SemanticEntityType?: SemanticEntityType | undefined;
791
+ Definition?: NamedEntityDefinition[] | undefined;
790
792
  }
791
793
  export interface DatasetMetadata {
792
794
  DatasetArn: string | undefined;
793
- DatasetName?: string;
794
- DatasetDescription?: string;
795
- DataAggregation?: DataAggregation;
796
- Filters?: TopicFilter[];
797
- Columns?: TopicColumn[];
798
- CalculatedFields?: TopicCalculatedField[];
799
- NamedEntities?: TopicNamedEntity[];
795
+ DatasetName?: string | undefined;
796
+ DatasetDescription?: string | undefined;
797
+ DataAggregation?: DataAggregation | undefined;
798
+ Filters?: TopicFilter[] | undefined;
799
+ Columns?: TopicColumn[] | undefined;
800
+ CalculatedFields?: TopicCalculatedField[] | undefined;
801
+ NamedEntities?: TopicNamedEntity[] | undefined;
800
802
  }
801
803
  export declare const TopicUserExperienceVersion: {
802
804
  readonly LEGACY: "LEGACY";
@@ -805,24 +807,24 @@ export declare const TopicUserExperienceVersion: {
805
807
  export type TopicUserExperienceVersion =
806
808
  (typeof TopicUserExperienceVersion)[keyof typeof TopicUserExperienceVersion];
807
809
  export interface TopicDetails {
808
- Name?: string;
809
- Description?: string;
810
- UserExperienceVersion?: TopicUserExperienceVersion;
811
- DataSets?: DatasetMetadata[];
812
- ConfigOptions?: TopicConfigOptions;
810
+ Name?: string | undefined;
811
+ Description?: string | undefined;
812
+ UserExperienceVersion?: TopicUserExperienceVersion | undefined;
813
+ DataSets?: DatasetMetadata[] | undefined;
814
+ ConfigOptions?: TopicConfigOptions | undefined;
813
815
  }
814
816
  export interface CreateTopicRequest {
815
817
  AwsAccountId: string | undefined;
816
818
  TopicId: string | undefined;
817
819
  Topic: TopicDetails | undefined;
818
- Tags?: Tag[];
820
+ Tags?: Tag[] | undefined;
819
821
  }
820
822
  export interface CreateTopicResponse {
821
- Arn?: string;
822
- TopicId?: string;
823
- RefreshArn?: string;
824
- RequestId?: string;
825
- Status?: number;
823
+ Arn?: string | undefined;
824
+ TopicId?: string | undefined;
825
+ RefreshArn?: string | undefined;
826
+ RequestId?: string | undefined;
827
+ Status?: number | undefined;
826
828
  }
827
829
  export declare const TopicScheduleType: {
828
830
  readonly DAILY: "DAILY";
@@ -835,24 +837,24 @@ export type TopicScheduleType =
835
837
  export interface TopicRefreshSchedule {
836
838
  IsEnabled: boolean | undefined;
837
839
  BasedOnSpiceSchedule: boolean | undefined;
838
- StartingAt?: Date;
839
- Timezone?: string;
840
- RepeatAt?: string;
841
- TopicScheduleType?: TopicScheduleType;
840
+ StartingAt?: Date | undefined;
841
+ Timezone?: string | undefined;
842
+ RepeatAt?: string | undefined;
843
+ TopicScheduleType?: TopicScheduleType | undefined;
842
844
  }
843
845
  export interface CreateTopicRefreshScheduleRequest {
844
846
  AwsAccountId: string | undefined;
845
847
  TopicId: string | undefined;
846
848
  DatasetArn: string | undefined;
847
- DatasetName?: string;
849
+ DatasetName?: string | undefined;
848
850
  RefreshSchedule: TopicRefreshSchedule | undefined;
849
851
  }
850
852
  export interface CreateTopicRefreshScheduleResponse {
851
- TopicId?: string;
852
- TopicArn?: string;
853
- DatasetArn?: string;
854
- Status?: number;
855
- RequestId?: string;
853
+ TopicId?: string | undefined;
854
+ TopicArn?: string | undefined;
855
+ DatasetArn?: string | undefined;
856
+ Status?: number | undefined;
857
+ RequestId?: string | undefined;
856
858
  }
857
859
  export interface CreateVPCConnectionRequest {
858
860
  AwsAccountId: string | undefined;
@@ -860,9 +862,9 @@ export interface CreateVPCConnectionRequest {
860
862
  Name: string | undefined;
861
863
  SubnetIds: string[] | undefined;
862
864
  SecurityGroupIds: string[] | undefined;
863
- DnsResolvers?: string[];
865
+ DnsResolvers?: string[] | undefined;
864
866
  RoleArn: string | undefined;
865
- Tags?: Tag[];
867
+ Tags?: Tag[] | undefined;
866
868
  }
867
869
  export declare const VPCConnectionAvailabilityStatus: {
868
870
  readonly AVAILABLE: "AVAILABLE";
@@ -885,12 +887,12 @@ export declare const VPCConnectionResourceStatus: {
885
887
  export type VPCConnectionResourceStatus =
886
888
  (typeof VPCConnectionResourceStatus)[keyof typeof VPCConnectionResourceStatus];
887
889
  export interface CreateVPCConnectionResponse {
888
- Arn?: string;
889
- VPCConnectionId?: string;
890
- CreationStatus?: VPCConnectionResourceStatus;
891
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
892
- RequestId?: string;
893
- Status?: number;
890
+ Arn?: string | undefined;
891
+ VPCConnectionId?: string | undefined;
892
+ CreationStatus?: VPCConnectionResourceStatus | undefined;
893
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
894
+ RequestId?: string | undefined;
895
+ Status?: number | undefined;
894
896
  }
895
897
  export declare const DashboardErrorType: {
896
898
  readonly ACCESS_DENIED: "ACCESS_DENIED";
@@ -907,31 +909,31 @@ export declare const DashboardErrorType: {
907
909
  export type DashboardErrorType =
908
910
  (typeof DashboardErrorType)[keyof typeof DashboardErrorType];
909
911
  export interface DashboardError {
910
- Type?: DashboardErrorType;
911
- Message?: string;
912
- ViolatedEntities?: Entity[];
912
+ Type?: DashboardErrorType | undefined;
913
+ Message?: string | undefined;
914
+ ViolatedEntities?: Entity[] | undefined;
913
915
  }
914
916
  export interface DashboardVersion {
915
- CreatedTime?: Date;
916
- Errors?: DashboardError[];
917
- VersionNumber?: number;
918
- Status?: ResourceStatus;
919
- Arn?: string;
920
- SourceEntityArn?: string;
921
- DataSetArns?: string[];
922
- Description?: string;
923
- ThemeArn?: string;
924
- Sheets?: Sheet[];
917
+ CreatedTime?: Date | undefined;
918
+ Errors?: DashboardError[] | undefined;
919
+ VersionNumber?: number | undefined;
920
+ Status?: ResourceStatus | undefined;
921
+ Arn?: string | undefined;
922
+ SourceEntityArn?: string | undefined;
923
+ DataSetArns?: string[] | undefined;
924
+ Description?: string | undefined;
925
+ ThemeArn?: string | undefined;
926
+ Sheets?: Sheet[] | undefined;
925
927
  }
926
928
  export interface Dashboard {
927
- DashboardId?: string;
928
- Arn?: string;
929
- Name?: string;
930
- Version?: DashboardVersion;
931
- CreatedTime?: Date;
932
- LastPublishedTime?: Date;
933
- LastUpdatedTime?: Date;
934
- LinkEntities?: string[];
929
+ DashboardId?: string | undefined;
930
+ Arn?: string | undefined;
931
+ Name?: string | undefined;
932
+ Version?: DashboardVersion | undefined;
933
+ CreatedTime?: Date | undefined;
934
+ LastPublishedTime?: Date | undefined;
935
+ LastUpdatedTime?: Date | undefined;
936
+ LinkEntities?: string[] | undefined;
935
937
  }
936
938
  export declare const DashboardFilterAttribute: {
937
939
  readonly DASHBOARD_NAME: "DASHBOARD_NAME";
@@ -946,50 +948,52 @@ export type DashboardFilterAttribute =
946
948
  (typeof DashboardFilterAttribute)[keyof typeof DashboardFilterAttribute];
947
949
  export interface DashboardSearchFilter {
948
950
  Operator: FilterOperator | undefined;
949
- Name?: DashboardFilterAttribute;
950
- Value?: string;
951
+ Name?: DashboardFilterAttribute | undefined;
952
+ Value?: string | undefined;
951
953
  }
952
954
  export interface DashboardSummary {
953
- Arn?: string;
954
- DashboardId?: string;
955
- Name?: string;
956
- CreatedTime?: Date;
957
- LastUpdatedTime?: Date;
958
- PublishedVersionNumber?: number;
959
- LastPublishedTime?: Date;
955
+ Arn?: string | undefined;
956
+ DashboardId?: string | undefined;
957
+ Name?: string | undefined;
958
+ CreatedTime?: Date | undefined;
959
+ LastUpdatedTime?: Date | undefined;
960
+ PublishedVersionNumber?: number | undefined;
961
+ LastPublishedTime?: Date | undefined;
960
962
  }
961
963
  export interface DashboardVersionSummary {
962
- Arn?: string;
963
- CreatedTime?: Date;
964
- VersionNumber?: number;
965
- Status?: ResourceStatus;
966
- SourceEntityArn?: string;
967
- Description?: string;
964
+ Arn?: string | undefined;
965
+ CreatedTime?: Date | undefined;
966
+ VersionNumber?: number | undefined;
967
+ Status?: ResourceStatus | undefined;
968
+ SourceEntityArn?: string | undefined;
969
+ Description?: string | undefined;
968
970
  }
969
971
  export interface OutputColumn {
970
- Name?: string;
971
- Description?: string;
972
- Type?: ColumnDataType;
973
- SubType?: ColumnDataSubType;
972
+ Name?: string | undefined;
973
+ Description?: string | undefined;
974
+ Type?: ColumnDataType | undefined;
975
+ SubType?: ColumnDataSubType | undefined;
974
976
  }
975
977
  export interface DataSet {
976
- Arn?: string;
977
- DataSetId?: string;
978
- Name?: string;
979
- CreatedTime?: Date;
980
- LastUpdatedTime?: Date;
981
- PhysicalTableMap?: Record<string, PhysicalTable>;
982
- LogicalTableMap?: Record<string, LogicalTable>;
983
- OutputColumns?: OutputColumn[];
984
- ImportMode?: DataSetImportMode;
985
- ConsumedSpiceCapacityInBytes?: number;
986
- ColumnGroups?: ColumnGroup[];
987
- FieldFolders?: Record<string, FieldFolder>;
988
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
989
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
990
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
991
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
992
- DatasetParameters?: DatasetParameter[];
978
+ Arn?: string | undefined;
979
+ DataSetId?: string | undefined;
980
+ Name?: string | undefined;
981
+ CreatedTime?: Date | undefined;
982
+ LastUpdatedTime?: Date | undefined;
983
+ PhysicalTableMap?: Record<string, PhysicalTable> | undefined;
984
+ LogicalTableMap?: Record<string, LogicalTable> | undefined;
985
+ OutputColumns?: OutputColumn[] | undefined;
986
+ ImportMode?: DataSetImportMode | undefined;
987
+ ConsumedSpiceCapacityInBytes?: number | undefined;
988
+ ColumnGroups?: ColumnGroup[] | undefined;
989
+ FieldFolders?: Record<string, FieldFolder> | undefined;
990
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
991
+ RowLevelPermissionTagConfiguration?:
992
+ | RowLevelPermissionTagConfiguration
993
+ | undefined;
994
+ ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
995
+ DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
996
+ DatasetParameters?: DatasetParameter[] | undefined;
993
997
  }
994
998
  export declare const DataSetFilterAttribute: {
995
999
  readonly DATASET_NAME: "DATASET_NAME";
@@ -1028,15 +1032,15 @@ export interface DataSetSearchFilter {
1028
1032
  Value: string | undefined;
1029
1033
  }
1030
1034
  export interface DataSetSummary {
1031
- Arn?: string;
1032
- DataSetId?: string;
1033
- Name?: string;
1034
- CreatedTime?: Date;
1035
- LastUpdatedTime?: Date;
1036
- ImportMode?: DataSetImportMode;
1037
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
1038
- RowLevelPermissionTagConfigurationApplied?: boolean;
1039
- ColumnLevelPermissionRulesApplied?: boolean;
1035
+ Arn?: string | undefined;
1036
+ DataSetId?: string | undefined;
1037
+ Name?: string | undefined;
1038
+ CreatedTime?: Date | undefined;
1039
+ LastUpdatedTime?: Date | undefined;
1040
+ ImportMode?: DataSetImportMode | undefined;
1041
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
1042
+ RowLevelPermissionTagConfigurationApplied?: boolean | undefined;
1043
+ ColumnLevelPermissionRulesApplied?: boolean | undefined;
1040
1044
  }
1041
1045
  export declare const DataSourceErrorInfoType: {
1042
1046
  readonly ACCESS_DENIED: "ACCESS_DENIED";
@@ -1051,23 +1055,23 @@ export declare const DataSourceErrorInfoType: {
1051
1055
  export type DataSourceErrorInfoType =
1052
1056
  (typeof DataSourceErrorInfoType)[keyof typeof DataSourceErrorInfoType];
1053
1057
  export interface DataSourceErrorInfo {
1054
- Type?: DataSourceErrorInfoType;
1055
- Message?: string;
1058
+ Type?: DataSourceErrorInfoType | undefined;
1059
+ Message?: string | undefined;
1056
1060
  }
1057
1061
  export interface DataSource {
1058
- Arn?: string;
1059
- DataSourceId?: string;
1060
- Name?: string;
1061
- Type?: DataSourceType;
1062
- Status?: ResourceStatus;
1063
- CreatedTime?: Date;
1064
- LastUpdatedTime?: Date;
1065
- DataSourceParameters?: DataSourceParameters;
1066
- AlternateDataSourceParameters?: DataSourceParameters[];
1067
- VpcConnectionProperties?: VpcConnectionProperties;
1068
- SslProperties?: SslProperties;
1069
- ErrorInfo?: DataSourceErrorInfo;
1070
- SecretArn?: string;
1062
+ Arn?: string | undefined;
1063
+ DataSourceId?: string | undefined;
1064
+ Name?: string | undefined;
1065
+ Type?: DataSourceType | undefined;
1066
+ Status?: ResourceStatus | undefined;
1067
+ CreatedTime?: Date | undefined;
1068
+ LastUpdatedTime?: Date | undefined;
1069
+ DataSourceParameters?: DataSourceParameters | undefined;
1070
+ AlternateDataSourceParameters?: DataSourceParameters[] | undefined;
1071
+ VpcConnectionProperties?: VpcConnectionProperties | undefined;
1072
+ SslProperties?: SslProperties | undefined;
1073
+ ErrorInfo?: DataSourceErrorInfo | undefined;
1074
+ SecretArn?: string | undefined;
1071
1075
  }
1072
1076
  export declare const DataSourceFilterAttribute: {
1073
1077
  readonly DATASOURCE_NAME: "DATASOURCE_NAME";
@@ -1083,89 +1087,89 @@ export interface DataSourceSearchFilter {
1083
1087
  Value: string | undefined;
1084
1088
  }
1085
1089
  export interface DataSourceSummary {
1086
- Arn?: string;
1087
- DataSourceId?: string;
1088
- Name?: string;
1089
- Type?: DataSourceType;
1090
- CreatedTime?: Date;
1091
- LastUpdatedTime?: Date;
1090
+ Arn?: string | undefined;
1091
+ DataSourceId?: string | undefined;
1092
+ Name?: string | undefined;
1093
+ Type?: DataSourceType | undefined;
1094
+ CreatedTime?: Date | undefined;
1095
+ LastUpdatedTime?: Date | undefined;
1092
1096
  }
1093
1097
  export interface DeleteAccountCustomizationRequest {
1094
1098
  AwsAccountId: string | undefined;
1095
- Namespace?: string;
1099
+ Namespace?: string | undefined;
1096
1100
  }
1097
1101
  export interface DeleteAccountCustomizationResponse {
1098
- RequestId?: string;
1099
- Status?: number;
1102
+ RequestId?: string | undefined;
1103
+ Status?: number | undefined;
1100
1104
  }
1101
1105
  export interface DeleteAccountSubscriptionRequest {
1102
1106
  AwsAccountId: string | undefined;
1103
1107
  }
1104
1108
  export interface DeleteAccountSubscriptionResponse {
1105
- RequestId?: string;
1106
- Status?: number;
1109
+ RequestId?: string | undefined;
1110
+ Status?: number | undefined;
1107
1111
  }
1108
1112
  export interface DeleteAnalysisRequest {
1109
1113
  AwsAccountId: string | undefined;
1110
1114
  AnalysisId: string | undefined;
1111
- RecoveryWindowInDays?: number;
1112
- ForceDeleteWithoutRecovery?: boolean;
1115
+ RecoveryWindowInDays?: number | undefined;
1116
+ ForceDeleteWithoutRecovery?: boolean | undefined;
1113
1117
  }
1114
1118
  export interface DeleteAnalysisResponse {
1115
- Status?: number;
1116
- Arn?: string;
1117
- AnalysisId?: string;
1118
- DeletionTime?: Date;
1119
- RequestId?: string;
1119
+ Status?: number | undefined;
1120
+ Arn?: string | undefined;
1121
+ AnalysisId?: string | undefined;
1122
+ DeletionTime?: Date | undefined;
1123
+ RequestId?: string | undefined;
1120
1124
  }
1121
1125
  export interface DeleteDashboardRequest {
1122
1126
  AwsAccountId: string | undefined;
1123
1127
  DashboardId: string | undefined;
1124
- VersionNumber?: number;
1128
+ VersionNumber?: number | undefined;
1125
1129
  }
1126
1130
  export interface DeleteDashboardResponse {
1127
- Status?: number;
1128
- Arn?: string;
1129
- DashboardId?: string;
1130
- RequestId?: string;
1131
+ Status?: number | undefined;
1132
+ Arn?: string | undefined;
1133
+ DashboardId?: string | undefined;
1134
+ RequestId?: string | undefined;
1131
1135
  }
1132
1136
  export interface DeleteDataSetRequest {
1133
1137
  AwsAccountId: string | undefined;
1134
1138
  DataSetId: string | undefined;
1135
1139
  }
1136
1140
  export interface DeleteDataSetResponse {
1137
- Arn?: string;
1138
- DataSetId?: string;
1139
- RequestId?: string;
1140
- Status?: number;
1141
+ Arn?: string | undefined;
1142
+ DataSetId?: string | undefined;
1143
+ RequestId?: string | undefined;
1144
+ Status?: number | undefined;
1141
1145
  }
1142
1146
  export interface DeleteDataSetRefreshPropertiesRequest {
1143
1147
  AwsAccountId: string | undefined;
1144
1148
  DataSetId: string | undefined;
1145
1149
  }
1146
1150
  export interface DeleteDataSetRefreshPropertiesResponse {
1147
- RequestId?: string;
1148
- Status?: number;
1151
+ RequestId?: string | undefined;
1152
+ Status?: number | undefined;
1149
1153
  }
1150
1154
  export interface DeleteDataSourceRequest {
1151
1155
  AwsAccountId: string | undefined;
1152
1156
  DataSourceId: string | undefined;
1153
1157
  }
1154
1158
  export interface DeleteDataSourceResponse {
1155
- Arn?: string;
1156
- DataSourceId?: string;
1157
- RequestId?: string;
1158
- Status?: number;
1159
+ Arn?: string | undefined;
1160
+ DataSourceId?: string | undefined;
1161
+ RequestId?: string | undefined;
1162
+ Status?: number | undefined;
1159
1163
  }
1160
1164
  export interface DeleteFolderRequest {
1161
1165
  AwsAccountId: string | undefined;
1162
1166
  FolderId: string | undefined;
1163
1167
  }
1164
1168
  export interface DeleteFolderResponse {
1165
- Status?: number;
1166
- Arn?: string;
1167
- FolderId?: string;
1168
- RequestId?: string;
1169
+ Status?: number | undefined;
1170
+ Arn?: string | undefined;
1171
+ FolderId?: string | undefined;
1172
+ RequestId?: string | undefined;
1169
1173
  }
1170
1174
  export interface DeleteFolderMembershipRequest {
1171
1175
  AwsAccountId: string | undefined;
@@ -1174,8 +1178,8 @@ export interface DeleteFolderMembershipRequest {
1174
1178
  MemberType: MemberType | undefined;
1175
1179
  }
1176
1180
  export interface DeleteFolderMembershipResponse {
1177
- Status?: number;
1178
- RequestId?: string;
1181
+ Status?: number | undefined;
1182
+ RequestId?: string | undefined;
1179
1183
  }
1180
1184
  export interface DeleteGroupRequest {
1181
1185
  GroupName: string | undefined;
@@ -1183,8 +1187,8 @@ export interface DeleteGroupRequest {
1183
1187
  Namespace: string | undefined;
1184
1188
  }
1185
1189
  export interface DeleteGroupResponse {
1186
- RequestId?: string;
1187
- Status?: number;
1190
+ RequestId?: string | undefined;
1191
+ Status?: number | undefined;
1188
1192
  }
1189
1193
  export interface DeleteGroupMembershipRequest {
1190
1194
  MemberName: string | undefined;
@@ -1193,8 +1197,8 @@ export interface DeleteGroupMembershipRequest {
1193
1197
  Namespace: string | undefined;
1194
1198
  }
1195
1199
  export interface DeleteGroupMembershipResponse {
1196
- RequestId?: string;
1197
- Status?: number;
1200
+ RequestId?: string | undefined;
1201
+ Status?: number | undefined;
1198
1202
  }
1199
1203
  export interface DeleteIAMPolicyAssignmentRequest {
1200
1204
  AwsAccountId: string | undefined;
@@ -1202,25 +1206,25 @@ export interface DeleteIAMPolicyAssignmentRequest {
1202
1206
  Namespace: string | undefined;
1203
1207
  }
1204
1208
  export interface DeleteIAMPolicyAssignmentResponse {
1205
- AssignmentName?: string;
1206
- RequestId?: string;
1207
- Status?: number;
1209
+ AssignmentName?: string | undefined;
1210
+ RequestId?: string | undefined;
1211
+ Status?: number | undefined;
1208
1212
  }
1209
1213
  export interface DeleteIdentityPropagationConfigRequest {
1210
1214
  AwsAccountId: string | undefined;
1211
1215
  Service: ServiceType | undefined;
1212
1216
  }
1213
1217
  export interface DeleteIdentityPropagationConfigResponse {
1214
- RequestId?: string;
1215
- Status?: number;
1218
+ RequestId?: string | undefined;
1219
+ Status?: number | undefined;
1216
1220
  }
1217
1221
  export interface DeleteNamespaceRequest {
1218
1222
  AwsAccountId: string | undefined;
1219
1223
  Namespace: string | undefined;
1220
1224
  }
1221
1225
  export interface DeleteNamespaceResponse {
1222
- RequestId?: string;
1223
- Status?: number;
1226
+ RequestId?: string | undefined;
1227
+ Status?: number | undefined;
1224
1228
  }
1225
1229
  export interface DeleteRefreshScheduleRequest {
1226
1230
  DataSetId: string | undefined;
@@ -1228,10 +1232,10 @@ export interface DeleteRefreshScheduleRequest {
1228
1232
  ScheduleId: string | undefined;
1229
1233
  }
1230
1234
  export interface DeleteRefreshScheduleResponse {
1231
- Status?: number;
1232
- RequestId?: string;
1233
- ScheduleId?: string;
1234
- Arn?: string;
1235
+ Status?: number | undefined;
1236
+ RequestId?: string | undefined;
1237
+ ScheduleId?: string | undefined;
1238
+ Arn?: string | undefined;
1235
1239
  }
1236
1240
  export interface DeleteRoleCustomPermissionRequest {
1237
1241
  Role: Role | undefined;
@@ -1239,8 +1243,8 @@ export interface DeleteRoleCustomPermissionRequest {
1239
1243
  Namespace: string | undefined;
1240
1244
  }
1241
1245
  export interface DeleteRoleCustomPermissionResponse {
1242
- RequestId?: string;
1243
- Status?: number;
1246
+ RequestId?: string | undefined;
1247
+ Status?: number | undefined;
1244
1248
  }
1245
1249
  export interface DeleteRoleMembershipRequest {
1246
1250
  MemberName: string | undefined;
@@ -1249,19 +1253,19 @@ export interface DeleteRoleMembershipRequest {
1249
1253
  Namespace: string | undefined;
1250
1254
  }
1251
1255
  export interface DeleteRoleMembershipResponse {
1252
- RequestId?: string;
1253
- Status?: number;
1256
+ RequestId?: string | undefined;
1257
+ Status?: number | undefined;
1254
1258
  }
1255
1259
  export interface DeleteTemplateRequest {
1256
1260
  AwsAccountId: string | undefined;
1257
1261
  TemplateId: string | undefined;
1258
- VersionNumber?: number;
1262
+ VersionNumber?: number | undefined;
1259
1263
  }
1260
1264
  export interface DeleteTemplateResponse {
1261
- RequestId?: string;
1262
- Arn?: string;
1263
- TemplateId?: string;
1264
- Status?: number;
1265
+ RequestId?: string | undefined;
1266
+ Arn?: string | undefined;
1267
+ TemplateId?: string | undefined;
1268
+ Status?: number | undefined;
1265
1269
  }
1266
1270
  export interface DeleteTemplateAliasRequest {
1267
1271
  AwsAccountId: string | undefined;
@@ -1269,22 +1273,22 @@ export interface DeleteTemplateAliasRequest {
1269
1273
  AliasName: string | undefined;
1270
1274
  }
1271
1275
  export interface DeleteTemplateAliasResponse {
1272
- Status?: number;
1273
- TemplateId?: string;
1274
- AliasName?: string;
1275
- Arn?: string;
1276
- RequestId?: string;
1276
+ Status?: number | undefined;
1277
+ TemplateId?: string | undefined;
1278
+ AliasName?: string | undefined;
1279
+ Arn?: string | undefined;
1280
+ RequestId?: string | undefined;
1277
1281
  }
1278
1282
  export interface DeleteThemeRequest {
1279
1283
  AwsAccountId: string | undefined;
1280
1284
  ThemeId: string | undefined;
1281
- VersionNumber?: number;
1285
+ VersionNumber?: number | undefined;
1282
1286
  }
1283
1287
  export interface DeleteThemeResponse {
1284
- Arn?: string;
1285
- RequestId?: string;
1286
- Status?: number;
1287
- ThemeId?: string;
1288
+ Arn?: string | undefined;
1289
+ RequestId?: string | undefined;
1290
+ Status?: number | undefined;
1291
+ ThemeId?: string | undefined;
1288
1292
  }
1289
1293
  export interface DeleteThemeAliasRequest {
1290
1294
  AwsAccountId: string | undefined;
@@ -1292,21 +1296,21 @@ export interface DeleteThemeAliasRequest {
1292
1296
  AliasName: string | undefined;
1293
1297
  }
1294
1298
  export interface DeleteThemeAliasResponse {
1295
- AliasName?: string;
1296
- Arn?: string;
1297
- RequestId?: string;
1298
- Status?: number;
1299
- ThemeId?: string;
1299
+ AliasName?: string | undefined;
1300
+ Arn?: string | undefined;
1301
+ RequestId?: string | undefined;
1302
+ Status?: number | undefined;
1303
+ ThemeId?: string | undefined;
1300
1304
  }
1301
1305
  export interface DeleteTopicRequest {
1302
1306
  AwsAccountId: string | undefined;
1303
1307
  TopicId: string | undefined;
1304
1308
  }
1305
1309
  export interface DeleteTopicResponse {
1306
- Arn?: string;
1307
- TopicId?: string;
1308
- RequestId?: string;
1309
- Status?: number;
1310
+ Arn?: string | undefined;
1311
+ TopicId?: string | undefined;
1312
+ RequestId?: string | undefined;
1313
+ Status?: number | undefined;
1310
1314
  }
1311
1315
  export interface DeleteTopicRefreshScheduleRequest {
1312
1316
  AwsAccountId: string | undefined;
@@ -1314,11 +1318,11 @@ export interface DeleteTopicRefreshScheduleRequest {
1314
1318
  DatasetId: string | undefined;
1315
1319
  }
1316
1320
  export interface DeleteTopicRefreshScheduleResponse {
1317
- TopicId?: string;
1318
- TopicArn?: string;
1319
- DatasetArn?: string;
1320
- Status?: number;
1321
- RequestId?: string;
1321
+ TopicId?: string | undefined;
1322
+ TopicArn?: string | undefined;
1323
+ DatasetArn?: string | undefined;
1324
+ Status?: number | undefined;
1325
+ RequestId?: string | undefined;
1322
1326
  }
1323
1327
  export interface DeleteUserRequest {
1324
1328
  UserName: string | undefined;
@@ -1326,8 +1330,8 @@ export interface DeleteUserRequest {
1326
1330
  Namespace: string | undefined;
1327
1331
  }
1328
1332
  export interface DeleteUserResponse {
1329
- RequestId?: string;
1330
- Status?: number;
1333
+ RequestId?: string | undefined;
1334
+ Status?: number | undefined;
1331
1335
  }
1332
1336
  export interface DeleteUserByPrincipalIdRequest {
1333
1337
  PrincipalId: string | undefined;
@@ -1335,83 +1339,83 @@ export interface DeleteUserByPrincipalIdRequest {
1335
1339
  Namespace: string | undefined;
1336
1340
  }
1337
1341
  export interface DeleteUserByPrincipalIdResponse {
1338
- RequestId?: string;
1339
- Status?: number;
1342
+ RequestId?: string | undefined;
1343
+ Status?: number | undefined;
1340
1344
  }
1341
1345
  export interface DeleteVPCConnectionRequest {
1342
1346
  AwsAccountId: string | undefined;
1343
1347
  VPCConnectionId: string | undefined;
1344
1348
  }
1345
1349
  export interface DeleteVPCConnectionResponse {
1346
- Arn?: string;
1347
- VPCConnectionId?: string;
1348
- DeletionStatus?: VPCConnectionResourceStatus;
1349
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
1350
- RequestId?: string;
1351
- Status?: number;
1350
+ Arn?: string | undefined;
1351
+ VPCConnectionId?: string | undefined;
1352
+ DeletionStatus?: VPCConnectionResourceStatus | undefined;
1353
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
1354
+ RequestId?: string | undefined;
1355
+ Status?: number | undefined;
1352
1356
  }
1353
1357
  export interface DescribeAccountCustomizationRequest {
1354
1358
  AwsAccountId: string | undefined;
1355
- Namespace?: string;
1356
- Resolved?: boolean;
1359
+ Namespace?: string | undefined;
1360
+ Resolved?: boolean | undefined;
1357
1361
  }
1358
1362
  export interface DescribeAccountCustomizationResponse {
1359
- Arn?: string;
1360
- AwsAccountId?: string;
1361
- Namespace?: string;
1362
- AccountCustomization?: AccountCustomization;
1363
- RequestId?: string;
1364
- Status?: number;
1363
+ Arn?: string | undefined;
1364
+ AwsAccountId?: string | undefined;
1365
+ Namespace?: string | undefined;
1366
+ AccountCustomization?: AccountCustomization | undefined;
1367
+ RequestId?: string | undefined;
1368
+ Status?: number | undefined;
1365
1369
  }
1366
1370
  export interface DescribeAccountSettingsRequest {
1367
1371
  AwsAccountId: string | undefined;
1368
1372
  }
1369
1373
  export interface DescribeAccountSettingsResponse {
1370
- AccountSettings?: AccountSettings;
1371
- RequestId?: string;
1372
- Status?: number;
1374
+ AccountSettings?: AccountSettings | undefined;
1375
+ RequestId?: string | undefined;
1376
+ Status?: number | undefined;
1373
1377
  }
1374
1378
  export interface DescribeAccountSubscriptionRequest {
1375
1379
  AwsAccountId: string | undefined;
1376
1380
  }
1377
1381
  export interface DescribeAccountSubscriptionResponse {
1378
- AccountInfo?: AccountInfo;
1379
- Status?: number;
1380
- RequestId?: string;
1382
+ AccountInfo?: AccountInfo | undefined;
1383
+ Status?: number | undefined;
1384
+ RequestId?: string | undefined;
1381
1385
  }
1382
1386
  export interface DescribeAnalysisRequest {
1383
1387
  AwsAccountId: string | undefined;
1384
1388
  AnalysisId: string | undefined;
1385
1389
  }
1386
1390
  export interface DescribeAnalysisResponse {
1387
- Analysis?: Analysis;
1388
- Status?: number;
1389
- RequestId?: string;
1391
+ Analysis?: Analysis | undefined;
1392
+ Status?: number | undefined;
1393
+ RequestId?: string | undefined;
1390
1394
  }
1391
1395
  export interface DescribeAnalysisDefinitionRequest {
1392
1396
  AwsAccountId: string | undefined;
1393
1397
  AnalysisId: string | undefined;
1394
1398
  }
1395
1399
  export interface DescribeAnalysisDefinitionResponse {
1396
- AnalysisId?: string;
1397
- Name?: string;
1398
- Errors?: AnalysisError[];
1399
- ResourceStatus?: ResourceStatus;
1400
- ThemeArn?: string;
1401
- Definition?: AnalysisDefinition;
1402
- Status?: number;
1403
- RequestId?: string;
1400
+ AnalysisId?: string | undefined;
1401
+ Name?: string | undefined;
1402
+ Errors?: AnalysisError[] | undefined;
1403
+ ResourceStatus?: ResourceStatus | undefined;
1404
+ ThemeArn?: string | undefined;
1405
+ Definition?: AnalysisDefinition | undefined;
1406
+ Status?: number | undefined;
1407
+ RequestId?: string | undefined;
1404
1408
  }
1405
1409
  export interface DescribeAnalysisPermissionsRequest {
1406
1410
  AwsAccountId: string | undefined;
1407
1411
  AnalysisId: string | undefined;
1408
1412
  }
1409
1413
  export interface DescribeAnalysisPermissionsResponse {
1410
- AnalysisId?: string;
1411
- AnalysisArn?: string;
1412
- Permissions?: ResourcePermission[];
1413
- Status?: number;
1414
- RequestId?: string;
1414
+ AnalysisId?: string | undefined;
1415
+ AnalysisArn?: string | undefined;
1416
+ Permissions?: ResourcePermission[] | undefined;
1417
+ Status?: number | undefined;
1418
+ RequestId?: string | undefined;
1415
1419
  }
1416
1420
  export interface DescribeAssetBundleExportJobRequest {
1417
1421
  AwsAccountId: string | undefined;
@@ -1425,87 +1429,91 @@ export declare const IncludeFolderMembers: {
1425
1429
  export type IncludeFolderMembers =
1426
1430
  (typeof IncludeFolderMembers)[keyof typeof IncludeFolderMembers];
1427
1431
  export interface DescribeAssetBundleExportJobResponse {
1428
- JobStatus?: AssetBundleExportJobStatus;
1429
- DownloadUrl?: string;
1430
- Errors?: AssetBundleExportJobError[];
1431
- Arn?: string;
1432
- CreatedTime?: Date;
1433
- AssetBundleExportJobId?: string;
1434
- AwsAccountId?: string;
1435
- ResourceArns?: string[];
1436
- IncludeAllDependencies?: boolean;
1437
- ExportFormat?: AssetBundleExportFormat;
1438
- CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
1439
- RequestId?: string;
1440
- Status?: number;
1441
- IncludePermissions?: boolean;
1442
- IncludeTags?: boolean;
1443
- ValidationStrategy?: AssetBundleExportJobValidationStrategy;
1444
- Warnings?: AssetBundleExportJobWarning[];
1445
- IncludeFolderMemberships?: boolean;
1446
- IncludeFolderMembers?: IncludeFolderMembers;
1432
+ JobStatus?: AssetBundleExportJobStatus | undefined;
1433
+ DownloadUrl?: string | undefined;
1434
+ Errors?: AssetBundleExportJobError[] | undefined;
1435
+ Arn?: string | undefined;
1436
+ CreatedTime?: Date | undefined;
1437
+ AssetBundleExportJobId?: string | undefined;
1438
+ AwsAccountId?: string | undefined;
1439
+ ResourceArns?: string[] | undefined;
1440
+ IncludeAllDependencies?: boolean | undefined;
1441
+ ExportFormat?: AssetBundleExportFormat | undefined;
1442
+ CloudFormationOverridePropertyConfiguration?:
1443
+ | AssetBundleCloudFormationOverridePropertyConfiguration
1444
+ | undefined;
1445
+ RequestId?: string | undefined;
1446
+ Status?: number | undefined;
1447
+ IncludePermissions?: boolean | undefined;
1448
+ IncludeTags?: boolean | undefined;
1449
+ ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
1450
+ Warnings?: AssetBundleExportJobWarning[] | undefined;
1451
+ IncludeFolderMemberships?: boolean | undefined;
1452
+ IncludeFolderMembers?: IncludeFolderMembers | undefined;
1447
1453
  }
1448
1454
  export interface DescribeAssetBundleImportJobRequest {
1449
1455
  AwsAccountId: string | undefined;
1450
1456
  AssetBundleImportJobId: string | undefined;
1451
1457
  }
1452
1458
  export interface DescribeAssetBundleImportJobResponse {
1453
- JobStatus?: AssetBundleImportJobStatus;
1454
- Errors?: AssetBundleImportJobError[];
1455
- RollbackErrors?: AssetBundleImportJobError[];
1456
- Arn?: string;
1457
- CreatedTime?: Date;
1458
- AssetBundleImportJobId?: string;
1459
- AwsAccountId?: string;
1460
- AssetBundleImportSource?: AssetBundleImportSourceDescription;
1461
- OverrideParameters?: AssetBundleImportJobOverrideParameters;
1462
- FailureAction?: AssetBundleImportFailureAction;
1463
- RequestId?: string;
1464
- Status?: number;
1465
- OverridePermissions?: AssetBundleImportJobOverridePermissions;
1466
- OverrideTags?: AssetBundleImportJobOverrideTags;
1467
- OverrideValidationStrategy?: AssetBundleImportJobOverrideValidationStrategy;
1468
- Warnings?: AssetBundleImportJobWarning[];
1459
+ JobStatus?: AssetBundleImportJobStatus | undefined;
1460
+ Errors?: AssetBundleImportJobError[] | undefined;
1461
+ RollbackErrors?: AssetBundleImportJobError[] | undefined;
1462
+ Arn?: string | undefined;
1463
+ CreatedTime?: Date | undefined;
1464
+ AssetBundleImportJobId?: string | undefined;
1465
+ AwsAccountId?: string | undefined;
1466
+ AssetBundleImportSource?: AssetBundleImportSourceDescription | undefined;
1467
+ OverrideParameters?: AssetBundleImportJobOverrideParameters | undefined;
1468
+ FailureAction?: AssetBundleImportFailureAction | undefined;
1469
+ RequestId?: string | undefined;
1470
+ Status?: number | undefined;
1471
+ OverridePermissions?: AssetBundleImportJobOverridePermissions | undefined;
1472
+ OverrideTags?: AssetBundleImportJobOverrideTags | undefined;
1473
+ OverrideValidationStrategy?:
1474
+ | AssetBundleImportJobOverrideValidationStrategy
1475
+ | undefined;
1476
+ Warnings?: AssetBundleImportJobWarning[] | undefined;
1469
1477
  }
1470
1478
  export interface DescribeDashboardRequest {
1471
1479
  AwsAccountId: string | undefined;
1472
1480
  DashboardId: string | undefined;
1473
- VersionNumber?: number;
1474
- AliasName?: string;
1481
+ VersionNumber?: number | undefined;
1482
+ AliasName?: string | undefined;
1475
1483
  }
1476
1484
  export interface DescribeDashboardResponse {
1477
- Dashboard?: Dashboard;
1478
- Status?: number;
1479
- RequestId?: string;
1485
+ Dashboard?: Dashboard | undefined;
1486
+ Status?: number | undefined;
1487
+ RequestId?: string | undefined;
1480
1488
  }
1481
1489
  export interface DescribeDashboardDefinitionRequest {
1482
1490
  AwsAccountId: string | undefined;
1483
1491
  DashboardId: string | undefined;
1484
- VersionNumber?: number;
1485
- AliasName?: string;
1492
+ VersionNumber?: number | undefined;
1493
+ AliasName?: string | undefined;
1486
1494
  }
1487
1495
  export interface DescribeDashboardDefinitionResponse {
1488
- DashboardId?: string;
1489
- Errors?: DashboardError[];
1490
- Name?: string;
1491
- ResourceStatus?: ResourceStatus;
1492
- ThemeArn?: string;
1493
- Definition?: DashboardVersionDefinition;
1494
- Status?: number;
1495
- RequestId?: string;
1496
- DashboardPublishOptions?: DashboardPublishOptions;
1496
+ DashboardId?: string | undefined;
1497
+ Errors?: DashboardError[] | undefined;
1498
+ Name?: string | undefined;
1499
+ ResourceStatus?: ResourceStatus | undefined;
1500
+ ThemeArn?: string | undefined;
1501
+ Definition?: DashboardVersionDefinition | undefined;
1502
+ Status?: number | undefined;
1503
+ RequestId?: string | undefined;
1504
+ DashboardPublishOptions?: DashboardPublishOptions | undefined;
1497
1505
  }
1498
1506
  export interface DescribeDashboardPermissionsRequest {
1499
1507
  AwsAccountId: string | undefined;
1500
1508
  DashboardId: string | undefined;
1501
1509
  }
1502
1510
  export interface DescribeDashboardPermissionsResponse {
1503
- DashboardId?: string;
1504
- DashboardArn?: string;
1505
- Permissions?: ResourcePermission[];
1506
- Status?: number;
1507
- RequestId?: string;
1508
- LinkSharingConfiguration?: LinkSharingConfiguration;
1511
+ DashboardId?: string | undefined;
1512
+ DashboardArn?: string | undefined;
1513
+ Permissions?: ResourcePermission[] | undefined;
1514
+ Status?: number | undefined;
1515
+ RequestId?: string | undefined;
1516
+ LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
1509
1517
  }
1510
1518
  export interface DescribeDashboardSnapshotJobRequest {
1511
1519
  AwsAccountId: string | undefined;
@@ -1521,34 +1529,34 @@ export declare const SnapshotJobStatus: {
1521
1529
  export type SnapshotJobStatus =
1522
1530
  (typeof SnapshotJobStatus)[keyof typeof SnapshotJobStatus];
1523
1531
  export interface SnapshotDestinationConfiguration {
1524
- S3Destinations?: SnapshotS3DestinationConfiguration[];
1532
+ S3Destinations?: SnapshotS3DestinationConfiguration[] | undefined;
1525
1533
  }
1526
1534
  export interface SnapshotFileGroup {
1527
- Files?: SnapshotFile[];
1535
+ Files?: SnapshotFile[] | undefined;
1528
1536
  }
1529
1537
  export interface SnapshotConfiguration {
1530
1538
  FileGroups: SnapshotFileGroup[] | undefined;
1531
- DestinationConfiguration?: SnapshotDestinationConfiguration;
1532
- Parameters?: _Parameters;
1539
+ DestinationConfiguration?: SnapshotDestinationConfiguration | undefined;
1540
+ Parameters?: _Parameters | undefined;
1533
1541
  }
1534
1542
  export interface SnapshotAnonymousUserRedacted {
1535
- RowLevelPermissionTagKeys?: string[];
1543
+ RowLevelPermissionTagKeys?: string[] | undefined;
1536
1544
  }
1537
1545
  export interface SnapshotUserConfigurationRedacted {
1538
- AnonymousUsers?: SnapshotAnonymousUserRedacted[];
1546
+ AnonymousUsers?: SnapshotAnonymousUserRedacted[] | undefined;
1539
1547
  }
1540
1548
  export interface DescribeDashboardSnapshotJobResponse {
1541
- AwsAccountId?: string;
1542
- DashboardId?: string;
1543
- SnapshotJobId?: string;
1544
- UserConfiguration?: SnapshotUserConfigurationRedacted;
1545
- SnapshotConfiguration?: SnapshotConfiguration;
1546
- Arn?: string;
1547
- JobStatus?: SnapshotJobStatus;
1548
- CreatedTime?: Date;
1549
- LastUpdatedTime?: Date;
1550
- RequestId?: string;
1551
- Status?: number;
1549
+ AwsAccountId?: string | undefined;
1550
+ DashboardId?: string | undefined;
1551
+ SnapshotJobId?: string | undefined;
1552
+ UserConfiguration?: SnapshotUserConfigurationRedacted | undefined;
1553
+ SnapshotConfiguration?: SnapshotConfiguration | undefined;
1554
+ Arn?: string | undefined;
1555
+ JobStatus?: SnapshotJobStatus | undefined;
1556
+ CreatedTime?: Date | undefined;
1557
+ LastUpdatedTime?: Date | undefined;
1558
+ RequestId?: string | undefined;
1559
+ Status?: number | undefined;
1552
1560
  }
1553
1561
  export interface DescribeDashboardSnapshotJobResultRequest {
1554
1562
  AwsAccountId: string | undefined;
@@ -1556,110 +1564,110 @@ export interface DescribeDashboardSnapshotJobResultRequest {
1556
1564
  SnapshotJobId: string | undefined;
1557
1565
  }
1558
1566
  export interface SnapshotJobErrorInfo {
1559
- ErrorMessage?: string;
1560
- ErrorType?: string;
1567
+ ErrorMessage?: string | undefined;
1568
+ ErrorType?: string | undefined;
1561
1569
  }
1562
1570
  export interface SnapshotJobResult {
1563
- AnonymousUsers?: AnonymousUserSnapshotJobResult[];
1571
+ AnonymousUsers?: AnonymousUserSnapshotJobResult[] | undefined;
1564
1572
  }
1565
1573
  export interface DescribeDashboardSnapshotJobResultResponse {
1566
- Arn?: string;
1567
- JobStatus?: SnapshotJobStatus;
1568
- CreatedTime?: Date;
1569
- LastUpdatedTime?: Date;
1570
- Result?: SnapshotJobResult;
1571
- ErrorInfo?: SnapshotJobErrorInfo;
1572
- RequestId?: string;
1573
- Status?: number;
1574
+ Arn?: string | undefined;
1575
+ JobStatus?: SnapshotJobStatus | undefined;
1576
+ CreatedTime?: Date | undefined;
1577
+ LastUpdatedTime?: Date | undefined;
1578
+ Result?: SnapshotJobResult | undefined;
1579
+ ErrorInfo?: SnapshotJobErrorInfo | undefined;
1580
+ RequestId?: string | undefined;
1581
+ Status?: number | undefined;
1574
1582
  }
1575
1583
  export interface DescribeDataSetRequest {
1576
1584
  AwsAccountId: string | undefined;
1577
1585
  DataSetId: string | undefined;
1578
1586
  }
1579
1587
  export interface DescribeDataSetResponse {
1580
- DataSet?: DataSet;
1581
- RequestId?: string;
1582
- Status?: number;
1588
+ DataSet?: DataSet | undefined;
1589
+ RequestId?: string | undefined;
1590
+ Status?: number | undefined;
1583
1591
  }
1584
1592
  export interface DescribeDataSetPermissionsRequest {
1585
1593
  AwsAccountId: string | undefined;
1586
1594
  DataSetId: string | undefined;
1587
1595
  }
1588
1596
  export interface DescribeDataSetPermissionsResponse {
1589
- DataSetArn?: string;
1590
- DataSetId?: string;
1591
- Permissions?: ResourcePermission[];
1592
- RequestId?: string;
1593
- Status?: number;
1597
+ DataSetArn?: string | undefined;
1598
+ DataSetId?: string | undefined;
1599
+ Permissions?: ResourcePermission[] | undefined;
1600
+ RequestId?: string | undefined;
1601
+ Status?: number | undefined;
1594
1602
  }
1595
1603
  export interface DescribeDataSetRefreshPropertiesRequest {
1596
1604
  AwsAccountId: string | undefined;
1597
1605
  DataSetId: string | undefined;
1598
1606
  }
1599
1607
  export interface DescribeDataSetRefreshPropertiesResponse {
1600
- RequestId?: string;
1601
- Status?: number;
1602
- DataSetRefreshProperties?: DataSetRefreshProperties;
1608
+ RequestId?: string | undefined;
1609
+ Status?: number | undefined;
1610
+ DataSetRefreshProperties?: DataSetRefreshProperties | undefined;
1603
1611
  }
1604
1612
  export interface DescribeDataSourceRequest {
1605
1613
  AwsAccountId: string | undefined;
1606
1614
  DataSourceId: string | undefined;
1607
1615
  }
1608
1616
  export interface DescribeDataSourceResponse {
1609
- DataSource?: DataSource;
1610
- RequestId?: string;
1611
- Status?: number;
1617
+ DataSource?: DataSource | undefined;
1618
+ RequestId?: string | undefined;
1619
+ Status?: number | undefined;
1612
1620
  }
1613
1621
  export interface DescribeDataSourcePermissionsRequest {
1614
1622
  AwsAccountId: string | undefined;
1615
1623
  DataSourceId: string | undefined;
1616
1624
  }
1617
1625
  export interface DescribeDataSourcePermissionsResponse {
1618
- DataSourceArn?: string;
1619
- DataSourceId?: string;
1620
- Permissions?: ResourcePermission[];
1621
- RequestId?: string;
1622
- Status?: number;
1626
+ DataSourceArn?: string | undefined;
1627
+ DataSourceId?: string | undefined;
1628
+ Permissions?: ResourcePermission[] | undefined;
1629
+ RequestId?: string | undefined;
1630
+ Status?: number | undefined;
1623
1631
  }
1624
1632
  export interface DescribeFolderRequest {
1625
1633
  AwsAccountId: string | undefined;
1626
1634
  FolderId: string | undefined;
1627
1635
  }
1628
1636
  export interface Folder {
1629
- FolderId?: string;
1630
- Arn?: string;
1631
- Name?: string;
1632
- FolderType?: FolderType;
1633
- FolderPath?: string[];
1634
- CreatedTime?: Date;
1635
- LastUpdatedTime?: Date;
1636
- SharingModel?: SharingModel;
1637
+ FolderId?: string | undefined;
1638
+ Arn?: string | undefined;
1639
+ Name?: string | undefined;
1640
+ FolderType?: FolderType | undefined;
1641
+ FolderPath?: string[] | undefined;
1642
+ CreatedTime?: Date | undefined;
1643
+ LastUpdatedTime?: Date | undefined;
1644
+ SharingModel?: SharingModel | undefined;
1637
1645
  }
1638
1646
  export interface DescribeFolderResponse {
1639
- Status?: number;
1640
- Folder?: Folder;
1641
- RequestId?: string;
1647
+ Status?: number | undefined;
1648
+ Folder?: Folder | undefined;
1649
+ RequestId?: string | undefined;
1642
1650
  }
1643
1651
  export interface DescribeFolderPermissionsRequest {
1644
1652
  AwsAccountId: string | undefined;
1645
1653
  FolderId: string | undefined;
1646
- Namespace?: string;
1647
- MaxResults?: number;
1648
- NextToken?: string;
1654
+ Namespace?: string | undefined;
1655
+ MaxResults?: number | undefined;
1656
+ NextToken?: string | undefined;
1649
1657
  }
1650
1658
  export interface DescribeFolderPermissionsResponse {
1651
- Status?: number;
1652
- FolderId?: string;
1653
- Arn?: string;
1654
- Permissions?: ResourcePermission[];
1655
- RequestId?: string;
1656
- NextToken?: string;
1659
+ Status?: number | undefined;
1660
+ FolderId?: string | undefined;
1661
+ Arn?: string | undefined;
1662
+ Permissions?: ResourcePermission[] | undefined;
1663
+ RequestId?: string | undefined;
1664
+ NextToken?: string | undefined;
1657
1665
  }
1658
1666
  export declare class InvalidNextTokenException extends __BaseException {
1659
1667
  readonly name: "InvalidNextTokenException";
1660
1668
  readonly $fault: "client";
1661
- Message?: string;
1662
- RequestId?: string;
1669
+ Message?: string | undefined;
1670
+ RequestId?: string | undefined;
1663
1671
  constructor(
1664
1672
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
1665
1673
  );
@@ -1667,17 +1675,17 @@ export declare class InvalidNextTokenException extends __BaseException {
1667
1675
  export interface DescribeFolderResolvedPermissionsRequest {
1668
1676
  AwsAccountId: string | undefined;
1669
1677
  FolderId: string | undefined;
1670
- Namespace?: string;
1671
- MaxResults?: number;
1672
- NextToken?: string;
1678
+ Namespace?: string | undefined;
1679
+ MaxResults?: number | undefined;
1680
+ NextToken?: string | undefined;
1673
1681
  }
1674
1682
  export interface DescribeFolderResolvedPermissionsResponse {
1675
- Status?: number;
1676
- FolderId?: string;
1677
- Arn?: string;
1678
- Permissions?: ResourcePermission[];
1679
- RequestId?: string;
1680
- NextToken?: string;
1683
+ Status?: number | undefined;
1684
+ FolderId?: string | undefined;
1685
+ Arn?: string | undefined;
1686
+ Permissions?: ResourcePermission[] | undefined;
1687
+ RequestId?: string | undefined;
1688
+ NextToken?: string | undefined;
1681
1689
  }
1682
1690
  export interface DescribeGroupRequest {
1683
1691
  GroupName: string | undefined;
@@ -1685,9 +1693,9 @@ export interface DescribeGroupRequest {
1685
1693
  Namespace: string | undefined;
1686
1694
  }
1687
1695
  export interface DescribeGroupResponse {
1688
- Group?: Group;
1689
- RequestId?: string;
1690
- Status?: number;
1696
+ Group?: Group | undefined;
1697
+ RequestId?: string | undefined;
1698
+ Status?: number | undefined;
1691
1699
  }
1692
1700
  export interface DescribeGroupMembershipRequest {
1693
1701
  MemberName: string | undefined;
@@ -1696,9 +1704,9 @@ export interface DescribeGroupMembershipRequest {
1696
1704
  Namespace: string | undefined;
1697
1705
  }
1698
1706
  export interface DescribeGroupMembershipResponse {
1699
- GroupMember?: GroupMember;
1700
- RequestId?: string;
1701
- Status?: number;
1707
+ GroupMember?: GroupMember | undefined;
1708
+ RequestId?: string | undefined;
1709
+ Status?: number | undefined;
1702
1710
  }
1703
1711
  export interface DescribeIAMPolicyAssignmentRequest {
1704
1712
  AwsAccountId: string | undefined;
@@ -1706,17 +1714,17 @@ export interface DescribeIAMPolicyAssignmentRequest {
1706
1714
  Namespace: string | undefined;
1707
1715
  }
1708
1716
  export interface IAMPolicyAssignment {
1709
- AwsAccountId?: string;
1710
- AssignmentId?: string;
1711
- AssignmentName?: string;
1712
- PolicyArn?: string;
1713
- Identities?: Record<string, string[]>;
1714
- AssignmentStatus?: AssignmentStatus;
1717
+ AwsAccountId?: string | undefined;
1718
+ AssignmentId?: string | undefined;
1719
+ AssignmentName?: string | undefined;
1720
+ PolicyArn?: string | undefined;
1721
+ Identities?: Record<string, string[]> | undefined;
1722
+ AssignmentStatus?: AssignmentStatus | undefined;
1715
1723
  }
1716
1724
  export interface DescribeIAMPolicyAssignmentResponse {
1717
- IAMPolicyAssignment?: IAMPolicyAssignment;
1718
- RequestId?: string;
1719
- Status?: number;
1725
+ IAMPolicyAssignment?: IAMPolicyAssignment | undefined;
1726
+ RequestId?: string | undefined;
1727
+ Status?: number | undefined;
1720
1728
  }
1721
1729
  export interface DescribeIngestionRequest {
1722
1730
  AwsAccountId: string | undefined;
@@ -1773,8 +1781,8 @@ export declare const IngestionErrorType: {
1773
1781
  export type IngestionErrorType =
1774
1782
  (typeof IngestionErrorType)[keyof typeof IngestionErrorType];
1775
1783
  export interface ErrorInfo {
1776
- Type?: IngestionErrorType;
1777
- Message?: string;
1784
+ Type?: IngestionErrorType | undefined;
1785
+ Message?: string | undefined;
1778
1786
  }
1779
1787
  export interface QueueInfo {
1780
1788
  WaitingOnIngestion: string | undefined;
@@ -1795,53 +1803,53 @@ export declare const IngestionRequestType: {
1795
1803
  export type IngestionRequestType =
1796
1804
  (typeof IngestionRequestType)[keyof typeof IngestionRequestType];
1797
1805
  export interface RowInfo {
1798
- RowsIngested?: number;
1799
- RowsDropped?: number;
1800
- TotalRowsInDataset?: number;
1806
+ RowsIngested?: number | undefined;
1807
+ RowsDropped?: number | undefined;
1808
+ TotalRowsInDataset?: number | undefined;
1801
1809
  }
1802
1810
  export interface Ingestion {
1803
1811
  Arn: string | undefined;
1804
- IngestionId?: string;
1812
+ IngestionId?: string | undefined;
1805
1813
  IngestionStatus: IngestionStatus | undefined;
1806
- ErrorInfo?: ErrorInfo;
1807
- RowInfo?: RowInfo;
1808
- QueueInfo?: QueueInfo;
1814
+ ErrorInfo?: ErrorInfo | undefined;
1815
+ RowInfo?: RowInfo | undefined;
1816
+ QueueInfo?: QueueInfo | undefined;
1809
1817
  CreatedTime: Date | undefined;
1810
- IngestionTimeInSeconds?: number;
1811
- IngestionSizeInBytes?: number;
1812
- RequestSource?: IngestionRequestSource;
1813
- RequestType?: IngestionRequestType;
1818
+ IngestionTimeInSeconds?: number | undefined;
1819
+ IngestionSizeInBytes?: number | undefined;
1820
+ RequestSource?: IngestionRequestSource | undefined;
1821
+ RequestType?: IngestionRequestType | undefined;
1814
1822
  }
1815
1823
  export interface DescribeIngestionResponse {
1816
- Ingestion?: Ingestion;
1817
- RequestId?: string;
1818
- Status?: number;
1824
+ Ingestion?: Ingestion | undefined;
1825
+ RequestId?: string | undefined;
1826
+ Status?: number | undefined;
1819
1827
  }
1820
1828
  export interface DescribeIpRestrictionRequest {
1821
1829
  AwsAccountId: string | undefined;
1822
1830
  }
1823
1831
  export interface DescribeIpRestrictionResponse {
1824
- AwsAccountId?: string;
1825
- IpRestrictionRuleMap?: Record<string, string>;
1826
- VpcIdRestrictionRuleMap?: Record<string, string>;
1827
- VpcEndpointIdRestrictionRuleMap?: Record<string, string>;
1828
- Enabled?: boolean;
1829
- RequestId?: string;
1830
- Status?: number;
1832
+ AwsAccountId?: string | undefined;
1833
+ IpRestrictionRuleMap?: Record<string, string> | undefined;
1834
+ VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
1835
+ VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
1836
+ Enabled?: boolean | undefined;
1837
+ RequestId?: string | undefined;
1838
+ Status?: number | undefined;
1831
1839
  }
1832
1840
  export interface DescribeKeyRegistrationRequest {
1833
1841
  AwsAccountId: string | undefined;
1834
- DefaultKeyOnly?: boolean;
1842
+ DefaultKeyOnly?: boolean | undefined;
1835
1843
  }
1836
1844
  export interface RegisteredCustomerManagedKey {
1837
- KeyArn?: string;
1838
- DefaultKey?: boolean;
1845
+ KeyArn?: string | undefined;
1846
+ DefaultKey?: boolean | undefined;
1839
1847
  }
1840
1848
  export interface DescribeKeyRegistrationResponse {
1841
- AwsAccountId?: string;
1842
- KeyRegistration?: RegisteredCustomerManagedKey[];
1843
- RequestId?: string;
1844
- Status?: number;
1849
+ AwsAccountId?: string | undefined;
1850
+ KeyRegistration?: RegisteredCustomerManagedKey[] | undefined;
1851
+ RequestId?: string | undefined;
1852
+ Status?: number | undefined;
1845
1853
  }
1846
1854
  export interface DescribeNamespaceRequest {
1847
1855
  AwsAccountId: string | undefined;
@@ -1854,21 +1862,21 @@ export declare const NamespaceErrorType: {
1854
1862
  export type NamespaceErrorType =
1855
1863
  (typeof NamespaceErrorType)[keyof typeof NamespaceErrorType];
1856
1864
  export interface NamespaceError {
1857
- Type?: NamespaceErrorType;
1858
- Message?: string;
1865
+ Type?: NamespaceErrorType | undefined;
1866
+ Message?: string | undefined;
1859
1867
  }
1860
1868
  export interface NamespaceInfoV2 {
1861
- Name?: string;
1862
- Arn?: string;
1863
- CapacityRegion?: string;
1864
- CreationStatus?: NamespaceStatus;
1865
- IdentityStore?: IdentityStore;
1866
- NamespaceError?: NamespaceError;
1869
+ Name?: string | undefined;
1870
+ Arn?: string | undefined;
1871
+ CapacityRegion?: string | undefined;
1872
+ CreationStatus?: NamespaceStatus | undefined;
1873
+ IdentityStore?: IdentityStore | undefined;
1874
+ NamespaceError?: NamespaceError | undefined;
1867
1875
  }
1868
1876
  export interface DescribeNamespaceResponse {
1869
- Namespace?: NamespaceInfoV2;
1870
- RequestId?: string;
1871
- Status?: number;
1877
+ Namespace?: NamespaceInfoV2 | undefined;
1878
+ RequestId?: string | undefined;
1879
+ Status?: number | undefined;
1872
1880
  }
1873
1881
  export interface DescribeQPersonalizationConfigurationRequest {
1874
1882
  AwsAccountId: string | undefined;
@@ -1880,9 +1888,9 @@ export declare const PersonalizationMode: {
1880
1888
  export type PersonalizationMode =
1881
1889
  (typeof PersonalizationMode)[keyof typeof PersonalizationMode];
1882
1890
  export interface DescribeQPersonalizationConfigurationResponse {
1883
- PersonalizationMode?: PersonalizationMode;
1884
- RequestId?: string;
1885
- Status?: number;
1891
+ PersonalizationMode?: PersonalizationMode | undefined;
1892
+ RequestId?: string | undefined;
1893
+ Status?: number | undefined;
1886
1894
  }
1887
1895
  export interface DescribeRefreshScheduleRequest {
1888
1896
  AwsAccountId: string | undefined;
@@ -1890,10 +1898,10 @@ export interface DescribeRefreshScheduleRequest {
1890
1898
  ScheduleId: string | undefined;
1891
1899
  }
1892
1900
  export interface DescribeRefreshScheduleResponse {
1893
- RefreshSchedule?: RefreshSchedule;
1894
- Status?: number;
1895
- RequestId?: string;
1896
- Arn?: string;
1901
+ RefreshSchedule?: RefreshSchedule | undefined;
1902
+ Status?: number | undefined;
1903
+ RequestId?: string | undefined;
1904
+ Arn?: string | undefined;
1897
1905
  }
1898
1906
  export interface DescribeRoleCustomPermissionRequest {
1899
1907
  Role: Role | undefined;
@@ -1901,15 +1909,15 @@ export interface DescribeRoleCustomPermissionRequest {
1901
1909
  Namespace: string | undefined;
1902
1910
  }
1903
1911
  export interface DescribeRoleCustomPermissionResponse {
1904
- CustomPermissionsName?: string;
1905
- RequestId?: string;
1906
- Status?: number;
1912
+ CustomPermissionsName?: string | undefined;
1913
+ RequestId?: string | undefined;
1914
+ Status?: number | undefined;
1907
1915
  }
1908
1916
  export interface DescribeTemplateRequest {
1909
1917
  AwsAccountId: string | undefined;
1910
1918
  TemplateId: string | undefined;
1911
- VersionNumber?: number;
1912
- AliasName?: string;
1919
+ VersionNumber?: number | undefined;
1920
+ AliasName?: string | undefined;
1913
1921
  }
1914
1922
  export declare const TemplateErrorType: {
1915
1923
  readonly ACCESS_DENIED: "ACCESS_DENIED";
@@ -1920,33 +1928,33 @@ export declare const TemplateErrorType: {
1920
1928
  export type TemplateErrorType =
1921
1929
  (typeof TemplateErrorType)[keyof typeof TemplateErrorType];
1922
1930
  export interface TemplateError {
1923
- Type?: TemplateErrorType;
1924
- Message?: string;
1925
- ViolatedEntities?: Entity[];
1931
+ Type?: TemplateErrorType | undefined;
1932
+ Message?: string | undefined;
1933
+ ViolatedEntities?: Entity[] | undefined;
1926
1934
  }
1927
1935
  export interface TemplateVersion {
1928
- CreatedTime?: Date;
1929
- Errors?: TemplateError[];
1930
- VersionNumber?: number;
1931
- Status?: ResourceStatus;
1932
- DataSetConfigurations?: DataSetConfiguration[];
1933
- Description?: string;
1934
- SourceEntityArn?: string;
1935
- ThemeArn?: string;
1936
- Sheets?: Sheet[];
1936
+ CreatedTime?: Date | undefined;
1937
+ Errors?: TemplateError[] | undefined;
1938
+ VersionNumber?: number | undefined;
1939
+ Status?: ResourceStatus | undefined;
1940
+ DataSetConfigurations?: DataSetConfiguration[] | undefined;
1941
+ Description?: string | undefined;
1942
+ SourceEntityArn?: string | undefined;
1943
+ ThemeArn?: string | undefined;
1944
+ Sheets?: Sheet[] | undefined;
1937
1945
  }
1938
1946
  export interface Template {
1939
- Arn?: string;
1940
- Name?: string;
1941
- Version?: TemplateVersion;
1942
- TemplateId?: string;
1943
- LastUpdatedTime?: Date;
1944
- CreatedTime?: Date;
1947
+ Arn?: string | undefined;
1948
+ Name?: string | undefined;
1949
+ Version?: TemplateVersion | undefined;
1950
+ TemplateId?: string | undefined;
1951
+ LastUpdatedTime?: Date | undefined;
1952
+ CreatedTime?: Date | undefined;
1945
1953
  }
1946
1954
  export interface DescribeTemplateResponse {
1947
- Template?: Template;
1948
- Status?: number;
1949
- RequestId?: string;
1955
+ Template?: Template | undefined;
1956
+ Status?: number | undefined;
1957
+ RequestId?: string | undefined;
1950
1958
  }
1951
1959
  export interface DescribeTemplateAliasRequest {
1952
1960
  AwsAccountId: string | undefined;
@@ -1954,42 +1962,42 @@ export interface DescribeTemplateAliasRequest {
1954
1962
  AliasName: string | undefined;
1955
1963
  }
1956
1964
  export interface DescribeTemplateAliasResponse {
1957
- TemplateAlias?: TemplateAlias;
1958
- Status?: number;
1959
- RequestId?: string;
1965
+ TemplateAlias?: TemplateAlias | undefined;
1966
+ Status?: number | undefined;
1967
+ RequestId?: string | undefined;
1960
1968
  }
1961
1969
  export interface DescribeTemplateDefinitionRequest {
1962
1970
  AwsAccountId: string | undefined;
1963
1971
  TemplateId: string | undefined;
1964
- VersionNumber?: number;
1965
- AliasName?: string;
1972
+ VersionNumber?: number | undefined;
1973
+ AliasName?: string | undefined;
1966
1974
  }
1967
1975
  export interface DescribeTemplateDefinitionResponse {
1968
- Name?: string;
1969
- TemplateId?: string;
1970
- Errors?: TemplateError[];
1971
- ResourceStatus?: ResourceStatus;
1972
- ThemeArn?: string;
1973
- Definition?: TemplateVersionDefinition;
1974
- Status?: number;
1975
- RequestId?: string;
1976
+ Name?: string | undefined;
1977
+ TemplateId?: string | undefined;
1978
+ Errors?: TemplateError[] | undefined;
1979
+ ResourceStatus?: ResourceStatus | undefined;
1980
+ ThemeArn?: string | undefined;
1981
+ Definition?: TemplateVersionDefinition | undefined;
1982
+ Status?: number | undefined;
1983
+ RequestId?: string | undefined;
1976
1984
  }
1977
1985
  export interface DescribeTemplatePermissionsRequest {
1978
1986
  AwsAccountId: string | undefined;
1979
1987
  TemplateId: string | undefined;
1980
1988
  }
1981
1989
  export interface DescribeTemplatePermissionsResponse {
1982
- TemplateId?: string;
1983
- TemplateArn?: string;
1984
- Permissions?: ResourcePermission[];
1985
- RequestId?: string;
1986
- Status?: number;
1990
+ TemplateId?: string | undefined;
1991
+ TemplateArn?: string | undefined;
1992
+ Permissions?: ResourcePermission[] | undefined;
1993
+ RequestId?: string | undefined;
1994
+ Status?: number | undefined;
1987
1995
  }
1988
1996
  export interface DescribeThemeRequest {
1989
1997
  AwsAccountId: string | undefined;
1990
1998
  ThemeId: string | undefined;
1991
- VersionNumber?: number;
1992
- AliasName?: string;
1999
+ VersionNumber?: number | undefined;
2000
+ AliasName?: string | undefined;
1993
2001
  }
1994
2002
  export declare const ThemeType: {
1995
2003
  readonly ALL: "ALL";
@@ -2003,32 +2011,32 @@ export declare const ThemeErrorType: {
2003
2011
  export type ThemeErrorType =
2004
2012
  (typeof ThemeErrorType)[keyof typeof ThemeErrorType];
2005
2013
  export interface ThemeError {
2006
- Type?: ThemeErrorType;
2007
- Message?: string;
2014
+ Type?: ThemeErrorType | undefined;
2015
+ Message?: string | undefined;
2008
2016
  }
2009
2017
  export interface ThemeVersion {
2010
- VersionNumber?: number;
2011
- Arn?: string;
2012
- Description?: string;
2013
- BaseThemeId?: string;
2014
- CreatedTime?: Date;
2015
- Configuration?: ThemeConfiguration;
2016
- Errors?: ThemeError[];
2017
- Status?: ResourceStatus;
2018
+ VersionNumber?: number | undefined;
2019
+ Arn?: string | undefined;
2020
+ Description?: string | undefined;
2021
+ BaseThemeId?: string | undefined;
2022
+ CreatedTime?: Date | undefined;
2023
+ Configuration?: ThemeConfiguration | undefined;
2024
+ Errors?: ThemeError[] | undefined;
2025
+ Status?: ResourceStatus | undefined;
2018
2026
  }
2019
2027
  export interface Theme {
2020
- Arn?: string;
2021
- Name?: string;
2022
- ThemeId?: string;
2023
- Version?: ThemeVersion;
2024
- CreatedTime?: Date;
2025
- LastUpdatedTime?: Date;
2026
- Type?: ThemeType;
2028
+ Arn?: string | undefined;
2029
+ Name?: string | undefined;
2030
+ ThemeId?: string | undefined;
2031
+ Version?: ThemeVersion | undefined;
2032
+ CreatedTime?: Date | undefined;
2033
+ LastUpdatedTime?: Date | undefined;
2034
+ Type?: ThemeType | undefined;
2027
2035
  }
2028
2036
  export interface DescribeThemeResponse {
2029
- Theme?: Theme;
2030
- Status?: number;
2031
- RequestId?: string;
2037
+ Theme?: Theme | undefined;
2038
+ Status?: number | undefined;
2039
+ RequestId?: string | undefined;
2032
2040
  }
2033
2041
  export interface DescribeThemeAliasRequest {
2034
2042
  AwsAccountId: string | undefined;
@@ -2036,31 +2044,31 @@ export interface DescribeThemeAliasRequest {
2036
2044
  AliasName: string | undefined;
2037
2045
  }
2038
2046
  export interface DescribeThemeAliasResponse {
2039
- ThemeAlias?: ThemeAlias;
2040
- Status?: number;
2041
- RequestId?: string;
2047
+ ThemeAlias?: ThemeAlias | undefined;
2048
+ Status?: number | undefined;
2049
+ RequestId?: string | undefined;
2042
2050
  }
2043
2051
  export interface DescribeThemePermissionsRequest {
2044
2052
  AwsAccountId: string | undefined;
2045
2053
  ThemeId: string | undefined;
2046
2054
  }
2047
2055
  export interface DescribeThemePermissionsResponse {
2048
- ThemeId?: string;
2049
- ThemeArn?: string;
2050
- Permissions?: ResourcePermission[];
2051
- RequestId?: string;
2052
- Status?: number;
2056
+ ThemeId?: string | undefined;
2057
+ ThemeArn?: string | undefined;
2058
+ Permissions?: ResourcePermission[] | undefined;
2059
+ RequestId?: string | undefined;
2060
+ Status?: number | undefined;
2053
2061
  }
2054
2062
  export interface DescribeTopicRequest {
2055
2063
  AwsAccountId: string | undefined;
2056
2064
  TopicId: string | undefined;
2057
2065
  }
2058
2066
  export interface DescribeTopicResponse {
2059
- Arn?: string;
2060
- TopicId?: string;
2061
- Topic?: TopicDetails;
2062
- RequestId?: string;
2063
- Status?: number;
2067
+ Arn?: string | undefined;
2068
+ TopicId?: string | undefined;
2069
+ Topic?: TopicDetails | undefined;
2070
+ RequestId?: string | undefined;
2071
+ Status?: number | undefined;
2064
2072
  }
2065
2073
  export interface DescribeTopicPermissionsRequest {
2066
2074
  AwsAccountId: string | undefined;