@aws-sdk/client-glue 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 "./GlueClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { GlueServiceException } from "./models/GlueServiceException";
@@ -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 Glue service.
4
+ */
5
+ export declare class GlueServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,14 +1,19 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { GlueServiceException as __BaseException } from "./GlueServiceException";
2
3
  /**
3
4
  * <p>Access to a resource was denied.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  /**
9
10
  * <p>A message describing the problem.</p>
10
11
  */
11
12
  Message?: string;
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
17
  }
13
18
  /**
14
19
  * <p>Specifies configuration properties of a notification.</p>
@@ -73,13 +78,17 @@ export declare namespace Action {
73
78
  /**
74
79
  * <p>A resource to be created or added already exists.</p>
75
80
  */
76
- export interface AlreadyExistsException extends __SmithyException, $MetadataBearer {
77
- name: "AlreadyExistsException";
78
- $fault: "client";
81
+ export declare class AlreadyExistsException extends __BaseException {
82
+ readonly name: "AlreadyExistsException";
83
+ readonly $fault: "client";
79
84
  /**
80
85
  * <p>A message describing the problem.</p>
81
86
  */
82
87
  Message?: string;
88
+ /**
89
+ * @internal
90
+ */
91
+ constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
83
92
  }
84
93
  export interface AuditContext {
85
94
  AdditionalAuditContext?: string;
@@ -432,68 +441,92 @@ export declare namespace BatchCreatePartitionResponse {
432
441
  /**
433
442
  * <p>A specified entity does not exist</p>
434
443
  */
435
- export interface EntityNotFoundException extends __SmithyException, $MetadataBearer {
436
- name: "EntityNotFoundException";
437
- $fault: "client";
444
+ export declare class EntityNotFoundException extends __BaseException {
445
+ readonly name: "EntityNotFoundException";
446
+ readonly $fault: "client";
438
447
  /**
439
448
  * <p>A message describing the problem.</p>
440
449
  */
441
450
  Message?: string;
451
+ /**
452
+ * @internal
453
+ */
454
+ constructor(opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>);
442
455
  }
443
456
  /**
444
457
  * <p>An encryption operation failed.</p>
445
458
  */
446
- export interface GlueEncryptionException extends __SmithyException, $MetadataBearer {
447
- name: "GlueEncryptionException";
448
- $fault: "client";
459
+ export declare class GlueEncryptionException extends __BaseException {
460
+ readonly name: "GlueEncryptionException";
461
+ readonly $fault: "client";
449
462
  /**
450
463
  * <p>A message describing the problem.</p>
451
464
  */
452
465
  Message?: string;
466
+ /**
467
+ * @internal
468
+ */
469
+ constructor(opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>);
453
470
  }
454
471
  /**
455
472
  * <p>An internal service error occurred.</p>
456
473
  */
457
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
458
- name: "InternalServiceException";
459
- $fault: "server";
474
+ export declare class InternalServiceException extends __BaseException {
475
+ readonly name: "InternalServiceException";
476
+ readonly $fault: "server";
460
477
  /**
461
478
  * <p>A message describing the problem.</p>
462
479
  */
463
480
  Message?: string;
481
+ /**
482
+ * @internal
483
+ */
484
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
464
485
  }
465
486
  /**
466
487
  * <p>The input provided was not valid.</p>
467
488
  */
468
- export interface InvalidInputException extends __SmithyException, $MetadataBearer {
469
- name: "InvalidInputException";
470
- $fault: "client";
489
+ export declare class InvalidInputException extends __BaseException {
490
+ readonly name: "InvalidInputException";
491
+ readonly $fault: "client";
471
492
  /**
472
493
  * <p>A message describing the problem.</p>
473
494
  */
474
495
  Message?: string;
496
+ /**
497
+ * @internal
498
+ */
499
+ constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
475
500
  }
476
501
  /**
477
502
  * <p>The operation timed out.</p>
478
503
  */
479
- export interface OperationTimeoutException extends __SmithyException, $MetadataBearer {
480
- name: "OperationTimeoutException";
481
- $fault: "client";
504
+ export declare class OperationTimeoutException extends __BaseException {
505
+ readonly name: "OperationTimeoutException";
506
+ readonly $fault: "client";
482
507
  /**
483
508
  * <p>A message describing the problem.</p>
484
509
  */
485
510
  Message?: string;
511
+ /**
512
+ * @internal
513
+ */
514
+ constructor(opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>);
486
515
  }
487
516
  /**
488
517
  * <p>A resource numerical limit was exceeded.</p>
489
518
  */
490
- export interface ResourceNumberLimitExceededException extends __SmithyException, $MetadataBearer {
491
- name: "ResourceNumberLimitExceededException";
492
- $fault: "client";
519
+ export declare class ResourceNumberLimitExceededException extends __BaseException {
520
+ readonly name: "ResourceNumberLimitExceededException";
521
+ readonly $fault: "client";
493
522
  /**
494
523
  * <p>A message describing the problem.</p>
495
524
  */
496
525
  Message?: string;
526
+ /**
527
+ * @internal
528
+ */
529
+ constructor(opts: __ExceptionOptionType<ResourceNumberLimitExceededException, __BaseException>);
497
530
  }
498
531
  export interface BatchDeleteConnectionRequest {
499
532
  /**
@@ -646,13 +679,17 @@ export declare namespace BatchDeleteTableResponse {
646
679
  /**
647
680
  * <p>A resource was not ready for a transaction.</p>
648
681
  */
649
- export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
650
- name: "ResourceNotReadyException";
651
- $fault: "client";
682
+ export declare class ResourceNotReadyException extends __BaseException {
683
+ readonly name: "ResourceNotReadyException";
684
+ readonly $fault: "client";
652
685
  /**
653
686
  * <p>A message describing the problem.</p>
654
687
  */
655
688
  Message?: string;
689
+ /**
690
+ * @internal
691
+ */
692
+ constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
656
693
  }
657
694
  export interface BatchDeleteTableVersionRequest {
658
695
  /**
@@ -1876,13 +1913,17 @@ export declare namespace BatchGetPartitionResponse {
1876
1913
  /**
1877
1914
  * <p>An error that indicates your data is in an invalid state.</p>
1878
1915
  */
1879
- export interface InvalidStateException extends __SmithyException, $MetadataBearer {
1880
- name: "InvalidStateException";
1881
- $fault: "client";
1916
+ export declare class InvalidStateException extends __BaseException {
1917
+ readonly name: "InvalidStateException";
1918
+ readonly $fault: "client";
1882
1919
  /**
1883
1920
  * <p>A message describing the problem.</p>
1884
1921
  */
1885
1922
  Message?: string;
1923
+ /**
1924
+ * @internal
1925
+ */
1926
+ constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
1886
1927
  }
1887
1928
  export interface BatchGetTriggersRequest {
1888
1929
  /**
@@ -3322,13 +3363,17 @@ export declare namespace CreateCrawlerResponse {
3322
3363
  /**
3323
3364
  * <p>Two processes are trying to modify a resource simultaneously.</p>
3324
3365
  */
3325
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
3326
- name: "ConcurrentModificationException";
3327
- $fault: "client";
3366
+ export declare class ConcurrentModificationException extends __BaseException {
3367
+ readonly name: "ConcurrentModificationException";
3368
+ readonly $fault: "client";
3328
3369
  /**
3329
3370
  * <p>A message describing the problem.</p>
3330
3371
  */
3331
3372
  Message?: string;
3373
+ /**
3374
+ * @internal
3375
+ */
3376
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
3332
3377
  }
3333
3378
  export declare enum Permission {
3334
3379
  ALL = "ALL",
@@ -3680,24 +3725,32 @@ export declare namespace CreateDevEndpointResponse {
3680
3725
  /**
3681
3726
  * <p>The same unique identifier was associated with two different records.</p>
3682
3727
  */
3683
- export interface IdempotentParameterMismatchException extends __SmithyException, $MetadataBearer {
3684
- name: "IdempotentParameterMismatchException";
3685
- $fault: "client";
3728
+ export declare class IdempotentParameterMismatchException extends __BaseException {
3729
+ readonly name: "IdempotentParameterMismatchException";
3730
+ readonly $fault: "client";
3686
3731
  /**
3687
3732
  * <p>A message describing the problem.</p>
3688
3733
  */
3689
3734
  Message?: string;
3735
+ /**
3736
+ * @internal
3737
+ */
3738
+ constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
3690
3739
  }
3691
3740
  /**
3692
3741
  * <p>A value could not be validated.</p>
3693
3742
  */
3694
- export interface ValidationException extends __SmithyException, $MetadataBearer {
3695
- name: "ValidationException";
3696
- $fault: "client";
3743
+ export declare class ValidationException extends __BaseException {
3744
+ readonly name: "ValidationException";
3745
+ readonly $fault: "client";
3697
3746
  /**
3698
3747
  * <p>A message describing the problem.</p>
3699
3748
  */
3700
3749
  Message?: string;
3750
+ /**
3751
+ * @internal
3752
+ */
3753
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
3701
3754
  }
3702
3755
  export interface CreateJobRequest {
3703
3756
  /**
@@ -5177,13 +5230,17 @@ export declare namespace DeleteConnectionResponse {
5177
5230
  /**
5178
5231
  * <p>The operation cannot be performed because the crawler is already running.</p>
5179
5232
  */
5180
- export interface CrawlerRunningException extends __SmithyException, $MetadataBearer {
5181
- name: "CrawlerRunningException";
5182
- $fault: "client";
5233
+ export declare class CrawlerRunningException extends __BaseException {
5234
+ readonly name: "CrawlerRunningException";
5235
+ readonly $fault: "client";
5183
5236
  /**
5184
5237
  * <p>A message describing the problem.</p>
5185
5238
  */
5186
5239
  Message?: string;
5240
+ /**
5241
+ * @internal
5242
+ */
5243
+ constructor(opts: __ExceptionOptionType<CrawlerRunningException, __BaseException>);
5187
5244
  }
5188
5245
  export interface DeleteCrawlerRequest {
5189
5246
  /**
@@ -5208,13 +5265,17 @@ export declare namespace DeleteCrawlerResponse {
5208
5265
  /**
5209
5266
  * <p>The specified scheduler is transitioning.</p>
5210
5267
  */
5211
- export interface SchedulerTransitioningException extends __SmithyException, $MetadataBearer {
5212
- name: "SchedulerTransitioningException";
5213
- $fault: "client";
5268
+ export declare class SchedulerTransitioningException extends __BaseException {
5269
+ readonly name: "SchedulerTransitioningException";
5270
+ readonly $fault: "client";
5214
5271
  /**
5215
5272
  * <p>A message describing the problem.</p>
5216
5273
  */
5217
5274
  Message?: string;
5275
+ /**
5276
+ * @internal
5277
+ */
5278
+ constructor(opts: __ExceptionOptionType<SchedulerTransitioningException, __BaseException>);
5218
5279
  }
5219
5280
  export interface DeleteDatabaseRequest {
5220
5281
  /**
@@ -5347,13 +5408,17 @@ export declare namespace DeletePartitionResponse {
5347
5408
  /**
5348
5409
  * <p>The <code>CreatePartitions</code> API was called on a table that has indexes enabled. </p>
5349
5410
  */
5350
- export interface ConflictException extends __SmithyException, $MetadataBearer {
5351
- name: "ConflictException";
5352
- $fault: "client";
5411
+ export declare class ConflictException extends __BaseException {
5412
+ readonly name: "ConflictException";
5413
+ readonly $fault: "client";
5353
5414
  /**
5354
5415
  * <p>A message describing the problem.</p>
5355
5416
  */
5356
5417
  Message?: string;
5418
+ /**
5419
+ * @internal
5420
+ */
5421
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
5357
5422
  }
5358
5423
  export interface DeletePartitionIndexRequest {
5359
5424
  /**
@@ -5426,13 +5491,17 @@ export declare namespace DeleteRegistryResponse {
5426
5491
  /**
5427
5492
  * <p>A specified condition was not satisfied.</p>
5428
5493
  */
5429
- export interface ConditionCheckFailureException extends __SmithyException, $MetadataBearer {
5430
- name: "ConditionCheckFailureException";
5431
- $fault: "client";
5494
+ export declare class ConditionCheckFailureException extends __BaseException {
5495
+ readonly name: "ConditionCheckFailureException";
5496
+ readonly $fault: "client";
5432
5497
  /**
5433
5498
  * <p>A message describing the problem.</p>
5434
5499
  */
5435
5500
  Message?: string;
5501
+ /**
5502
+ * @internal
5503
+ */
5504
+ constructor(opts: __ExceptionOptionType<ConditionCheckFailureException, __BaseException>);
5436
5505
  }
5437
5506
  export interface DeleteResourcePolicyRequest {
5438
5507
  /**
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { GlueServiceException as __BaseException } from "./GlueServiceException";
2
3
  import { Action, AuditContext, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, Crawler, CrawlerMetrics, CrawlerTargets, CsvHeaderOption, DatabaseIdentifier, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, LakeFormationConfiguration, Language, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, Predicate, PrincipalPermissions, PrincipalType, RecrawlPolicy, RegistryId, RegistryStatus, ResourceUri, SchemaChangePolicy, SchemaId, SchemaStatus, SchemaVersionStatus, StorageDescriptor, TableIdentifier, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, UserDefinedFunctionInput, WorkerType, Workflow, WorkflowRun } from "./models_0";
3
4
  export interface GetCrawlerMetricsResponse {
4
5
  /**
@@ -2899,10 +2900,14 @@ export declare namespace GetUnfilteredPartitionMetadataResponse {
2899
2900
  */
2900
2901
  const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataResponse) => any;
2901
2902
  }
2902
- export interface PermissionTypeMismatchException extends __SmithyException, $MetadataBearer {
2903
- name: "PermissionTypeMismatchException";
2904
- $fault: "client";
2903
+ export declare class PermissionTypeMismatchException extends __BaseException {
2904
+ readonly name: "PermissionTypeMismatchException";
2905
+ readonly $fault: "client";
2905
2906
  Message?: string;
2907
+ /**
2908
+ * @internal
2909
+ */
2910
+ constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
2906
2911
  }
2907
2912
  export interface GetUnfilteredPartitionsMetadataRequest {
2908
2913
  CatalogId: string | undefined;
@@ -4199,24 +4204,32 @@ export declare namespace ResetJobBookmarkResponse {
4199
4204
  /**
4200
4205
  * <p>Too many jobs are being run concurrently.</p>
4201
4206
  */
4202
- export interface ConcurrentRunsExceededException extends __SmithyException, $MetadataBearer {
4203
- name: "ConcurrentRunsExceededException";
4204
- $fault: "client";
4207
+ export declare class ConcurrentRunsExceededException extends __BaseException {
4208
+ readonly name: "ConcurrentRunsExceededException";
4209
+ readonly $fault: "client";
4205
4210
  /**
4206
4211
  * <p>A message describing the problem.</p>
4207
4212
  */
4208
4213
  Message?: string;
4214
+ /**
4215
+ * @internal
4216
+ */
4217
+ constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
4209
4218
  }
4210
4219
  /**
4211
4220
  * <p>The workflow is in an invalid state to perform a requested operation.</p>
4212
4221
  */
4213
- export interface IllegalWorkflowStateException extends __SmithyException, $MetadataBearer {
4214
- name: "IllegalWorkflowStateException";
4215
- $fault: "client";
4222
+ export declare class IllegalWorkflowStateException extends __BaseException {
4223
+ readonly name: "IllegalWorkflowStateException";
4224
+ readonly $fault: "client";
4216
4225
  /**
4217
4226
  * <p>A message describing the problem.</p>
4218
4227
  */
4219
4228
  Message?: string;
4229
+ /**
4230
+ * @internal
4231
+ */
4232
+ constructor(opts: __ExceptionOptionType<IllegalWorkflowStateException, __BaseException>);
4220
4233
  }
4221
4234
  export interface ResumeWorkflowRunRequest {
4222
4235
  /**
@@ -4373,10 +4386,14 @@ export declare namespace SearchTablesResponse {
4373
4386
  */
4374
4387
  const filterSensitiveLog: (obj: SearchTablesResponse) => any;
4375
4388
  }
4376
- export interface IllegalBlueprintStateException extends __SmithyException, $MetadataBearer {
4377
- name: "IllegalBlueprintStateException";
4378
- $fault: "client";
4389
+ export declare class IllegalBlueprintStateException extends __BaseException {
4390
+ readonly name: "IllegalBlueprintStateException";
4391
+ readonly $fault: "client";
4379
4392
  Message?: string;
4393
+ /**
4394
+ * @internal
4395
+ */
4396
+ constructor(opts: __ExceptionOptionType<IllegalBlueprintStateException, __BaseException>);
4380
4397
  }
4381
4398
  export interface StartBlueprintRunRequest {
4382
4399
  /**
@@ -4433,24 +4450,32 @@ export declare namespace StartCrawlerResponse {
4433
4450
  /**
4434
4451
  * <p>There is no applicable schedule.</p>
4435
4452
  */
4436
- export interface NoScheduleException extends __SmithyException, $MetadataBearer {
4437
- name: "NoScheduleException";
4438
- $fault: "client";
4453
+ export declare class NoScheduleException extends __BaseException {
4454
+ readonly name: "NoScheduleException";
4455
+ readonly $fault: "client";
4439
4456
  /**
4440
4457
  * <p>A message describing the problem.</p>
4441
4458
  */
4442
4459
  Message?: string;
4460
+ /**
4461
+ * @internal
4462
+ */
4463
+ constructor(opts: __ExceptionOptionType<NoScheduleException, __BaseException>);
4443
4464
  }
4444
4465
  /**
4445
4466
  * <p>The specified scheduler is already running.</p>
4446
4467
  */
4447
- export interface SchedulerRunningException extends __SmithyException, $MetadataBearer {
4448
- name: "SchedulerRunningException";
4449
- $fault: "client";
4468
+ export declare class SchedulerRunningException extends __BaseException {
4469
+ readonly name: "SchedulerRunningException";
4470
+ readonly $fault: "client";
4450
4471
  /**
4451
4472
  * <p>A message describing the problem.</p>
4452
4473
  */
4453
4474
  Message?: string;
4475
+ /**
4476
+ * @internal
4477
+ */
4478
+ constructor(opts: __ExceptionOptionType<SchedulerRunningException, __BaseException>);
4454
4479
  }
4455
4480
  export interface StartCrawlerScheduleRequest {
4456
4481
  /**
@@ -4643,13 +4668,17 @@ export declare namespace StartJobRunResponse {
4643
4668
  /**
4644
4669
  * <p>The machine learning transform is not ready to run.</p>
4645
4670
  */
4646
- export interface MLTransformNotReadyException extends __SmithyException, $MetadataBearer {
4647
- name: "MLTransformNotReadyException";
4648
- $fault: "client";
4671
+ export declare class MLTransformNotReadyException extends __BaseException {
4672
+ readonly name: "MLTransformNotReadyException";
4673
+ readonly $fault: "client";
4649
4674
  /**
4650
4675
  * <p>A message describing the problem.</p>
4651
4676
  */
4652
4677
  Message?: string;
4678
+ /**
4679
+ * @internal
4680
+ */
4681
+ constructor(opts: __ExceptionOptionType<MLTransformNotReadyException, __BaseException>);
4653
4682
  }
4654
4683
  export interface StartMLEvaluationTaskRunRequest {
4655
4684
  /**
@@ -4761,24 +4790,32 @@ export declare namespace StartWorkflowRunResponse {
4761
4790
  /**
4762
4791
  * <p>The specified crawler is not running.</p>
4763
4792
  */
4764
- export interface CrawlerNotRunningException extends __SmithyException, $MetadataBearer {
4765
- name: "CrawlerNotRunningException";
4766
- $fault: "client";
4793
+ export declare class CrawlerNotRunningException extends __BaseException {
4794
+ readonly name: "CrawlerNotRunningException";
4795
+ readonly $fault: "client";
4767
4796
  /**
4768
4797
  * <p>A message describing the problem.</p>
4769
4798
  */
4770
4799
  Message?: string;
4800
+ /**
4801
+ * @internal
4802
+ */
4803
+ constructor(opts: __ExceptionOptionType<CrawlerNotRunningException, __BaseException>);
4771
4804
  }
4772
4805
  /**
4773
4806
  * <p>The specified crawler is stopping.</p>
4774
4807
  */
4775
- export interface CrawlerStoppingException extends __SmithyException, $MetadataBearer {
4776
- name: "CrawlerStoppingException";
4777
- $fault: "client";
4808
+ export declare class CrawlerStoppingException extends __BaseException {
4809
+ readonly name: "CrawlerStoppingException";
4810
+ readonly $fault: "client";
4778
4811
  /**
4779
4812
  * <p>A message describing the problem.</p>
4780
4813
  */
4781
4814
  Message?: string;
4815
+ /**
4816
+ * @internal
4817
+ */
4818
+ constructor(opts: __ExceptionOptionType<CrawlerStoppingException, __BaseException>);
4782
4819
  }
4783
4820
  export interface StopCrawlerRequest {
4784
4821
  /**
@@ -4803,13 +4840,17 @@ export declare namespace StopCrawlerResponse {
4803
4840
  /**
4804
4841
  * <p>The specified scheduler is not running.</p>
4805
4842
  */
4806
- export interface SchedulerNotRunningException extends __SmithyException, $MetadataBearer {
4807
- name: "SchedulerNotRunningException";
4808
- $fault: "client";
4843
+ export declare class SchedulerNotRunningException extends __BaseException {
4844
+ readonly name: "SchedulerNotRunningException";
4845
+ readonly $fault: "client";
4809
4846
  /**
4810
4847
  * <p>A message describing the problem.</p>
4811
4848
  */
4812
4849
  Message?: string;
4850
+ /**
4851
+ * @internal
4852
+ */
4853
+ constructor(opts: __ExceptionOptionType<SchedulerNotRunningException, __BaseException>);
4813
4854
  }
4814
4855
  export interface StopCrawlerScheduleRequest {
4815
4856
  /**
@@ -5113,13 +5154,17 @@ export declare namespace UpdateClassifierResponse {
5113
5154
  /**
5114
5155
  * <p>There was a version conflict.</p>
5115
5156
  */
5116
- export interface VersionMismatchException extends __SmithyException, $MetadataBearer {
5117
- name: "VersionMismatchException";
5118
- $fault: "client";
5157
+ export declare class VersionMismatchException extends __BaseException {
5158
+ readonly name: "VersionMismatchException";
5159
+ readonly $fault: "client";
5119
5160
  /**
5120
5161
  * <p>A message describing the problem.</p>
5121
5162
  */
5122
5163
  Message?: string;
5164
+ /**
5165
+ * @internal
5166
+ */
5167
+ constructor(opts: __ExceptionOptionType<VersionMismatchException, __BaseException>);
5123
5168
  }
5124
5169
  export interface UpdateColumnStatisticsForPartitionRequest {
5125
5170
  /**
@@ -3,3 +3,4 @@ export * from "./GlueClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { GlueServiceException } from "./models/GlueServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class GlueServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }