@aws-sdk/client-connect 3.51.0 → 3.54.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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "./commands/AssociateApprovedOriginCommand";
10
10
  import { AssociateBotCommandInput, AssociateBotCommandOutput } from "./commands/AssociateBotCommand";
11
11
  import { AssociateDefaultVocabularyCommandInput, AssociateDefaultVocabularyCommandOutput } from "./commands/AssociateDefaultVocabularyCommand";
@@ -162,7 +162,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
162
162
  * A function that can calculate the length of a request body.
163
163
  * @internal
164
164
  */
165
- bodyLengthChecker?: (body: any) => number | undefined;
165
+ bodyLengthChecker?: __BodyLengthCalculator;
166
166
  /**
167
167
  * A function that converts a stream into an array of bytes.
168
168
  * @internal
@@ -3,3 +3,4 @@ export * from "./ConnectClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ConnectServiceException } from "./models/ConnectServiceException";
@@ -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 Connect service.
4
+ */
5
+ export declare class ConnectServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,16 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
2
3
  /**
3
4
  * <p>You do not have sufficient permissions to perform this action.</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
  Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
14
  }
10
15
  /**
11
16
  * <p>Information about the agent who accepted the contact.</p>
@@ -126,70 +131,98 @@ export declare namespace AssociateApprovedOriginRequest {
126
131
  /**
127
132
  * <p>Request processing failed because of an error or failure with the service.</p>
128
133
  */
129
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
130
- name: "InternalServiceException";
131
- $fault: "server";
134
+ export declare class InternalServiceException extends __BaseException {
135
+ readonly name: "InternalServiceException";
136
+ readonly $fault: "server";
132
137
  /**
133
138
  * <p>The message.</p>
134
139
  */
135
140
  Message?: string;
141
+ /**
142
+ * @internal
143
+ */
144
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
136
145
  }
137
146
  /**
138
147
  * <p>One or more of the specified parameters are not valid.</p>
139
148
  */
140
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
141
- name: "InvalidParameterException";
142
- $fault: "client";
149
+ export declare class InvalidParameterException extends __BaseException {
150
+ readonly name: "InvalidParameterException";
151
+ readonly $fault: "client";
143
152
  /**
144
153
  * <p>The message about the parameters.</p>
145
154
  */
146
155
  Message?: string;
156
+ /**
157
+ * @internal
158
+ */
159
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
147
160
  }
148
161
  /**
149
162
  * <p>The request is not valid.</p>
150
163
  */
151
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
152
- name: "InvalidRequestException";
153
- $fault: "client";
164
+ export declare class InvalidRequestException extends __BaseException {
165
+ readonly name: "InvalidRequestException";
166
+ readonly $fault: "client";
154
167
  /**
155
168
  * <p>The message about the request.</p>
156
169
  */
157
170
  Message?: string;
171
+ /**
172
+ * @internal
173
+ */
174
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
158
175
  }
159
176
  /**
160
177
  * <p>A resource already has that name.</p>
161
178
  */
162
- export interface ResourceConflictException extends __SmithyException, $MetadataBearer {
163
- name: "ResourceConflictException";
164
- $fault: "client";
179
+ export declare class ResourceConflictException extends __BaseException {
180
+ readonly name: "ResourceConflictException";
181
+ readonly $fault: "client";
165
182
  Message?: string;
183
+ /**
184
+ * @internal
185
+ */
186
+ constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
166
187
  }
167
188
  /**
168
189
  * <p>The specified resource was not found.</p>
169
190
  */
170
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
171
- name: "ResourceNotFoundException";
172
- $fault: "client";
191
+ export declare class ResourceNotFoundException extends __BaseException {
192
+ readonly name: "ResourceNotFoundException";
193
+ readonly $fault: "client";
173
194
  /**
174
195
  * <p>The message about the resource.</p>
175
196
  */
176
197
  Message?: string;
198
+ /**
199
+ * @internal
200
+ */
201
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
177
202
  }
178
203
  /**
179
204
  * <p>The service quota has been exceeded.</p>
180
205
  */
181
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
182
- name: "ServiceQuotaExceededException";
183
- $fault: "client";
206
+ export declare class ServiceQuotaExceededException extends __BaseException {
207
+ readonly name: "ServiceQuotaExceededException";
208
+ readonly $fault: "client";
184
209
  Message?: string;
210
+ /**
211
+ * @internal
212
+ */
213
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
185
214
  }
186
215
  /**
187
216
  * <p>The throttling limit has been exceeded.</p>
188
217
  */
189
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
190
- name: "ThrottlingException";
191
- $fault: "client";
218
+ export declare class ThrottlingException extends __BaseException {
219
+ readonly name: "ThrottlingException";
220
+ readonly $fault: "client";
192
221
  Message?: string;
222
+ /**
223
+ * @internal
224
+ */
225
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
193
226
  }
194
227
  /**
195
228
  * <p>Configuration information of an Amazon Lex bot.</p>
@@ -248,13 +281,17 @@ export declare namespace AssociateBotRequest {
248
281
  /**
249
282
  * <p>The allowed limit for the resource has been exceeded.</p>
250
283
  */
251
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
252
- name: "LimitExceededException";
253
- $fault: "client";
284
+ export declare class LimitExceededException extends __BaseException {
285
+ readonly name: "LimitExceededException";
286
+ readonly $fault: "client";
254
287
  /**
255
288
  * <p>The message about the limit.</p>
256
289
  */
257
290
  Message?: string;
291
+ /**
292
+ * @internal
293
+ */
294
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
258
295
  }
259
296
  export declare enum VocabularyLanguageCode {
260
297
  AR_AE = "ar-AE",
@@ -315,6 +352,7 @@ export declare enum InstanceStorageResourceType {
315
352
  CHAT_TRANSCRIPTS = "CHAT_TRANSCRIPTS",
316
353
  CONTACT_TRACE_RECORDS = "CONTACT_TRACE_RECORDS",
317
354
  MEDIA_STREAMS = "MEDIA_STREAMS",
355
+ REAL_TIME_CONTACT_ANALYSIS_SEGMENTS = "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS",
318
356
  SCHEDULED_REPORTS = "SCHEDULED_REPORTS"
319
357
  }
320
358
  /**
@@ -701,10 +739,14 @@ export declare namespace CreateAgentStatusResponse {
701
739
  /**
702
740
  * <p>A resource with the specified name already exists.</p>
703
741
  */
704
- export interface DuplicateResourceException extends __SmithyException, $MetadataBearer {
705
- name: "DuplicateResourceException";
706
- $fault: "client";
742
+ export declare class DuplicateResourceException extends __BaseException {
743
+ readonly name: "DuplicateResourceException";
744
+ readonly $fault: "client";
707
745
  Message?: string;
746
+ /**
747
+ * @internal
748
+ */
749
+ constructor(opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>);
708
750
  }
709
751
  export declare enum ContactFlowType {
710
752
  AGENT_HOLD = "AGENT_HOLD",
@@ -786,13 +828,17 @@ export declare namespace ProblemDetail {
786
828
  /**
787
829
  * <p>The contact flow is not valid.</p>
788
830
  */
789
- export interface InvalidContactFlowException extends __SmithyException, $MetadataBearer {
790
- name: "InvalidContactFlowException";
791
- $fault: "client";
831
+ export declare class InvalidContactFlowException extends __BaseException {
832
+ readonly name: "InvalidContactFlowException";
833
+ readonly $fault: "client";
792
834
  /**
793
835
  * <p>The problems with the contact flow. Please fix before trying again.</p>
794
836
  */
795
837
  problems?: ProblemDetail[];
838
+ /**
839
+ * @internal
840
+ */
841
+ constructor(opts: __ExceptionOptionType<InvalidContactFlowException, __BaseException>);
796
842
  }
797
843
  export interface CreateContactFlowModuleRequest {
798
844
  /**
@@ -848,18 +894,26 @@ export declare namespace CreateContactFlowModuleResponse {
848
894
  /**
849
895
  * <p>An entity with the same name already exists.</p>
850
896
  */
851
- export interface IdempotencyException extends __SmithyException, $MetadataBearer {
852
- name: "IdempotencyException";
853
- $fault: "client";
897
+ export declare class IdempotencyException extends __BaseException {
898
+ readonly name: "IdempotencyException";
899
+ readonly $fault: "client";
854
900
  Message?: string;
901
+ /**
902
+ * @internal
903
+ */
904
+ constructor(opts: __ExceptionOptionType<IdempotencyException, __BaseException>);
855
905
  }
856
906
  /**
857
907
  * <p>The problems with the module. Please fix before trying again.</p>
858
908
  */
859
- export interface InvalidContactFlowModuleException extends __SmithyException, $MetadataBearer {
860
- name: "InvalidContactFlowModuleException";
861
- $fault: "client";
909
+ export declare class InvalidContactFlowModuleException extends __BaseException {
910
+ readonly name: "InvalidContactFlowModuleException";
911
+ readonly $fault: "client";
862
912
  Problems?: ProblemDetail[];
913
+ /**
914
+ * @internal
915
+ */
916
+ constructor(opts: __ExceptionOptionType<InvalidContactFlowModuleException, __BaseException>);
863
917
  }
864
918
  export declare enum HoursOfOperationDays {
865
919
  FRIDAY = "FRIDAY",
@@ -1838,9 +1892,9 @@ export declare enum ResourceType {
1838
1892
  /**
1839
1893
  * <p>That resource is already in use. Please try another.</p>
1840
1894
  */
1841
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
1842
- name: "ResourceInUseException";
1843
- $fault: "client";
1895
+ export declare class ResourceInUseException extends __BaseException {
1896
+ readonly name: "ResourceInUseException";
1897
+ readonly $fault: "client";
1844
1898
  Message?: string;
1845
1899
  /**
1846
1900
  * <p>The type of resource.</p>
@@ -1850,6 +1904,10 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
1850
1904
  * <p>The identifier for the resource.</p>
1851
1905
  */
1852
1906
  ResourceId?: string;
1907
+ /**
1908
+ * @internal
1909
+ */
1910
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
1853
1911
  }
1854
1912
  export interface DeleteUseCaseRequest {
1855
1913
  /**
@@ -2097,10 +2155,14 @@ export declare namespace DescribeContactResponse {
2097
2155
  /**
2098
2156
  * <p>The contact flow has not been published.</p>
2099
2157
  */
2100
- export interface ContactFlowNotPublishedException extends __SmithyException, $MetadataBearer {
2101
- name: "ContactFlowNotPublishedException";
2102
- $fault: "client";
2158
+ export declare class ContactFlowNotPublishedException extends __BaseException {
2159
+ readonly name: "ContactFlowNotPublishedException";
2160
+ readonly $fault: "client";
2103
2161
  Message?: string;
2162
+ /**
2163
+ * @internal
2164
+ */
2165
+ constructor(opts: __ExceptionOptionType<ContactFlowNotPublishedException, __BaseException>);
2104
2166
  }
2105
2167
  export interface DescribeContactFlowRequest {
2106
2168
  /**
@@ -3698,10 +3760,14 @@ export declare namespace GetFederationTokenResponse {
3698
3760
  /**
3699
3761
  * <p>No user with the specified credentials was found in the Amazon Connect instance.</p>
3700
3762
  */
3701
- export interface UserNotFoundException extends __SmithyException, $MetadataBearer {
3702
- name: "UserNotFoundException";
3703
- $fault: "client";
3763
+ export declare class UserNotFoundException extends __BaseException {
3764
+ readonly name: "UserNotFoundException";
3765
+ readonly $fault: "client";
3704
3766
  Message?: string;
3767
+ /**
3768
+ * @internal
3769
+ */
3770
+ constructor(opts: __ExceptionOptionType<UserNotFoundException, __BaseException>);
3705
3771
  }
3706
3772
  export declare enum HistoricalMetricName {
3707
3773
  ABANDON_TIME = "ABANDON_TIME",
@@ -6304,11 +6370,15 @@ export declare namespace StartContactStreamingResponse {
6304
6370
  /**
6305
6371
  * <p>Outbound calls to the destination number are not allowed.</p>
6306
6372
  */
6307
- export interface DestinationNotAllowedException extends __SmithyException, $MetadataBearer {
6308
- name: "DestinationNotAllowedException";
6309
- $fault: "client";
6373
+ export declare class DestinationNotAllowedException extends __BaseException {
6374
+ readonly name: "DestinationNotAllowedException";
6375
+ readonly $fault: "client";
6310
6376
  /**
6311
6377
  * <p>The message about the outbound calls.</p>
6312
6378
  */
6313
6379
  Message?: string;
6380
+ /**
6381
+ * @internal
6382
+ */
6383
+ constructor(opts: __ExceptionOptionType<DestinationNotAllowedException, __BaseException>);
6314
6384
  }
@@ -1,15 +1,20 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
2
3
  import { AgentStatusState, ContactFlowModuleState, ContactFlowState, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, QueueStatus, QuickConnectConfig, ReferenceType, RoutingProfileQueueConfig, UserIdentityInfo, UserPhoneConfig } from "./models_0";
3
4
  /**
4
5
  * <p>The contact is not permitted.</p>
5
6
  */
6
- export interface OutboundContactNotPermittedException extends __SmithyException, $MetadataBearer {
7
- name: "OutboundContactNotPermittedException";
8
- $fault: "client";
7
+ export declare class OutboundContactNotPermittedException extends __BaseException {
8
+ readonly name: "OutboundContactNotPermittedException";
9
+ readonly $fault: "client";
9
10
  /**
10
11
  * <p>The message about the contact.</p>
11
12
  */
12
13
  Message?: string;
14
+ /**
15
+ * @internal
16
+ */
17
+ constructor(opts: __ExceptionOptionType<OutboundContactNotPermittedException, __BaseException>);
13
18
  }
14
19
  /**
15
20
  * <p>Configuration of the answering machine detection.</p>
@@ -214,13 +219,17 @@ export declare namespace StartTaskContactResponse {
214
219
  /**
215
220
  * <p>The contact with the specified ID is not active or does not exist.</p>
216
221
  */
217
- export interface ContactNotFoundException extends __SmithyException, $MetadataBearer {
218
- name: "ContactNotFoundException";
219
- $fault: "client";
222
+ export declare class ContactNotFoundException extends __BaseException {
223
+ readonly name: "ContactNotFoundException";
224
+ readonly $fault: "client";
220
225
  /**
221
226
  * <p>The message.</p>
222
227
  */
223
228
  Message?: string;
229
+ /**
230
+ * @internal
231
+ */
232
+ constructor(opts: __ExceptionOptionType<ContactNotFoundException, __BaseException>);
224
233
  }
225
234
  export interface StopContactRequest {
226
235
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "./commands/AssociateApprovedOriginCommand";
10
10
  import { AssociateBotCommandInput, AssociateBotCommandOutput } from "./commands/AssociateBotCommand";
11
11
  import { AssociateDefaultVocabularyCommandInput, AssociateDefaultVocabularyCommandOutput } from "./commands/AssociateDefaultVocabularyCommand";
@@ -150,7 +150,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
150
150
 
151
151
  urlParser?: __UrlParser;
152
152
 
153
- bodyLengthChecker?: (body: any) => number | undefined;
153
+ bodyLengthChecker?: __BodyLengthCalculator;
154
154
 
155
155
  streamCollector?: __StreamCollector;
156
156
 
@@ -3,3 +3,4 @@ export * from "./ConnectClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ConnectServiceException } from "./models/ConnectServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ConnectServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }