@aws-sdk/client-quicksight 3.52.0 → 3.53.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.
@@ -3,3 +3,4 @@ export * from "./QuickSightClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { QuickSightServiceException } from "./models/QuickSightServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from QuickSight service.
4
+ */
5
+ export declare class QuickSightServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,18 +1,23 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
2
3
  /**
3
4
  * <p>You don't have access to this item. The provided credentials couldn't be
4
5
  * validated. You might not be authorized to carry out the request. Make sure that your
5
6
  * account is authorized to use the Amazon QuickSight service, that your policies have the
6
7
  * correct permissions, and that you are using the correct access keys.</p>
7
8
  */
8
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
9
- name: "AccessDeniedException";
10
- $fault: "client";
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
11
12
  Message?: string;
12
13
  /**
13
14
  * <p>The Amazon Web Services request ID for this request.</p>
14
15
  */
15
16
  RequestId?: string;
17
+ /**
18
+ * @internal
19
+ */
20
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
16
21
  }
17
22
  /**
18
23
  * <p>The Amazon QuickSight customizations associated with your Amazon Web Services account or a QuickSight namespace in a specific Amazon Web Services Region.</p>
@@ -571,26 +576,34 @@ export declare namespace CancelIngestionResponse {
571
576
  /**
572
577
  * <p>An internal failure occurred.</p>
573
578
  */
574
- export interface InternalFailureException extends __SmithyException, $MetadataBearer {
575
- name: "InternalFailureException";
576
- $fault: "server";
579
+ export declare class InternalFailureException extends __BaseException {
580
+ readonly name: "InternalFailureException";
581
+ readonly $fault: "server";
577
582
  Message?: string;
578
583
  /**
579
584
  * <p>The Amazon Web Services request ID for this request.</p>
580
585
  */
581
586
  RequestId?: string;
587
+ /**
588
+ * @internal
589
+ */
590
+ constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
582
591
  }
583
592
  /**
584
593
  * <p>One or more parameters has a value that isn't valid.</p>
585
594
  */
586
- export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
587
- name: "InvalidParameterValueException";
588
- $fault: "client";
595
+ export declare class InvalidParameterValueException extends __BaseException {
596
+ readonly name: "InvalidParameterValueException";
597
+ readonly $fault: "client";
589
598
  Message?: string;
590
599
  /**
591
600
  * <p>The Amazon Web Services request ID for this request.</p>
592
601
  */
593
602
  RequestId?: string;
603
+ /**
604
+ * @internal
605
+ */
606
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
594
607
  }
595
608
  export declare enum ExceptionResourceType {
596
609
  ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
@@ -606,9 +619,9 @@ export declare enum ExceptionResourceType {
606
619
  /**
607
620
  * <p>The resource specified already exists. </p>
608
621
  */
609
- export interface ResourceExistsException extends __SmithyException, $MetadataBearer {
610
- name: "ResourceExistsException";
611
- $fault: "client";
622
+ export declare class ResourceExistsException extends __BaseException {
623
+ readonly name: "ResourceExistsException";
624
+ readonly $fault: "client";
612
625
  Message?: string;
613
626
  /**
614
627
  * <p>The resource type for this request.</p>
@@ -618,13 +631,17 @@ export interface ResourceExistsException extends __SmithyException, $MetadataBea
618
631
  * <p>The Amazon Web Services request ID for this request.</p>
619
632
  */
620
633
  RequestId?: string;
634
+ /**
635
+ * @internal
636
+ */
637
+ constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
621
638
  }
622
639
  /**
623
640
  * <p>One or more resources can't be found.</p>
624
641
  */
625
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
626
- name: "ResourceNotFoundException";
627
- $fault: "client";
642
+ export declare class ResourceNotFoundException extends __BaseException {
643
+ readonly name: "ResourceNotFoundException";
644
+ readonly $fault: "client";
628
645
  Message?: string;
629
646
  /**
630
647
  * <p>The resource type for this request.</p>
@@ -634,18 +651,26 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
634
651
  * <p>The Amazon Web Services request ID for this request.</p>
635
652
  */
636
653
  RequestId?: string;
654
+ /**
655
+ * @internal
656
+ */
657
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
637
658
  }
638
659
  /**
639
660
  * <p>Access is throttled.</p>
640
661
  */
641
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
642
- name: "ThrottlingException";
643
- $fault: "client";
662
+ export declare class ThrottlingException extends __BaseException {
663
+ readonly name: "ThrottlingException";
664
+ readonly $fault: "client";
644
665
  Message?: string;
645
666
  /**
646
667
  * <p>The Amazon Web Services request ID for this request.</p>
647
668
  */
648
669
  RequestId?: string;
670
+ /**
671
+ * @internal
672
+ */
673
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
649
674
  }
650
675
  export declare enum ColumnDataType {
651
676
  DATETIME = "DATETIME",
@@ -858,23 +883,31 @@ export declare enum ColumnTagName {
858
883
  * <p>A resource is already in a state that indicates an operation is happening that must complete
859
884
  * before a new update can be applied.</p>
860
885
  */
861
- export interface ConcurrentUpdatingException extends __SmithyException, $MetadataBearer {
862
- name: "ConcurrentUpdatingException";
863
- $fault: "server";
886
+ export declare class ConcurrentUpdatingException extends __BaseException {
887
+ readonly name: "ConcurrentUpdatingException";
888
+ readonly $fault: "server";
864
889
  Message?: string;
865
890
  RequestId?: string;
891
+ /**
892
+ * @internal
893
+ */
894
+ constructor(opts: __ExceptionOptionType<ConcurrentUpdatingException, __BaseException>);
866
895
  }
867
896
  /**
868
897
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
869
898
  */
870
- export interface ConflictException extends __SmithyException, $MetadataBearer {
871
- name: "ConflictException";
872
- $fault: "client";
899
+ export declare class ConflictException extends __BaseException {
900
+ readonly name: "ConflictException";
901
+ readonly $fault: "client";
873
902
  Message?: string;
874
903
  /**
875
904
  * <p>The Amazon Web Services request ID for this request.</p>
876
905
  */
877
906
  RequestId?: string;
907
+ /**
908
+ * @internal
909
+ */
910
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
878
911
  }
879
912
  /**
880
913
  * <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
@@ -962,9 +995,9 @@ export declare namespace CreateAccountCustomizationResponse {
962
995
  /**
963
996
  * <p>This resource is currently unavailable.</p>
964
997
  */
965
- export interface ResourceUnavailableException extends __SmithyException, $MetadataBearer {
966
- name: "ResourceUnavailableException";
967
- $fault: "server";
998
+ export declare class ResourceUnavailableException extends __BaseException {
999
+ readonly name: "ResourceUnavailableException";
1000
+ readonly $fault: "server";
968
1001
  Message?: string;
969
1002
  /**
970
1003
  * <p>The resource type for this request.</p>
@@ -974,6 +1007,10 @@ export interface ResourceUnavailableException extends __SmithyException, $Metada
974
1007
  * <p>The Amazon Web Services request ID for this request.</p>
975
1008
  */
976
1009
  RequestId?: string;
1010
+ /**
1011
+ * @internal
1012
+ */
1013
+ constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
977
1014
  }
978
1015
  /**
979
1016
  * <p>A date-time parameter.</p>
@@ -1196,14 +1233,18 @@ export declare namespace CreateAnalysisResponse {
1196
1233
  * Amazon QuickSight currently has Standard Edition and Enterprise Edition. Not every operation and
1197
1234
  * capability is available in every edition.</p>
1198
1235
  */
1199
- export interface UnsupportedUserEditionException extends __SmithyException, $MetadataBearer {
1200
- name: "UnsupportedUserEditionException";
1201
- $fault: "client";
1236
+ export declare class UnsupportedUserEditionException extends __BaseException {
1237
+ readonly name: "UnsupportedUserEditionException";
1238
+ readonly $fault: "client";
1202
1239
  Message?: string;
1203
1240
  /**
1204
1241
  * <p>The Amazon Web Services request ID for this request.</p>
1205
1242
  */
1206
1243
  RequestId?: string;
1244
+ /**
1245
+ * @internal
1246
+ */
1247
+ constructor(opts: __ExceptionOptionType<UnsupportedUserEditionException, __BaseException>);
1207
1248
  }
1208
1249
  /**
1209
1250
  * <p>A transform operation that creates calculated columns. Columns created in one such
@@ -2217,9 +2258,9 @@ export declare namespace CreateDataSetResponse {
2217
2258
  /**
2218
2259
  * <p>A limit is exceeded.</p>
2219
2260
  */
2220
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
2221
- name: "LimitExceededException";
2222
- $fault: "client";
2261
+ export declare class LimitExceededException extends __BaseException {
2262
+ readonly name: "LimitExceededException";
2263
+ readonly $fault: "client";
2223
2264
  Message?: string;
2224
2265
  /**
2225
2266
  * <p>Limit exceeded.</p>
@@ -2229,6 +2270,10 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
2229
2270
  * <p>The Amazon Web Services request ID for this request.</p>
2230
2271
  */
2231
2272
  RequestId?: string;
2273
+ /**
2274
+ * @internal
2275
+ */
2276
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
2232
2277
  }
2233
2278
  /**
2234
2279
  * <p>The required parameters for connecting to an Exasol data source.</p>
@@ -3675,14 +3720,18 @@ export declare namespace CreateGroupResponse {
3675
3720
  /**
3676
3721
  * <p>One or more preconditions aren't met.</p>
3677
3722
  */
3678
- export interface PreconditionNotMetException extends __SmithyException, $MetadataBearer {
3679
- name: "PreconditionNotMetException";
3680
- $fault: "client";
3723
+ export declare class PreconditionNotMetException extends __BaseException {
3724
+ readonly name: "PreconditionNotMetException";
3725
+ readonly $fault: "client";
3681
3726
  Message?: string;
3682
3727
  /**
3683
3728
  * <p>The Amazon Web Services request ID for this request.</p>
3684
3729
  */
3685
3730
  RequestId?: string;
3731
+ /**
3732
+ * @internal
3733
+ */
3734
+ constructor(opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>);
3686
3735
  }
3687
3736
  export interface CreateGroupMembershipRequest {
3688
3737
  /**
@@ -6552,14 +6601,18 @@ export declare namespace DescribeIAMPolicyAssignmentResponse {
6552
6601
  /**
6553
6602
  * <p>The <code>NextToken</code> value isn't valid.</p>
6554
6603
  */
6555
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
6556
- name: "InvalidNextTokenException";
6557
- $fault: "client";
6604
+ export declare class InvalidNextTokenException extends __BaseException {
6605
+ readonly name: "InvalidNextTokenException";
6606
+ readonly $fault: "client";
6558
6607
  Message?: string;
6559
6608
  /**
6560
6609
  * <p>The Amazon Web Services request ID for this request.</p>
6561
6610
  */
6562
6611
  RequestId?: string;
6612
+ /**
6613
+ * @internal
6614
+ */
6615
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
6563
6616
  }
6564
6617
  export interface DescribeIngestionRequest {
6565
6618
  /**
@@ -1,5 +1,6 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { _Parameters, AccountCustomization, ActiveIAMPolicyAssignment, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionSummary, DataSetImportMode, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, FieldFolder, FilterOperator, FolderType, Group, GroupMember, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, NamespaceInfoV2, PhysicalTable, ResourcePermission, ResourceStatus, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, ThemeAlias, ThemeConfiguration, ThemeType, VpcConnectionProperties } from "./models_0";
3
+ import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
3
4
  export declare enum UserRole {
4
5
  ADMIN = "ADMIN",
5
6
  AUTHOR = "AUTHOR",
@@ -128,14 +129,18 @@ export declare namespace DescribeUserResponse {
128
129
  * <p>The domain specified isn't on the allow list. All domains for embedded dashboards must be
129
130
  * added to the approved list by an Amazon QuickSight admin.</p>
130
131
  */
131
- export interface DomainNotWhitelistedException extends __SmithyException, $MetadataBearer {
132
- name: "DomainNotWhitelistedException";
133
- $fault: "client";
132
+ export declare class DomainNotWhitelistedException extends __BaseException {
133
+ readonly name: "DomainNotWhitelistedException";
134
+ readonly $fault: "client";
134
135
  Message?: string;
135
136
  /**
136
137
  * <p>The Amazon Web Services request ID for this request.</p>
137
138
  */
138
139
  RequestId?: string;
140
+ /**
141
+ * @internal
142
+ */
143
+ constructor(opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>);
139
144
  }
140
145
  export declare enum EmbeddingIdentityType {
141
146
  ANONYMOUS = "ANONYMOUS",
@@ -299,14 +304,18 @@ export declare namespace GenerateEmbedUrlForAnonymousUserResponse {
299
304
  * <p>The number of minutes specified for the lifetime of a session isn't valid. The session
300
305
  * lifetime must be 15-600 minutes.</p>
301
306
  */
302
- export interface SessionLifetimeInMinutesInvalidException extends __SmithyException, $MetadataBearer {
303
- name: "SessionLifetimeInMinutesInvalidException";
304
- $fault: "client";
307
+ export declare class SessionLifetimeInMinutesInvalidException extends __BaseException {
308
+ readonly name: "SessionLifetimeInMinutesInvalidException";
309
+ readonly $fault: "client";
305
310
  Message?: string;
306
311
  /**
307
312
  * <p>The Amazon Web Services request ID for this request.</p>
308
313
  */
309
314
  RequestId?: string;
315
+ /**
316
+ * @internal
317
+ */
318
+ constructor(opts: __ExceptionOptionType<SessionLifetimeInMinutesInvalidException, __BaseException>);
310
319
  }
311
320
  /**
312
321
  * <p>This error indicates that you are calling an embedding operation in Amazon QuickSight
@@ -319,14 +328,18 @@ export interface SessionLifetimeInMinutesInvalidException extends __SmithyExcept
319
328
  * </code> API operation with the
320
329
  * <code>--identity-type ANONYMOUS</code> option.</p>
321
330
  */
322
- export interface UnsupportedPricingPlanException extends __SmithyException, $MetadataBearer {
323
- name: "UnsupportedPricingPlanException";
324
- $fault: "client";
331
+ export declare class UnsupportedPricingPlanException extends __BaseException {
332
+ readonly name: "UnsupportedPricingPlanException";
333
+ readonly $fault: "client";
325
334
  Message?: string;
326
335
  /**
327
336
  * <p>The Amazon Web Services request ID for this request.</p>
328
337
  */
329
338
  RequestId?: string;
339
+ /**
340
+ * @internal
341
+ */
342
+ constructor(opts: __ExceptionOptionType<UnsupportedPricingPlanException, __BaseException>);
330
343
  }
331
344
  /**
332
345
  * <p>Information about the dashboard you want to embed.</p>
@@ -518,14 +531,18 @@ export declare namespace GenerateEmbedUrlForRegisteredUserResponse {
518
531
  * that requires finding a user based on a provided user name, such as
519
532
  * <code>DeleteUser</code>, <code>DescribeUser</code>, and so on.</p>
520
533
  */
521
- export interface QuickSightUserNotFoundException extends __SmithyException, $MetadataBearer {
522
- name: "QuickSightUserNotFoundException";
523
- $fault: "client";
534
+ export declare class QuickSightUserNotFoundException extends __BaseException {
535
+ readonly name: "QuickSightUserNotFoundException";
536
+ readonly $fault: "client";
524
537
  Message?: string;
525
538
  /**
526
539
  * <p>The Amazon Web Services request ID for this request.</p>
527
540
  */
528
541
  RequestId?: string;
542
+ /**
543
+ * @internal
544
+ */
545
+ constructor(opts: __ExceptionOptionType<QuickSightUserNotFoundException, __BaseException>);
529
546
  }
530
547
  export interface GetDashboardEmbedUrlRequest {
531
548
  /**
@@ -636,14 +653,18 @@ export declare namespace GetDashboardEmbedUrlResponse {
636
653
  * <p>The identity type specified isn't supported. Supported identity types include
637
654
  * <code>IAM</code> and <code>QUICKSIGHT</code>.</p>
638
655
  */
639
- export interface IdentityTypeNotSupportedException extends __SmithyException, $MetadataBearer {
640
- name: "IdentityTypeNotSupportedException";
641
- $fault: "client";
656
+ export declare class IdentityTypeNotSupportedException extends __BaseException {
657
+ readonly name: "IdentityTypeNotSupportedException";
658
+ readonly $fault: "client";
642
659
  Message?: string;
643
660
  /**
644
661
  * <p>The Amazon Web Services request ID for this request.</p>
645
662
  */
646
663
  RequestId?: string;
664
+ /**
665
+ * @internal
666
+ */
667
+ constructor(opts: __ExceptionOptionType<IdentityTypeNotSupportedException, __BaseException>);
647
668
  }
648
669
  export interface GetSessionEmbedUrlRequest {
649
670
  /**
@@ -3,3 +3,4 @@ export * from "./QuickSightClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { QuickSightServiceException } from "./models/QuickSightServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class QuickSightServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,11 +1,14 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
6
7
  Message?: string;
7
8
 
8
9
  RequestId?: string;
10
+
11
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
12
  }
10
13
 
11
14
  export interface AccountCustomization {
@@ -334,20 +337,24 @@ export declare namespace CancelIngestionResponse {
334
337
  const filterSensitiveLog: (obj: CancelIngestionResponse) => any;
335
338
  }
336
339
 
337
- export interface InternalFailureException extends __SmithyException, $MetadataBearer {
338
- name: "InternalFailureException";
339
- $fault: "server";
340
+ export declare class InternalFailureException extends __BaseException {
341
+ readonly name: "InternalFailureException";
342
+ readonly $fault: "server";
340
343
  Message?: string;
341
344
 
342
345
  RequestId?: string;
346
+
347
+ constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
343
348
  }
344
349
 
345
- export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
346
- name: "InvalidParameterValueException";
347
- $fault: "client";
350
+ export declare class InvalidParameterValueException extends __BaseException {
351
+ readonly name: "InvalidParameterValueException";
352
+ readonly $fault: "client";
348
353
  Message?: string;
349
354
 
350
355
  RequestId?: string;
356
+
357
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
351
358
  }
352
359
  export declare enum ExceptionResourceType {
353
360
  ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
@@ -361,32 +368,38 @@ export declare enum ExceptionResourceType {
361
368
  VPC_CONNECTION = "VPC_CONNECTION"
362
369
  }
363
370
 
364
- export interface ResourceExistsException extends __SmithyException, $MetadataBearer {
365
- name: "ResourceExistsException";
366
- $fault: "client";
371
+ export declare class ResourceExistsException extends __BaseException {
372
+ readonly name: "ResourceExistsException";
373
+ readonly $fault: "client";
367
374
  Message?: string;
368
375
 
369
376
  ResourceType?: ExceptionResourceType | string;
370
377
 
371
378
  RequestId?: string;
379
+
380
+ constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
372
381
  }
373
382
 
374
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
375
- name: "ResourceNotFoundException";
376
- $fault: "client";
383
+ export declare class ResourceNotFoundException extends __BaseException {
384
+ readonly name: "ResourceNotFoundException";
385
+ readonly $fault: "client";
377
386
  Message?: string;
378
387
 
379
388
  ResourceType?: ExceptionResourceType | string;
380
389
 
381
390
  RequestId?: string;
391
+
392
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
382
393
  }
383
394
 
384
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
385
- name: "ThrottlingException";
386
- $fault: "client";
395
+ export declare class ThrottlingException extends __BaseException {
396
+ readonly name: "ThrottlingException";
397
+ readonly $fault: "client";
387
398
  Message?: string;
388
399
 
389
400
  RequestId?: string;
401
+
402
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
390
403
  }
391
404
  export declare enum ColumnDataType {
392
405
  DATETIME = "DATETIME",
@@ -510,19 +523,23 @@ export declare enum ColumnTagName {
510
523
  COLUMN_GEOGRAPHIC_ROLE = "COLUMN_GEOGRAPHIC_ROLE"
511
524
  }
512
525
 
513
- export interface ConcurrentUpdatingException extends __SmithyException, $MetadataBearer {
514
- name: "ConcurrentUpdatingException";
515
- $fault: "server";
526
+ export declare class ConcurrentUpdatingException extends __BaseException {
527
+ readonly name: "ConcurrentUpdatingException";
528
+ readonly $fault: "server";
516
529
  Message?: string;
517
530
  RequestId?: string;
531
+
532
+ constructor(opts: __ExceptionOptionType<ConcurrentUpdatingException, __BaseException>);
518
533
  }
519
534
 
520
- export interface ConflictException extends __SmithyException, $MetadataBearer {
521
- name: "ConflictException";
522
- $fault: "client";
535
+ export declare class ConflictException extends __BaseException {
536
+ readonly name: "ConflictException";
537
+ readonly $fault: "client";
523
538
  Message?: string;
524
539
 
525
540
  RequestId?: string;
541
+
542
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
526
543
  }
527
544
 
528
545
  export interface Tag {
@@ -568,14 +585,16 @@ export declare namespace CreateAccountCustomizationResponse {
568
585
  const filterSensitiveLog: (obj: CreateAccountCustomizationResponse) => any;
569
586
  }
570
587
 
571
- export interface ResourceUnavailableException extends __SmithyException, $MetadataBearer {
572
- name: "ResourceUnavailableException";
573
- $fault: "server";
588
+ export declare class ResourceUnavailableException extends __BaseException {
589
+ readonly name: "ResourceUnavailableException";
590
+ readonly $fault: "server";
574
591
  Message?: string;
575
592
 
576
593
  ResourceType?: ExceptionResourceType | string;
577
594
 
578
595
  RequestId?: string;
596
+
597
+ constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
579
598
  }
580
599
 
581
600
  export interface DateTimeParameter {
@@ -686,12 +705,14 @@ export declare namespace CreateAnalysisResponse {
686
705
  const filterSensitiveLog: (obj: CreateAnalysisResponse) => any;
687
706
  }
688
707
 
689
- export interface UnsupportedUserEditionException extends __SmithyException, $MetadataBearer {
690
- name: "UnsupportedUserEditionException";
691
- $fault: "client";
708
+ export declare class UnsupportedUserEditionException extends __BaseException {
709
+ readonly name: "UnsupportedUserEditionException";
710
+ readonly $fault: "client";
692
711
  Message?: string;
693
712
 
694
713
  RequestId?: string;
714
+
715
+ constructor(opts: __ExceptionOptionType<UnsupportedUserEditionException, __BaseException>);
695
716
  }
696
717
 
697
718
  export interface CreateColumnsOperation {
@@ -1296,14 +1317,16 @@ export declare namespace CreateDataSetResponse {
1296
1317
  const filterSensitiveLog: (obj: CreateDataSetResponse) => any;
1297
1318
  }
1298
1319
 
1299
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
1300
- name: "LimitExceededException";
1301
- $fault: "client";
1320
+ export declare class LimitExceededException extends __BaseException {
1321
+ readonly name: "LimitExceededException";
1322
+ readonly $fault: "client";
1302
1323
  Message?: string;
1303
1324
 
1304
1325
  ResourceType?: ExceptionResourceType | string;
1305
1326
 
1306
1327
  RequestId?: string;
1328
+
1329
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
1307
1330
  }
1308
1331
 
1309
1332
  export interface ExasolParameters {
@@ -2372,12 +2395,14 @@ export declare namespace CreateGroupResponse {
2372
2395
  const filterSensitiveLog: (obj: CreateGroupResponse) => any;
2373
2396
  }
2374
2397
 
2375
- export interface PreconditionNotMetException extends __SmithyException, $MetadataBearer {
2376
- name: "PreconditionNotMetException";
2377
- $fault: "client";
2398
+ export declare class PreconditionNotMetException extends __BaseException {
2399
+ readonly name: "PreconditionNotMetException";
2400
+ readonly $fault: "client";
2378
2401
  Message?: string;
2379
2402
 
2380
2403
  RequestId?: string;
2404
+
2405
+ constructor(opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>);
2381
2406
  }
2382
2407
  export interface CreateGroupMembershipRequest {
2383
2408
 
@@ -3966,12 +3991,14 @@ export declare namespace DescribeIAMPolicyAssignmentResponse {
3966
3991
  const filterSensitiveLog: (obj: DescribeIAMPolicyAssignmentResponse) => any;
3967
3992
  }
3968
3993
 
3969
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
3970
- name: "InvalidNextTokenException";
3971
- $fault: "client";
3994
+ export declare class InvalidNextTokenException extends __BaseException {
3995
+ readonly name: "InvalidNextTokenException";
3996
+ readonly $fault: "client";
3972
3997
  Message?: string;
3973
3998
 
3974
3999
  RequestId?: string;
4000
+
4001
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
3975
4002
  }
3976
4003
  export interface DescribeIngestionRequest {
3977
4004