@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.
@@ -11,27 +11,27 @@ export interface DescribeTopicPermissionsResponse {
11
11
  * <p>The ID of the topic that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
12
12
  * @public
13
13
  */
14
- TopicId?: string;
14
+ TopicId?: string | undefined;
15
15
  /**
16
16
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
17
17
  * @public
18
18
  */
19
- TopicArn?: string;
19
+ TopicArn?: string | undefined;
20
20
  /**
21
21
  * <p>A list of resource permissions that are configured to the topic.</p>
22
22
  * @public
23
23
  */
24
- Permissions?: ResourcePermission[];
24
+ Permissions?: ResourcePermission[] | undefined;
25
25
  /**
26
26
  * <p>The HTTP status of the request.</p>
27
27
  * @public
28
28
  */
29
- Status?: number;
29
+ Status?: number | undefined;
30
30
  /**
31
31
  * <p>The Amazon Web Services request ID for this operation.</p>
32
32
  * @public
33
33
  */
34
- RequestId?: string;
34
+ RequestId?: string | undefined;
35
35
  }
36
36
  /**
37
37
  * @public
@@ -78,17 +78,17 @@ export interface TopicRefreshDetails {
78
78
  * <p>The Amazon Resource Name (ARN) of the topic refresh.</p>
79
79
  * @public
80
80
  */
81
- RefreshArn?: string;
81
+ RefreshArn?: string | undefined;
82
82
  /**
83
83
  * <p>The ID of the refresh, which occurs as a result of topic creation or topic update.</p>
84
84
  * @public
85
85
  */
86
- RefreshId?: string;
86
+ RefreshId?: string | undefined;
87
87
  /**
88
88
  * <p>The status of the refresh job that indicates whether the job is still running, completed successfully, or failed.</p>
89
89
  * @public
90
90
  */
91
- RefreshStatus?: TopicRefreshStatus;
91
+ RefreshStatus?: TopicRefreshStatus | undefined;
92
92
  }
93
93
  /**
94
94
  * @public
@@ -98,17 +98,17 @@ export interface DescribeTopicRefreshResponse {
98
98
  * <p>Details of the refresh, which is performed when the topic is created or updated.</p>
99
99
  * @public
100
100
  */
101
- RefreshDetails?: TopicRefreshDetails;
101
+ RefreshDetails?: TopicRefreshDetails | undefined;
102
102
  /**
103
103
  * <p>The Amazon Web Services request ID for this operation.</p>
104
104
  * @public
105
105
  */
106
- RequestId?: string;
106
+ RequestId?: string | undefined;
107
107
  /**
108
108
  * <p>The HTTP status of the request.</p>
109
109
  * @public
110
110
  */
111
- Status?: number;
111
+ Status?: number | undefined;
112
112
  }
113
113
  /**
114
114
  * @public
@@ -140,32 +140,32 @@ export interface DescribeTopicRefreshScheduleResponse {
140
140
  * ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
141
141
  * @public
142
142
  */
143
- TopicId?: string;
143
+ TopicId?: string | undefined;
144
144
  /**
145
145
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
146
146
  * @public
147
147
  */
148
- TopicArn?: string;
148
+ TopicArn?: string | undefined;
149
149
  /**
150
150
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
151
151
  * @public
152
152
  */
153
- DatasetArn?: string;
153
+ DatasetArn?: string | undefined;
154
154
  /**
155
155
  * <p>The definition of a refresh schedule.</p>
156
156
  * @public
157
157
  */
158
- RefreshSchedule?: TopicRefreshSchedule;
158
+ RefreshSchedule?: TopicRefreshSchedule | undefined;
159
159
  /**
160
160
  * <p>The HTTP status of the request.</p>
161
161
  * @public
162
162
  */
163
- Status?: number;
163
+ Status?: number | undefined;
164
164
  /**
165
165
  * <p>The Amazon Web Services request ID for this operation.</p>
166
166
  * @public
167
167
  */
168
- RequestId?: string;
168
+ RequestId?: string | undefined;
169
169
  }
170
170
  /**
171
171
  * @public
@@ -228,19 +228,19 @@ export interface User {
228
228
  * <p>The Amazon Resource Name (ARN) for the user.</p>
229
229
  * @public
230
230
  */
231
- Arn?: string;
231
+ Arn?: string | undefined;
232
232
  /**
233
233
  * <p>The user's user name. This value is required if you are registering a user that will be managed in Amazon QuickSight. In the output, the value for <code>UserName</code> is
234
234
  * <code>N/A</code> when the value for <code>IdentityType</code> is <code>IAM</code>
235
235
  * and the corresponding IAM user is deleted.</p>
236
236
  * @public
237
237
  */
238
- UserName?: string;
238
+ UserName?: string | undefined;
239
239
  /**
240
240
  * <p>The user's email address.</p>
241
241
  * @public
242
242
  */
243
- Email?: string;
243
+ Email?: string | undefined;
244
244
  /**
245
245
  * <p>The Amazon QuickSight role for the user. The user role can be one of the
246
246
  * following:.</p>
@@ -284,28 +284,28 @@ export interface User {
284
284
  * </ul>
285
285
  * @public
286
286
  */
287
- Role?: UserRole;
287
+ Role?: UserRole | undefined;
288
288
  /**
289
289
  * <p>The type of identity authentication used by the user.</p>
290
290
  * @public
291
291
  */
292
- IdentityType?: IdentityType;
292
+ IdentityType?: IdentityType | undefined;
293
293
  /**
294
294
  * <p>The active status of user. When you create an Amazon QuickSight user that's not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a
295
295
  * password.</p>
296
296
  * @public
297
297
  */
298
- Active?: boolean;
298
+ Active?: boolean | undefined;
299
299
  /**
300
300
  * <p>The principal ID of the user.</p>
301
301
  * @public
302
302
  */
303
- PrincipalId?: string;
303
+ PrincipalId?: string | undefined;
304
304
  /**
305
305
  * <p>The custom permissions profile associated with this user.</p>
306
306
  * @public
307
307
  */
308
- CustomPermissionsName?: string;
308
+ CustomPermissionsName?: string | undefined;
309
309
  /**
310
310
  * <p>The type of supported external login provider that provides identity to let the user
311
311
  * federate into Amazon QuickSight with an associated IAM role. The type can be one of the following.</p>
@@ -321,17 +321,17 @@ export interface User {
321
321
  * </ul>
322
322
  * @public
323
323
  */
324
- ExternalLoginFederationProviderType?: string;
324
+ ExternalLoginFederationProviderType?: string | undefined;
325
325
  /**
326
326
  * <p>The URL of the external login provider.</p>
327
327
  * @public
328
328
  */
329
- ExternalLoginFederationProviderUrl?: string;
329
+ ExternalLoginFederationProviderUrl?: string | undefined;
330
330
  /**
331
331
  * <p>The identity ID for the user in the external login provider.</p>
332
332
  * @public
333
333
  */
334
- ExternalLoginId?: string;
334
+ ExternalLoginId?: string | undefined;
335
335
  }
336
336
  /**
337
337
  * @public
@@ -341,17 +341,17 @@ export interface DescribeUserResponse {
341
341
  * <p>The user name.</p>
342
342
  * @public
343
343
  */
344
- User?: User;
344
+ User?: User | undefined;
345
345
  /**
346
346
  * <p>The Amazon Web Services request ID for this operation.</p>
347
347
  * @public
348
348
  */
349
- RequestId?: string;
349
+ RequestId?: string | undefined;
350
350
  /**
351
351
  * <p>The HTTP status of the request.</p>
352
352
  * @public
353
353
  */
354
- Status?: number;
354
+ Status?: number | undefined;
355
355
  }
356
356
  /**
357
357
  * @public
@@ -399,27 +399,27 @@ export interface NetworkInterface {
399
399
  * <p>The subnet ID associated with the network interface.</p>
400
400
  * @public
401
401
  */
402
- SubnetId?: string;
402
+ SubnetId?: string | undefined;
403
403
  /**
404
404
  * <p>The availability zone that the network interface resides in.</p>
405
405
  * @public
406
406
  */
407
- AvailabilityZone?: string;
407
+ AvailabilityZone?: string | undefined;
408
408
  /**
409
409
  * <p>An error message.</p>
410
410
  * @public
411
411
  */
412
- ErrorMessage?: string;
412
+ ErrorMessage?: string | undefined;
413
413
  /**
414
414
  * <p>The status of the network interface.</p>
415
415
  * @public
416
416
  */
417
- Status?: NetworkInterfaceStatus;
417
+ Status?: NetworkInterfaceStatus | undefined;
418
418
  /**
419
419
  * <p>The network interface ID.</p>
420
420
  * @public
421
421
  */
422
- NetworkInterfaceId?: string;
422
+ NetworkInterfaceId?: string | undefined;
423
423
  }
424
424
  /**
425
425
  * <p>The structure of a VPC connection.</p>
@@ -431,64 +431,64 @@ export interface VPCConnection {
431
431
  * Amazon Web Services account.</p>
432
432
  * @public
433
433
  */
434
- VPCConnectionId?: string;
434
+ VPCConnectionId?: string | undefined;
435
435
  /**
436
436
  * <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
437
437
  * @public
438
438
  */
439
- Arn?: string;
439
+ Arn?: string | undefined;
440
440
  /**
441
441
  * <p>The display name for the VPC connection.</p>
442
442
  * @public
443
443
  */
444
- Name?: string;
444
+ Name?: string | undefined;
445
445
  /**
446
446
  * <p>The Amazon EC2 VPC ID associated with the VPC connection.</p>
447
447
  * @public
448
448
  */
449
- VPCId?: string;
449
+ VPCId?: string | undefined;
450
450
  /**
451
451
  * <p>The Amazon EC2 security group IDs associated with the VPC connection.</p>
452
452
  * @public
453
453
  */
454
- SecurityGroupIds?: string[];
454
+ SecurityGroupIds?: string[] | undefined;
455
455
  /**
456
456
  * <p>A list of IP addresses of DNS resolver endpoints for the VPC connection.</p>
457
457
  * @public
458
458
  */
459
- DnsResolvers?: string[];
459
+ DnsResolvers?: string[] | undefined;
460
460
  /**
461
461
  * <p>The status of the VPC connection.</p>
462
462
  * @public
463
463
  */
464
- Status?: VPCConnectionResourceStatus;
464
+ Status?: VPCConnectionResourceStatus | undefined;
465
465
  /**
466
466
  * <p>The availability status of the VPC connection.</p>
467
467
  * @public
468
468
  */
469
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
469
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
470
470
  /**
471
471
  * <p>A list of network interfaces.</p>
472
472
  * @public
473
473
  */
474
- NetworkInterfaces?: NetworkInterface[];
474
+ NetworkInterfaces?: NetworkInterface[] | undefined;
475
475
  /**
476
476
  * <p>The ARN of the
477
477
  * IAM role associated with the VPC
478
478
  * connection.</p>
479
479
  * @public
480
480
  */
481
- RoleArn?: string;
481
+ RoleArn?: string | undefined;
482
482
  /**
483
483
  * <p>The time that the VPC connection was created.</p>
484
484
  * @public
485
485
  */
486
- CreatedTime?: Date;
486
+ CreatedTime?: Date | undefined;
487
487
  /**
488
488
  * <p>The time that the VPC connection was last updated.</p>
489
489
  * @public
490
490
  */
491
- LastUpdatedTime?: Date;
491
+ LastUpdatedTime?: Date | undefined;
492
492
  }
493
493
  /**
494
494
  * @public
@@ -498,17 +498,17 @@ export interface DescribeVPCConnectionResponse {
498
498
  * <p>A response object that provides information for the specified VPC connection.</p>
499
499
  * @public
500
500
  */
501
- VPCConnection?: VPCConnection;
501
+ VPCConnection?: VPCConnection | undefined;
502
502
  /**
503
503
  * <p>The Amazon Web Services request ID for this operation.</p>
504
504
  * @public
505
505
  */
506
- RequestId?: string;
506
+ RequestId?: string | undefined;
507
507
  /**
508
508
  * <p>The HTTP status of the request.</p>
509
509
  * @public
510
510
  */
511
- Status?: number;
511
+ Status?: number | undefined;
512
512
  }
513
513
  /**
514
514
  * <p>The domain specified isn't on the allow list. All domains for embedded dashboards must be
@@ -518,12 +518,12 @@ export interface DescribeVPCConnectionResponse {
518
518
  export declare class DomainNotWhitelistedException extends __BaseException {
519
519
  readonly name: "DomainNotWhitelistedException";
520
520
  readonly $fault: "client";
521
- Message?: string;
521
+ Message?: string | undefined;
522
522
  /**
523
523
  * <p>The Amazon Web Services request ID for this request.</p>
524
524
  * @public
525
525
  */
526
- RequestId?: string;
526
+ RequestId?: string | undefined;
527
527
  /**
528
528
  * @internal
529
529
  */
@@ -551,7 +551,7 @@ export interface FailedKeyRegistrationEntry {
551
551
  * <p>The ARN of the KMS key that failed to update.</p>
552
552
  * @public
553
553
  */
554
- KeyArn?: string;
554
+ KeyArn?: string | undefined;
555
555
  /**
556
556
  * <p>A message that provides information about why a <code>FailedKeyRegistrationEntry</code> error occurred.</p>
557
557
  * @public
@@ -595,12 +595,12 @@ export interface MemberIdArnPair {
595
595
  * <p>The ID of the member.</p>
596
596
  * @public
597
597
  */
598
- MemberId?: string;
598
+ MemberId?: string | undefined;
599
599
  /**
600
600
  * <p>The Amazon Resource Name (ARN) of the member.</p>
601
601
  * @public
602
602
  */
603
- MemberArn?: string;
603
+ MemberArn?: string | undefined;
604
604
  }
605
605
  /**
606
606
  * <p>A filter to use to search an Amazon QuickSight folder.</p>
@@ -613,7 +613,7 @@ export interface FolderSearchFilter {
613
613
  * <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the folders you are searching for. For example, <code>"Name":"FOLDER_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>FOLDER_NAME</code>.</p>
614
614
  * @public
615
615
  */
616
- Operator?: FilterOperator;
616
+ Operator?: FilterOperator | undefined;
617
617
  /**
618
618
  * <p>The name of a value that you want to use in the filter. For example, <code>"Name": "QUICKSIGHT_OWNER"</code>.</p>
619
619
  * <p>Valid values are defined as follows:</p>
@@ -649,12 +649,12 @@ export interface FolderSearchFilter {
649
649
  * </ul>
650
650
  * @public
651
651
  */
652
- Name?: FolderFilterAttribute;
652
+ Name?: FolderFilterAttribute | undefined;
653
653
  /**
654
654
  * <p>The value of the named item (in this example, <code>PARENT_FOLDER_ARN</code>), that you want to use as a filter. For example, <code>"Value": "arn:aws:quicksight:us-east-1:1:folder/folderId"</code>.</p>
655
655
  * @public
656
656
  */
657
- Value?: string;
657
+ Value?: string | undefined;
658
658
  }
659
659
  /**
660
660
  * <p>A summary of information about an existing Amazon QuickSight folder. </p>
@@ -665,37 +665,37 @@ export interface FolderSummary {
665
665
  * <p>The Amazon Resource Name (ARN) of the folder.</p>
666
666
  * @public
667
667
  */
668
- Arn?: string;
668
+ Arn?: string | undefined;
669
669
  /**
670
670
  * <p>The ID of the folder.</p>
671
671
  * @public
672
672
  */
673
- FolderId?: string;
673
+ FolderId?: string | undefined;
674
674
  /**
675
675
  * <p>The display name of the folder.</p>
676
676
  * @public
677
677
  */
678
- Name?: string;
678
+ Name?: string | undefined;
679
679
  /**
680
680
  * <p>The type of folder.</p>
681
681
  * @public
682
682
  */
683
- FolderType?: FolderType;
683
+ FolderType?: FolderType | undefined;
684
684
  /**
685
685
  * <p>The time that the folder was created.</p>
686
686
  * @public
687
687
  */
688
- CreatedTime?: Date;
688
+ CreatedTime?: Date | undefined;
689
689
  /**
690
690
  * <p>The time that the folder was last updated.</p>
691
691
  * @public
692
692
  */
693
- LastUpdatedTime?: Date;
693
+ LastUpdatedTime?: Date | undefined;
694
694
  /**
695
695
  * <p>The sharing scope of the folder.</p>
696
696
  * @public
697
697
  */
698
- SharingModel?: SharingModel;
698
+ SharingModel?: SharingModel | undefined;
699
699
  }
700
700
  /**
701
701
  * <p>The key-value pair used for the row-level security tags feature.</p>
@@ -726,7 +726,7 @@ export interface GenerateEmbedUrlForAnonymousUserRequest {
726
726
  * <p>How many minutes the session is valid. The session lifetime must be in [15-600] minutes range.</p>
727
727
  * @public
728
728
  */
729
- SessionLifetimeInMinutes?: number;
729
+ SessionLifetimeInMinutes?: number | undefined;
730
730
  /**
731
731
  * <p>The Amazon QuickSight namespace that the anonymous user virtually belongs to. If you are not using an Amazon QuickSight custom namespace, set this to <code>default</code>.</p>
732
732
  * @public
@@ -737,7 +737,7 @@ export interface GenerateEmbedUrlForAnonymousUserRequest {
737
737
  * <p>These are not the tags used for the Amazon Web Services resource tagging feature. For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/quicksight-dev-rls-tags.html">Using Row-Level Security (RLS) with Tags</a>in the <i>Amazon QuickSight User Guide</i>.</p>
738
738
  * @public
739
739
  */
740
- SessionTags?: SessionTag[];
740
+ SessionTags?: SessionTag[] | undefined;
741
741
  /**
742
742
  * <p>The Amazon Resource Names (ARNs) for the Amazon QuickSight resources that the user
743
743
  * is authorized to access during the lifetime of the session.</p>
@@ -764,7 +764,7 @@ export interface GenerateEmbedUrlForAnonymousUserRequest {
764
764
  * <code>https://sapp.amazon.com</code>.</p>
765
765
  * @public
766
766
  */
767
- AllowedDomains?: string[];
767
+ AllowedDomains?: string[] | undefined;
768
768
  }
769
769
  /**
770
770
  * @public
@@ -799,12 +799,12 @@ export interface GenerateEmbedUrlForAnonymousUserResponse {
799
799
  export declare class SessionLifetimeInMinutesInvalidException extends __BaseException {
800
800
  readonly name: "SessionLifetimeInMinutesInvalidException";
801
801
  readonly $fault: "client";
802
- Message?: string;
802
+ Message?: string | undefined;
803
803
  /**
804
804
  * <p>The Amazon Web Services request ID for this request.</p>
805
805
  * @public
806
806
  */
807
- RequestId?: string;
807
+ RequestId?: string | undefined;
808
808
  /**
809
809
  * @internal
810
810
  */
@@ -825,12 +825,12 @@ export declare class SessionLifetimeInMinutesInvalidException extends __BaseExce
825
825
  export declare class UnsupportedPricingPlanException extends __BaseException {
826
826
  readonly name: "UnsupportedPricingPlanException";
827
827
  readonly $fault: "client";
828
- Message?: string;
828
+ Message?: string | undefined;
829
829
  /**
830
830
  * <p>The Amazon Web Services request ID for this request.</p>
831
831
  * @public
832
832
  */
833
- RequestId?: string;
833
+ RequestId?: string | undefined;
834
834
  /**
835
835
  * @internal
836
836
  */
@@ -856,17 +856,17 @@ export interface RegisteredUserDashboardFeatureConfigurations {
856
856
  * <p>The state persistence settings of an embedded dashboard.</p>
857
857
  * @public
858
858
  */
859
- StatePersistence?: StatePersistenceConfigurations;
859
+ StatePersistence?: StatePersistenceConfigurations | undefined;
860
860
  /**
861
861
  * <p>The shared view settings of an embedded dashboard.</p>
862
862
  * @public
863
863
  */
864
- SharedView?: SharedViewConfigurations;
864
+ SharedView?: SharedViewConfigurations | undefined;
865
865
  /**
866
866
  * <p>The bookmarks configuration for an embedded dashboard in Amazon QuickSight.</p>
867
867
  * @public
868
868
  */
869
- Bookmarks?: BookmarksConfigurations;
869
+ Bookmarks?: BookmarksConfigurations | undefined;
870
870
  }
871
871
  /**
872
872
  * <p>Information about the dashboard you want to embed.</p>
@@ -883,7 +883,7 @@ export interface RegisteredUserDashboardEmbeddingConfiguration {
883
883
  * <p>The feature configurations of an embbedded Amazon QuickSight dashboard.</p>
884
884
  * @public
885
885
  */
886
- FeatureConfigurations?: RegisteredUserDashboardFeatureConfigurations;
886
+ FeatureConfigurations?: RegisteredUserDashboardFeatureConfigurations | undefined;
887
887
  }
888
888
  /**
889
889
  * <p>The experience that you are embedding. You can use this object to generate a url that embeds a visual into your application.</p>
@@ -909,7 +909,7 @@ export interface RegisteredUserGenerativeQnAEmbeddingConfiguration {
909
909
  * <p>If you don't specify an initial topic or you specify a legacy topic, a list of all shared new reader experience topics is shown in the Generative Q&A experience for your readers. When you select an initial new reader experience topic, you can specify whether or not readers are allowed to select other new reader experience topics from the available ones in the list.</p>
910
910
  * @public
911
911
  */
912
- InitialTopicId?: string;
912
+ InitialTopicId?: string | undefined;
913
913
  }
914
914
  /**
915
915
  * <p>Information about the Q search bar embedding experience.</p>
@@ -922,7 +922,7 @@ export interface RegisteredUserQSearchBarEmbeddingConfiguration {
922
922
  * <p>If you don't specify an initial topic or if you specify a new reader experience topic, a list of all shared legacy topics is shown in the Q bar. </p>
923
923
  * @public
924
924
  */
925
- InitialTopicId?: string;
925
+ InitialTopicId?: string | undefined;
926
926
  }
927
927
  /**
928
928
  * <p>The feature configurations of an embedded Amazon QuickSight console.</p>
@@ -933,12 +933,12 @@ export interface RegisteredUserConsoleFeatureConfigurations {
933
933
  * <p>The state persistence configurations of an embedded Amazon QuickSight console.</p>
934
934
  * @public
935
935
  */
936
- StatePersistence?: StatePersistenceConfigurations;
936
+ StatePersistence?: StatePersistenceConfigurations | undefined;
937
937
  /**
938
938
  * <p>The shared view settings of an embedded dashboard.</p>
939
939
  * @public
940
940
  */
941
- SharedView?: SharedViewConfigurations;
941
+ SharedView?: SharedViewConfigurations | undefined;
942
942
  }
943
943
  /**
944
944
  * <p>Information about the Amazon QuickSight console that you want to embed.</p>
@@ -980,12 +980,12 @@ export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
980
980
  * </ul>
981
981
  * @public
982
982
  */
983
- InitialPath?: string;
983
+ InitialPath?: string | undefined;
984
984
  /**
985
985
  * <p>The embedding configuration of an embedded Amazon QuickSight console.</p>
986
986
  * @public
987
987
  */
988
- FeatureConfigurations?: RegisteredUserConsoleFeatureConfigurations;
988
+ FeatureConfigurations?: RegisteredUserConsoleFeatureConfigurations | undefined;
989
989
  }
990
990
  /**
991
991
  * <p>The type of experience you want to embed. For registered users, you can embed Amazon QuickSight dashboards or the Amazon QuickSight console.</p>
@@ -1001,7 +1001,7 @@ export interface RegisteredUserEmbeddingExperienceConfiguration {
1001
1001
  * <p>The configuration details for providing a dashboard embedding experience.</p>
1002
1002
  * @public
1003
1003
  */
1004
- Dashboard?: RegisteredUserDashboardEmbeddingConfiguration;
1004
+ Dashboard?: RegisteredUserDashboardEmbeddingConfiguration | undefined;
1005
1005
  /**
1006
1006
  * <p>The configuration details for providing each Amazon QuickSight console embedding experience. This can be used along with custom permissions to restrict access to certain features. For more information, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/customizing-permissions-to-the-quicksight-console.html">Customizing Access to the Amazon QuickSight Console</a> in the <i>Amazon QuickSight User
1007
1007
  * Guide</i>.</p>
@@ -1035,26 +1035,26 @@ export interface RegisteredUserEmbeddingExperienceConfiguration {
1035
1035
  * <p>For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the <a href="https://docs.aws.amazon.com/quicksight/latest/user/quicksight-dev-portal.html">Amazon QuickSight Developer Portal</a>.</p>
1036
1036
  * @public
1037
1037
  */
1038
- QuickSightConsole?: RegisteredUserQuickSightConsoleEmbeddingConfiguration;
1038
+ QuickSightConsole?: RegisteredUserQuickSightConsoleEmbeddingConfiguration | undefined;
1039
1039
  /**
1040
1040
  * <p>The configuration details for embedding the Q search bar.</p>
1041
1041
  * <p>For more information about embedding the Q search bar, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/embedding-overview.html">Embedding Overview</a> in
1042
1042
  * the <i>Amazon QuickSight User Guide</i>.</p>
1043
1043
  * @public
1044
1044
  */
1045
- QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration;
1045
+ QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration | undefined;
1046
1046
  /**
1047
1047
  * <p>The type of embedding experience. In this case, Amazon QuickSight visuals.</p>
1048
1048
  * @public
1049
1049
  */
1050
- DashboardVisual?: RegisteredUserDashboardVisualEmbeddingConfiguration;
1050
+ DashboardVisual?: RegisteredUserDashboardVisualEmbeddingConfiguration | undefined;
1051
1051
  /**
1052
1052
  * <p>The configuration details for embedding the Generative Q&A experience.</p>
1053
1053
  * <p>For more information about embedding the Generative Q&A experience, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/embedding-overview.html">Embedding Overview</a> in
1054
1054
  * the <i>Amazon QuickSight User Guide</i>.</p>
1055
1055
  * @public
1056
1056
  */
1057
- GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration;
1057
+ GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration | undefined;
1058
1058
  }
1059
1059
  /**
1060
1060
  * @public
@@ -1069,7 +1069,7 @@ export interface GenerateEmbedUrlForRegisteredUserRequest {
1069
1069
  * <p>How many minutes the session is valid. The session lifetime must be in [15-600] minutes range.</p>
1070
1070
  * @public
1071
1071
  */
1072
- SessionLifetimeInMinutes?: number;
1072
+ SessionLifetimeInMinutes?: number | undefined;
1073
1073
  /**
1074
1074
  * <p>The Amazon Resource Name for the registered user.</p>
1075
1075
  * @public
@@ -1091,7 +1091,7 @@ export interface GenerateEmbedUrlForRegisteredUserRequest {
1091
1091
  * <code>https://sapp.amazon.com</code>.</p>
1092
1092
  * @public
1093
1093
  */
1094
- AllowedDomains?: string[];
1094
+ AllowedDomains?: string[] | undefined;
1095
1095
  }
1096
1096
  /**
1097
1097
  * @public
@@ -1122,12 +1122,12 @@ export interface GenerateEmbedUrlForRegisteredUserResponse {
1122
1122
  export declare class QuickSightUserNotFoundException extends __BaseException {
1123
1123
  readonly name: "QuickSightUserNotFoundException";
1124
1124
  readonly $fault: "client";
1125
- Message?: string;
1125
+ Message?: string | undefined;
1126
1126
  /**
1127
1127
  * <p>The Amazon Web Services request ID for this request.</p>
1128
1128
  * @public
1129
1129
  */
1130
- RequestId?: string;
1130
+ RequestId?: string | undefined;
1131
1131
  /**
1132
1132
  * @internal
1133
1133
  */
@@ -1157,19 +1157,19 @@ export interface GetDashboardEmbedUrlRequest {
1157
1157
  * <p>How many minutes the session is valid. The session lifetime must be 15-600 minutes.</p>
1158
1158
  * @public
1159
1159
  */
1160
- SessionLifetimeInMinutes?: number;
1160
+ SessionLifetimeInMinutes?: number | undefined;
1161
1161
  /**
1162
1162
  * <p>Remove the undo/redo button on the embedded dashboard. The default is FALSE, which enables
1163
1163
  * the undo/redo button.</p>
1164
1164
  * @public
1165
1165
  */
1166
- UndoRedoDisabled?: boolean;
1166
+ UndoRedoDisabled?: boolean | undefined;
1167
1167
  /**
1168
1168
  * <p>Remove the reset button on the embedded dashboard. The default is FALSE, which enables the
1169
1169
  * reset button.</p>
1170
1170
  * @public
1171
1171
  */
1172
- ResetDisabled?: boolean;
1172
+ ResetDisabled?: boolean | undefined;
1173
1173
  /**
1174
1174
  * <p>Adds persistence of state for the user session in an embedded dashboard. Persistence
1175
1175
  * applies to the sheet and the parameter settings. These are control settings that the
@@ -1180,7 +1180,7 @@ export interface GetDashboardEmbedUrlRequest {
1180
1180
  * <code>FALSE</code>.</p>
1181
1181
  * @public
1182
1182
  */
1183
- StatePersistenceEnabled?: boolean;
1183
+ StatePersistenceEnabled?: boolean | undefined;
1184
1184
  /**
1185
1185
  * <p>The Amazon QuickSight user's Amazon Resource Name (ARN), for use with <code>QUICKSIGHT</code> identity type.
1186
1186
  * You can use this for any Amazon QuickSight users in your account (readers, authors, or
@@ -1201,18 +1201,18 @@ export interface GetDashboardEmbedUrlRequest {
1201
1201
  * role-based sessions.</p>
1202
1202
  * @public
1203
1203
  */
1204
- UserArn?: string;
1204
+ UserArn?: string | undefined;
1205
1205
  /**
1206
1206
  * <p>The Amazon QuickSight namespace that contains the dashboard IDs in this request.
1207
1207
  * If you're not using a custom namespace, set <code>Namespace = default</code>.</p>
1208
1208
  * @public
1209
1209
  */
1210
- Namespace?: string;
1210
+ Namespace?: string | undefined;
1211
1211
  /**
1212
1212
  * <p>A list of one or more dashboard IDs that you want anonymous users to have tempporary access to. Currently, the <code>IdentityType</code> parameter must be set to <code>ANONYMOUS</code> because other identity types authenticate as Amazon QuickSight or IAM users. For example, if you set "<code>--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3 identity-type ANONYMOUS</code>", the session can access all three dashboards.</p>
1213
1213
  * @public
1214
1214
  */
1215
- AdditionalDashboardIds?: string[];
1215
+ AdditionalDashboardIds?: string[] | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * <p>Output returned from the <code>GetDashboardEmbedUrl</code> operation.</p>
@@ -1226,17 +1226,17 @@ export interface GetDashboardEmbedUrlResponse {
1226
1226
  * that is valid for 10 hours. </p>
1227
1227
  * @public
1228
1228
  */
1229
- EmbedUrl?: string;
1229
+ EmbedUrl?: string | undefined;
1230
1230
  /**
1231
1231
  * <p>The HTTP status of the request.</p>
1232
1232
  * @public
1233
1233
  */
1234
- Status?: number;
1234
+ Status?: number | undefined;
1235
1235
  /**
1236
1236
  * <p>The Amazon Web Services request ID for this operation.</p>
1237
1237
  * @public
1238
1238
  */
1239
- RequestId?: string;
1239
+ RequestId?: string | undefined;
1240
1240
  }
1241
1241
  /**
1242
1242
  * <p>The identity type specified isn't supported. Supported identity types include
@@ -1246,12 +1246,12 @@ export interface GetDashboardEmbedUrlResponse {
1246
1246
  export declare class IdentityTypeNotSupportedException extends __BaseException {
1247
1247
  readonly name: "IdentityTypeNotSupportedException";
1248
1248
  readonly $fault: "client";
1249
- Message?: string;
1249
+ Message?: string | undefined;
1250
1250
  /**
1251
1251
  * <p>The Amazon Web Services request ID for this request.</p>
1252
1252
  * @public
1253
1253
  */
1254
- RequestId?: string;
1254
+ RequestId?: string | undefined;
1255
1255
  /**
1256
1256
  * @internal
1257
1257
  */
@@ -1303,12 +1303,12 @@ export interface GetSessionEmbedUrlRequest {
1303
1303
  * </ul>
1304
1304
  * @public
1305
1305
  */
1306
- EntryPoint?: string;
1306
+ EntryPoint?: string | undefined;
1307
1307
  /**
1308
1308
  * <p>How many minutes the session is valid. The session lifetime must be 15-600 minutes.</p>
1309
1309
  * @public
1310
1310
  */
1311
- SessionLifetimeInMinutes?: number;
1311
+ SessionLifetimeInMinutes?: number | undefined;
1312
1312
  /**
1313
1313
  * <p>The Amazon QuickSight user's Amazon Resource Name (ARN), for use with <code>QUICKSIGHT</code> identity type.
1314
1314
  * You can use this for any type of Amazon QuickSight users in your account (readers, authors, or
@@ -1330,7 +1330,7 @@ export interface GetSessionEmbedUrlRequest {
1330
1330
  * sessions.</p>
1331
1331
  * @public
1332
1332
  */
1333
- UserArn?: string;
1333
+ UserArn?: string | undefined;
1334
1334
  }
1335
1335
  /**
1336
1336
  * @public
@@ -1343,17 +1343,17 @@ export interface GetSessionEmbedUrlResponse {
1343
1343
  * that is valid for 10 hours. </p>
1344
1344
  * @public
1345
1345
  */
1346
- EmbedUrl?: string;
1346
+ EmbedUrl?: string | undefined;
1347
1347
  /**
1348
1348
  * <p>The HTTP status of the request.</p>
1349
1349
  * @public
1350
1350
  */
1351
- Status?: number;
1351
+ Status?: number | undefined;
1352
1352
  /**
1353
1353
  * <p>The Amazon Web Services request ID for this operation.</p>
1354
1354
  * @public
1355
1355
  */
1356
- RequestId?: string;
1356
+ RequestId?: string | undefined;
1357
1357
  }
1358
1358
  /**
1359
1359
  * @public
@@ -1411,12 +1411,12 @@ export interface IAMPolicyAssignmentSummary {
1411
1411
  * <p>Assignment name.</p>
1412
1412
  * @public
1413
1413
  */
1414
- AssignmentName?: string;
1414
+ AssignmentName?: string | undefined;
1415
1415
  /**
1416
1416
  * <p>Assignment status.</p>
1417
1417
  * @public
1418
1418
  */
1419
- AssignmentStatus?: AssignmentStatus;
1419
+ AssignmentStatus?: AssignmentStatus | undefined;
1420
1420
  }
1421
1421
  /**
1422
1422
  * <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
@@ -1425,12 +1425,12 @@ export interface IAMPolicyAssignmentSummary {
1425
1425
  export declare class InvalidRequestException extends __BaseException {
1426
1426
  readonly name: "InvalidRequestException";
1427
1427
  readonly $fault: "client";
1428
- Message?: string;
1428
+ Message?: string | undefined;
1429
1429
  /**
1430
1430
  * <p>The Amazon Web Services request ID for this request.</p>
1431
1431
  * @public
1432
1432
  */
1433
- RequestId?: string;
1433
+ RequestId?: string | undefined;
1434
1434
  /**
1435
1435
  * @internal
1436
1436
  */
@@ -1449,12 +1449,12 @@ export interface ListAnalysesRequest {
1449
1449
  * <p>A pagination token that can be used in a subsequent request.</p>
1450
1450
  * @public
1451
1451
  */
1452
- NextToken?: string;
1452
+ NextToken?: string | undefined;
1453
1453
  /**
1454
1454
  * <p>The maximum number of results to return.</p>
1455
1455
  * @public
1456
1456
  */
1457
- MaxResults?: number;
1457
+ MaxResults?: number | undefined;
1458
1458
  }
1459
1459
  /**
1460
1460
  * @public
@@ -1464,22 +1464,22 @@ export interface ListAnalysesResponse {
1464
1464
  * <p>Metadata describing each of the analyses that are listed.</p>
1465
1465
  * @public
1466
1466
  */
1467
- AnalysisSummaryList?: AnalysisSummary[];
1467
+ AnalysisSummaryList?: AnalysisSummary[] | undefined;
1468
1468
  /**
1469
1469
  * <p>A pagination token that can be used in a subsequent request.</p>
1470
1470
  * @public
1471
1471
  */
1472
- NextToken?: string;
1472
+ NextToken?: string | undefined;
1473
1473
  /**
1474
1474
  * <p>The HTTP status of the request.</p>
1475
1475
  * @public
1476
1476
  */
1477
- Status?: number;
1477
+ Status?: number | undefined;
1478
1478
  /**
1479
1479
  * <p>The Amazon Web Services request ID for this operation.</p>
1480
1480
  * @public
1481
1481
  */
1482
- RequestId?: string;
1482
+ RequestId?: string | undefined;
1483
1483
  }
1484
1484
  /**
1485
1485
  * @public
@@ -1494,12 +1494,12 @@ export interface ListAssetBundleExportJobsRequest {
1494
1494
  * <p>The token for the next set of results, or null if there are no more results.</p>
1495
1495
  * @public
1496
1496
  */
1497
- NextToken?: string;
1497
+ NextToken?: string | undefined;
1498
1498
  /**
1499
1499
  * <p>The maximum number of results to be returned per request.</p>
1500
1500
  * @public
1501
1501
  */
1502
- MaxResults?: number;
1502
+ MaxResults?: number | undefined;
1503
1503
  }
1504
1504
  /**
1505
1505
  * @public
@@ -1509,22 +1509,22 @@ export interface ListAssetBundleExportJobsResponse {
1509
1509
  * <p>A list of export job summaries.</p>
1510
1510
  * @public
1511
1511
  */
1512
- AssetBundleExportJobSummaryList?: AssetBundleExportJobSummary[];
1512
+ AssetBundleExportJobSummaryList?: AssetBundleExportJobSummary[] | undefined;
1513
1513
  /**
1514
1514
  * <p>The token for the next set of results, or null if there are no more results.</p>
1515
1515
  * @public
1516
1516
  */
1517
- NextToken?: string;
1517
+ NextToken?: string | undefined;
1518
1518
  /**
1519
1519
  * <p>The Amazon Web Services request ID for this operation.</p>
1520
1520
  * @public
1521
1521
  */
1522
- RequestId?: string;
1522
+ RequestId?: string | undefined;
1523
1523
  /**
1524
1524
  * <p>The HTTP status of the request.</p>
1525
1525
  * @public
1526
1526
  */
1527
- Status?: number;
1527
+ Status?: number | undefined;
1528
1528
  }
1529
1529
  /**
1530
1530
  * @public
@@ -1539,12 +1539,12 @@ export interface ListAssetBundleImportJobsRequest {
1539
1539
  * <p>The token for the next set of results, or null if there are no more results.</p>
1540
1540
  * @public
1541
1541
  */
1542
- NextToken?: string;
1542
+ NextToken?: string | undefined;
1543
1543
  /**
1544
1544
  * <p>The maximum number of results to be returned per request.</p>
1545
1545
  * @public
1546
1546
  */
1547
- MaxResults?: number;
1547
+ MaxResults?: number | undefined;
1548
1548
  }
1549
1549
  /**
1550
1550
  * @public
@@ -1554,22 +1554,22 @@ export interface ListAssetBundleImportJobsResponse {
1554
1554
  * <p>A list of import job summaries.</p>
1555
1555
  * @public
1556
1556
  */
1557
- AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[];
1557
+ AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[] | undefined;
1558
1558
  /**
1559
1559
  * <p>The token for the next set of results, or null if there are no more results.</p>
1560
1560
  * @public
1561
1561
  */
1562
- NextToken?: string;
1562
+ NextToken?: string | undefined;
1563
1563
  /**
1564
1564
  * <p>The Amazon Web Services request ID for this operation.</p>
1565
1565
  * @public
1566
1566
  */
1567
- RequestId?: string;
1567
+ RequestId?: string | undefined;
1568
1568
  /**
1569
1569
  * <p>The HTTP status of the response.</p>
1570
1570
  * @public
1571
1571
  */
1572
- Status?: number;
1572
+ Status?: number | undefined;
1573
1573
  }
1574
1574
  /**
1575
1575
  * @public
@@ -1585,12 +1585,12 @@ export interface ListDashboardsRequest {
1585
1585
  * <p>The token for the next set of results, or null if there are no more results.</p>
1586
1586
  * @public
1587
1587
  */
1588
- NextToken?: string;
1588
+ NextToken?: string | undefined;
1589
1589
  /**
1590
1590
  * <p>The maximum number of results to be returned per request.</p>
1591
1591
  * @public
1592
1592
  */
1593
- MaxResults?: number;
1593
+ MaxResults?: number | undefined;
1594
1594
  }
1595
1595
  /**
1596
1596
  * @public
@@ -1601,22 +1601,22 @@ export interface ListDashboardsResponse {
1601
1601
  * provides basic information about the dashboards.</p>
1602
1602
  * @public
1603
1603
  */
1604
- DashboardSummaryList?: DashboardSummary[];
1604
+ DashboardSummaryList?: DashboardSummary[] | undefined;
1605
1605
  /**
1606
1606
  * <p>The token for the next set of results, or null if there are no more results.</p>
1607
1607
  * @public
1608
1608
  */
1609
- NextToken?: string;
1609
+ NextToken?: string | undefined;
1610
1610
  /**
1611
1611
  * <p>The HTTP status of the request.</p>
1612
1612
  * @public
1613
1613
  */
1614
- Status?: number;
1614
+ Status?: number | undefined;
1615
1615
  /**
1616
1616
  * <p>The Amazon Web Services request ID for this operation.</p>
1617
1617
  * @public
1618
1618
  */
1619
- RequestId?: string;
1619
+ RequestId?: string | undefined;
1620
1620
  }
1621
1621
  /**
1622
1622
  * @public
@@ -1637,12 +1637,12 @@ export interface ListDashboardVersionsRequest {
1637
1637
  * <p>The token for the next set of results, or null if there are no more results.</p>
1638
1638
  * @public
1639
1639
  */
1640
- NextToken?: string;
1640
+ NextToken?: string | undefined;
1641
1641
  /**
1642
1642
  * <p>The maximum number of results to be returned per request.</p>
1643
1643
  * @public
1644
1644
  */
1645
- MaxResults?: number;
1645
+ MaxResults?: number | undefined;
1646
1646
  }
1647
1647
  /**
1648
1648
  * @public
@@ -1652,22 +1652,22 @@ export interface ListDashboardVersionsResponse {
1652
1652
  * <p>A structure that contains information about each version of the dashboard.</p>
1653
1653
  * @public
1654
1654
  */
1655
- DashboardVersionSummaryList?: DashboardVersionSummary[];
1655
+ DashboardVersionSummaryList?: DashboardVersionSummary[] | undefined;
1656
1656
  /**
1657
1657
  * <p>The token for the next set of results, or null if there are no more results.</p>
1658
1658
  * @public
1659
1659
  */
1660
- NextToken?: string;
1660
+ NextToken?: string | undefined;
1661
1661
  /**
1662
1662
  * <p>The HTTP status of the request.</p>
1663
1663
  * @public
1664
1664
  */
1665
- Status?: number;
1665
+ Status?: number | undefined;
1666
1666
  /**
1667
1667
  * <p>The Amazon Web Services request ID for this operation.</p>
1668
1668
  * @public
1669
1669
  */
1670
- RequestId?: string;
1670
+ RequestId?: string | undefined;
1671
1671
  }
1672
1672
  /**
1673
1673
  * @public
@@ -1682,12 +1682,12 @@ export interface ListDataSetsRequest {
1682
1682
  * <p>The token for the next set of results, or null if there are no more results.</p>
1683
1683
  * @public
1684
1684
  */
1685
- NextToken?: string;
1685
+ NextToken?: string | undefined;
1686
1686
  /**
1687
1687
  * <p>The maximum number of results to be returned per request.</p>
1688
1688
  * @public
1689
1689
  */
1690
- MaxResults?: number;
1690
+ MaxResults?: number | undefined;
1691
1691
  }
1692
1692
  /**
1693
1693
  * @public
@@ -1697,22 +1697,22 @@ export interface ListDataSetsResponse {
1697
1697
  * <p>The list of dataset summaries.</p>
1698
1698
  * @public
1699
1699
  */
1700
- DataSetSummaries?: DataSetSummary[];
1700
+ DataSetSummaries?: DataSetSummary[] | undefined;
1701
1701
  /**
1702
1702
  * <p>The token for the next set of results, or null if there are no more results.</p>
1703
1703
  * @public
1704
1704
  */
1705
- NextToken?: string;
1705
+ NextToken?: string | undefined;
1706
1706
  /**
1707
1707
  * <p>The Amazon Web Services request ID for this operation.</p>
1708
1708
  * @public
1709
1709
  */
1710
- RequestId?: string;
1710
+ RequestId?: string | undefined;
1711
1711
  /**
1712
1712
  * <p>The HTTP status of the request.</p>
1713
1713
  * @public
1714
1714
  */
1715
- Status?: number;
1715
+ Status?: number | undefined;
1716
1716
  }
1717
1717
  /**
1718
1718
  * @public
@@ -1727,12 +1727,12 @@ export interface ListDataSourcesRequest {
1727
1727
  * <p>The token for the next set of results, or null if there are no more results.</p>
1728
1728
  * @public
1729
1729
  */
1730
- NextToken?: string;
1730
+ NextToken?: string | undefined;
1731
1731
  /**
1732
1732
  * <p>The maximum number of results to be returned per request.</p>
1733
1733
  * @public
1734
1734
  */
1735
- MaxResults?: number;
1735
+ MaxResults?: number | undefined;
1736
1736
  }
1737
1737
  /**
1738
1738
  * @public
@@ -1742,22 +1742,22 @@ export interface ListDataSourcesResponse {
1742
1742
  * <p>A list of data sources.</p>
1743
1743
  * @public
1744
1744
  */
1745
- DataSources?: DataSource[];
1745
+ DataSources?: DataSource[] | undefined;
1746
1746
  /**
1747
1747
  * <p>The token for the next set of results, or null if there are no more results.</p>
1748
1748
  * @public
1749
1749
  */
1750
- NextToken?: string;
1750
+ NextToken?: string | undefined;
1751
1751
  /**
1752
1752
  * <p>The Amazon Web Services request ID for this operation.</p>
1753
1753
  * @public
1754
1754
  */
1755
- RequestId?: string;
1755
+ RequestId?: string | undefined;
1756
1756
  /**
1757
1757
  * <p>The HTTP status of the request.</p>
1758
1758
  * @public
1759
1759
  */
1760
- Status?: number;
1760
+ Status?: number | undefined;
1761
1761
  }
1762
1762
  /**
1763
1763
  * @public
@@ -1777,12 +1777,12 @@ export interface ListFolderMembersRequest {
1777
1777
  * <p>The token for the next set of results, or null if there are no more results.</p>
1778
1778
  * @public
1779
1779
  */
1780
- NextToken?: string;
1780
+ NextToken?: string | undefined;
1781
1781
  /**
1782
1782
  * <p>The maximum number of results to be returned per request.</p>
1783
1783
  * @public
1784
1784
  */
1785
- MaxResults?: number;
1785
+ MaxResults?: number | undefined;
1786
1786
  }
1787
1787
  /**
1788
1788
  * @public
@@ -1792,22 +1792,22 @@ export interface ListFolderMembersResponse {
1792
1792
  * <p>The HTTP status of the request.</p>
1793
1793
  * @public
1794
1794
  */
1795
- Status?: number;
1795
+ Status?: number | undefined;
1796
1796
  /**
1797
1797
  * <p>A structure that contains all of the folder members (dashboards, analyses, and datasets) in the folder.</p>
1798
1798
  * @public
1799
1799
  */
1800
- FolderMemberList?: MemberIdArnPair[];
1800
+ FolderMemberList?: MemberIdArnPair[] | undefined;
1801
1801
  /**
1802
1802
  * <p>The token for the next set of results, or null if there are no more results.</p>
1803
1803
  * @public
1804
1804
  */
1805
- NextToken?: string;
1805
+ NextToken?: string | undefined;
1806
1806
  /**
1807
1807
  * <p>The Amazon Web Services request ID for this operation.</p>
1808
1808
  * @public
1809
1809
  */
1810
- RequestId?: string;
1810
+ RequestId?: string | undefined;
1811
1811
  }
1812
1812
  /**
1813
1813
  * @public
@@ -1822,12 +1822,12 @@ export interface ListFoldersRequest {
1822
1822
  * <p>The token for the next set of results, or null if there are no more results.</p>
1823
1823
  * @public
1824
1824
  */
1825
- NextToken?: string;
1825
+ NextToken?: string | undefined;
1826
1826
  /**
1827
1827
  * <p>The maximum number of results to be returned per request.</p>
1828
1828
  * @public
1829
1829
  */
1830
- MaxResults?: number;
1830
+ MaxResults?: number | undefined;
1831
1831
  }
1832
1832
  /**
1833
1833
  * @public
@@ -1837,22 +1837,22 @@ export interface ListFoldersResponse {
1837
1837
  * <p>The HTTP status of the request.</p>
1838
1838
  * @public
1839
1839
  */
1840
- Status?: number;
1840
+ Status?: number | undefined;
1841
1841
  /**
1842
1842
  * <p>A structure that contains all of the folders in the Amazon Web Services account. This structure provides basic information about the folders.</p>
1843
1843
  * @public
1844
1844
  */
1845
- FolderSummaryList?: FolderSummary[];
1845
+ FolderSummaryList?: FolderSummary[] | undefined;
1846
1846
  /**
1847
1847
  * <p>The token for the next set of results, or null if there are no more results.</p>
1848
1848
  * @public
1849
1849
  */
1850
- NextToken?: string;
1850
+ NextToken?: string | undefined;
1851
1851
  /**
1852
1852
  * <p>The Amazon Web Services request ID for this operation.</p>
1853
1853
  * @public
1854
1854
  */
1855
- RequestId?: string;
1855
+ RequestId?: string | undefined;
1856
1856
  }
1857
1857
  /**
1858
1858
  * @public
@@ -1872,12 +1872,12 @@ export interface ListFoldersForResourceRequest {
1872
1872
  * <p>The token for the next set of results, or null if there are no more results.</p>
1873
1873
  * @public
1874
1874
  */
1875
- NextToken?: string;
1875
+ NextToken?: string | undefined;
1876
1876
  /**
1877
1877
  * <p>The maximum number of results to be returned per request.</p>
1878
1878
  * @public
1879
1879
  */
1880
- MaxResults?: number;
1880
+ MaxResults?: number | undefined;
1881
1881
  }
1882
1882
  /**
1883
1883
  * @public
@@ -1887,22 +1887,22 @@ export interface ListFoldersForResourceResponse {
1887
1887
  * <p>The HTTP status of the request.</p>
1888
1888
  * @public
1889
1889
  */
1890
- Status?: number;
1890
+ Status?: number | undefined;
1891
1891
  /**
1892
1892
  * <p>A list that contains the Amazon Resource Names (ARNs) of all folders that the resource is a member of.</p>
1893
1893
  * @public
1894
1894
  */
1895
- Folders?: string[];
1895
+ Folders?: string[] | undefined;
1896
1896
  /**
1897
1897
  * <p>The token for the next set of results, or null if there are no more results.</p>
1898
1898
  * @public
1899
1899
  */
1900
- NextToken?: string;
1900
+ NextToken?: string | undefined;
1901
1901
  /**
1902
1902
  * <p>The Amazon Web Services request ID for this operation.</p>
1903
1903
  * @public
1904
1904
  */
1905
- RequestId?: string;
1905
+ RequestId?: string | undefined;
1906
1906
  }
1907
1907
  /**
1908
1908
  * @public
@@ -1917,12 +1917,12 @@ export interface ListGroupMembershipsRequest {
1917
1917
  * <p>A pagination token that can be used in a subsequent request.</p>
1918
1918
  * @public
1919
1919
  */
1920
- NextToken?: string;
1920
+ NextToken?: string | undefined;
1921
1921
  /**
1922
1922
  * <p>The maximum number of results to return from this request.</p>
1923
1923
  * @public
1924
1924
  */
1925
- MaxResults?: number;
1925
+ MaxResults?: number | undefined;
1926
1926
  /**
1927
1927
  * <p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the
1928
1928
  * Amazon Web Services account that contains your Amazon QuickSight account.</p>
@@ -1943,22 +1943,22 @@ export interface ListGroupMembershipsResponse {
1943
1943
  * <p>The list of the members of the group.</p>
1944
1944
  * @public
1945
1945
  */
1946
- GroupMemberList?: GroupMember[];
1946
+ GroupMemberList?: GroupMember[] | undefined;
1947
1947
  /**
1948
1948
  * <p>A pagination token that can be used in a subsequent request.</p>
1949
1949
  * @public
1950
1950
  */
1951
- NextToken?: string;
1951
+ NextToken?: string | undefined;
1952
1952
  /**
1953
1953
  * <p>The Amazon Web Services request ID for this operation.</p>
1954
1954
  * @public
1955
1955
  */
1956
- RequestId?: string;
1956
+ RequestId?: string | undefined;
1957
1957
  /**
1958
1958
  * <p>The HTTP status of the request.</p>
1959
1959
  * @public
1960
1960
  */
1961
- Status?: number;
1961
+ Status?: number | undefined;
1962
1962
  }
1963
1963
  /**
1964
1964
  * @public
@@ -1974,12 +1974,12 @@ export interface ListGroupsRequest {
1974
1974
  * <p>A pagination token that can be used in a subsequent request.</p>
1975
1975
  * @public
1976
1976
  */
1977
- NextToken?: string;
1977
+ NextToken?: string | undefined;
1978
1978
  /**
1979
1979
  * <p>The maximum number of results to return.</p>
1980
1980
  * @public
1981
1981
  */
1982
- MaxResults?: number;
1982
+ MaxResults?: number | undefined;
1983
1983
  /**
1984
1984
  * <p>The namespace that you want a list of groups from.</p>
1985
1985
  * @public
@@ -1994,22 +1994,22 @@ export interface ListGroupsResponse {
1994
1994
  * <p>The list of the groups.</p>
1995
1995
  * @public
1996
1996
  */
1997
- GroupList?: Group[];
1997
+ GroupList?: Group[] | undefined;
1998
1998
  /**
1999
1999
  * <p>A pagination token that can be used in a subsequent request.</p>
2000
2000
  * @public
2001
2001
  */
2002
- NextToken?: string;
2002
+ NextToken?: string | undefined;
2003
2003
  /**
2004
2004
  * <p>The Amazon Web Services request ID for this operation.</p>
2005
2005
  * @public
2006
2006
  */
2007
- RequestId?: string;
2007
+ RequestId?: string | undefined;
2008
2008
  /**
2009
2009
  * <p>The HTTP status of the request.</p>
2010
2010
  * @public
2011
2011
  */
2012
- Status?: number;
2012
+ Status?: number | undefined;
2013
2013
  }
2014
2014
  /**
2015
2015
  * @public
@@ -2025,7 +2025,7 @@ export interface ListIAMPolicyAssignmentsRequest {
2025
2025
  * <p>The status of the assignments.</p>
2026
2026
  * @public
2027
2027
  */
2028
- AssignmentStatus?: AssignmentStatus;
2028
+ AssignmentStatus?: AssignmentStatus | undefined;
2029
2029
  /**
2030
2030
  * <p>The namespace for the assignments.</p>
2031
2031
  * @public
@@ -2035,12 +2035,12 @@ export interface ListIAMPolicyAssignmentsRequest {
2035
2035
  * <p>The token for the next set of results, or null if there are no more results.</p>
2036
2036
  * @public
2037
2037
  */
2038
- NextToken?: string;
2038
+ NextToken?: string | undefined;
2039
2039
  /**
2040
2040
  * <p>The maximum number of results to be returned per request.</p>
2041
2041
  * @public
2042
2042
  */
2043
- MaxResults?: number;
2043
+ MaxResults?: number | undefined;
2044
2044
  }
2045
2045
  /**
2046
2046
  * @public
@@ -2050,22 +2050,22 @@ export interface ListIAMPolicyAssignmentsResponse {
2050
2050
  * <p>Information describing the IAM policy assignments.</p>
2051
2051
  * @public
2052
2052
  */
2053
- IAMPolicyAssignments?: IAMPolicyAssignmentSummary[];
2053
+ IAMPolicyAssignments?: IAMPolicyAssignmentSummary[] | undefined;
2054
2054
  /**
2055
2055
  * <p>The token for the next set of results, or null if there are no more results.</p>
2056
2056
  * @public
2057
2057
  */
2058
- NextToken?: string;
2058
+ NextToken?: string | undefined;
2059
2059
  /**
2060
2060
  * <p>The Amazon Web Services request ID for this operation.</p>
2061
2061
  * @public
2062
2062
  */
2063
- RequestId?: string;
2063
+ RequestId?: string | undefined;
2064
2064
  /**
2065
2065
  * <p>The HTTP status of the request.</p>
2066
2066
  * @public
2067
2067
  */
2068
- Status?: number;
2068
+ Status?: number | undefined;
2069
2069
  }
2070
2070
  /**
2071
2071
  * @public
@@ -2085,12 +2085,12 @@ export interface ListIAMPolicyAssignmentsForUserRequest {
2085
2085
  * <p>The token for the next set of results, or null if there are no more results.</p>
2086
2086
  * @public
2087
2087
  */
2088
- NextToken?: string;
2088
+ NextToken?: string | undefined;
2089
2089
  /**
2090
2090
  * <p>The maximum number of results to be returned per request.</p>
2091
2091
  * @public
2092
2092
  */
2093
- MaxResults?: number;
2093
+ MaxResults?: number | undefined;
2094
2094
  /**
2095
2095
  * <p>The namespace of the assignment.</p>
2096
2096
  * @public
@@ -2105,22 +2105,22 @@ export interface ListIAMPolicyAssignmentsForUserResponse {
2105
2105
  * <p>The active assignments for this user.</p>
2106
2106
  * @public
2107
2107
  */
2108
- ActiveAssignments?: ActiveIAMPolicyAssignment[];
2108
+ ActiveAssignments?: ActiveIAMPolicyAssignment[] | undefined;
2109
2109
  /**
2110
2110
  * <p>The Amazon Web Services request ID for this operation.</p>
2111
2111
  * @public
2112
2112
  */
2113
- RequestId?: string;
2113
+ RequestId?: string | undefined;
2114
2114
  /**
2115
2115
  * <p>The token for the next set of results, or null if there are no more results.</p>
2116
2116
  * @public
2117
2117
  */
2118
- NextToken?: string;
2118
+ NextToken?: string | undefined;
2119
2119
  /**
2120
2120
  * <p>The HTTP status of the request.</p>
2121
2121
  * @public
2122
2122
  */
2123
- Status?: number;
2123
+ Status?: number | undefined;
2124
2124
  }
2125
2125
  /**
2126
2126
  * @public
@@ -2135,12 +2135,12 @@ export interface ListIdentityPropagationConfigsRequest {
2135
2135
  * <p>The maximum number of results to be returned.</p>
2136
2136
  * @public
2137
2137
  */
2138
- MaxResults?: number;
2138
+ MaxResults?: number | undefined;
2139
2139
  /**
2140
2140
  * <p>The token for the next set of results, or null if there are no more results.</p>
2141
2141
  * @public
2142
2142
  */
2143
- NextToken?: string;
2143
+ NextToken?: string | undefined;
2144
2144
  }
2145
2145
  /**
2146
2146
  * @public
@@ -2150,22 +2150,22 @@ export interface ListIdentityPropagationConfigsResponse {
2150
2150
  * <p>A list of services and their authorized targets that the Amazon QuickSight IAM Identity Center application can access.</p>
2151
2151
  * @public
2152
2152
  */
2153
- Services?: AuthorizedTargetsByService[];
2153
+ Services?: AuthorizedTargetsByService[] | undefined;
2154
2154
  /**
2155
2155
  * <p>The token for the next set of results, or null if there are no more results.</p>
2156
2156
  * @public
2157
2157
  */
2158
- NextToken?: string;
2158
+ NextToken?: string | undefined;
2159
2159
  /**
2160
2160
  * <p>The HTTP status of the request.</p>
2161
2161
  * @public
2162
2162
  */
2163
- Status?: number;
2163
+ Status?: number | undefined;
2164
2164
  /**
2165
2165
  * <p>The Amazon Web Services request ID for this operation.</p>
2166
2166
  * @public
2167
2167
  */
2168
- RequestId?: string;
2168
+ RequestId?: string | undefined;
2169
2169
  }
2170
2170
  /**
2171
2171
  * @public
@@ -2180,7 +2180,7 @@ export interface ListIngestionsRequest {
2180
2180
  * <p>The token for the next set of results, or null if there are no more results.</p>
2181
2181
  * @public
2182
2182
  */
2183
- NextToken?: string;
2183
+ NextToken?: string | undefined;
2184
2184
  /**
2185
2185
  * <p>The Amazon Web Services account ID.</p>
2186
2186
  * @public
@@ -2190,7 +2190,7 @@ export interface ListIngestionsRequest {
2190
2190
  * <p>The maximum number of results to be returned per request.</p>
2191
2191
  * @public
2192
2192
  */
2193
- MaxResults?: number;
2193
+ MaxResults?: number | undefined;
2194
2194
  }
2195
2195
  /**
2196
2196
  * @public
@@ -2200,22 +2200,22 @@ export interface ListIngestionsResponse {
2200
2200
  * <p>A list of the ingestions.</p>
2201
2201
  * @public
2202
2202
  */
2203
- Ingestions?: Ingestion[];
2203
+ Ingestions?: Ingestion[] | undefined;
2204
2204
  /**
2205
2205
  * <p>The token for the next set of results, or null if there are no more results.</p>
2206
2206
  * @public
2207
2207
  */
2208
- NextToken?: string;
2208
+ NextToken?: string | undefined;
2209
2209
  /**
2210
2210
  * <p>The Amazon Web Services request ID for this operation.</p>
2211
2211
  * @public
2212
2212
  */
2213
- RequestId?: string;
2213
+ RequestId?: string | undefined;
2214
2214
  /**
2215
2215
  * <p>The HTTP status of the request.</p>
2216
2216
  * @public
2217
2217
  */
2218
- Status?: number;
2218
+ Status?: number | undefined;
2219
2219
  }
2220
2220
  /**
2221
2221
  * @public
@@ -2230,12 +2230,12 @@ export interface ListNamespacesRequest {
2230
2230
  * <p>A unique pagination token that can be used in a subsequent request. You will receive a pagination token in the response body of a previous <code>ListNameSpaces</code> API call if there is more data that can be returned. To receive the data, make another <code>ListNamespaces</code> API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a <code>ListNamespaces</code> API call with an expired token, you will receive a <code>HTTP 400 InvalidNextTokenException</code> error.</p>
2231
2231
  * @public
2232
2232
  */
2233
- NextToken?: string;
2233
+ NextToken?: string | undefined;
2234
2234
  /**
2235
2235
  * <p>The maximum number of results to return.</p>
2236
2236
  * @public
2237
2237
  */
2238
- MaxResults?: number;
2238
+ MaxResults?: number | undefined;
2239
2239
  }
2240
2240
  /**
2241
2241
  * @public
@@ -2247,22 +2247,22 @@ export interface ListNamespacesResponse {
2247
2247
  * identity store.</p>
2248
2248
  * @public
2249
2249
  */
2250
- Namespaces?: NamespaceInfoV2[];
2250
+ Namespaces?: NamespaceInfoV2[] | undefined;
2251
2251
  /**
2252
2252
  * <p>A unique pagination token that can be used in a subsequent request. Receiving <code>NextToken</code> in your response inticates that there is more data that can be returned. To receive the data, make another <code>ListNamespaces</code> API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a <code>ListNamespaces</code> API call with an expired token, you will receive a <code>HTTP 400 InvalidNextTokenException</code> error.</p>
2253
2253
  * @public
2254
2254
  */
2255
- NextToken?: string;
2255
+ NextToken?: string | undefined;
2256
2256
  /**
2257
2257
  * <p>The Amazon Web Services request ID for this operation.</p>
2258
2258
  * @public
2259
2259
  */
2260
- RequestId?: string;
2260
+ RequestId?: string | undefined;
2261
2261
  /**
2262
2262
  * <p>The HTTP status of the request.</p>
2263
2263
  * @public
2264
2264
  */
2265
- Status?: number;
2265
+ Status?: number | undefined;
2266
2266
  }
2267
2267
  /**
2268
2268
  * @public
@@ -2287,17 +2287,17 @@ export interface ListRefreshSchedulesResponse {
2287
2287
  * <p>The list of refresh schedules for the dataset.</p>
2288
2288
  * @public
2289
2289
  */
2290
- RefreshSchedules?: RefreshSchedule[];
2290
+ RefreshSchedules?: RefreshSchedule[] | undefined;
2291
2291
  /**
2292
2292
  * <p>The HTTP status of the request.</p>
2293
2293
  * @public
2294
2294
  */
2295
- Status?: number;
2295
+ Status?: number | undefined;
2296
2296
  /**
2297
2297
  * <p>The Amazon Web Services request ID for this operation.</p>
2298
2298
  * @public
2299
2299
  */
2300
- RequestId?: string;
2300
+ RequestId?: string | undefined;
2301
2301
  }
2302
2302
  /**
2303
2303
  * @public
@@ -2312,12 +2312,12 @@ export interface ListRoleMembershipsRequest {
2312
2312
  * <p>A pagination token that can be used in a subsequent request.</p>
2313
2313
  * @public
2314
2314
  */
2315
- NextToken?: string;
2315
+ NextToken?: string | undefined;
2316
2316
  /**
2317
2317
  * <p>The maximum number of results to return.</p>
2318
2318
  * @public
2319
2319
  */
2320
- MaxResults?: number;
2320
+ MaxResults?: number | undefined;
2321
2321
  /**
2322
2322
  * <p>The ID for the Amazon Web Services account that you want to create a group in. The Amazon Web Services account ID that you provide must be the same Amazon Web Services account that contains your Amazon QuickSight account.</p>
2323
2323
  * @public
@@ -2337,22 +2337,22 @@ export interface ListRoleMembershipsResponse {
2337
2337
  * <p>The list of groups associated with a role</p>
2338
2338
  * @public
2339
2339
  */
2340
- MembersList?: string[];
2340
+ MembersList?: string[] | undefined;
2341
2341
  /**
2342
2342
  * <p>A pagination token that can be used in a subsequent request.</p>
2343
2343
  * @public
2344
2344
  */
2345
- NextToken?: string;
2345
+ NextToken?: string | undefined;
2346
2346
  /**
2347
2347
  * <p>The Amazon Web Services request ID for this operation.</p>
2348
2348
  * @public
2349
2349
  */
2350
- RequestId?: string;
2350
+ RequestId?: string | undefined;
2351
2351
  /**
2352
2352
  * <p>The HTTP status of the request.</p>
2353
2353
  * @public
2354
2354
  */
2355
- Status?: number;
2355
+ Status?: number | undefined;
2356
2356
  }
2357
2357
  /**
2358
2358
  * @public
@@ -2373,17 +2373,17 @@ export interface ListTagsForResourceResponse {
2373
2373
  * resource.</p>
2374
2374
  * @public
2375
2375
  */
2376
- Tags?: Tag[];
2376
+ Tags?: Tag[] | undefined;
2377
2377
  /**
2378
2378
  * <p>The Amazon Web Services request ID for this operation.</p>
2379
2379
  * @public
2380
2380
  */
2381
- RequestId?: string;
2381
+ RequestId?: string | undefined;
2382
2382
  /**
2383
2383
  * <p>The HTTP status of the request.</p>
2384
2384
  * @public
2385
2385
  */
2386
- Status?: number;
2386
+ Status?: number | undefined;
2387
2387
  }
2388
2388
  /**
2389
2389
  * @public
@@ -2403,12 +2403,12 @@ export interface ListTemplateAliasesRequest {
2403
2403
  * <p>The token for the next set of results, or null if there are no more results.</p>
2404
2404
  * @public
2405
2405
  */
2406
- NextToken?: string;
2406
+ NextToken?: string | undefined;
2407
2407
  /**
2408
2408
  * <p>The maximum number of results to be returned per request.</p>
2409
2409
  * @public
2410
2410
  */
2411
- MaxResults?: number;
2411
+ MaxResults?: number | undefined;
2412
2412
  }
2413
2413
  /**
2414
2414
  * @public
@@ -2418,22 +2418,22 @@ export interface ListTemplateAliasesResponse {
2418
2418
  * <p>A structure containing the list of the template's aliases.</p>
2419
2419
  * @public
2420
2420
  */
2421
- TemplateAliasList?: TemplateAlias[];
2421
+ TemplateAliasList?: TemplateAlias[] | undefined;
2422
2422
  /**
2423
2423
  * <p>The HTTP status of the request.</p>
2424
2424
  * @public
2425
2425
  */
2426
- Status?: number;
2426
+ Status?: number | undefined;
2427
2427
  /**
2428
2428
  * <p>The Amazon Web Services request ID for this operation.</p>
2429
2429
  * @public
2430
2430
  */
2431
- RequestId?: string;
2431
+ RequestId?: string | undefined;
2432
2432
  /**
2433
2433
  * <p>The token for the next set of results, or null if there are no more results.</p>
2434
2434
  * @public
2435
2435
  */
2436
- NextToken?: string;
2436
+ NextToken?: string | undefined;
2437
2437
  }
2438
2438
  /**
2439
2439
  * @public
@@ -2448,12 +2448,12 @@ export interface ListTemplatesRequest {
2448
2448
  * <p>The token for the next set of results, or null if there are no more results.</p>
2449
2449
  * @public
2450
2450
  */
2451
- NextToken?: string;
2451
+ NextToken?: string | undefined;
2452
2452
  /**
2453
2453
  * <p>The maximum number of results to be returned per request.</p>
2454
2454
  * @public
2455
2455
  */
2456
- MaxResults?: number;
2456
+ MaxResults?: number | undefined;
2457
2457
  }
2458
2458
  /**
2459
2459
  * <p>The template summary.</p>
@@ -2464,32 +2464,32 @@ export interface TemplateSummary {
2464
2464
  * <p>A summary of a template.</p>
2465
2465
  * @public
2466
2466
  */
2467
- Arn?: string;
2467
+ Arn?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
2470
2470
  * @public
2471
2471
  */
2472
- TemplateId?: string;
2472
+ TemplateId?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>A display name for the template.</p>
2475
2475
  * @public
2476
2476
  */
2477
- Name?: string;
2477
+ Name?: string | undefined;
2478
2478
  /**
2479
2479
  * <p>A structure containing a list of version numbers for the template summary.</p>
2480
2480
  * @public
2481
2481
  */
2482
- LatestVersionNumber?: number;
2482
+ LatestVersionNumber?: number | undefined;
2483
2483
  /**
2484
2484
  * <p>The last time that this template was created.</p>
2485
2485
  * @public
2486
2486
  */
2487
- CreatedTime?: Date;
2487
+ CreatedTime?: Date | undefined;
2488
2488
  /**
2489
2489
  * <p>The last time that this template was updated.</p>
2490
2490
  * @public
2491
2491
  */
2492
- LastUpdatedTime?: Date;
2492
+ LastUpdatedTime?: Date | undefined;
2493
2493
  }
2494
2494
  /**
2495
2495
  * @public
@@ -2499,22 +2499,22 @@ export interface ListTemplatesResponse {
2499
2499
  * <p>A structure containing information about the templates in the list.</p>
2500
2500
  * @public
2501
2501
  */
2502
- TemplateSummaryList?: TemplateSummary[];
2502
+ TemplateSummaryList?: TemplateSummary[] | undefined;
2503
2503
  /**
2504
2504
  * <p>The token for the next set of results, or null if there are no more results.</p>
2505
2505
  * @public
2506
2506
  */
2507
- NextToken?: string;
2507
+ NextToken?: string | undefined;
2508
2508
  /**
2509
2509
  * <p>The HTTP status of the request.</p>
2510
2510
  * @public
2511
2511
  */
2512
- Status?: number;
2512
+ Status?: number | undefined;
2513
2513
  /**
2514
2514
  * <p>The Amazon Web Services request ID for this operation.</p>
2515
2515
  * @public
2516
2516
  */
2517
- RequestId?: string;
2517
+ RequestId?: string | undefined;
2518
2518
  }
2519
2519
  /**
2520
2520
  * @public
@@ -2534,12 +2534,12 @@ export interface ListTemplateVersionsRequest {
2534
2534
  * <p>The token for the next set of results, or null if there are no more results.</p>
2535
2535
  * @public
2536
2536
  */
2537
- NextToken?: string;
2537
+ NextToken?: string | undefined;
2538
2538
  /**
2539
2539
  * <p>The maximum number of results to be returned per request.</p>
2540
2540
  * @public
2541
2541
  */
2542
- MaxResults?: number;
2542
+ MaxResults?: number | undefined;
2543
2543
  }
2544
2544
  /**
2545
2545
  * <p>The template version.</p>
@@ -2550,27 +2550,27 @@ export interface TemplateVersionSummary {
2550
2550
  * <p>The Amazon Resource Name (ARN) of the template version.</p>
2551
2551
  * @public
2552
2552
  */
2553
- Arn?: string;
2553
+ Arn?: string | undefined;
2554
2554
  /**
2555
2555
  * <p>The version number of the template version.</p>
2556
2556
  * @public
2557
2557
  */
2558
- VersionNumber?: number;
2558
+ VersionNumber?: number | undefined;
2559
2559
  /**
2560
2560
  * <p>The time that this template version was created.</p>
2561
2561
  * @public
2562
2562
  */
2563
- CreatedTime?: Date;
2563
+ CreatedTime?: Date | undefined;
2564
2564
  /**
2565
2565
  * <p>The status of the template version.</p>
2566
2566
  * @public
2567
2567
  */
2568
- Status?: ResourceStatus;
2568
+ Status?: ResourceStatus | undefined;
2569
2569
  /**
2570
2570
  * <p>The description of the template version.</p>
2571
2571
  * @public
2572
2572
  */
2573
- Description?: string;
2573
+ Description?: string | undefined;
2574
2574
  }
2575
2575
  /**
2576
2576
  * @public
@@ -2580,22 +2580,22 @@ export interface ListTemplateVersionsResponse {
2580
2580
  * <p>A structure containing a list of all the versions of the specified template.</p>
2581
2581
  * @public
2582
2582
  */
2583
- TemplateVersionSummaryList?: TemplateVersionSummary[];
2583
+ TemplateVersionSummaryList?: TemplateVersionSummary[] | undefined;
2584
2584
  /**
2585
2585
  * <p>The token for the next set of results, or null if there are no more results.</p>
2586
2586
  * @public
2587
2587
  */
2588
- NextToken?: string;
2588
+ NextToken?: string | undefined;
2589
2589
  /**
2590
2590
  * <p>The HTTP status of the request.</p>
2591
2591
  * @public
2592
2592
  */
2593
- Status?: number;
2593
+ Status?: number | undefined;
2594
2594
  /**
2595
2595
  * <p>The Amazon Web Services request ID for this operation.</p>
2596
2596
  * @public
2597
2597
  */
2598
- RequestId?: string;
2598
+ RequestId?: string | undefined;
2599
2599
  }
2600
2600
  /**
2601
2601
  * @public
@@ -2615,12 +2615,12 @@ export interface ListThemeAliasesRequest {
2615
2615
  * <p>The token for the next set of results, or null if there are no more results.</p>
2616
2616
  * @public
2617
2617
  */
2618
- NextToken?: string;
2618
+ NextToken?: string | undefined;
2619
2619
  /**
2620
2620
  * <p>The maximum number of results to be returned per request.</p>
2621
2621
  * @public
2622
2622
  */
2623
- MaxResults?: number;
2623
+ MaxResults?: number | undefined;
2624
2624
  }
2625
2625
  /**
2626
2626
  * @public
@@ -2630,22 +2630,22 @@ export interface ListThemeAliasesResponse {
2630
2630
  * <p>A structure containing the list of the theme's aliases.</p>
2631
2631
  * @public
2632
2632
  */
2633
- ThemeAliasList?: ThemeAlias[];
2633
+ ThemeAliasList?: ThemeAlias[] | undefined;
2634
2634
  /**
2635
2635
  * <p>The HTTP status of the request.</p>
2636
2636
  * @public
2637
2637
  */
2638
- Status?: number;
2638
+ Status?: number | undefined;
2639
2639
  /**
2640
2640
  * <p>The Amazon Web Services request ID for this operation.</p>
2641
2641
  * @public
2642
2642
  */
2643
- RequestId?: string;
2643
+ RequestId?: string | undefined;
2644
2644
  /**
2645
2645
  * <p>The token for the next set of results, or null if there are no more results.</p>
2646
2646
  * @public
2647
2647
  */
2648
- NextToken?: string;
2648
+ NextToken?: string | undefined;
2649
2649
  }
2650
2650
  /**
2651
2651
  * @public
@@ -2660,12 +2660,12 @@ export interface ListThemesRequest {
2660
2660
  * <p>The token for the next set of results, or null if there are no more results.</p>
2661
2661
  * @public
2662
2662
  */
2663
- NextToken?: string;
2663
+ NextToken?: string | undefined;
2664
2664
  /**
2665
2665
  * <p>The maximum number of results to be returned per request.</p>
2666
2666
  * @public
2667
2667
  */
2668
- MaxResults?: number;
2668
+ MaxResults?: number | undefined;
2669
2669
  /**
2670
2670
  * <p>The type of themes that you want to list. Valid options include the following:</p>
2671
2671
  * <ul>
@@ -2684,7 +2684,7 @@ export interface ListThemesRequest {
2684
2684
  * </ul>
2685
2685
  * @public
2686
2686
  */
2687
- Type?: ThemeType;
2687
+ Type?: ThemeType | undefined;
2688
2688
  }
2689
2689
  /**
2690
2690
  * <p>The theme summary.</p>
@@ -2695,32 +2695,32 @@ export interface ThemeSummary {
2695
2695
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
2696
2696
  * @public
2697
2697
  */
2698
- Arn?: string;
2698
+ Arn?: string | undefined;
2699
2699
  /**
2700
2700
  * <p>the display name for the theme.</p>
2701
2701
  * @public
2702
2702
  */
2703
- Name?: string;
2703
+ Name?: string | undefined;
2704
2704
  /**
2705
2705
  * <p>The ID of the theme. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
2706
2706
  * @public
2707
2707
  */
2708
- ThemeId?: string;
2708
+ ThemeId?: string | undefined;
2709
2709
  /**
2710
2710
  * <p>The latest version number for the theme. </p>
2711
2711
  * @public
2712
2712
  */
2713
- LatestVersionNumber?: number;
2713
+ LatestVersionNumber?: number | undefined;
2714
2714
  /**
2715
2715
  * <p>The date and time that this theme was created.</p>
2716
2716
  * @public
2717
2717
  */
2718
- CreatedTime?: Date;
2718
+ CreatedTime?: Date | undefined;
2719
2719
  /**
2720
2720
  * <p>The last date and time that this theme was updated.</p>
2721
2721
  * @public
2722
2722
  */
2723
- LastUpdatedTime?: Date;
2723
+ LastUpdatedTime?: Date | undefined;
2724
2724
  }
2725
2725
  /**
2726
2726
  * @public
@@ -2730,22 +2730,22 @@ export interface ListThemesResponse {
2730
2730
  * <p>Information about the themes in the list.</p>
2731
2731
  * @public
2732
2732
  */
2733
- ThemeSummaryList?: ThemeSummary[];
2733
+ ThemeSummaryList?: ThemeSummary[] | undefined;
2734
2734
  /**
2735
2735
  * <p>The token for the next set of results, or null if there are no more results.</p>
2736
2736
  * @public
2737
2737
  */
2738
- NextToken?: string;
2738
+ NextToken?: string | undefined;
2739
2739
  /**
2740
2740
  * <p>The HTTP status of the request.</p>
2741
2741
  * @public
2742
2742
  */
2743
- Status?: number;
2743
+ Status?: number | undefined;
2744
2744
  /**
2745
2745
  * <p>The Amazon Web Services request ID for this operation.</p>
2746
2746
  * @public
2747
2747
  */
2748
- RequestId?: string;
2748
+ RequestId?: string | undefined;
2749
2749
  }
2750
2750
  /**
2751
2751
  * @public
@@ -2765,12 +2765,12 @@ export interface ListThemeVersionsRequest {
2765
2765
  * <p>The token for the next set of results, or null if there are no more results.</p>
2766
2766
  * @public
2767
2767
  */
2768
- NextToken?: string;
2768
+ NextToken?: string | undefined;
2769
2769
  /**
2770
2770
  * <p>The maximum number of results to be returned per request.</p>
2771
2771
  * @public
2772
2772
  */
2773
- MaxResults?: number;
2773
+ MaxResults?: number | undefined;
2774
2774
  }
2775
2775
  /**
2776
2776
  * <p>The theme version.</p>
@@ -2781,27 +2781,27 @@ export interface ThemeVersionSummary {
2781
2781
  * <p>The version number of the theme version.</p>
2782
2782
  * @public
2783
2783
  */
2784
- VersionNumber?: number;
2784
+ VersionNumber?: number | undefined;
2785
2785
  /**
2786
2786
  * <p>The Amazon Resource Name (ARN) of the theme version.</p>
2787
2787
  * @public
2788
2788
  */
2789
- Arn?: string;
2789
+ Arn?: string | undefined;
2790
2790
  /**
2791
2791
  * <p>The description of the theme version.</p>
2792
2792
  * @public
2793
2793
  */
2794
- Description?: string;
2794
+ Description?: string | undefined;
2795
2795
  /**
2796
2796
  * <p>The date and time that this theme version was created.</p>
2797
2797
  * @public
2798
2798
  */
2799
- CreatedTime?: Date;
2799
+ CreatedTime?: Date | undefined;
2800
2800
  /**
2801
2801
  * <p>The status of the theme version.</p>
2802
2802
  * @public
2803
2803
  */
2804
- Status?: ResourceStatus;
2804
+ Status?: ResourceStatus | undefined;
2805
2805
  }
2806
2806
  /**
2807
2807
  * @public
@@ -2811,22 +2811,22 @@ export interface ListThemeVersionsResponse {
2811
2811
  * <p>A structure containing a list of all the versions of the specified theme.</p>
2812
2812
  * @public
2813
2813
  */
2814
- ThemeVersionSummaryList?: ThemeVersionSummary[];
2814
+ ThemeVersionSummaryList?: ThemeVersionSummary[] | undefined;
2815
2815
  /**
2816
2816
  * <p>The token for the next set of results, or null if there are no more results.</p>
2817
2817
  * @public
2818
2818
  */
2819
- NextToken?: string;
2819
+ NextToken?: string | undefined;
2820
2820
  /**
2821
2821
  * <p>The HTTP status of the request.</p>
2822
2822
  * @public
2823
2823
  */
2824
- Status?: number;
2824
+ Status?: number | undefined;
2825
2825
  /**
2826
2826
  * <p>The Amazon Web Services request ID for this operation.</p>
2827
2827
  * @public
2828
2828
  */
2829
- RequestId?: string;
2829
+ RequestId?: string | undefined;
2830
2830
  }
2831
2831
  /**
2832
2832
  * @public
@@ -2853,22 +2853,22 @@ export interface TopicRefreshScheduleSummary {
2853
2853
  * <p>The ID of the dataset.</p>
2854
2854
  * @public
2855
2855
  */
2856
- DatasetId?: string;
2856
+ DatasetId?: string | undefined;
2857
2857
  /**
2858
2858
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
2859
2859
  * @public
2860
2860
  */
2861
- DatasetArn?: string;
2861
+ DatasetArn?: string | undefined;
2862
2862
  /**
2863
2863
  * <p>The name of the dataset.</p>
2864
2864
  * @public
2865
2865
  */
2866
- DatasetName?: string;
2866
+ DatasetName?: string | undefined;
2867
2867
  /**
2868
2868
  * <p>The definition of a refresh schedule.</p>
2869
2869
  * @public
2870
2870
  */
2871
- RefreshSchedule?: TopicRefreshSchedule;
2871
+ RefreshSchedule?: TopicRefreshSchedule | undefined;
2872
2872
  }
2873
2873
  /**
2874
2874
  * @public
@@ -2878,27 +2878,27 @@ export interface ListTopicRefreshSchedulesResponse {
2878
2878
  * <p>The ID for the topic that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
2879
2879
  * @public
2880
2880
  */
2881
- TopicId?: string;
2881
+ TopicId?: string | undefined;
2882
2882
  /**
2883
2883
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
2884
2884
  * @public
2885
2885
  */
2886
- TopicArn?: string;
2886
+ TopicArn?: string | undefined;
2887
2887
  /**
2888
2888
  * <p>The list of topic refresh schedules.</p>
2889
2889
  * @public
2890
2890
  */
2891
- RefreshSchedules?: TopicRefreshScheduleSummary[];
2891
+ RefreshSchedules?: TopicRefreshScheduleSummary[] | undefined;
2892
2892
  /**
2893
2893
  * <p>The HTTP status of the request.</p>
2894
2894
  * @public
2895
2895
  */
2896
- Status?: number;
2896
+ Status?: number | undefined;
2897
2897
  /**
2898
2898
  * <p>The Amazon Web Services request ID for this operation.</p>
2899
2899
  * @public
2900
2900
  */
2901
- RequestId?: string;
2901
+ RequestId?: string | undefined;
2902
2902
  }
2903
2903
  /**
2904
2904
  * @public
@@ -2929,12 +2929,12 @@ export interface ListTopicsRequest {
2929
2929
  * <p>The token for the next set of results, or null if there are no more results.</p>
2930
2930
  * @public
2931
2931
  */
2932
- NextToken?: string;
2932
+ NextToken?: string | undefined;
2933
2933
  /**
2934
2934
  * <p>The maximum number of results to be returned per request.</p>
2935
2935
  * @public
2936
2936
  */
2937
- MaxResults?: number;
2937
+ MaxResults?: number | undefined;
2938
2938
  }
2939
2939
  /**
2940
2940
  * <p>A topic summary.</p>
@@ -2945,22 +2945,22 @@ export interface TopicSummary {
2945
2945
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
2946
2946
  * @public
2947
2947
  */
2948
- Arn?: string;
2948
+ Arn?: string | undefined;
2949
2949
  /**
2950
2950
  * <p>The ID for the topic. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
2951
2951
  * @public
2952
2952
  */
2953
- TopicId?: string;
2953
+ TopicId?: string | undefined;
2954
2954
  /**
2955
2955
  * <p>The name of the topic.</p>
2956
2956
  * @public
2957
2957
  */
2958
- Name?: string;
2958
+ Name?: string | undefined;
2959
2959
  /**
2960
2960
  * <p>The user experience version of the topic.</p>
2961
2961
  * @public
2962
2962
  */
2963
- UserExperienceVersion?: TopicUserExperienceVersion;
2963
+ UserExperienceVersion?: TopicUserExperienceVersion | undefined;
2964
2964
  }
2965
2965
  /**
2966
2966
  * @public
@@ -2970,22 +2970,22 @@ export interface ListTopicsResponse {
2970
2970
  * <p>A list of topic summaries.</p>
2971
2971
  * @public
2972
2972
  */
2973
- TopicsSummaries?: TopicSummary[];
2973
+ TopicsSummaries?: TopicSummary[] | undefined;
2974
2974
  /**
2975
2975
  * <p>The token for the next set of results, or null if there are no more results.</p>
2976
2976
  * @public
2977
2977
  */
2978
- NextToken?: string;
2978
+ NextToken?: string | undefined;
2979
2979
  /**
2980
2980
  * <p>The Amazon Web Services request ID for this operation.</p>
2981
2981
  * @public
2982
2982
  */
2983
- RequestId?: string;
2983
+ RequestId?: string | undefined;
2984
2984
  /**
2985
2985
  * <p>The HTTP status of the request.</p>
2986
2986
  * @public
2987
2987
  */
2988
- Status?: number;
2988
+ Status?: number | undefined;
2989
2989
  }
2990
2990
  /**
2991
2991
  * @public
@@ -3011,12 +3011,12 @@ export interface ListUserGroupsRequest {
3011
3011
  * <p>A pagination token that can be used in a subsequent request.</p>
3012
3012
  * @public
3013
3013
  */
3014
- NextToken?: string;
3014
+ NextToken?: string | undefined;
3015
3015
  /**
3016
3016
  * <p>The maximum number of results to return from this request.</p>
3017
3017
  * @public
3018
3018
  */
3019
- MaxResults?: number;
3019
+ MaxResults?: number | undefined;
3020
3020
  }
3021
3021
  /**
3022
3022
  * @public
@@ -3026,22 +3026,22 @@ export interface ListUserGroupsResponse {
3026
3026
  * <p>The list of groups the user is a member of.</p>
3027
3027
  * @public
3028
3028
  */
3029
- GroupList?: Group[];
3029
+ GroupList?: Group[] | undefined;
3030
3030
  /**
3031
3031
  * <p>A pagination token that can be used in a subsequent request.</p>
3032
3032
  * @public
3033
3033
  */
3034
- NextToken?: string;
3034
+ NextToken?: string | undefined;
3035
3035
  /**
3036
3036
  * <p>The Amazon Web Services request ID for this operation.</p>
3037
3037
  * @public
3038
3038
  */
3039
- RequestId?: string;
3039
+ RequestId?: string | undefined;
3040
3040
  /**
3041
3041
  * <p>The HTTP status of the request.</p>
3042
3042
  * @public
3043
3043
  */
3044
- Status?: number;
3044
+ Status?: number | undefined;
3045
3045
  }
3046
3046
  /**
3047
3047
  * @public
@@ -3057,12 +3057,12 @@ export interface ListUsersRequest {
3057
3057
  * <p>A pagination token that can be used in a subsequent request.</p>
3058
3058
  * @public
3059
3059
  */
3060
- NextToken?: string;
3060
+ NextToken?: string | undefined;
3061
3061
  /**
3062
3062
  * <p>The maximum number of results to return from this request.</p>
3063
3063
  * @public
3064
3064
  */
3065
- MaxResults?: number;
3065
+ MaxResults?: number | undefined;
3066
3066
  /**
3067
3067
  * <p>The namespace. Currently, you should set this to <code>default</code>.</p>
3068
3068
  * @public
@@ -3077,22 +3077,22 @@ export interface ListUsersResponse {
3077
3077
  * <p>The list of users.</p>
3078
3078
  * @public
3079
3079
  */
3080
- UserList?: User[];
3080
+ UserList?: User[] | undefined;
3081
3081
  /**
3082
3082
  * <p>A pagination token that can be used in a subsequent request.</p>
3083
3083
  * @public
3084
3084
  */
3085
- NextToken?: string;
3085
+ NextToken?: string | undefined;
3086
3086
  /**
3087
3087
  * <p>The Amazon Web Services request ID for this operation.</p>
3088
3088
  * @public
3089
3089
  */
3090
- RequestId?: string;
3090
+ RequestId?: string | undefined;
3091
3091
  /**
3092
3092
  * <p>The HTTP status of the request.</p>
3093
3093
  * @public
3094
3094
  */
3095
- Status?: number;
3095
+ Status?: number | undefined;
3096
3096
  }
3097
3097
  /**
3098
3098
  * @public
@@ -3108,12 +3108,12 @@ export interface ListVPCConnectionsRequest {
3108
3108
  * <p>The token for the next set of results, or null if there are no more results.</p>
3109
3109
  * @public
3110
3110
  */
3111
- NextToken?: string;
3111
+ NextToken?: string | undefined;
3112
3112
  /**
3113
3113
  * <p>The maximum number of results to be returned per request.</p>
3114
3114
  * @public
3115
3115
  */
3116
- MaxResults?: number;
3116
+ MaxResults?: number | undefined;
3117
3117
  }
3118
3118
  /**
3119
3119
  * <p>The summary metadata that describes a VPC connection.</p>
@@ -3127,63 +3127,63 @@ export interface VPCConnectionSummary {
3127
3127
  * Amazon Web Services account.</p>
3128
3128
  * @public
3129
3129
  */
3130
- VPCConnectionId?: string;
3130
+ VPCConnectionId?: string | undefined;
3131
3131
  /**
3132
3132
  * <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
3133
3133
  * @public
3134
3134
  */
3135
- Arn?: string;
3135
+ Arn?: string | undefined;
3136
3136
  /**
3137
3137
  * <p>The display name for the VPC connection.</p>
3138
3138
  * @public
3139
3139
  */
3140
- Name?: string;
3140
+ Name?: string | undefined;
3141
3141
  /**
3142
3142
  * <p>The Amazon EC2 VPC ID associated with the VPC connection.</p>
3143
3143
  * @public
3144
3144
  */
3145
- VPCId?: string;
3145
+ VPCId?: string | undefined;
3146
3146
  /**
3147
3147
  * <p>The Amazon EC2 security group IDs associated with the VPC connection.</p>
3148
3148
  * @public
3149
3149
  */
3150
- SecurityGroupIds?: string[];
3150
+ SecurityGroupIds?: string[] | undefined;
3151
3151
  /**
3152
3152
  * <p>A list of IP addresses of DNS resolver endpoints for the VPC connection.</p>
3153
3153
  * @public
3154
3154
  */
3155
- DnsResolvers?: string[];
3155
+ DnsResolvers?: string[] | undefined;
3156
3156
  /**
3157
3157
  * <p>The status of the VPC connection.</p>
3158
3158
  * @public
3159
3159
  */
3160
- Status?: VPCConnectionResourceStatus;
3160
+ Status?: VPCConnectionResourceStatus | undefined;
3161
3161
  /**
3162
3162
  * <p>The availability status of the VPC connection.</p>
3163
3163
  * @public
3164
3164
  */
3165
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
3165
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
3166
3166
  /**
3167
3167
  * <p>A list of network interfaces.</p>
3168
3168
  * @public
3169
3169
  */
3170
- NetworkInterfaces?: NetworkInterface[];
3170
+ NetworkInterfaces?: NetworkInterface[] | undefined;
3171
3171
  /**
3172
3172
  * <p>The ARN of the IAM role associated
3173
3173
  * with the VPC connection.</p>
3174
3174
  * @public
3175
3175
  */
3176
- RoleArn?: string;
3176
+ RoleArn?: string | undefined;
3177
3177
  /**
3178
3178
  * <p>The time that the VPC connection was created.</p>
3179
3179
  * @public
3180
3180
  */
3181
- CreatedTime?: Date;
3181
+ CreatedTime?: Date | undefined;
3182
3182
  /**
3183
3183
  * <p>The time that the VPC connection was last updated.</p>
3184
3184
  * @public
3185
3185
  */
3186
- LastUpdatedTime?: Date;
3186
+ LastUpdatedTime?: Date | undefined;
3187
3187
  }
3188
3188
  /**
3189
3189
  * @public
@@ -3194,23 +3194,23 @@ export interface ListVPCConnectionsResponse {
3194
3194
  * objects.</p>
3195
3195
  * @public
3196
3196
  */
3197
- VPCConnectionSummaries?: VPCConnectionSummary[];
3197
+ VPCConnectionSummaries?: VPCConnectionSummary[] | undefined;
3198
3198
  /**
3199
3199
  * <p>The token for the next set of results, or null if there are no more
3200
3200
  * results.</p>
3201
3201
  * @public
3202
3202
  */
3203
- NextToken?: string;
3203
+ NextToken?: string | undefined;
3204
3204
  /**
3205
3205
  * <p>The Amazon Web Services request ID for this operation.</p>
3206
3206
  * @public
3207
3207
  */
3208
- RequestId?: string;
3208
+ RequestId?: string | undefined;
3209
3209
  /**
3210
3210
  * <p>The HTTP status of the request.</p>
3211
3211
  * @public
3212
3212
  */
3213
- Status?: number;
3213
+ Status?: number | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3252,12 +3252,12 @@ export interface PutDataSetRefreshPropertiesResponse {
3252
3252
  * <p>The Amazon Web Services request ID for this operation.</p>
3253
3253
  * @public
3254
3254
  */
3255
- RequestId?: string;
3255
+ RequestId?: string | undefined;
3256
3256
  /**
3257
3257
  * <p>The HTTP status of the request.</p>
3258
3258
  * @public
3259
3259
  */
3260
- Status?: number;
3260
+ Status?: number | undefined;
3261
3261
  }
3262
3262
  /**
3263
3263
  * @public
@@ -3321,7 +3321,7 @@ export interface RegisterUserRequest {
3321
3321
  * <p>The ARN of the IAM user or role that you are registering with Amazon QuickSight. </p>
3322
3322
  * @public
3323
3323
  */
3324
- IamArn?: string;
3324
+ IamArn?: string | undefined;
3325
3325
  /**
3326
3326
  * <p>You need to use this parameter only when you register one or more users using an assumed
3327
3327
  * IAM role. You don't need to provide the session name for other scenarios, for example when
@@ -3333,7 +3333,7 @@ export interface RegisterUserRequest {
3333
3333
  * </p>
3334
3334
  * @public
3335
3335
  */
3336
- SessionName?: string;
3336
+ SessionName?: string | undefined;
3337
3337
  /**
3338
3338
  * <p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the
3339
3339
  * Amazon Web Services account that contains your Amazon QuickSight account.</p>
@@ -3350,7 +3350,7 @@ export interface RegisterUserRequest {
3350
3350
  * registering.</p>
3351
3351
  * @public
3352
3352
  */
3353
- UserName?: string;
3353
+ UserName?: string | undefined;
3354
3354
  /**
3355
3355
  * <p>(Enterprise edition only) The name of the custom permissions profile that you want to
3356
3356
  * assign to this user. Customized permissions allows you to control a user's access by
@@ -3382,7 +3382,7 @@ export interface RegisterUserRequest {
3382
3382
  * <p>This feature is available only to Amazon QuickSight Enterprise edition subscriptions.</p>
3383
3383
  * @public
3384
3384
  */
3385
- CustomPermissionsName?: string;
3385
+ CustomPermissionsName?: string | undefined;
3386
3386
  /**
3387
3387
  * <p>The type of supported external login provider that provides identity to let a user federate into Amazon QuickSight with an associated Identity and Access Management(IAM) role. The type of supported external login provider can be one of the following.</p>
3388
3388
  * <ul>
@@ -3397,24 +3397,24 @@ export interface RegisterUserRequest {
3397
3397
  * </ul>
3398
3398
  * @public
3399
3399
  */
3400
- ExternalLoginFederationProviderType?: string;
3400
+ ExternalLoginFederationProviderType?: string | undefined;
3401
3401
  /**
3402
3402
  * <p>The URL of the custom OpenID Connect (OIDC) provider that provides identity to let a user federate
3403
3403
  * into Amazon QuickSight with an associated Identity and Access Management(IAM) role. This parameter should
3404
3404
  * only be used when <code>ExternalLoginFederationProviderType</code> parameter is set to <code>CUSTOM_OIDC</code>.</p>
3405
3405
  * @public
3406
3406
  */
3407
- CustomFederationProviderUrl?: string;
3407
+ CustomFederationProviderUrl?: string | undefined;
3408
3408
  /**
3409
3409
  * <p>The identity ID for a user in the external login provider.</p>
3410
3410
  * @public
3411
3411
  */
3412
- ExternalLoginId?: string;
3412
+ ExternalLoginId?: string | undefined;
3413
3413
  /**
3414
3414
  * <p>The tags to associate with the user.</p>
3415
3415
  * @public
3416
3416
  */
3417
- Tags?: Tag[];
3417
+ Tags?: Tag[] | undefined;
3418
3418
  }
3419
3419
  /**
3420
3420
  * @public
@@ -3424,23 +3424,23 @@ export interface RegisterUserResponse {
3424
3424
  * <p>The user's user name.</p>
3425
3425
  * @public
3426
3426
  */
3427
- User?: User;
3427
+ User?: User | undefined;
3428
3428
  /**
3429
3429
  * <p>The URL the user visits to complete registration and provide a password. This is
3430
3430
  * returned only for users with an identity type of <code>QUICKSIGHT</code>.</p>
3431
3431
  * @public
3432
3432
  */
3433
- UserInvitationUrl?: string;
3433
+ UserInvitationUrl?: string | undefined;
3434
3434
  /**
3435
3435
  * <p>The Amazon Web Services request ID for this operation.</p>
3436
3436
  * @public
3437
3437
  */
3438
- RequestId?: string;
3438
+ RequestId?: string | undefined;
3439
3439
  /**
3440
3440
  * <p>The HTTP status of the request.</p>
3441
3441
  * @public
3442
3442
  */
3443
- Status?: number;
3443
+ Status?: number | undefined;
3444
3444
  }
3445
3445
  /**
3446
3446
  * @public
@@ -3460,7 +3460,7 @@ export interface RestoreAnalysisRequest {
3460
3460
  * <p>A boolean value that determines if the analysis will be restored to folders that it previously resided in. A <code>True</code> value restores analysis back to all folders that it previously resided in. A <code>False</code> value restores the analysis but does not restore the analysis back to all previously resided folders. Restoring a restricted analysis requires this parameter to be set to <code>True</code>.</p>
3461
3461
  * @public
3462
3462
  */
3463
- RestoreToFolders?: boolean;
3463
+ RestoreToFolders?: boolean | undefined;
3464
3464
  }
3465
3465
  /**
3466
3466
  * @public
@@ -3470,28 +3470,28 @@ export interface RestoreAnalysisResponse {
3470
3470
  * <p>The HTTP status of the request.</p>
3471
3471
  * @public
3472
3472
  */
3473
- Status?: number;
3473
+ Status?: number | undefined;
3474
3474
  /**
3475
3475
  * <p>The Amazon Resource Name (ARN) of the analysis that you're restoring.</p>
3476
3476
  * @public
3477
3477
  */
3478
- Arn?: string;
3478
+ Arn?: string | undefined;
3479
3479
  /**
3480
3480
  * <p>The ID of the analysis that you're restoring.
3481
3481
  * </p>
3482
3482
  * @public
3483
3483
  */
3484
- AnalysisId?: string;
3484
+ AnalysisId?: string | undefined;
3485
3485
  /**
3486
3486
  * <p>The Amazon Web Services request ID for this operation.</p>
3487
3487
  * @public
3488
3488
  */
3489
- RequestId?: string;
3489
+ RequestId?: string | undefined;
3490
3490
  /**
3491
3491
  * <p>A list of folder arns thatthe analysis failed to be restored to.</p>
3492
3492
  * @public
3493
3493
  */
3494
- RestorationFailedFolderArns?: string[];
3494
+ RestorationFailedFolderArns?: string[] | undefined;
3495
3495
  }
3496
3496
  /**
3497
3497
  * @public
@@ -3512,12 +3512,12 @@ export interface SearchAnalysesRequest {
3512
3512
  * <p>A pagination token that can be used in a subsequent request.</p>
3513
3513
  * @public
3514
3514
  */
3515
- NextToken?: string;
3515
+ NextToken?: string | undefined;
3516
3516
  /**
3517
3517
  * <p>The maximum number of results to return.</p>
3518
3518
  * @public
3519
3519
  */
3520
- MaxResults?: number;
3520
+ MaxResults?: number | undefined;
3521
3521
  }
3522
3522
  /**
3523
3523
  * @public
@@ -3527,23 +3527,23 @@ export interface SearchAnalysesResponse {
3527
3527
  * <p>Metadata describing the analyses that you searched for.</p>
3528
3528
  * @public
3529
3529
  */
3530
- AnalysisSummaryList?: AnalysisSummary[];
3530
+ AnalysisSummaryList?: AnalysisSummary[] | undefined;
3531
3531
  /**
3532
3532
  * <p>A pagination token that can be used in a subsequent request.
3533
3533
  * </p>
3534
3534
  * @public
3535
3535
  */
3536
- NextToken?: string;
3536
+ NextToken?: string | undefined;
3537
3537
  /**
3538
3538
  * <p>The HTTP status of the request.</p>
3539
3539
  * @public
3540
3540
  */
3541
- Status?: number;
3541
+ Status?: number | undefined;
3542
3542
  /**
3543
3543
  * <p>The Amazon Web Services request ID for this operation.</p>
3544
3544
  * @public
3545
3545
  */
3546
- RequestId?: string;
3546
+ RequestId?: string | undefined;
3547
3547
  }
3548
3548
  /**
3549
3549
  * @public
@@ -3567,12 +3567,12 @@ export interface SearchDashboardsRequest {
3567
3567
  * <p>The token for the next set of results, or null if there are no more results.</p>
3568
3568
  * @public
3569
3569
  */
3570
- NextToken?: string;
3570
+ NextToken?: string | undefined;
3571
3571
  /**
3572
3572
  * <p>The maximum number of results to be returned per request.</p>
3573
3573
  * @public
3574
3574
  */
3575
- MaxResults?: number;
3575
+ MaxResults?: number | undefined;
3576
3576
  }
3577
3577
  /**
3578
3578
  * @public
@@ -3583,22 +3583,22 @@ export interface SearchDashboardsResponse {
3583
3583
  * request.</p>
3584
3584
  * @public
3585
3585
  */
3586
- DashboardSummaryList?: DashboardSummary[];
3586
+ DashboardSummaryList?: DashboardSummary[] | undefined;
3587
3587
  /**
3588
3588
  * <p>The token for the next set of results, or null if there are no more results.</p>
3589
3589
  * @public
3590
3590
  */
3591
- NextToken?: string;
3591
+ NextToken?: string | undefined;
3592
3592
  /**
3593
3593
  * <p>The HTTP status of the request.</p>
3594
3594
  * @public
3595
3595
  */
3596
- Status?: number;
3596
+ Status?: number | undefined;
3597
3597
  /**
3598
3598
  * <p>The Amazon Web Services request ID for this operation.</p>
3599
3599
  * @public
3600
3600
  */
3601
- RequestId?: string;
3601
+ RequestId?: string | undefined;
3602
3602
  }
3603
3603
  /**
3604
3604
  * @public
@@ -3618,12 +3618,12 @@ export interface SearchDataSetsRequest {
3618
3618
  * <p>A pagination token that can be used in a subsequent request.</p>
3619
3619
  * @public
3620
3620
  */
3621
- NextToken?: string;
3621
+ NextToken?: string | undefined;
3622
3622
  /**
3623
3623
  * <p>The maximum number of results to be returned per request.</p>
3624
3624
  * @public
3625
3625
  */
3626
- MaxResults?: number;
3626
+ MaxResults?: number | undefined;
3627
3627
  }
3628
3628
  /**
3629
3629
  * @public
@@ -3633,22 +3633,22 @@ export interface SearchDataSetsResponse {
3633
3633
  * <p>A <code>DataSetSummaries</code> object that returns a summary of a dataset.</p>
3634
3634
  * @public
3635
3635
  */
3636
- DataSetSummaries?: DataSetSummary[];
3636
+ DataSetSummaries?: DataSetSummary[] | undefined;
3637
3637
  /**
3638
3638
  * <p>A pagination token that can be used in a subsequent request.</p>
3639
3639
  * @public
3640
3640
  */
3641
- NextToken?: string;
3641
+ NextToken?: string | undefined;
3642
3642
  /**
3643
3643
  * <p>The HTTP status of the request.</p>
3644
3644
  * @public
3645
3645
  */
3646
- Status?: number;
3646
+ Status?: number | undefined;
3647
3647
  /**
3648
3648
  * <p>The Amazon Web Services request ID for this operation.</p>
3649
3649
  * @public
3650
3650
  */
3651
- RequestId?: string;
3651
+ RequestId?: string | undefined;
3652
3652
  }
3653
3653
  /**
3654
3654
  * @public
@@ -3668,12 +3668,12 @@ export interface SearchDataSourcesRequest {
3668
3668
  * <p>A pagination token that can be used in a subsequent request.</p>
3669
3669
  * @public
3670
3670
  */
3671
- NextToken?: string;
3671
+ NextToken?: string | undefined;
3672
3672
  /**
3673
3673
  * <p>The maximum number of results to be returned per request.</p>
3674
3674
  * @public
3675
3675
  */
3676
- MaxResults?: number;
3676
+ MaxResults?: number | undefined;
3677
3677
  }
3678
3678
  /**
3679
3679
  * @public
@@ -3683,22 +3683,22 @@ export interface SearchDataSourcesResponse {
3683
3683
  * <p>A <code>DataSourceSummaries</code> object that returns a summary of a data source.</p>
3684
3684
  * @public
3685
3685
  */
3686
- DataSourceSummaries?: DataSourceSummary[];
3686
+ DataSourceSummaries?: DataSourceSummary[] | undefined;
3687
3687
  /**
3688
3688
  * <p>A pagination token that can be used in a subsequent request.</p>
3689
3689
  * @public
3690
3690
  */
3691
- NextToken?: string;
3691
+ NextToken?: string | undefined;
3692
3692
  /**
3693
3693
  * <p>The HTTP status of the request.</p>
3694
3694
  * @public
3695
3695
  */
3696
- Status?: number;
3696
+ Status?: number | undefined;
3697
3697
  /**
3698
3698
  * <p>The Amazon Web Services request ID for this operation.</p>
3699
3699
  * @public
3700
3700
  */
3701
- RequestId?: string;
3701
+ RequestId?: string | undefined;
3702
3702
  }
3703
3703
  /**
3704
3704
  * @public
@@ -3718,12 +3718,12 @@ export interface SearchFoldersRequest {
3718
3718
  * <p>The token for the next set of results, or null if there are no more results.</p>
3719
3719
  * @public
3720
3720
  */
3721
- NextToken?: string;
3721
+ NextToken?: string | undefined;
3722
3722
  /**
3723
3723
  * <p>The maximum number of results to be returned per request.</p>
3724
3724
  * @public
3725
3725
  */
3726
- MaxResults?: number;
3726
+ MaxResults?: number | undefined;
3727
3727
  }
3728
3728
  /**
3729
3729
  * @public
@@ -3733,22 +3733,22 @@ export interface SearchFoldersResponse {
3733
3733
  * <p>The HTTP status of the request.</p>
3734
3734
  * @public
3735
3735
  */
3736
- Status?: number;
3736
+ Status?: number | undefined;
3737
3737
  /**
3738
3738
  * <p>A structure that contains all of the folders in the Amazon Web Services account. This structure provides basic information about the folders.</p>
3739
3739
  * @public
3740
3740
  */
3741
- FolderSummaryList?: FolderSummary[];
3741
+ FolderSummaryList?: FolderSummary[] | undefined;
3742
3742
  /**
3743
3743
  * <p>The token for the next set of results, or null if there are no more results.</p>
3744
3744
  * @public
3745
3745
  */
3746
- NextToken?: string;
3746
+ NextToken?: string | undefined;
3747
3747
  /**
3748
3748
  * <p>The Amazon Web Services request ID for this operation.</p>
3749
3749
  * @public
3750
3750
  */
3751
- RequestId?: string;
3751
+ RequestId?: string | undefined;
3752
3752
  }
3753
3753
  /**
3754
3754
  * @public
@@ -3764,12 +3764,12 @@ export interface SearchGroupsRequest {
3764
3764
  * <p>A pagination token that can be used in a subsequent request.</p>
3765
3765
  * @public
3766
3766
  */
3767
- NextToken?: string;
3767
+ NextToken?: string | undefined;
3768
3768
  /**
3769
3769
  * <p>The maximum number of results to return from this request.</p>
3770
3770
  * @public
3771
3771
  */
3772
- MaxResults?: number;
3772
+ MaxResults?: number | undefined;
3773
3773
  /**
3774
3774
  * <p>The namespace that you want to search.</p>
3775
3775
  * @public
@@ -3789,22 +3789,22 @@ export interface SearchGroupsResponse {
3789
3789
  * <p>A list of groups in a specified namespace that match the filters you set in your <code>SearchGroups</code> request.</p>
3790
3790
  * @public
3791
3791
  */
3792
- GroupList?: Group[];
3792
+ GroupList?: Group[] | undefined;
3793
3793
  /**
3794
3794
  * <p>A pagination token that can be used in a subsequent request.</p>
3795
3795
  * @public
3796
3796
  */
3797
- NextToken?: string;
3797
+ NextToken?: string | undefined;
3798
3798
  /**
3799
3799
  * <p>The Amazon Web Services request ID for this operation.</p>
3800
3800
  * @public
3801
3801
  */
3802
- RequestId?: string;
3802
+ RequestId?: string | undefined;
3803
3803
  /**
3804
3804
  * <p>The HTTP status of the request.</p>
3805
3805
  * @public
3806
3806
  */
3807
- Status?: number;
3807
+ Status?: number | undefined;
3808
3808
  }
3809
3809
  /**
3810
3810
  * @public
@@ -3871,7 +3871,7 @@ export interface StartAssetBundleExportJobRequest {
3871
3871
  * exported.</p>
3872
3872
  * @public
3873
3873
  */
3874
- IncludeAllDependencies?: boolean;
3874
+ IncludeAllDependencies?: boolean | undefined;
3875
3875
  /**
3876
3876
  * <p>The export data format.</p>
3877
3877
  * @public
@@ -3882,33 +3882,33 @@ export interface StartAssetBundleExportJobRequest {
3882
3882
  * <p>Use this field if the <code>ExportFormat</code> field of a <code>StartAssetBundleExportJobRequest</code> API call is set to <code>CLOUDFORMATION_JSON</code>.</p>
3883
3883
  * @public
3884
3884
  */
3885
- CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
3885
+ CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration | undefined;
3886
3886
  /**
3887
3887
  * <p>A Boolean that determines whether all permissions for each resource ARN are exported with the job. If you set <code>IncludePermissions</code> to <code>TRUE</code>, any permissions associated with each resource are exported.
3888
3888
  * </p>
3889
3889
  * @public
3890
3890
  */
3891
- IncludePermissions?: boolean;
3891
+ IncludePermissions?: boolean | undefined;
3892
3892
  /**
3893
3893
  * <p> A Boolean that determines whether all tags for each resource ARN are exported with the job. If you set <code>IncludeTags</code> to <code>TRUE</code>, any tags associated with each resource are exported.</p>
3894
3894
  * @public
3895
3895
  */
3896
- IncludeTags?: boolean;
3896
+ IncludeTags?: boolean | undefined;
3897
3897
  /**
3898
3898
  * <p>An optional parameter that determines which validation strategy to use for the export job. If <code>StrictModeForAllResources</code> is set to <code>TRUE</code>, strict validation for every error is enforced. If it is set to <code>FALSE</code>, validation is skipped for specific UI errors that are shown as warnings. The default value for <code>StrictModeForAllResources</code> is <code>FALSE</code>.</p>
3899
3899
  * @public
3900
3900
  */
3901
- ValidationStrategy?: AssetBundleExportJobValidationStrategy;
3901
+ ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
3902
3902
  /**
3903
3903
  * <p>A Boolean that determines if the exported asset carries over information about the folders that the asset is a member of. </p>
3904
3904
  * @public
3905
3905
  */
3906
- IncludeFolderMemberships?: boolean;
3906
+ IncludeFolderMemberships?: boolean | undefined;
3907
3907
  /**
3908
3908
  * <p>A setting that indicates whether you want to include folder assets. You can also use this setting to recusrsively include all subfolders of an exported folder.</p>
3909
3909
  * @public
3910
3910
  */
3911
- IncludeFolderMembers?: IncludeFolderMembers;
3911
+ IncludeFolderMembers?: IncludeFolderMembers | undefined;
3912
3912
  }
3913
3913
  /**
3914
3914
  * @public
@@ -3918,22 +3918,22 @@ export interface StartAssetBundleExportJobResponse {
3918
3918
  * <p>The Amazon Resource Name (ARN) for the export job.</p>
3919
3919
  * @public
3920
3920
  */
3921
- Arn?: string;
3921
+ Arn?: string | undefined;
3922
3922
  /**
3923
3923
  * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
3924
3924
  * @public
3925
3925
  */
3926
- AssetBundleExportJobId?: string;
3926
+ AssetBundleExportJobId?: string | undefined;
3927
3927
  /**
3928
3928
  * <p>The Amazon Web Services response ID for this operation.</p>
3929
3929
  * @public
3930
3930
  */
3931
- RequestId?: string;
3931
+ RequestId?: string | undefined;
3932
3932
  /**
3933
3933
  * <p>The HTTP status of the response.</p>
3934
3934
  * @public
3935
3935
  */
3936
- Status?: number;
3936
+ Status?: number | undefined;
3937
3937
  }
3938
3938
  /**
3939
3939
  * @public
@@ -3959,7 +3959,7 @@ export interface StartAssetBundleImportJobRequest {
3959
3959
  * <p>Optional overrides that are applied to the resource configuration before import.</p>
3960
3960
  * @public
3961
3961
  */
3962
- OverrideParameters?: AssetBundleImportJobOverrideParameters;
3962
+ OverrideParameters?: AssetBundleImportJobOverrideParameters | undefined;
3963
3963
  /**
3964
3964
  * <p>The failure action for the import job.</p>
3965
3965
  * <p>If you choose <code>ROLLBACK</code>, failed import jobs will attempt to undo any asset changes caused by the failed job.</p>
@@ -3967,22 +3967,22 @@ export interface StartAssetBundleImportJobRequest {
3967
3967
  * any asset changes caused by the failed job, possibly keeping the Amazon QuickSight account in an inconsistent state.</p>
3968
3968
  * @public
3969
3969
  */
3970
- FailureAction?: AssetBundleImportFailureAction;
3970
+ FailureAction?: AssetBundleImportFailureAction | undefined;
3971
3971
  /**
3972
3972
  * <p>Optional permission overrides that are applied to the resource configuration before import.</p>
3973
3973
  * @public
3974
3974
  */
3975
- OverridePermissions?: AssetBundleImportJobOverridePermissions;
3975
+ OverridePermissions?: AssetBundleImportJobOverridePermissions | undefined;
3976
3976
  /**
3977
3977
  * <p>Optional tag overrides that are applied to the resource configuration before import.</p>
3978
3978
  * @public
3979
3979
  */
3980
- OverrideTags?: AssetBundleImportJobOverrideTags;
3980
+ OverrideTags?: AssetBundleImportJobOverrideTags | undefined;
3981
3981
  /**
3982
3982
  * <p>An optional validation strategy override for all analyses and dashboards that is applied to the resource configuration before import. </p>
3983
3983
  * @public
3984
3984
  */
3985
- OverrideValidationStrategy?: AssetBundleImportJobOverrideValidationStrategy;
3985
+ OverrideValidationStrategy?: AssetBundleImportJobOverrideValidationStrategy | undefined;
3986
3986
  }
3987
3987
  /**
3988
3988
  * @public
@@ -3992,22 +3992,22 @@ export interface StartAssetBundleImportJobResponse {
3992
3992
  * <p>The Amazon Resource Name (ARN) for the import job.</p>
3993
3993
  * @public
3994
3994
  */
3995
- Arn?: string;
3995
+ Arn?: string | undefined;
3996
3996
  /**
3997
3997
  * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
3998
3998
  * @public
3999
3999
  */
4000
- AssetBundleImportJobId?: string;
4000
+ AssetBundleImportJobId?: string | undefined;
4001
4001
  /**
4002
4002
  * <p>The Amazon Web Services response ID for this operation.</p>
4003
4003
  * @public
4004
4004
  */
4005
- RequestId?: string;
4005
+ RequestId?: string | undefined;
4006
4006
  /**
4007
4007
  * <p>The HTTP status of the response.</p>
4008
4008
  * @public
4009
4009
  */
4010
- Status?: number;
4010
+ Status?: number | undefined;
4011
4011
  }
4012
4012
  /**
4013
4013
  * <p>A structure that contains information on the anonymous user configuration.</p>
@@ -4019,7 +4019,7 @@ export interface SnapshotAnonymousUser {
4019
4019
  * <p>These are not the tags that are used for Amazon Web Services resource tagging. For more information on row level security in Amazon QuickSight, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/quicksight-dev-rls-tags.html">Using Row-Level Security (RLS) with Tags</a>in the <i>Amazon QuickSight User Guide</i>.</p>
4020
4020
  * @public
4021
4021
  */
4022
- RowLevelPermissionTags?: SessionTag[];
4022
+ RowLevelPermissionTags?: SessionTag[] | undefined;
4023
4023
  }
4024
4024
  /**
4025
4025
  * <p>A structure that contains information about the users that the dashboard snapshot is generated for.</p>
@@ -4030,7 +4030,7 @@ export interface SnapshotUserConfiguration {
4030
4030
  * <p>An array of records that describe the anonymous users that the dashboard snapshot is generated for.</p>
4031
4031
  * @public
4032
4032
  */
4033
- AnonymousUsers?: SnapshotAnonymousUser[];
4033
+ AnonymousUsers?: SnapshotAnonymousUser[] | undefined;
4034
4034
  }
4035
4035
  /**
4036
4036
  * @public
@@ -4072,24 +4072,24 @@ export interface StartDashboardSnapshotJobResponse {
4072
4072
  * <p>The Amazon Resource Name (ARN) for the dashboard snapshot job.</p>
4073
4073
  * @public
4074
4074
  */
4075
- Arn?: string;
4075
+ Arn?: string | undefined;
4076
4076
  /**
4077
4077
  * <p>The ID of the job. The job ID is set when you start a new job with a <code>StartDashboardSnapshotJob</code> API call.</p>
4078
4078
  * @public
4079
4079
  */
4080
- SnapshotJobId?: string;
4080
+ SnapshotJobId?: string | undefined;
4081
4081
  /**
4082
4082
  * <p>
4083
4083
  * The Amazon Web Services request ID for this operation.
4084
4084
  * </p>
4085
4085
  * @public
4086
4086
  */
4087
- RequestId?: string;
4087
+ RequestId?: string | undefined;
4088
4088
  /**
4089
4089
  * <p>The HTTP status of the request</p>
4090
4090
  * @public
4091
4091
  */
4092
- Status?: number;
4092
+ Status?: number | undefined;
4093
4093
  }
4094
4094
  /**
4095
4095
  * @public
@@ -4122,12 +4122,12 @@ export interface StartDashboardSnapshotJobScheduleResponse {
4122
4122
  * </p>
4123
4123
  * @public
4124
4124
  */
4125
- RequestId?: string;
4125
+ RequestId?: string | undefined;
4126
4126
  /**
4127
4127
  * <p>The HTTP status of the request</p>
4128
4128
  * @public
4129
4129
  */
4130
- Status?: number;
4130
+ Status?: number | undefined;
4131
4131
  }
4132
4132
  /**
4133
4133
  * @public
@@ -4152,12 +4152,12 @@ export interface TagResourceResponse {
4152
4152
  * <p>The Amazon Web Services request ID for this operation.</p>
4153
4153
  * @public
4154
4154
  */
4155
- RequestId?: string;
4155
+ RequestId?: string | undefined;
4156
4156
  /**
4157
4157
  * <p>The HTTP status of the request.</p>
4158
4158
  * @public
4159
4159
  */
4160
- Status?: number;
4160
+ Status?: number | undefined;
4161
4161
  }
4162
4162
  /**
4163
4163
  * @public
@@ -4182,12 +4182,12 @@ export interface UntagResourceResponse {
4182
4182
  * <p>The Amazon Web Services request ID for this operation.</p>
4183
4183
  * @public
4184
4184
  */
4185
- RequestId?: string;
4185
+ RequestId?: string | undefined;
4186
4186
  /**
4187
4187
  * <p>The HTTP status of the request.</p>
4188
4188
  * @public
4189
4189
  */
4190
- Status?: number;
4190
+ Status?: number | undefined;
4191
4191
  }
4192
4192
  /**
4193
4193
  * @public
@@ -4203,7 +4203,7 @@ export interface UpdateAccountCustomizationRequest {
4203
4203
  * <p>The namespace that you want to update Amazon QuickSight customizations for.</p>
4204
4204
  * @public
4205
4205
  */
4206
- Namespace?: string;
4206
+ Namespace?: string | undefined;
4207
4207
  /**
4208
4208
  * <p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region. </p>
4209
4209
  * @public
@@ -4218,33 +4218,33 @@ export interface UpdateAccountCustomizationResponse {
4218
4218
  * <p>The Amazon Resource Name (ARN) for the updated customization for this Amazon Web Services account.</p>
4219
4219
  * @public
4220
4220
  */
4221
- Arn?: string;
4221
+ Arn?: string | undefined;
4222
4222
  /**
4223
4223
  * <p>The ID for the Amazon Web Services account that you want to update Amazon QuickSight customizations
4224
4224
  * for.</p>
4225
4225
  * @public
4226
4226
  */
4227
- AwsAccountId?: string;
4227
+ AwsAccountId?: string | undefined;
4228
4228
  /**
4229
4229
  * <p>The namespace associated with the customization that you're updating.</p>
4230
4230
  * @public
4231
4231
  */
4232
- Namespace?: string;
4232
+ Namespace?: string | undefined;
4233
4233
  /**
4234
4234
  * <p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region. </p>
4235
4235
  * @public
4236
4236
  */
4237
- AccountCustomization?: AccountCustomization;
4237
+ AccountCustomization?: AccountCustomization | undefined;
4238
4238
  /**
4239
4239
  * <p>The Amazon Web Services request ID for this operation.</p>
4240
4240
  * @public
4241
4241
  */
4242
- RequestId?: string;
4242
+ RequestId?: string | undefined;
4243
4243
  /**
4244
4244
  * <p>The HTTP status of the request.</p>
4245
4245
  * @public
4246
4246
  */
4247
- Status?: number;
4247
+ Status?: number | undefined;
4248
4248
  }
4249
4249
  /**
4250
4250
  * @public
@@ -4270,12 +4270,12 @@ export interface UpdateAccountSettingsRequest {
4270
4270
  * Amazon Web Services account or Amazon QuickSight subscription.</p>
4271
4271
  * @public
4272
4272
  */
4273
- NotificationEmail?: string;
4273
+ NotificationEmail?: string | undefined;
4274
4274
  /**
4275
4275
  * <p>A boolean value that determines whether or not an Amazon QuickSight account can be deleted. A <code>True</code> value doesn't allow the account to be deleted and results in an error message if a user tries to make a <code>DeleteAccountSubscription</code> request. A <code>False</code> value will allow the account to be deleted.</p>
4276
4276
  * @public
4277
4277
  */
4278
- TerminationProtectionEnabled?: boolean;
4278
+ TerminationProtectionEnabled?: boolean | undefined;
4279
4279
  }
4280
4280
  /**
4281
4281
  * @public
@@ -4285,12 +4285,12 @@ export interface UpdateAccountSettingsResponse {
4285
4285
  * <p>The Amazon Web Services request ID for this operation.</p>
4286
4286
  * @public
4287
4287
  */
4288
- RequestId?: string;
4288
+ RequestId?: string | undefined;
4289
4289
  /**
4290
4290
  * <p>The HTTP status of the request.</p>
4291
4291
  * @public
4292
4292
  */
4293
- Status?: number;
4293
+ Status?: number | undefined;
4294
4294
  }
4295
4295
  /**
4296
4296
  * @public
@@ -4318,31 +4318,31 @@ export interface UpdateAnalysisRequest {
4318
4318
  * any parameter type, and some parameters might accept multiple values. </p>
4319
4319
  * @public
4320
4320
  */
4321
- Parameters?: _Parameters;
4321
+ Parameters?: _Parameters | undefined;
4322
4322
  /**
4323
4323
  * <p>A source entity to use for the analysis that you're updating. This metadata structure
4324
4324
  * contains details that describe a source template and one or more datasets.</p>
4325
4325
  * @public
4326
4326
  */
4327
- SourceEntity?: AnalysisSourceEntity;
4327
+ SourceEntity?: AnalysisSourceEntity | undefined;
4328
4328
  /**
4329
4329
  * <p>The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're
4330
4330
  * creating. To see the theme in the Amazon QuickSight console, make sure that you have access to
4331
4331
  * it.</p>
4332
4332
  * @public
4333
4333
  */
4334
- ThemeArn?: string;
4334
+ ThemeArn?: string | undefined;
4335
4335
  /**
4336
4336
  * <p>The definition of an analysis.</p>
4337
4337
  * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
4338
4338
  * @public
4339
4339
  */
4340
- Definition?: AnalysisDefinition;
4340
+ Definition?: AnalysisDefinition | undefined;
4341
4341
  /**
4342
4342
  * <p>The option to relax the validation needed to update an analysis with definition objects. This skips the validation step for specific errors.</p>
4343
4343
  * @public
4344
4344
  */
4345
- ValidationStrategy?: ValidationStrategy;
4345
+ ValidationStrategy?: ValidationStrategy | undefined;
4346
4346
  }
4347
4347
  /**
4348
4348
  * @public
@@ -4352,27 +4352,27 @@ export interface UpdateAnalysisResponse {
4352
4352
  * <p>The ARN of the analysis that you're updating.</p>
4353
4353
  * @public
4354
4354
  */
4355
- Arn?: string;
4355
+ Arn?: string | undefined;
4356
4356
  /**
4357
4357
  * <p>The ID of the analysis.</p>
4358
4358
  * @public
4359
4359
  */
4360
- AnalysisId?: string;
4360
+ AnalysisId?: string | undefined;
4361
4361
  /**
4362
4362
  * <p>The update status of the last update that was made to the analysis.</p>
4363
4363
  * @public
4364
4364
  */
4365
- UpdateStatus?: ResourceStatus;
4365
+ UpdateStatus?: ResourceStatus | undefined;
4366
4366
  /**
4367
4367
  * <p>The HTTP status of the request.</p>
4368
4368
  * @public
4369
4369
  */
4370
- Status?: number;
4370
+ Status?: number | undefined;
4371
4371
  /**
4372
4372
  * <p>The Amazon Web Services request ID for this operation.</p>
4373
4373
  * @public
4374
4374
  */
4375
- RequestId?: string;
4375
+ RequestId?: string | undefined;
4376
4376
  }
4377
4377
  /**
4378
4378
  * @public
@@ -4395,13 +4395,13 @@ export interface UpdateAnalysisPermissionsRequest {
4395
4395
  * to.</p>
4396
4396
  * @public
4397
4397
  */
4398
- GrantPermissions?: ResourcePermission[];
4398
+ GrantPermissions?: ResourcePermission[] | undefined;
4399
4399
  /**
4400
4400
  * <p>A structure that describes the permissions to remove and the principal to remove them
4401
4401
  * from.</p>
4402
4402
  * @public
4403
4403
  */
4404
- RevokePermissions?: ResourcePermission[];
4404
+ RevokePermissions?: ResourcePermission[] | undefined;
4405
4405
  }
4406
4406
  /**
4407
4407
  * @public
@@ -4411,28 +4411,28 @@ export interface UpdateAnalysisPermissionsResponse {
4411
4411
  * <p>The Amazon Resource Name (ARN) of the analysis that you updated.</p>
4412
4412
  * @public
4413
4413
  */
4414
- AnalysisArn?: string;
4414
+ AnalysisArn?: string | undefined;
4415
4415
  /**
4416
4416
  * <p>The ID of the analysis that you updated permissions for.</p>
4417
4417
  * @public
4418
4418
  */
4419
- AnalysisId?: string;
4419
+ AnalysisId?: string | undefined;
4420
4420
  /**
4421
4421
  * <p>A structure that describes the principals and the resource-level permissions on an
4422
4422
  * analysis.</p>
4423
4423
  * @public
4424
4424
  */
4425
- Permissions?: ResourcePermission[];
4425
+ Permissions?: ResourcePermission[] | undefined;
4426
4426
  /**
4427
4427
  * <p>The Amazon Web Services request ID for this operation.</p>
4428
4428
  * @public
4429
4429
  */
4430
- RequestId?: string;
4430
+ RequestId?: string | undefined;
4431
4431
  /**
4432
4432
  * <p>The HTTP status of the request.</p>
4433
4433
  * @public
4434
4434
  */
4435
- Status?: number;
4435
+ Status?: number | undefined;
4436
4436
  }
4437
4437
  /**
4438
4438
  * @public
@@ -4470,19 +4470,19 @@ export interface UpdateDashboardRequest {
4470
4470
  * each dataset must match its placeholder. </p>
4471
4471
  * @public
4472
4472
  */
4473
- SourceEntity?: DashboardSourceEntity;
4473
+ SourceEntity?: DashboardSourceEntity | undefined;
4474
4474
  /**
4475
4475
  * <p>A structure that contains the parameters of the dashboard. These are parameter
4476
4476
  * overrides for a dashboard. A dashboard can have any type of parameters, and some
4477
4477
  * parameters might accept multiple values.</p>
4478
4478
  * @public
4479
4479
  */
4480
- Parameters?: _Parameters;
4480
+ Parameters?: _Parameters | undefined;
4481
4481
  /**
4482
4482
  * <p>A description for the first version of the dashboard being created.</p>
4483
4483
  * @public
4484
4484
  */
4485
- VersionDescription?: string;
4485
+ VersionDescription?: string | undefined;
4486
4486
  /**
4487
4487
  * <p>Options for publishing the dashboard when you create it:</p>
4488
4488
  * <ul>
@@ -4510,7 +4510,7 @@ export interface UpdateDashboardRequest {
4510
4510
  * </ul>
4511
4511
  * @public
4512
4512
  */
4513
- DashboardPublishOptions?: DashboardPublishOptions;
4513
+ DashboardPublishOptions?: DashboardPublishOptions | undefined;
4514
4514
  /**
4515
4515
  * <p>The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If
4516
4516
  * you add a value for this field, it overrides the value that was originally associated
@@ -4518,18 +4518,18 @@ export interface UpdateDashboardRequest {
4518
4518
  * dashboard.</p>
4519
4519
  * @public
4520
4520
  */
4521
- ThemeArn?: string;
4521
+ ThemeArn?: string | undefined;
4522
4522
  /**
4523
4523
  * <p>The definition of a dashboard.</p>
4524
4524
  * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
4525
4525
  * @public
4526
4526
  */
4527
- Definition?: DashboardVersionDefinition;
4527
+ Definition?: DashboardVersionDefinition | undefined;
4528
4528
  /**
4529
4529
  * <p>The option to relax the validation needed to update a dashboard with definition objects. This skips the validation step for specific errors.</p>
4530
4530
  * @public
4531
4531
  */
4532
- ValidationStrategy?: ValidationStrategy;
4532
+ ValidationStrategy?: ValidationStrategy | undefined;
4533
4533
  }
4534
4534
  /**
4535
4535
  * @public
@@ -4539,32 +4539,32 @@ export interface UpdateDashboardResponse {
4539
4539
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
4540
4540
  * @public
4541
4541
  */
4542
- Arn?: string;
4542
+ Arn?: string | undefined;
4543
4543
  /**
4544
4544
  * <p>The ARN of the dashboard, including the version number.</p>
4545
4545
  * @public
4546
4546
  */
4547
- VersionArn?: string;
4547
+ VersionArn?: string | undefined;
4548
4548
  /**
4549
4549
  * <p>The ID for the dashboard.</p>
4550
4550
  * @public
4551
4551
  */
4552
- DashboardId?: string;
4552
+ DashboardId?: string | undefined;
4553
4553
  /**
4554
4554
  * <p>The creation status of the request.</p>
4555
4555
  * @public
4556
4556
  */
4557
- CreationStatus?: ResourceStatus;
4557
+ CreationStatus?: ResourceStatus | undefined;
4558
4558
  /**
4559
4559
  * <p>The HTTP status of the request.</p>
4560
4560
  * @public
4561
4561
  */
4562
- Status?: number;
4562
+ Status?: number | undefined;
4563
4563
  /**
4564
4564
  * <p>The Amazon Web Services request ID for this operation.</p>
4565
4565
  * @public
4566
4566
  */
4567
- RequestId?: string;
4567
+ RequestId?: string | undefined;
4568
4568
  }
4569
4569
  /**
4570
4570
  * @public
@@ -4594,22 +4594,22 @@ export interface UpdateDashboardLinksResponse {
4594
4594
  * <p>The Amazon Web Services request ID for this operation.</p>
4595
4595
  * @public
4596
4596
  */
4597
- RequestId?: string;
4597
+ RequestId?: string | undefined;
4598
4598
  /**
4599
4599
  * <p>The HTTP status of the request.</p>
4600
4600
  * @public
4601
4601
  */
4602
- Status?: number;
4602
+ Status?: number | undefined;
4603
4603
  /**
4604
4604
  * <p>The Amazon Resource Name (ARN) of the dashboard.</p>
4605
4605
  * @public
4606
4606
  */
4607
- DashboardArn?: string;
4607
+ DashboardArn?: string | undefined;
4608
4608
  /**
4609
4609
  * <p>A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.</p>
4610
4610
  * @public
4611
4611
  */
4612
- LinkEntities?: string[];
4612
+ LinkEntities?: string[] | undefined;
4613
4613
  }
4614
4614
  /**
4615
4615
  * @public
@@ -4630,22 +4630,22 @@ export interface UpdateDashboardPermissionsRequest {
4630
4630
  * <p>The permissions that you want to grant on this resource.</p>
4631
4631
  * @public
4632
4632
  */
4633
- GrantPermissions?: ResourcePermission[];
4633
+ GrantPermissions?: ResourcePermission[] | undefined;
4634
4634
  /**
4635
4635
  * <p>The permissions that you want to revoke from this resource.</p>
4636
4636
  * @public
4637
4637
  */
4638
- RevokePermissions?: ResourcePermission[];
4638
+ RevokePermissions?: ResourcePermission[] | undefined;
4639
4639
  /**
4640
4640
  * <p>Grants link permissions to all users in a defined namespace.</p>
4641
4641
  * @public
4642
4642
  */
4643
- GrantLinkPermissions?: ResourcePermission[];
4643
+ GrantLinkPermissions?: ResourcePermission[] | undefined;
4644
4644
  /**
4645
4645
  * <p>Revokes link permissions from all users in a defined namespace.</p>
4646
4646
  * @public
4647
4647
  */
4648
- RevokeLinkPermissions?: ResourcePermission[];
4648
+ RevokeLinkPermissions?: ResourcePermission[] | undefined;
4649
4649
  }
4650
4650
  /**
4651
4651
  * @public
@@ -4655,32 +4655,32 @@ export interface UpdateDashboardPermissionsResponse {
4655
4655
  * <p>The Amazon Resource Name (ARN) of the dashboard.</p>
4656
4656
  * @public
4657
4657
  */
4658
- DashboardArn?: string;
4658
+ DashboardArn?: string | undefined;
4659
4659
  /**
4660
4660
  * <p>The ID for the dashboard.</p>
4661
4661
  * @public
4662
4662
  */
4663
- DashboardId?: string;
4663
+ DashboardId?: string | undefined;
4664
4664
  /**
4665
4665
  * <p>Information about the permissions on the dashboard.</p>
4666
4666
  * @public
4667
4667
  */
4668
- Permissions?: ResourcePermission[];
4668
+ Permissions?: ResourcePermission[] | undefined;
4669
4669
  /**
4670
4670
  * <p>The Amazon Web Services request ID for this operation.</p>
4671
4671
  * @public
4672
4672
  */
4673
- RequestId?: string;
4673
+ RequestId?: string | undefined;
4674
4674
  /**
4675
4675
  * <p>The HTTP status of the request.</p>
4676
4676
  * @public
4677
4677
  */
4678
- Status?: number;
4678
+ Status?: number | undefined;
4679
4679
  /**
4680
4680
  * <p>Updates the permissions of a shared link to an Amazon QuickSight dashboard.</p>
4681
4681
  * @public
4682
4682
  */
4683
- LinkSharingConfiguration?: LinkSharingConfiguration;
4683
+ LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
4684
4684
  }
4685
4685
  /**
4686
4686
  * @public
@@ -4711,22 +4711,22 @@ export interface UpdateDashboardPublishedVersionResponse {
4711
4711
  * <p>The ID for the dashboard.</p>
4712
4712
  * @public
4713
4713
  */
4714
- DashboardId?: string;
4714
+ DashboardId?: string | undefined;
4715
4715
  /**
4716
4716
  * <p>The Amazon Resource Name (ARN) of the dashboard.</p>
4717
4717
  * @public
4718
4718
  */
4719
- DashboardArn?: string;
4719
+ DashboardArn?: string | undefined;
4720
4720
  /**
4721
4721
  * <p>The HTTP status of the request.</p>
4722
4722
  * @public
4723
4723
  */
4724
- Status?: number;
4724
+ Status?: number | undefined;
4725
4725
  /**
4726
4726
  * <p>The Amazon Web Services request ID for this operation.</p>
4727
4727
  * @public
4728
4728
  */
4729
- RequestId?: string;
4729
+ RequestId?: string | undefined;
4730
4730
  }
4731
4731
  /**
4732
4732
  * @public
@@ -4757,7 +4757,7 @@ export interface UpdateDataSetRequest {
4757
4757
  * <p>Configures the combination and transformation of the data from the physical tables.</p>
4758
4758
  * @public
4759
4759
  */
4760
- LogicalTableMap?: Record<string, LogicalTable>;
4760
+ LogicalTableMap?: Record<string, LogicalTable> | undefined;
4761
4761
  /**
4762
4762
  * <p>Indicates whether you want to import the data into SPICE.</p>
4763
4763
  * @public
@@ -4767,39 +4767,39 @@ export interface UpdateDataSetRequest {
4767
4767
  * <p>Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial hierarchy is supported.</p>
4768
4768
  * @public
4769
4769
  */
4770
- ColumnGroups?: ColumnGroup[];
4770
+ ColumnGroups?: ColumnGroup[] | undefined;
4771
4771
  /**
4772
4772
  * <p>The folder that contains fields and nested subfolders for your dataset.</p>
4773
4773
  * @public
4774
4774
  */
4775
- FieldFolders?: Record<string, FieldFolder>;
4775
+ FieldFolders?: Record<string, FieldFolder> | undefined;
4776
4776
  /**
4777
4777
  * <p>The row-level security configuration for the data you want to create.</p>
4778
4778
  * @public
4779
4779
  */
4780
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
4780
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
4781
4781
  /**
4782
4782
  * <p>The configuration of tags on a dataset to set row-level security. Row-level security tags are currently supported for anonymous embedding only.</p>
4783
4783
  * @public
4784
4784
  */
4785
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
4785
+ RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration | undefined;
4786
4786
  /**
4787
4787
  * <p>A set of one or more definitions of a <code>
4788
4788
  * <a href="https://docs.aws.amazon.com/quicksight/latest/APIReference/API_ColumnLevelPermissionRule.html">ColumnLevelPermissionRule</a>
4789
4789
  * </code>.</p>
4790
4790
  * @public
4791
4791
  */
4792
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
4792
+ ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
4793
4793
  /**
4794
4794
  * <p>The usage configuration to apply to child datasets that reference this dataset as a source.</p>
4795
4795
  * @public
4796
4796
  */
4797
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
4797
+ DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
4798
4798
  /**
4799
4799
  * <p>The parameter declarations of the dataset.</p>
4800
4800
  * @public
4801
4801
  */
4802
- DatasetParameters?: DatasetParameter[];
4802
+ DatasetParameters?: DatasetParameter[] | undefined;
4803
4803
  }
4804
4804
  /**
4805
4805
  * @public
@@ -4809,34 +4809,34 @@ export interface UpdateDataSetResponse {
4809
4809
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
4810
4810
  * @public
4811
4811
  */
4812
- Arn?: string;
4812
+ Arn?: string | undefined;
4813
4813
  /**
4814
4814
  * <p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
4815
4815
  * @public
4816
4816
  */
4817
- DataSetId?: string;
4817
+ DataSetId?: string | undefined;
4818
4818
  /**
4819
4819
  * <p>The ARN for the ingestion, which is triggered as a result of dataset creation if the import
4820
4820
  * mode is SPICE.</p>
4821
4821
  * @public
4822
4822
  */
4823
- IngestionArn?: string;
4823
+ IngestionArn?: string | undefined;
4824
4824
  /**
4825
4825
  * <p>The ID of the ingestion, which is triggered as a result of dataset creation if the import
4826
4826
  * mode is SPICE.</p>
4827
4827
  * @public
4828
4828
  */
4829
- IngestionId?: string;
4829
+ IngestionId?: string | undefined;
4830
4830
  /**
4831
4831
  * <p>The Amazon Web Services request ID for this operation.</p>
4832
4832
  * @public
4833
4833
  */
4834
- RequestId?: string;
4834
+ RequestId?: string | undefined;
4835
4835
  /**
4836
4836
  * <p>The HTTP status of the request.</p>
4837
4837
  * @public
4838
4838
  */
4839
- Status?: number;
4839
+ Status?: number | undefined;
4840
4840
  }
4841
4841
  /**
4842
4842
  * @public
@@ -4857,12 +4857,12 @@ export interface UpdateDataSetPermissionsRequest {
4857
4857
  * <p>The resource permissions that you want to grant to the dataset.</p>
4858
4858
  * @public
4859
4859
  */
4860
- GrantPermissions?: ResourcePermission[];
4860
+ GrantPermissions?: ResourcePermission[] | undefined;
4861
4861
  /**
4862
4862
  * <p>The resource permissions that you want to revoke from the dataset.</p>
4863
4863
  * @public
4864
4864
  */
4865
- RevokePermissions?: ResourcePermission[];
4865
+ RevokePermissions?: ResourcePermission[] | undefined;
4866
4866
  }
4867
4867
  /**
4868
4868
  * @public
@@ -4872,23 +4872,23 @@ export interface UpdateDataSetPermissionsResponse {
4872
4872
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
4873
4873
  * @public
4874
4874
  */
4875
- DataSetArn?: string;
4875
+ DataSetArn?: string | undefined;
4876
4876
  /**
4877
4877
  * <p>The ID for the dataset whose permissions you want to update. This ID is unique per
4878
4878
  * Amazon Web Services Region for each Amazon Web Services account.</p>
4879
4879
  * @public
4880
4880
  */
4881
- DataSetId?: string;
4881
+ DataSetId?: string | undefined;
4882
4882
  /**
4883
4883
  * <p>The Amazon Web Services request ID for this operation.</p>
4884
4884
  * @public
4885
4885
  */
4886
- RequestId?: string;
4886
+ RequestId?: string | undefined;
4887
4887
  /**
4888
4888
  * <p>The HTTP status of the request.</p>
4889
4889
  * @public
4890
4890
  */
4891
- Status?: number;
4891
+ Status?: number | undefined;
4892
4892
  }
4893
4893
  /**
4894
4894
  * @public
@@ -4913,25 +4913,25 @@ export interface UpdateDataSourceRequest {
4913
4913
  * <p>The parameters that Amazon QuickSight uses to connect to your underlying source.</p>
4914
4914
  * @public
4915
4915
  */
4916
- DataSourceParameters?: DataSourceParameters;
4916
+ DataSourceParameters?: DataSourceParameters | undefined;
4917
4917
  /**
4918
4918
  * <p>The credentials that Amazon QuickSight that uses to connect to your underlying source. Currently,
4919
4919
  * only credentials based on user name and password are supported.</p>
4920
4920
  * @public
4921
4921
  */
4922
- Credentials?: DataSourceCredentials;
4922
+ Credentials?: DataSourceCredentials | undefined;
4923
4923
  /**
4924
4924
  * <p>Use this parameter only when you want Amazon QuickSight to use a VPC connection when connecting to
4925
4925
  * your underlying source.</p>
4926
4926
  * @public
4927
4927
  */
4928
- VpcConnectionProperties?: VpcConnectionProperties;
4928
+ VpcConnectionProperties?: VpcConnectionProperties | undefined;
4929
4929
  /**
4930
4930
  * <p>Secure Socket Layer (SSL) properties that apply when Amazon QuickSight connects to your underlying
4931
4931
  * source.</p>
4932
4932
  * @public
4933
4933
  */
4934
- SslProperties?: SslProperties;
4934
+ SslProperties?: SslProperties | undefined;
4935
4935
  }
4936
4936
  /**
4937
4937
  * @public
@@ -4941,27 +4941,27 @@ export interface UpdateDataSourceResponse {
4941
4941
  * <p>The Amazon Resource Name (ARN) of the data source.</p>
4942
4942
  * @public
4943
4943
  */
4944
- Arn?: string;
4944
+ Arn?: string | undefined;
4945
4945
  /**
4946
4946
  * <p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
4947
4947
  * @public
4948
4948
  */
4949
- DataSourceId?: string;
4949
+ DataSourceId?: string | undefined;
4950
4950
  /**
4951
4951
  * <p>The update status of the data source's last update.</p>
4952
4952
  * @public
4953
4953
  */
4954
- UpdateStatus?: ResourceStatus;
4954
+ UpdateStatus?: ResourceStatus | undefined;
4955
4955
  /**
4956
4956
  * <p>The Amazon Web Services request ID for this operation.</p>
4957
4957
  * @public
4958
4958
  */
4959
- RequestId?: string;
4959
+ RequestId?: string | undefined;
4960
4960
  /**
4961
4961
  * <p>The HTTP status of the request.</p>
4962
4962
  * @public
4963
4963
  */
4964
- Status?: number;
4964
+ Status?: number | undefined;
4965
4965
  }
4966
4966
  /**
4967
4967
  * @public
@@ -4981,12 +4981,12 @@ export interface UpdateDataSourcePermissionsRequest {
4981
4981
  * <p>A list of resource permissions that you want to grant on the data source.</p>
4982
4982
  * @public
4983
4983
  */
4984
- GrantPermissions?: ResourcePermission[];
4984
+ GrantPermissions?: ResourcePermission[] | undefined;
4985
4985
  /**
4986
4986
  * <p>A list of resource permissions that you want to revoke on the data source.</p>
4987
4987
  * @public
4988
4988
  */
4989
- RevokePermissions?: ResourcePermission[];
4989
+ RevokePermissions?: ResourcePermission[] | undefined;
4990
4990
  }
4991
4991
  /**
4992
4992
  * @public
@@ -4996,22 +4996,22 @@ export interface UpdateDataSourcePermissionsResponse {
4996
4996
  * <p>The Amazon Resource Name (ARN) of the data source.</p>
4997
4997
  * @public
4998
4998
  */
4999
- DataSourceArn?: string;
4999
+ DataSourceArn?: string | undefined;
5000
5000
  /**
5001
5001
  * <p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
5002
5002
  * @public
5003
5003
  */
5004
- DataSourceId?: string;
5004
+ DataSourceId?: string | undefined;
5005
5005
  /**
5006
5006
  * <p>The Amazon Web Services request ID for this operation.</p>
5007
5007
  * @public
5008
5008
  */
5009
- RequestId?: string;
5009
+ RequestId?: string | undefined;
5010
5010
  /**
5011
5011
  * <p>The HTTP status of the request.</p>
5012
5012
  * @public
5013
5013
  */
5014
- Status?: number;
5014
+ Status?: number | undefined;
5015
5015
  }
5016
5016
  /**
5017
5017
  * @public
@@ -5041,22 +5041,22 @@ export interface UpdateFolderResponse {
5041
5041
  * <p>The HTTP status of the request.</p>
5042
5042
  * @public
5043
5043
  */
5044
- Status?: number;
5044
+ Status?: number | undefined;
5045
5045
  /**
5046
5046
  * <p>The Amazon Resource Name (ARN) of the folder.</p>
5047
5047
  * @public
5048
5048
  */
5049
- Arn?: string;
5049
+ Arn?: string | undefined;
5050
5050
  /**
5051
5051
  * <p>The ID of the folder.</p>
5052
5052
  * @public
5053
5053
  */
5054
- FolderId?: string;
5054
+ FolderId?: string | undefined;
5055
5055
  /**
5056
5056
  * <p>The Amazon Web Services request ID for this operation.</p>
5057
5057
  * @public
5058
5058
  */
5059
- RequestId?: string;
5059
+ RequestId?: string | undefined;
5060
5060
  }
5061
5061
  /**
5062
5062
  * @public
@@ -5076,12 +5076,12 @@ export interface UpdateFolderPermissionsRequest {
5076
5076
  * <p>The permissions that you want to grant on a resource. Namespace ARNs are not supported <code>Principal</code> values for folder permissions.</p>
5077
5077
  * @public
5078
5078
  */
5079
- GrantPermissions?: ResourcePermission[];
5079
+ GrantPermissions?: ResourcePermission[] | undefined;
5080
5080
  /**
5081
5081
  * <p>The permissions that you want to revoke from a resource. Namespace ARNs are not supported <code>Principal</code> values for folder permissions.</p>
5082
5082
  * @public
5083
5083
  */
5084
- RevokePermissions?: ResourcePermission[];
5084
+ RevokePermissions?: ResourcePermission[] | undefined;
5085
5085
  }
5086
5086
  /**
5087
5087
  * @public
@@ -5091,27 +5091,27 @@ export interface UpdateFolderPermissionsResponse {
5091
5091
  * <p>The HTTP status of the request.</p>
5092
5092
  * @public
5093
5093
  */
5094
- Status?: number;
5094
+ Status?: number | undefined;
5095
5095
  /**
5096
5096
  * <p>The Amazon Resource Name (ARN) of the folder.</p>
5097
5097
  * @public
5098
5098
  */
5099
- Arn?: string;
5099
+ Arn?: string | undefined;
5100
5100
  /**
5101
5101
  * <p>The ID of the folder.</p>
5102
5102
  * @public
5103
5103
  */
5104
- FolderId?: string;
5104
+ FolderId?: string | undefined;
5105
5105
  /**
5106
5106
  * <p>Information about the permissions for the folder.</p>
5107
5107
  * @public
5108
5108
  */
5109
- Permissions?: ResourcePermission[];
5109
+ Permissions?: ResourcePermission[] | undefined;
5110
5110
  /**
5111
5111
  * <p>The Amazon Web Services request ID for this operation.</p>
5112
5112
  * @public
5113
5113
  */
5114
- RequestId?: string;
5114
+ RequestId?: string | undefined;
5115
5115
  }
5116
5116
  /**
5117
5117
  * @public
@@ -5126,7 +5126,7 @@ export interface UpdateGroupRequest {
5126
5126
  * <p>The description for the group that you want to update.</p>
5127
5127
  * @public
5128
5128
  */
5129
- Description?: string;
5129
+ Description?: string | undefined;
5130
5130
  /**
5131
5131
  * <p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the
5132
5132
  * Amazon Web Services account that contains your Amazon QuickSight account.</p>
@@ -5147,17 +5147,17 @@ export interface UpdateGroupResponse {
5147
5147
  * <p>The name of the group.</p>
5148
5148
  * @public
5149
5149
  */
5150
- Group?: Group;
5150
+ Group?: Group | undefined;
5151
5151
  /**
5152
5152
  * <p>The Amazon Web Services request ID for this operation.</p>
5153
5153
  * @public
5154
5154
  */
5155
- RequestId?: string;
5155
+ RequestId?: string | undefined;
5156
5156
  /**
5157
5157
  * <p>The HTTP status of the request.</p>
5158
5158
  * @public
5159
5159
  */
5160
- Status?: number;
5160
+ Status?: number | undefined;
5161
5161
  }
5162
5162
  /**
5163
5163
  * @public
@@ -5203,19 +5203,19 @@ export interface UpdateIAMPolicyAssignmentRequest {
5203
5203
  * </ul>
5204
5204
  * @public
5205
5205
  */
5206
- AssignmentStatus?: AssignmentStatus;
5206
+ AssignmentStatus?: AssignmentStatus | undefined;
5207
5207
  /**
5208
5208
  * <p>The ARN for the IAM policy to apply to the Amazon QuickSight users and
5209
5209
  * groups specified in this assignment.</p>
5210
5210
  * @public
5211
5211
  */
5212
- PolicyArn?: string;
5212
+ PolicyArn?: string | undefined;
5213
5213
  /**
5214
5214
  * <p>The Amazon QuickSight users, groups, or both that you want to assign the policy
5215
5215
  * to.</p>
5216
5216
  * @public
5217
5217
  */
5218
- Identities?: Record<string, string[]>;
5218
+ Identities?: Record<string, string[]> | undefined;
5219
5219
  }
5220
5220
  /**
5221
5221
  * @public
@@ -5225,24 +5225,24 @@ export interface UpdateIAMPolicyAssignmentResponse {
5225
5225
  * <p>The name of the assignment or rule.</p>
5226
5226
  * @public
5227
5227
  */
5228
- AssignmentName?: string;
5228
+ AssignmentName?: string | undefined;
5229
5229
  /**
5230
5230
  * <p>The ID of the assignment.</p>
5231
5231
  * @public
5232
5232
  */
5233
- AssignmentId?: string;
5233
+ AssignmentId?: string | undefined;
5234
5234
  /**
5235
5235
  * <p>The ARN for the IAM policy applied to the Amazon QuickSight users and
5236
5236
  * groups specified in this assignment.</p>
5237
5237
  * @public
5238
5238
  */
5239
- PolicyArn?: string;
5239
+ PolicyArn?: string | undefined;
5240
5240
  /**
5241
5241
  * <p>The Amazon QuickSight users, groups, or both that the IAM policy is
5242
5242
  * assigned to.</p>
5243
5243
  * @public
5244
5244
  */
5245
- Identities?: Record<string, string[]>;
5245
+ Identities?: Record<string, string[]> | undefined;
5246
5246
  /**
5247
5247
  * <p>The status of the assignment. Possible values are as follows:</p>
5248
5248
  * <ul>
@@ -5264,17 +5264,17 @@ export interface UpdateIAMPolicyAssignmentResponse {
5264
5264
  * </ul>
5265
5265
  * @public
5266
5266
  */
5267
- AssignmentStatus?: AssignmentStatus;
5267
+ AssignmentStatus?: AssignmentStatus | undefined;
5268
5268
  /**
5269
5269
  * <p>The Amazon Web Services request ID for this operation.</p>
5270
5270
  * @public
5271
5271
  */
5272
- RequestId?: string;
5272
+ RequestId?: string | undefined;
5273
5273
  /**
5274
5274
  * <p>The HTTP status of the request.</p>
5275
5275
  * @public
5276
5276
  */
5277
- Status?: number;
5277
+ Status?: number | undefined;
5278
5278
  }
5279
5279
  /**
5280
5280
  * @public
@@ -5294,7 +5294,7 @@ export interface UpdateIdentityPropagationConfigRequest {
5294
5294
  * <p>Specifies a list of application ARNs that represent the authorized targets for a service.</p>
5295
5295
  * @public
5296
5296
  */
5297
- AuthorizedTargets?: string[];
5297
+ AuthorizedTargets?: string[] | undefined;
5298
5298
  }
5299
5299
  /**
5300
5300
  * @public
@@ -5304,12 +5304,12 @@ export interface UpdateIdentityPropagationConfigResponse {
5304
5304
  * <p>The Amazon Web Services request ID for this operation.</p>
5305
5305
  * @public
5306
5306
  */
5307
- RequestId?: string;
5307
+ RequestId?: string | undefined;
5308
5308
  /**
5309
5309
  * <p>The HTTP status of the request.</p>
5310
5310
  * @public
5311
5311
  */
5312
- Status?: number;
5312
+ Status?: number | undefined;
5313
5313
  }
5314
5314
  /**
5315
5315
  * @public
@@ -5324,22 +5324,22 @@ export interface UpdateIpRestrictionRequest {
5324
5324
  * <p>A map that describes the updated IP rules with CIDR ranges and descriptions.</p>
5325
5325
  * @public
5326
5326
  */
5327
- IpRestrictionRuleMap?: Record<string, string>;
5327
+ IpRestrictionRuleMap?: Record<string, string> | undefined;
5328
5328
  /**
5329
5329
  * <p>A map of VPC IDs and their corresponding rules. When you configure this parameter, traffic from all VPC endpoints that are present in the specified VPC is allowed.</p>
5330
5330
  * @public
5331
5331
  */
5332
- VpcIdRestrictionRuleMap?: Record<string, string>;
5332
+ VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
5333
5333
  /**
5334
5334
  * <p>A map of allowed VPC endpoint IDs and their corresponding rule descriptions.</p>
5335
5335
  * @public
5336
5336
  */
5337
- VpcEndpointIdRestrictionRuleMap?: Record<string, string>;
5337
+ VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
5338
5338
  /**
5339
5339
  * <p>A value that specifies whether IP rules are turned on.</p>
5340
5340
  * @public
5341
5341
  */
5342
- Enabled?: boolean;
5342
+ Enabled?: boolean | undefined;
5343
5343
  }
5344
5344
  /**
5345
5345
  * @public
@@ -5349,17 +5349,17 @@ export interface UpdateIpRestrictionResponse {
5349
5349
  * <p>The ID of the Amazon Web Services account that contains the IP rules.</p>
5350
5350
  * @public
5351
5351
  */
5352
- AwsAccountId?: string;
5352
+ AwsAccountId?: string | undefined;
5353
5353
  /**
5354
5354
  * <p>The Amazon Web Services request ID for this operation.</p>
5355
5355
  * @public
5356
5356
  */
5357
- RequestId?: string;
5357
+ RequestId?: string | undefined;
5358
5358
  /**
5359
5359
  * <p>The HTTP status of the request. </p>
5360
5360
  * @public
5361
5361
  */
5362
- Status?: number;
5362
+ Status?: number | undefined;
5363
5363
  }
5364
5364
  /**
5365
5365
  * @public
@@ -5400,17 +5400,17 @@ export interface UpdateKeyRegistrationResponse {
5400
5400
  * <p>A list of all customer managed key registrations that failed to update.</p>
5401
5401
  * @public
5402
5402
  */
5403
- FailedKeyRegistration?: FailedKeyRegistrationEntry[];
5403
+ FailedKeyRegistration?: FailedKeyRegistrationEntry[] | undefined;
5404
5404
  /**
5405
5405
  * <p>A list of all customer managed key registrations that were successfully updated.</p>
5406
5406
  * @public
5407
5407
  */
5408
- SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[];
5408
+ SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[] | undefined;
5409
5409
  /**
5410
5410
  * <p>The Amazon Web Services request ID for this operation.</p>
5411
5411
  * @public
5412
5412
  */
5413
- RequestId?: string;
5413
+ RequestId?: string | undefined;
5414
5414
  }
5415
5415
  /**
5416
5416
  * @public
@@ -5425,7 +5425,7 @@ export interface UpdatePublicSharingSettingsRequest {
5425
5425
  * <p>A Boolean value that indicates whether public sharing is turned on for an Amazon QuickSight account.</p>
5426
5426
  * @public
5427
5427
  */
5428
- PublicSharingEnabled?: boolean;
5428
+ PublicSharingEnabled?: boolean | undefined;
5429
5429
  }
5430
5430
  /**
5431
5431
  * @public
@@ -5435,12 +5435,12 @@ export interface UpdatePublicSharingSettingsResponse {
5435
5435
  * <p>The Amazon Web Services request ID for this operation.</p>
5436
5436
  * @public
5437
5437
  */
5438
- RequestId?: string;
5438
+ RequestId?: string | undefined;
5439
5439
  /**
5440
5440
  * <p>The HTTP status of the request.</p>
5441
5441
  * @public
5442
5442
  */
5443
- Status?: number;
5443
+ Status?: number | undefined;
5444
5444
  }
5445
5445
  /**
5446
5446
  * @public
@@ -5465,17 +5465,17 @@ export interface UpdateQPersonalizationConfigurationResponse {
5465
5465
  * <p>The personalization mode that is used for the personalization configuration.</p>
5466
5466
  * @public
5467
5467
  */
5468
- PersonalizationMode?: PersonalizationMode;
5468
+ PersonalizationMode?: PersonalizationMode | undefined;
5469
5469
  /**
5470
5470
  * <p>The Amazon Web Services request ID for this operation.</p>
5471
5471
  * @public
5472
5472
  */
5473
- RequestId?: string;
5473
+ RequestId?: string | undefined;
5474
5474
  /**
5475
5475
  * <p>The HTTP status of the request.</p>
5476
5476
  * @public
5477
5477
  */
5478
- Status?: number;
5478
+ Status?: number | undefined;
5479
5479
  }
5480
5480
  /**
5481
5481
  * @public
@@ -5505,22 +5505,22 @@ export interface UpdateRefreshScheduleResponse {
5505
5505
  * <p>The HTTP status of the request.</p>
5506
5506
  * @public
5507
5507
  */
5508
- Status?: number;
5508
+ Status?: number | undefined;
5509
5509
  /**
5510
5510
  * <p>The Amazon Web Services request ID for this operation.</p>
5511
5511
  * @public
5512
5512
  */
5513
- RequestId?: string;
5513
+ RequestId?: string | undefined;
5514
5514
  /**
5515
5515
  * <p>The ID of the refresh schedule.</p>
5516
5516
  * @public
5517
5517
  */
5518
- ScheduleId?: string;
5518
+ ScheduleId?: string | undefined;
5519
5519
  /**
5520
5520
  * <p>The Amazon Resource Name (ARN) for the refresh schedule.</p>
5521
5521
  * @public
5522
5522
  */
5523
- Arn?: string;
5523
+ Arn?: string | undefined;
5524
5524
  }
5525
5525
  /**
5526
5526
  * @public
@@ -5555,12 +5555,12 @@ export interface UpdateRoleCustomPermissionResponse {
5555
5555
  * <p>The Amazon Web Services request ID for this operation.</p>
5556
5556
  * @public
5557
5557
  */
5558
- RequestId?: string;
5558
+ RequestId?: string | undefined;
5559
5559
  /**
5560
5560
  * <p>The HTTP status of the request.</p>
5561
5561
  * @public
5562
5562
  */
5563
- Status?: number;
5563
+ Status?: number | undefined;
5564
5564
  }
5565
5565
  /**
5566
5566
  * @public
@@ -5595,12 +5595,12 @@ export interface UpdateSPICECapacityConfigurationResponse {
5595
5595
  * <p>The Amazon Web Services request ID for this operation.</p>
5596
5596
  * @public
5597
5597
  */
5598
- RequestId?: string;
5598
+ RequestId?: string | undefined;
5599
5599
  /**
5600
5600
  * <p>The HTTP status of the request.</p>
5601
5601
  * @public
5602
5602
  */
5603
- Status?: number;
5603
+ Status?: number | undefined;
5604
5604
  }
5605
5605
  /**
5606
5606
  * @public
@@ -5629,7 +5629,7 @@ export interface UpdateTemplateRequest {
5629
5629
  * in the original. The schema in each dataset must match its placeholder. </p>
5630
5630
  * @public
5631
5631
  */
5632
- SourceEntity?: TemplateSourceEntity;
5632
+ SourceEntity?: TemplateSourceEntity | undefined;
5633
5633
  /**
5634
5634
  * <p>A description of the current template version that is being updated. Every time you call
5635
5635
  * <code>UpdateTemplate</code>, you create a new version of the template. Each version
@@ -5637,23 +5637,23 @@ export interface UpdateTemplateRequest {
5637
5637
  * <code>VersionDescription</code> field.</p>
5638
5638
  * @public
5639
5639
  */
5640
- VersionDescription?: string;
5640
+ VersionDescription?: string | undefined;
5641
5641
  /**
5642
5642
  * <p>The name for the template.</p>
5643
5643
  * @public
5644
5644
  */
5645
- Name?: string;
5645
+ Name?: string | undefined;
5646
5646
  /**
5647
5647
  * <p>The definition of a template.</p>
5648
5648
  * <p>A definition is the data model of all features in a Dashboard, Template, or Analysis.</p>
5649
5649
  * @public
5650
5650
  */
5651
- Definition?: TemplateVersionDefinition;
5651
+ Definition?: TemplateVersionDefinition | undefined;
5652
5652
  /**
5653
5653
  * <p>The option to relax the validation needed to update a template with definition objects. This skips the validation step for specific errors.</p>
5654
5654
  * @public
5655
5655
  */
5656
- ValidationStrategy?: ValidationStrategy;
5656
+ ValidationStrategy?: ValidationStrategy | undefined;
5657
5657
  }
5658
5658
  /**
5659
5659
  * @public
@@ -5663,32 +5663,32 @@ export interface UpdateTemplateResponse {
5663
5663
  * <p>The ID for the template.</p>
5664
5664
  * @public
5665
5665
  */
5666
- TemplateId?: string;
5666
+ TemplateId?: string | undefined;
5667
5667
  /**
5668
5668
  * <p>The Amazon Resource Name (ARN) for the template.</p>
5669
5669
  * @public
5670
5670
  */
5671
- Arn?: string;
5671
+ Arn?: string | undefined;
5672
5672
  /**
5673
5673
  * <p>The ARN for the template, including the version information of the first version.</p>
5674
5674
  * @public
5675
5675
  */
5676
- VersionArn?: string;
5676
+ VersionArn?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>The creation status of the template.</p>
5679
5679
  * @public
5680
5680
  */
5681
- CreationStatus?: ResourceStatus;
5681
+ CreationStatus?: ResourceStatus | undefined;
5682
5682
  /**
5683
5683
  * <p>The HTTP status of the request.</p>
5684
5684
  * @public
5685
5685
  */
5686
- Status?: number;
5686
+ Status?: number | undefined;
5687
5687
  /**
5688
5688
  * <p>The Amazon Web Services request ID for this operation.</p>
5689
5689
  * @public
5690
5690
  */
5691
- RequestId?: string;
5691
+ RequestId?: string | undefined;
5692
5692
  }
5693
5693
  /**
5694
5694
  * @public
@@ -5726,17 +5726,17 @@ export interface UpdateTemplateAliasResponse {
5726
5726
  * <p>The template alias.</p>
5727
5727
  * @public
5728
5728
  */
5729
- TemplateAlias?: TemplateAlias;
5729
+ TemplateAlias?: TemplateAlias | undefined;
5730
5730
  /**
5731
5731
  * <p>The HTTP status of the request.</p>
5732
5732
  * @public
5733
5733
  */
5734
- Status?: number;
5734
+ Status?: number | undefined;
5735
5735
  /**
5736
5736
  * <p>The Amazon Web Services request ID for this operation.</p>
5737
5737
  * @public
5738
5738
  */
5739
- RequestId?: string;
5739
+ RequestId?: string | undefined;
5740
5740
  }
5741
5741
  /**
5742
5742
  * @public
@@ -5756,12 +5756,12 @@ export interface UpdateTemplatePermissionsRequest {
5756
5756
  * <p>A list of resource permissions to be granted on the template. </p>
5757
5757
  * @public
5758
5758
  */
5759
- GrantPermissions?: ResourcePermission[];
5759
+ GrantPermissions?: ResourcePermission[] | undefined;
5760
5760
  /**
5761
5761
  * <p>A list of resource permissions to be revoked from the template. </p>
5762
5762
  * @public
5763
5763
  */
5764
- RevokePermissions?: ResourcePermission[];
5764
+ RevokePermissions?: ResourcePermission[] | undefined;
5765
5765
  }
5766
5766
  /**
5767
5767
  * @public
@@ -5771,27 +5771,27 @@ export interface UpdateTemplatePermissionsResponse {
5771
5771
  * <p>The ID for the template.</p>
5772
5772
  * @public
5773
5773
  */
5774
- TemplateId?: string;
5774
+ TemplateId?: string | undefined;
5775
5775
  /**
5776
5776
  * <p>The Amazon Resource Name (ARN) of the template.</p>
5777
5777
  * @public
5778
5778
  */
5779
- TemplateArn?: string;
5779
+ TemplateArn?: string | undefined;
5780
5780
  /**
5781
5781
  * <p>A list of resource permissions to be set on the template.</p>
5782
5782
  * @public
5783
5783
  */
5784
- Permissions?: ResourcePermission[];
5784
+ Permissions?: ResourcePermission[] | undefined;
5785
5785
  /**
5786
5786
  * <p>The Amazon Web Services request ID for this operation.</p>
5787
5787
  * @public
5788
5788
  */
5789
- RequestId?: string;
5789
+ RequestId?: string | undefined;
5790
5790
  /**
5791
5791
  * <p>The HTTP status of the request.</p>
5792
5792
  * @public
5793
5793
  */
5794
- Status?: number;
5794
+ Status?: number | undefined;
5795
5795
  }
5796
5796
  /**
5797
5797
  * @public
@@ -5811,7 +5811,7 @@ export interface UpdateThemeRequest {
5811
5811
  * <p>The name for the theme.</p>
5812
5812
  * @public
5813
5813
  */
5814
- Name?: string;
5814
+ Name?: string | undefined;
5815
5815
  /**
5816
5816
  * <p>The theme ID, defined by Amazon QuickSight, that a custom theme inherits from.
5817
5817
  * All themes initially inherit from a default Amazon QuickSight theme.</p>
@@ -5824,12 +5824,12 @@ export interface UpdateThemeRequest {
5824
5824
  * theme maintains a description of the version in <code>VersionDescription</code>.</p>
5825
5825
  * @public
5826
5826
  */
5827
- VersionDescription?: string;
5827
+ VersionDescription?: string | undefined;
5828
5828
  /**
5829
5829
  * <p>The theme configuration, which contains the theme display properties.</p>
5830
5830
  * @public
5831
5831
  */
5832
- Configuration?: ThemeConfiguration;
5832
+ Configuration?: ThemeConfiguration | undefined;
5833
5833
  }
5834
5834
  /**
5835
5835
  * @public
@@ -5839,32 +5839,32 @@ export interface UpdateThemeResponse {
5839
5839
  * <p>The ID for the theme.</p>
5840
5840
  * @public
5841
5841
  */
5842
- ThemeId?: string;
5842
+ ThemeId?: string | undefined;
5843
5843
  /**
5844
5844
  * <p>The Amazon Resource Name (ARN) for the theme.</p>
5845
5845
  * @public
5846
5846
  */
5847
- Arn?: string;
5847
+ Arn?: string | undefined;
5848
5848
  /**
5849
5849
  * <p>The Amazon Resource Name (ARN) for the new version of the theme.</p>
5850
5850
  * @public
5851
5851
  */
5852
- VersionArn?: string;
5852
+ VersionArn?: string | undefined;
5853
5853
  /**
5854
5854
  * <p>The creation status of the theme.</p>
5855
5855
  * @public
5856
5856
  */
5857
- CreationStatus?: ResourceStatus;
5857
+ CreationStatus?: ResourceStatus | undefined;
5858
5858
  /**
5859
5859
  * <p>The HTTP status of the request.</p>
5860
5860
  * @public
5861
5861
  */
5862
- Status?: number;
5862
+ Status?: number | undefined;
5863
5863
  /**
5864
5864
  * <p>The Amazon Web Services request ID for this operation.</p>
5865
5865
  * @public
5866
5866
  */
5867
- RequestId?: string;
5867
+ RequestId?: string | undefined;
5868
5868
  }
5869
5869
  /**
5870
5870
  * @public
@@ -5899,17 +5899,17 @@ export interface UpdateThemeAliasResponse {
5899
5899
  * <p>Information about the theme alias.</p>
5900
5900
  * @public
5901
5901
  */
5902
- ThemeAlias?: ThemeAlias;
5902
+ ThemeAlias?: ThemeAlias | undefined;
5903
5903
  /**
5904
5904
  * <p>The HTTP status of the request.</p>
5905
5905
  * @public
5906
5906
  */
5907
- Status?: number;
5907
+ Status?: number | undefined;
5908
5908
  /**
5909
5909
  * <p>The Amazon Web Services request ID for this operation.</p>
5910
5910
  * @public
5911
5911
  */
5912
- RequestId?: string;
5912
+ RequestId?: string | undefined;
5913
5913
  }
5914
5914
  /**
5915
5915
  * @public
@@ -5929,12 +5929,12 @@ export interface UpdateThemePermissionsRequest {
5929
5929
  * <p>A list of resource permissions to be granted for the theme.</p>
5930
5930
  * @public
5931
5931
  */
5932
- GrantPermissions?: ResourcePermission[];
5932
+ GrantPermissions?: ResourcePermission[] | undefined;
5933
5933
  /**
5934
5934
  * <p>A list of resource permissions to be revoked from the theme.</p>
5935
5935
  * @public
5936
5936
  */
5937
- RevokePermissions?: ResourcePermission[];
5937
+ RevokePermissions?: ResourcePermission[] | undefined;
5938
5938
  }
5939
5939
  /**
5940
5940
  * @public
@@ -5944,27 +5944,27 @@ export interface UpdateThemePermissionsResponse {
5944
5944
  * <p>The ID for the theme.</p>
5945
5945
  * @public
5946
5946
  */
5947
- ThemeId?: string;
5947
+ ThemeId?: string | undefined;
5948
5948
  /**
5949
5949
  * <p>The Amazon Resource Name (ARN) of the theme.</p>
5950
5950
  * @public
5951
5951
  */
5952
- ThemeArn?: string;
5952
+ ThemeArn?: string | undefined;
5953
5953
  /**
5954
5954
  * <p>The resulting list of resource permissions for the theme.</p>
5955
5955
  * @public
5956
5956
  */
5957
- Permissions?: ResourcePermission[];
5957
+ Permissions?: ResourcePermission[] | undefined;
5958
5958
  /**
5959
5959
  * <p>The Amazon Web Services request ID for this operation.</p>
5960
5960
  * @public
5961
5961
  */
5962
- RequestId?: string;
5962
+ RequestId?: string | undefined;
5963
5963
  /**
5964
5964
  * <p>The HTTP status of the request.</p>
5965
5965
  * @public
5966
5966
  */
5967
- Status?: number;
5967
+ Status?: number | undefined;
5968
5968
  }
5969
5969
  /**
5970
5970
  * @public
@@ -5995,27 +5995,27 @@ export interface UpdateTopicResponse {
5995
5995
  * <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
5996
5996
  * @public
5997
5997
  */
5998
- TopicId?: string;
5998
+ TopicId?: string | undefined;
5999
5999
  /**
6000
6000
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
6001
6001
  * @public
6002
6002
  */
6003
- Arn?: string;
6003
+ Arn?: string | undefined;
6004
6004
  /**
6005
6005
  * <p>The Amazon Resource Name (ARN) of the topic refresh.</p>
6006
6006
  * @public
6007
6007
  */
6008
- RefreshArn?: string;
6008
+ RefreshArn?: string | undefined;
6009
6009
  /**
6010
6010
  * <p>The Amazon Web Services request ID for this operation.</p>
6011
6011
  * @public
6012
6012
  */
6013
- RequestId?: string;
6013
+ RequestId?: string | undefined;
6014
6014
  /**
6015
6015
  * <p>The HTTP status of the request.</p>
6016
6016
  * @public
6017
6017
  */
6018
- Status?: number;
6018
+ Status?: number | undefined;
6019
6019
  }
6020
6020
  /**
6021
6021
  * @public
@@ -6036,12 +6036,12 @@ export interface UpdateTopicPermissionsRequest {
6036
6036
  * <p>The resource permissions that you want to grant to the topic.</p>
6037
6037
  * @public
6038
6038
  */
6039
- GrantPermissions?: ResourcePermission[];
6039
+ GrantPermissions?: ResourcePermission[] | undefined;
6040
6040
  /**
6041
6041
  * <p>The resource permissions that you want to revoke from the topic.</p>
6042
6042
  * @public
6043
6043
  */
6044
- RevokePermissions?: ResourcePermission[];
6044
+ RevokePermissions?: ResourcePermission[] | undefined;
6045
6045
  }
6046
6046
  /**
6047
6047
  * @public
@@ -6051,27 +6051,27 @@ export interface UpdateTopicPermissionsResponse {
6051
6051
  * <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
6052
6052
  * @public
6053
6053
  */
6054
- TopicId?: string;
6054
+ TopicId?: string | undefined;
6055
6055
  /**
6056
6056
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
6057
6057
  * @public
6058
6058
  */
6059
- TopicArn?: string;
6059
+ TopicArn?: string | undefined;
6060
6060
  /**
6061
6061
  * <p>A list of resource permissions on the topic.</p>
6062
6062
  * @public
6063
6063
  */
6064
- Permissions?: ResourcePermission[];
6064
+ Permissions?: ResourcePermission[] | undefined;
6065
6065
  /**
6066
6066
  * <p>The HTTP status of the request.</p>
6067
6067
  * @public
6068
6068
  */
6069
- Status?: number;
6069
+ Status?: number | undefined;
6070
6070
  /**
6071
6071
  * <p>The Amazon Web Services request ID for this operation.</p>
6072
6072
  * @public
6073
6073
  */
6074
- RequestId?: string;
6074
+ RequestId?: string | undefined;
6075
6075
  }
6076
6076
  /**
6077
6077
  * @public
@@ -6107,27 +6107,27 @@ export interface UpdateTopicRefreshScheduleResponse {
6107
6107
  * <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
6108
6108
  * @public
6109
6109
  */
6110
- TopicId?: string;
6110
+ TopicId?: string | undefined;
6111
6111
  /**
6112
6112
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
6113
6113
  * @public
6114
6114
  */
6115
- TopicArn?: string;
6115
+ TopicArn?: string | undefined;
6116
6116
  /**
6117
6117
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
6118
6118
  * @public
6119
6119
  */
6120
- DatasetArn?: string;
6120
+ DatasetArn?: string | undefined;
6121
6121
  /**
6122
6122
  * <p>The HTTP status of the request.</p>
6123
6123
  * @public
6124
6124
  */
6125
- Status?: number;
6125
+ Status?: number | undefined;
6126
6126
  /**
6127
6127
  * <p>The Amazon Web Services request ID for this operation.</p>
6128
6128
  * @public
6129
6129
  */
6130
- RequestId?: string;
6130
+ RequestId?: string | undefined;
6131
6131
  }
6132
6132
  /**
6133
6133
  * @public
@@ -6218,7 +6218,7 @@ export interface UpdateUserRequest {
6218
6218
  * <p>This feature is available only to Amazon QuickSight Enterprise edition subscriptions.</p>
6219
6219
  * @public
6220
6220
  */
6221
- CustomPermissionsName?: string;
6221
+ CustomPermissionsName?: string | undefined;
6222
6222
  /**
6223
6223
  * <p>A flag that you use to indicate that you want to remove all custom permissions
6224
6224
  * from this user. Using this parameter resets the user to the state
@@ -6226,7 +6226,7 @@ export interface UpdateUserRequest {
6226
6226
  * NULL and it doesn't accept any other value.</p>
6227
6227
  * @public
6228
6228
  */
6229
- UnapplyCustomPermissions?: boolean;
6229
+ UnapplyCustomPermissions?: boolean | undefined;
6230
6230
  /**
6231
6231
  * <p>The type of supported external login provider that provides identity to let a user federate into Amazon QuickSight with an associated Identity and Access Management(IAM) role. The type of supported external login provider can be one of the following.</p>
6232
6232
  * <ul>
@@ -6249,19 +6249,19 @@ export interface UpdateUserRequest {
6249
6249
  * </ul>
6250
6250
  * @public
6251
6251
  */
6252
- ExternalLoginFederationProviderType?: string;
6252
+ ExternalLoginFederationProviderType?: string | undefined;
6253
6253
  /**
6254
6254
  * <p>The URL of the custom OpenID Connect (OIDC) provider that provides identity to let a user federate
6255
6255
  * into Amazon QuickSight with an associated Identity and Access Management(IAM) role. This parameter should
6256
6256
  * only be used when <code>ExternalLoginFederationProviderType</code> parameter is set to <code>CUSTOM_OIDC</code>.</p>
6257
6257
  * @public
6258
6258
  */
6259
- CustomFederationProviderUrl?: string;
6259
+ CustomFederationProviderUrl?: string | undefined;
6260
6260
  /**
6261
6261
  * <p>The identity ID for a user in the external login provider.</p>
6262
6262
  * @public
6263
6263
  */
6264
- ExternalLoginId?: string;
6264
+ ExternalLoginId?: string | undefined;
6265
6265
  }
6266
6266
  /**
6267
6267
  * @public
@@ -6271,17 +6271,17 @@ export interface UpdateUserResponse {
6271
6271
  * <p>The Amazon QuickSight user.</p>
6272
6272
  * @public
6273
6273
  */
6274
- User?: User;
6274
+ User?: User | undefined;
6275
6275
  /**
6276
6276
  * <p>The Amazon Web Services request ID for this operation.</p>
6277
6277
  * @public
6278
6278
  */
6279
- RequestId?: string;
6279
+ RequestId?: string | undefined;
6280
6280
  /**
6281
6281
  * <p>The HTTP status of the request.</p>
6282
6282
  * @public
6283
6283
  */
6284
- Status?: number;
6284
+ Status?: number | undefined;
6285
6285
  }
6286
6286
  /**
6287
6287
  * @public
@@ -6319,7 +6319,7 @@ export interface UpdateVPCConnectionRequest {
6319
6319
  * <p>A list of IP addresses of DNS resolver endpoints for the VPC connection.</p>
6320
6320
  * @public
6321
6321
  */
6322
- DnsResolvers?: string[];
6322
+ DnsResolvers?: string[] | undefined;
6323
6323
  /**
6324
6324
  * <p>An IAM role associated with the VPC connection.</p>
6325
6325
  * @public
@@ -6334,32 +6334,32 @@ export interface UpdateVPCConnectionResponse {
6334
6334
  * <p>The Amazon Resource Name (ARN) of the VPC connection.</p>
6335
6335
  * @public
6336
6336
  */
6337
- Arn?: string;
6337
+ Arn?: string | undefined;
6338
6338
  /**
6339
6339
  * <p>The ID of the VPC connection that you are updating. This ID is a unique identifier for each Amazon Web Services Region in anAmazon Web Services account.</p>
6340
6340
  * @public
6341
6341
  */
6342
- VPCConnectionId?: string;
6342
+ VPCConnectionId?: string | undefined;
6343
6343
  /**
6344
6344
  * <p>The update status of the VPC connection's last update.</p>
6345
6345
  * @public
6346
6346
  */
6347
- UpdateStatus?: VPCConnectionResourceStatus;
6347
+ UpdateStatus?: VPCConnectionResourceStatus | undefined;
6348
6348
  /**
6349
6349
  * <p>The availability status of the VPC connection.</p>
6350
6350
  * @public
6351
6351
  */
6352
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
6352
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
6353
6353
  /**
6354
6354
  * <p>The Amazon Web Services request ID for this operation.</p>
6355
6355
  * @public
6356
6356
  */
6357
- RequestId?: string;
6357
+ RequestId?: string | undefined;
6358
6358
  /**
6359
6359
  * <p>The HTTP status of the request.</p>
6360
6360
  * @public
6361
6361
  */
6362
- Status?: number;
6362
+ Status?: number | undefined;
6363
6363
  }
6364
6364
  /**
6365
6365
  * <p>The definition for a <code>TopicVisual</code>.</p>
@@ -6370,22 +6370,22 @@ export interface TopicVisual {
6370
6370
  * <p>The visual ID for the <code>TopicVisual</code>.</p>
6371
6371
  * @public
6372
6372
  */
6373
- VisualId?: string;
6373
+ VisualId?: string | undefined;
6374
6374
  /**
6375
6375
  * <p>The role for the <code>TopicVisual</code>.</p>
6376
6376
  * @public
6377
6377
  */
6378
- Role?: VisualRole;
6378
+ Role?: VisualRole | undefined;
6379
6379
  /**
6380
6380
  * <p>The ir for the <code>TopicVisual</code>.</p>
6381
6381
  * @public
6382
6382
  */
6383
- Ir?: TopicIR;
6383
+ Ir?: TopicIR | undefined;
6384
6384
  /**
6385
6385
  * <p>The supporting visuals for the <code>TopicVisual</code>.</p>
6386
6386
  * @public
6387
6387
  */
6388
- SupportingVisuals?: TopicVisual[];
6388
+ SupportingVisuals?: TopicVisual[] | undefined;
6389
6389
  }
6390
6390
  /**
6391
6391
  * <p>The definition for a <code>CreateTopicReviewedAnswer</code>.</p>
@@ -6411,17 +6411,17 @@ export interface CreateTopicReviewedAnswer {
6411
6411
  * <p>The Mir for the <code>CreateTopicReviewedAnswer</code>.</p>
6412
6412
  * @public
6413
6413
  */
6414
- Mir?: TopicIR;
6414
+ Mir?: TopicIR | undefined;
6415
6415
  /**
6416
6416
  * <p>The <code>PrimaryVisual</code> for the <code>CreateTopicReviewedAnswer</code>.</p>
6417
6417
  * @public
6418
6418
  */
6419
- PrimaryVisual?: TopicVisual;
6419
+ PrimaryVisual?: TopicVisual | undefined;
6420
6420
  /**
6421
6421
  * <p>The template for the <code>CreateTopicReviewedAnswer</code>.</p>
6422
6422
  * @public
6423
6423
  */
6424
- Template?: TopicTemplate;
6424
+ Template?: TopicTemplate | undefined;
6425
6425
  }
6426
6426
  /**
6427
6427
  * <p>The deinition for a <code>TopicReviewedAnswer</code>.</p>
@@ -6432,7 +6432,7 @@ export interface TopicReviewedAnswer {
6432
6432
  * <p>The Amazon Resource Name (ARN) of the reviewed answer.</p>
6433
6433
  * @public
6434
6434
  */
6435
- Arn?: string;
6435
+ Arn?: string | undefined;
6436
6436
  /**
6437
6437
  * <p>The answer ID of the reviewed answer.</p>
6438
6438
  * @public
@@ -6452,17 +6452,17 @@ export interface TopicReviewedAnswer {
6452
6452
  * <p>The mir for the <code>TopicReviewedAnswer</code>.</p>
6453
6453
  * @public
6454
6454
  */
6455
- Mir?: TopicIR;
6455
+ Mir?: TopicIR | undefined;
6456
6456
  /**
6457
6457
  * <p>The primary visual for the <code>TopicReviewedAnswer</code>.</p>
6458
6458
  * @public
6459
6459
  */
6460
- PrimaryVisual?: TopicVisual;
6460
+ PrimaryVisual?: TopicVisual | undefined;
6461
6461
  /**
6462
6462
  * <p>The template for the <code>TopicReviewedAnswer</code>.</p>
6463
6463
  * @public
6464
6464
  */
6465
- Template?: TopicTemplate;
6465
+ Template?: TopicTemplate | undefined;
6466
6466
  }
6467
6467
  /**
6468
6468
  * @public
@@ -6492,27 +6492,27 @@ export interface ListTopicReviewedAnswersResponse {
6492
6492
  * <p>The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
6493
6493
  * @public
6494
6494
  */
6495
- TopicId?: string;
6495
+ TopicId?: string | undefined;
6496
6496
  /**
6497
6497
  * <p>The Amazon Resource Name (ARN) of the topic.</p>
6498
6498
  * @public
6499
6499
  */
6500
- TopicArn?: string;
6500
+ TopicArn?: string | undefined;
6501
6501
  /**
6502
6502
  * <p>The definition of all Answers in the topic.</p>
6503
6503
  * @public
6504
6504
  */
6505
- Answers?: TopicReviewedAnswer[];
6505
+ Answers?: TopicReviewedAnswer[] | undefined;
6506
6506
  /**
6507
6507
  * <p>The HTTP status of the request.</p>
6508
6508
  * @public
6509
6509
  */
6510
- Status?: number;
6510
+ Status?: number | undefined;
6511
6511
  /**
6512
6512
  * <p>The Amazon Web Services request ID for this operation.</p>
6513
6513
  * @public
6514
6514
  */
6515
- RequestId?: string;
6515
+ RequestId?: string | undefined;
6516
6516
  }
6517
6517
  /**
6518
6518
  * @internal