@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.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ConnectServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +248 -6
- package/dist-cjs/models/models_1.js +31 -2
- package/dist-cjs/protocols/Aws_restJson1.js +1432 -5764
- package/dist-es/index.js +1 -0
- package/dist-es/models/ConnectServiceException.js +12 -0
- package/dist-es/models/models_0.js +226 -1
- package/dist-es/models/models_1.js +28 -1
- package/dist-es/protocols/Aws_restJson1.js +3180 -6324
- package/dist-types/ConnectClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ConnectServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +122 -52
- package/dist-types/models/models_1.d.ts +16 -7
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ConnectClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ConnectServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +88 -52
- package/dist-types/ts3.4/models/models_1.d.ts +12 -7
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -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?:
|
|
165
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
166
166
|
/**
|
|
167
167
|
* A function that converts a stream into an array of bytes.
|
|
168
168
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -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 {
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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 {
|
|
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
|
|
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
|
|
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: (
|
|
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: (
|
|
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: (
|
|
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?:
|
|
153
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
154
154
|
|
|
155
155
|
streamCollector?: __StreamCollector;
|
|
156
156
|
|