@aws-sdk/client-connect 3.47.0 → 3.49.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 +38 -0
- package/README.md +2 -3
- package/dist-cjs/Connect.js +90 -0
- package/dist-cjs/commands/AssociateDefaultVocabularyCommand.js +36 -0
- package/dist-cjs/commands/CreateVocabularyCommand.js +36 -0
- package/dist-cjs/commands/DeleteVocabularyCommand.js +36 -0
- package/dist-cjs/commands/DescribeVocabularyCommand.js +36 -0
- package/dist-cjs/commands/ListDefaultVocabulariesCommand.js +36 -0
- package/dist-cjs/commands/SearchVocabulariesCommand.js +36 -0
- package/dist-cjs/commands/StartOutboundVoiceContactCommand.js +3 -3
- package/dist-cjs/commands/StartTaskContactCommand.js +3 -3
- package/dist-cjs/commands/StopContactCommand.js +3 -3
- package/dist-cjs/commands/StopContactRecordingCommand.js +3 -3
- package/dist-cjs/commands/StopContactStreamingCommand.js +3 -3
- package/dist-cjs/commands/SuspendContactRecordingCommand.js +3 -3
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +127 -95
- package/dist-cjs/models/models_1.js +91 -1
- package/dist-cjs/pagination/ListDefaultVocabulariesPaginator.js +35 -0
- package/dist-cjs/pagination/SearchVocabulariesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +800 -7
- package/dist-es/Connect.js +90 -0
- package/dist-es/commands/AssociateDefaultVocabularyCommand.js +39 -0
- package/dist-es/commands/CreateVocabularyCommand.js +39 -0
- package/dist-es/commands/DeleteVocabularyCommand.js +39 -0
- package/dist-es/commands/DescribeVocabularyCommand.js +39 -0
- package/dist-es/commands/ListDefaultVocabulariesCommand.js +39 -0
- package/dist-es/commands/SearchVocabulariesCommand.js +39 -0
- package/dist-es/commands/StartOutboundVoiceContactCommand.js +1 -1
- package/dist-es/commands/StartTaskContactCommand.js +1 -1
- package/dist-es/commands/StopContactCommand.js +1 -1
- package/dist-es/commands/StopContactRecordingCommand.js +1 -1
- package/dist-es/commands/StopContactStreamingCommand.js +1 -1
- package/dist-es/commands/SuspendContactRecordingCommand.js +1 -1
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +91 -61
- package/dist-es/models/models_1.js +61 -0
- package/dist-es/pagination/ListDefaultVocabulariesPaginator.js +74 -0
- package/dist-es/pagination/SearchVocabulariesPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +948 -63
- package/dist-types/Connect.d.ts +63 -16
- package/dist-types/ConnectClient.d.ts +10 -5
- package/dist-types/commands/AssociateDefaultVocabularyCommand.d.ts +35 -0
- package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyCommand.d.ts +37 -0
- package/dist-types/commands/DeleteIntegrationAssociationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +35 -0
- package/dist-types/commands/DescribeVocabularyCommand.d.ts +35 -0
- package/dist-types/commands/ListBotsCommand.d.ts +2 -2
- package/dist-types/commands/ListDefaultVocabulariesCommand.d.ts +35 -0
- package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/SearchVocabulariesCommand.d.ts +35 -0
- package/dist-types/commands/StartChatContactCommand.d.ts +4 -1
- package/dist-types/commands/StartContactStreamingCommand.d.ts +1 -1
- package/dist-types/commands/StartOutboundVoiceContactCommand.d.ts +4 -3
- package/dist-types/commands/StartTaskContactCommand.d.ts +1 -1
- package/dist-types/commands/StopContactCommand.d.ts +1 -1
- package/dist-types/commands/StopContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/StopContactStreamingCommand.d.ts +1 -1
- package/dist-types/commands/SuspendContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +445 -347
- package/dist-types/models/models_1.d.ts +337 -2
- package/dist-types/pagination/ListDefaultVocabulariesPaginator.d.ts +4 -0
- package/dist-types/pagination/SearchVocabulariesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +30 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +8 -2
- package/dist-types/ts3.4/commands/AssociateDefaultVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDefaultVocabulariesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchVocabulariesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartOutboundVoiceContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTaskContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopContactStreamingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SuspendContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +244 -182
- package/dist-types/ts3.4/models/models_1.d.ts +184 -1
- package/dist-types/ts3.4/pagination/ListDefaultVocabulariesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchVocabulariesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +40 -34
|
@@ -1,4 +1,338 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
import { AgentStatusState, ContactFlowModuleState, ContactFlowState, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, QueueStatus, QuickConnectConfig, ReferenceType, RoutingProfileQueueConfig, UserIdentityInfo, UserPhoneConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The contact is not permitted.</p>
|
|
5
|
+
*/
|
|
6
|
+
export interface OutboundContactNotPermittedException extends __SmithyException, $MetadataBearer {
|
|
7
|
+
name: "OutboundContactNotPermittedException";
|
|
8
|
+
$fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* <p>The message about the contact.</p>
|
|
11
|
+
*/
|
|
12
|
+
Message?: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* <p>Configuration of the answering machine detection.</p>
|
|
16
|
+
*/
|
|
17
|
+
export interface AnswerMachineDetectionConfig {
|
|
18
|
+
/**
|
|
19
|
+
* <p>The flag to indicate if answer machine detection analysis needs to be performed for a voice
|
|
20
|
+
* call. If set to <code>true</code>, <code>TrafficType</code> must be set as <code>CAMPAIGN</code>.
|
|
21
|
+
* </p>
|
|
22
|
+
*/
|
|
23
|
+
EnableAnswerMachineDetection?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* <p>Wait for the answering machine prompt.</p>
|
|
26
|
+
*/
|
|
27
|
+
AwaitAnswerMachinePrompt?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace AnswerMachineDetectionConfig {
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
const filterSensitiveLog: (obj: AnswerMachineDetectionConfig) => any;
|
|
34
|
+
}
|
|
35
|
+
export declare enum TrafficType {
|
|
36
|
+
CAMPAIGN = "CAMPAIGN",
|
|
37
|
+
GENERAL = "GENERAL"
|
|
38
|
+
}
|
|
39
|
+
export interface StartOutboundVoiceContactRequest {
|
|
40
|
+
/**
|
|
41
|
+
* <p>The phone number of the customer, in E.164 format.</p>
|
|
42
|
+
*/
|
|
43
|
+
DestinationPhoneNumber: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The
|
|
46
|
+
* identifier of the contact flow for the outbound call. To see the ContactFlowId in the Amazon Connect
|
|
47
|
+
* console user interface, on the navigation menu go to <b>Routing</b>,
|
|
48
|
+
* <b>Contact Flows</b>. Choose the contact flow. On the contact flow
|
|
49
|
+
* page, under the name of the contact flow, choose <b>Show additional flow
|
|
50
|
+
* information</b>. The ContactFlowId is the last part of the ARN, shown here in bold: </p>
|
|
51
|
+
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
52
|
+
* </p>
|
|
53
|
+
*/
|
|
54
|
+
ContactFlowId: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
57
|
+
*/
|
|
58
|
+
InstanceId: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
61
|
+
* request. The token is valid for 7 days after creation. If a contact is already started, the
|
|
62
|
+
* contact ID is returned.
|
|
63
|
+
* </p>
|
|
64
|
+
*/
|
|
65
|
+
ClientToken?: string;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The phone number associated with the Amazon Connect instance, in E.164 format. If you do not specify
|
|
68
|
+
* a source phone number, you must specify a queue.</p>
|
|
69
|
+
*/
|
|
70
|
+
SourcePhoneNumber?: string;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The queue for the call. If you specify a queue, the phone displayed for caller ID is the
|
|
73
|
+
* phone number specified in the queue. If you do not specify a queue, the queue defined in the
|
|
74
|
+
* contact flow is used. If you do not specify a queue, you must specify a source phone
|
|
75
|
+
* number.</p>
|
|
76
|
+
*/
|
|
77
|
+
QueueId?: string;
|
|
78
|
+
/**
|
|
79
|
+
* <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect
|
|
80
|
+
* attributes, and can be accessed in contact flows just like any other contact attributes.</p>
|
|
81
|
+
* <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
|
|
82
|
+
* can include only alphanumeric, dash, and underscore characters.</p>
|
|
83
|
+
*/
|
|
84
|
+
Attributes?: {
|
|
85
|
+
[key: string]: string;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* <p>Configuration of the answering machine detection for this outbound call. </p>
|
|
89
|
+
*/
|
|
90
|
+
AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The campaign identifier of the outbound communication.</p>
|
|
93
|
+
*/
|
|
94
|
+
CampaignId?: string;
|
|
95
|
+
/**
|
|
96
|
+
* <p>Denotes the class of traffic. Calls with different traffic types are handled differently by
|
|
97
|
+
* Amazon Connect. The default value is <code>GENERAL</code>. Use <code>CAMPAIGN</code> if
|
|
98
|
+
* <code>EnableAnswerMachineDetection</code> is set to <code>true</code>. For all other cases, use
|
|
99
|
+
* <code>GENERAL</code>. </p>
|
|
100
|
+
*/
|
|
101
|
+
TrafficType?: TrafficType | string;
|
|
102
|
+
}
|
|
103
|
+
export declare namespace StartOutboundVoiceContactRequest {
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
const filterSensitiveLog: (obj: StartOutboundVoiceContactRequest) => any;
|
|
108
|
+
}
|
|
109
|
+
export interface StartOutboundVoiceContactResponse {
|
|
110
|
+
/**
|
|
111
|
+
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
112
|
+
*/
|
|
113
|
+
ContactId?: string;
|
|
114
|
+
}
|
|
115
|
+
export declare namespace StartOutboundVoiceContactResponse {
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
const filterSensitiveLog: (obj: StartOutboundVoiceContactResponse) => any;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* <p>A link that an agent selects to complete a given task. You can have up to 4,096 UTF-8 bytes
|
|
123
|
+
* across all references for a contact.</p>
|
|
124
|
+
*/
|
|
125
|
+
export interface Reference {
|
|
126
|
+
/**
|
|
127
|
+
* <p>A valid value for the reference. For example, for a URL reference, a formatted URL that is
|
|
128
|
+
* displayed to an agent in the Contact Control Panel (CCP).</p>
|
|
129
|
+
*/
|
|
130
|
+
Value: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The type of the reference. Only <code>URL</code> type can be added or updated on a
|
|
133
|
+
* contact.</p>
|
|
134
|
+
*/
|
|
135
|
+
Type: ReferenceType | string | undefined;
|
|
136
|
+
}
|
|
137
|
+
export declare namespace Reference {
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
*/
|
|
141
|
+
const filterSensitiveLog: (obj: Reference) => any;
|
|
142
|
+
}
|
|
143
|
+
export interface StartTaskContactRequest {
|
|
144
|
+
/**
|
|
145
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
146
|
+
*/
|
|
147
|
+
InstanceId: string | undefined;
|
|
148
|
+
/**
|
|
149
|
+
* <p>The identifier of the previous chat, voice, or task contact. </p>
|
|
150
|
+
*/
|
|
151
|
+
PreviousContactId?: string;
|
|
152
|
+
/**
|
|
153
|
+
* <p>The identifier of the contact flow for initiating the tasks. To see the ContactFlowId in the
|
|
154
|
+
* Amazon Connect console user interface, on the navigation menu go to <b>Routing</b>, <b>Contact Flows</b>. Choose the contact flow. On
|
|
155
|
+
* the contact flow page, under the name of the contact flow, choose <b>Show
|
|
156
|
+
* additional flow information</b>. The ContactFlowId is the last part of the ARN, shown
|
|
157
|
+
* here in bold: </p>
|
|
158
|
+
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
159
|
+
* </p>
|
|
160
|
+
*/
|
|
161
|
+
ContactFlowId: string | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect
|
|
164
|
+
* attributes, and can be accessed in contact flows just like any other contact attributes.</p>
|
|
165
|
+
* <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
|
|
166
|
+
* can include only alphanumeric, dash, and underscore characters.</p>
|
|
167
|
+
*/
|
|
168
|
+
Attributes?: {
|
|
169
|
+
[key: string]: string;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* <p>The name of a task that is shown to an agent in the Contact Control Panel (CCP).</p>
|
|
173
|
+
*/
|
|
174
|
+
Name: string | undefined;
|
|
175
|
+
/**
|
|
176
|
+
* <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP).</p>
|
|
177
|
+
*/
|
|
178
|
+
References?: {
|
|
179
|
+
[key: string]: Reference;
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* <p>A description of the task that is shown to an agent in the Contact Control Panel
|
|
183
|
+
* (CCP).</p>
|
|
184
|
+
*/
|
|
185
|
+
Description?: string;
|
|
186
|
+
/**
|
|
187
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
188
|
+
* request.</p>
|
|
189
|
+
*/
|
|
190
|
+
ClientToken?: string;
|
|
191
|
+
/**
|
|
192
|
+
* <p>The timestamp, in Unix Epoch seconds format, at which to start running the inbound contact flow. The scheduled time cannot be in the past. It must be within up to 6 days in future. </p>
|
|
193
|
+
*/
|
|
194
|
+
ScheduledTime?: Date;
|
|
195
|
+
}
|
|
196
|
+
export declare namespace StartTaskContactRequest {
|
|
197
|
+
/**
|
|
198
|
+
* @internal
|
|
199
|
+
*/
|
|
200
|
+
const filterSensitiveLog: (obj: StartTaskContactRequest) => any;
|
|
201
|
+
}
|
|
202
|
+
export interface StartTaskContactResponse {
|
|
203
|
+
/**
|
|
204
|
+
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
205
|
+
*/
|
|
206
|
+
ContactId?: string;
|
|
207
|
+
}
|
|
208
|
+
export declare namespace StartTaskContactResponse {
|
|
209
|
+
/**
|
|
210
|
+
* @internal
|
|
211
|
+
*/
|
|
212
|
+
const filterSensitiveLog: (obj: StartTaskContactResponse) => any;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* <p>The contact with the specified ID is not active or does not exist.</p>
|
|
216
|
+
*/
|
|
217
|
+
export interface ContactNotFoundException extends __SmithyException, $MetadataBearer {
|
|
218
|
+
name: "ContactNotFoundException";
|
|
219
|
+
$fault: "client";
|
|
220
|
+
/**
|
|
221
|
+
* <p>The message.</p>
|
|
222
|
+
*/
|
|
223
|
+
Message?: string;
|
|
224
|
+
}
|
|
225
|
+
export interface StopContactRequest {
|
|
226
|
+
/**
|
|
227
|
+
* <p>The ID of the contact.</p>
|
|
228
|
+
*/
|
|
229
|
+
ContactId: string | undefined;
|
|
230
|
+
/**
|
|
231
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
232
|
+
*/
|
|
233
|
+
InstanceId: string | undefined;
|
|
234
|
+
}
|
|
235
|
+
export declare namespace StopContactRequest {
|
|
236
|
+
/**
|
|
237
|
+
* @internal
|
|
238
|
+
*/
|
|
239
|
+
const filterSensitiveLog: (obj: StopContactRequest) => any;
|
|
240
|
+
}
|
|
241
|
+
export interface StopContactResponse {
|
|
242
|
+
}
|
|
243
|
+
export declare namespace StopContactResponse {
|
|
244
|
+
/**
|
|
245
|
+
* @internal
|
|
246
|
+
*/
|
|
247
|
+
const filterSensitiveLog: (obj: StopContactResponse) => any;
|
|
248
|
+
}
|
|
249
|
+
export interface StopContactRecordingRequest {
|
|
250
|
+
/**
|
|
251
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
252
|
+
*/
|
|
253
|
+
InstanceId: string | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* <p>The identifier of the contact.</p>
|
|
256
|
+
*/
|
|
257
|
+
ContactId: string | undefined;
|
|
258
|
+
/**
|
|
259
|
+
* <p>The identifier of the contact. This is the identifier of the contact associated with the
|
|
260
|
+
* first interaction with the contact center.</p>
|
|
261
|
+
*/
|
|
262
|
+
InitialContactId: string | undefined;
|
|
263
|
+
}
|
|
264
|
+
export declare namespace StopContactRecordingRequest {
|
|
265
|
+
/**
|
|
266
|
+
* @internal
|
|
267
|
+
*/
|
|
268
|
+
const filterSensitiveLog: (obj: StopContactRecordingRequest) => any;
|
|
269
|
+
}
|
|
270
|
+
export interface StopContactRecordingResponse {
|
|
271
|
+
}
|
|
272
|
+
export declare namespace StopContactRecordingResponse {
|
|
273
|
+
/**
|
|
274
|
+
* @internal
|
|
275
|
+
*/
|
|
276
|
+
const filterSensitiveLog: (obj: StopContactRecordingResponse) => any;
|
|
277
|
+
}
|
|
278
|
+
export interface StopContactStreamingRequest {
|
|
279
|
+
/**
|
|
280
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
281
|
+
*/
|
|
282
|
+
InstanceId: string | undefined;
|
|
283
|
+
/**
|
|
284
|
+
* <p>The identifier of the contact. This is the identifier of the contact that is associated with
|
|
285
|
+
* the first interaction with the contact center.</p>
|
|
286
|
+
*/
|
|
287
|
+
ContactId: string | undefined;
|
|
288
|
+
/**
|
|
289
|
+
* <p>The identifier of the streaming configuration enabled. </p>
|
|
290
|
+
*/
|
|
291
|
+
StreamingId: string | undefined;
|
|
292
|
+
}
|
|
293
|
+
export declare namespace StopContactStreamingRequest {
|
|
294
|
+
/**
|
|
295
|
+
* @internal
|
|
296
|
+
*/
|
|
297
|
+
const filterSensitiveLog: (obj: StopContactStreamingRequest) => any;
|
|
298
|
+
}
|
|
299
|
+
export interface StopContactStreamingResponse {
|
|
300
|
+
}
|
|
301
|
+
export declare namespace StopContactStreamingResponse {
|
|
302
|
+
/**
|
|
303
|
+
* @internal
|
|
304
|
+
*/
|
|
305
|
+
const filterSensitiveLog: (obj: StopContactStreamingResponse) => any;
|
|
306
|
+
}
|
|
307
|
+
export interface SuspendContactRecordingRequest {
|
|
308
|
+
/**
|
|
309
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
310
|
+
*/
|
|
311
|
+
InstanceId: string | undefined;
|
|
312
|
+
/**
|
|
313
|
+
* <p>The identifier of the contact.</p>
|
|
314
|
+
*/
|
|
315
|
+
ContactId: string | undefined;
|
|
316
|
+
/**
|
|
317
|
+
* <p>The identifier of the contact. This is the identifier of the contact associated with the
|
|
318
|
+
* first interaction with the contact center.</p>
|
|
319
|
+
*/
|
|
320
|
+
InitialContactId: string | undefined;
|
|
321
|
+
}
|
|
322
|
+
export declare namespace SuspendContactRecordingRequest {
|
|
323
|
+
/**
|
|
324
|
+
* @internal
|
|
325
|
+
*/
|
|
326
|
+
const filterSensitiveLog: (obj: SuspendContactRecordingRequest) => any;
|
|
327
|
+
}
|
|
328
|
+
export interface SuspendContactRecordingResponse {
|
|
329
|
+
}
|
|
330
|
+
export declare namespace SuspendContactRecordingResponse {
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
const filterSensitiveLog: (obj: SuspendContactRecordingResponse) => any;
|
|
335
|
+
}
|
|
2
336
|
export interface TagResourceRequest {
|
|
3
337
|
/**
|
|
4
338
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -348,7 +682,8 @@ export interface UpdateInstanceAttributeRequest {
|
|
|
348
682
|
/**
|
|
349
683
|
* <p>The type of attribute.</p>
|
|
350
684
|
* <note>
|
|
351
|
-
* <p>Only allowlisted customers can consume USE_CUSTOM_TTS_VOICES. To access this feature,
|
|
685
|
+
* <p>Only allowlisted customers can consume USE_CUSTOM_TTS_VOICES. To access this feature,
|
|
686
|
+
* contact Amazon Web Services Support for allowlisting.</p>
|
|
352
687
|
* </note>
|
|
353
688
|
*/
|
|
354
689
|
AttributeType: InstanceAttributeType | string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListDefaultVocabulariesCommandInput, ListDefaultVocabulariesCommandOutput } from "../commands/ListDefaultVocabulariesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListDefaultVocabularies(config: ConnectPaginationConfiguration, input: ListDefaultVocabulariesCommandInput, ...additionalArguments: any): Paginator<ListDefaultVocabulariesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "../commands/SearchVocabulariesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateSearchVocabularies(config: ConnectPaginationConfiguration, input: SearchVocabulariesCommandInput, ...additionalArguments: any): Paginator<SearchVocabulariesCommandOutput>;
|
|
@@ -7,6 +7,7 @@ export * from "./ListBotsPaginator";
|
|
|
7
7
|
export * from "./ListContactFlowModulesPaginator";
|
|
8
8
|
export * from "./ListContactFlowsPaginator";
|
|
9
9
|
export * from "./ListContactReferencesPaginator";
|
|
10
|
+
export * from "./ListDefaultVocabulariesPaginator";
|
|
10
11
|
export * from "./ListHoursOfOperationsPaginator";
|
|
11
12
|
export * from "./ListInstanceAttributesPaginator";
|
|
12
13
|
export * from "./ListInstanceStorageConfigsPaginator";
|
|
@@ -27,3 +28,4 @@ export * from "./ListSecurityProfilesPaginator";
|
|
|
27
28
|
export * from "./ListUseCasesPaginator";
|
|
28
29
|
export * from "./ListUserHierarchyGroupsPaginator";
|
|
29
30
|
export * from "./ListUsersPaginator";
|
|
31
|
+
export * from "./SearchVocabulariesPaginator";
|
|
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "../commands/AssociateApprovedOriginCommand";
|
|
4
4
|
import { AssociateBotCommandInput, AssociateBotCommandOutput } from "../commands/AssociateBotCommand";
|
|
5
|
+
import { AssociateDefaultVocabularyCommandInput, AssociateDefaultVocabularyCommandOutput } from "../commands/AssociateDefaultVocabularyCommand";
|
|
5
6
|
import { AssociateInstanceStorageConfigCommandInput, AssociateInstanceStorageConfigCommandOutput } from "../commands/AssociateInstanceStorageConfigCommand";
|
|
6
7
|
import { AssociateLambdaFunctionCommandInput, AssociateLambdaFunctionCommandOutput } from "../commands/AssociateLambdaFunctionCommand";
|
|
7
8
|
import { AssociateLexBotCommandInput, AssociateLexBotCommandOutput } from "../commands/AssociateLexBotCommand";
|
|
@@ -21,6 +22,7 @@ import { CreateSecurityProfileCommandInput, CreateSecurityProfileCommandOutput }
|
|
|
21
22
|
import { CreateUseCaseCommandInput, CreateUseCaseCommandOutput } from "../commands/CreateUseCaseCommand";
|
|
22
23
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
23
24
|
import { CreateUserHierarchyGroupCommandInput, CreateUserHierarchyGroupCommandOutput } from "../commands/CreateUserHierarchyGroupCommand";
|
|
25
|
+
import { CreateVocabularyCommandInput, CreateVocabularyCommandOutput } from "../commands/CreateVocabularyCommand";
|
|
24
26
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "../commands/DeleteContactFlowCommand";
|
|
25
27
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "../commands/DeleteContactFlowModuleCommand";
|
|
26
28
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "../commands/DeleteHoursOfOperationCommand";
|
|
@@ -31,6 +33,7 @@ import { DeleteSecurityProfileCommandInput, DeleteSecurityProfileCommandOutput }
|
|
|
31
33
|
import { DeleteUseCaseCommandInput, DeleteUseCaseCommandOutput } from "../commands/DeleteUseCaseCommand";
|
|
32
34
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
33
35
|
import { DeleteUserHierarchyGroupCommandInput, DeleteUserHierarchyGroupCommandOutput } from "../commands/DeleteUserHierarchyGroupCommand";
|
|
36
|
+
import { DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput } from "../commands/DeleteVocabularyCommand";
|
|
34
37
|
import { DescribeAgentStatusCommandInput, DescribeAgentStatusCommandOutput } from "../commands/DescribeAgentStatusCommand";
|
|
35
38
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "../commands/DescribeContactCommand";
|
|
36
39
|
import { DescribeContactFlowCommandInput, DescribeContactFlowCommandOutput } from "../commands/DescribeContactFlowCommand";
|
|
@@ -46,6 +49,7 @@ import { DescribeSecurityProfileCommandInput, DescribeSecurityProfileCommandOutp
|
|
|
46
49
|
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "../commands/DescribeUserCommand";
|
|
47
50
|
import { DescribeUserHierarchyGroupCommandInput, DescribeUserHierarchyGroupCommandOutput } from "../commands/DescribeUserHierarchyGroupCommand";
|
|
48
51
|
import { DescribeUserHierarchyStructureCommandInput, DescribeUserHierarchyStructureCommandOutput } from "../commands/DescribeUserHierarchyStructureCommand";
|
|
52
|
+
import { DescribeVocabularyCommandInput, DescribeVocabularyCommandOutput } from "../commands/DescribeVocabularyCommand";
|
|
49
53
|
import { DisassociateApprovedOriginCommandInput, DisassociateApprovedOriginCommandOutput } from "../commands/DisassociateApprovedOriginCommand";
|
|
50
54
|
import { DisassociateBotCommandInput, DisassociateBotCommandOutput } from "../commands/DisassociateBotCommand";
|
|
51
55
|
import { DisassociateInstanceStorageConfigCommandInput, DisassociateInstanceStorageConfigCommandOutput } from "../commands/DisassociateInstanceStorageConfigCommand";
|
|
@@ -64,6 +68,7 @@ import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBot
|
|
|
64
68
|
import { ListContactFlowModulesCommandInput, ListContactFlowModulesCommandOutput } from "../commands/ListContactFlowModulesCommand";
|
|
65
69
|
import { ListContactFlowsCommandInput, ListContactFlowsCommandOutput } from "../commands/ListContactFlowsCommand";
|
|
66
70
|
import { ListContactReferencesCommandInput, ListContactReferencesCommandOutput } from "../commands/ListContactReferencesCommand";
|
|
71
|
+
import { ListDefaultVocabulariesCommandInput, ListDefaultVocabulariesCommandOutput } from "../commands/ListDefaultVocabulariesCommand";
|
|
67
72
|
import { ListHoursOfOperationsCommandInput, ListHoursOfOperationsCommandOutput } from "../commands/ListHoursOfOperationsCommand";
|
|
68
73
|
import { ListInstanceAttributesCommandInput, ListInstanceAttributesCommandOutput } from "../commands/ListInstanceAttributesCommand";
|
|
69
74
|
import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
|
|
@@ -86,6 +91,7 @@ import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "../commands
|
|
|
86
91
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "../commands/ListUserHierarchyGroupsCommand";
|
|
87
92
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
88
93
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "../commands/ResumeContactRecordingCommand";
|
|
94
|
+
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "../commands/SearchVocabulariesCommand";
|
|
89
95
|
import { StartChatContactCommandInput, StartChatContactCommandOutput } from "../commands/StartChatContactCommand";
|
|
90
96
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "../commands/StartContactRecordingCommand";
|
|
91
97
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "../commands/StartContactStreamingCommand";
|
|
@@ -130,6 +136,7 @@ import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOu
|
|
|
130
136
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "../commands/UpdateUserSecurityProfilesCommand";
|
|
131
137
|
export declare const serializeAws_restJson1AssociateApprovedOriginCommand: (input: AssociateApprovedOriginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
138
|
export declare const serializeAws_restJson1AssociateBotCommand: (input: AssociateBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
|
+
export declare const serializeAws_restJson1AssociateDefaultVocabularyCommand: (input: AssociateDefaultVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
140
|
export declare const serializeAws_restJson1AssociateInstanceStorageConfigCommand: (input: AssociateInstanceStorageConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
141
|
export declare const serializeAws_restJson1AssociateLambdaFunctionCommand: (input: AssociateLambdaFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
135
142
|
export declare const serializeAws_restJson1AssociateLexBotCommand: (input: AssociateLexBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -149,6 +156,7 @@ export declare const serializeAws_restJson1CreateSecurityProfileCommand: (input:
|
|
|
149
156
|
export declare const serializeAws_restJson1CreateUseCaseCommand: (input: CreateUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
157
|
export declare const serializeAws_restJson1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
158
|
export declare const serializeAws_restJson1CreateUserHierarchyGroupCommand: (input: CreateUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
|
+
export declare const serializeAws_restJson1CreateVocabularyCommand: (input: CreateVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
160
|
export declare const serializeAws_restJson1DeleteContactFlowCommand: (input: DeleteContactFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
161
|
export declare const serializeAws_restJson1DeleteContactFlowModuleCommand: (input: DeleteContactFlowModuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
162
|
export declare const serializeAws_restJson1DeleteHoursOfOperationCommand: (input: DeleteHoursOfOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -159,6 +167,7 @@ export declare const serializeAws_restJson1DeleteSecurityProfileCommand: (input:
|
|
|
159
167
|
export declare const serializeAws_restJson1DeleteUseCaseCommand: (input: DeleteUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
168
|
export declare const serializeAws_restJson1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
161
169
|
export declare const serializeAws_restJson1DeleteUserHierarchyGroupCommand: (input: DeleteUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1DeleteVocabularyCommand: (input: DeleteVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
171
|
export declare const serializeAws_restJson1DescribeAgentStatusCommand: (input: DescribeAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
163
172
|
export declare const serializeAws_restJson1DescribeContactCommand: (input: DescribeContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
173
|
export declare const serializeAws_restJson1DescribeContactFlowCommand: (input: DescribeContactFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -174,6 +183,7 @@ export declare const serializeAws_restJson1DescribeSecurityProfileCommand: (inpu
|
|
|
174
183
|
export declare const serializeAws_restJson1DescribeUserCommand: (input: DescribeUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
175
184
|
export declare const serializeAws_restJson1DescribeUserHierarchyGroupCommand: (input: DescribeUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
185
|
export declare const serializeAws_restJson1DescribeUserHierarchyStructureCommand: (input: DescribeUserHierarchyStructureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1DescribeVocabularyCommand: (input: DescribeVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
177
187
|
export declare const serializeAws_restJson1DisassociateApprovedOriginCommand: (input: DisassociateApprovedOriginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
188
|
export declare const serializeAws_restJson1DisassociateBotCommand: (input: DisassociateBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
179
189
|
export declare const serializeAws_restJson1DisassociateInstanceStorageConfigCommand: (input: DisassociateInstanceStorageConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -192,6 +202,7 @@ export declare const serializeAws_restJson1ListBotsCommand: (input: ListBotsComm
|
|
|
192
202
|
export declare const serializeAws_restJson1ListContactFlowModulesCommand: (input: ListContactFlowModulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
193
203
|
export declare const serializeAws_restJson1ListContactFlowsCommand: (input: ListContactFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
194
204
|
export declare const serializeAws_restJson1ListContactReferencesCommand: (input: ListContactReferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
205
|
+
export declare const serializeAws_restJson1ListDefaultVocabulariesCommand: (input: ListDefaultVocabulariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
195
206
|
export declare const serializeAws_restJson1ListHoursOfOperationsCommand: (input: ListHoursOfOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
196
207
|
export declare const serializeAws_restJson1ListInstanceAttributesCommand: (input: ListInstanceAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
197
208
|
export declare const serializeAws_restJson1ListInstancesCommand: (input: ListInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -214,6 +225,7 @@ export declare const serializeAws_restJson1ListUseCasesCommand: (input: ListUseC
|
|
|
214
225
|
export declare const serializeAws_restJson1ListUserHierarchyGroupsCommand: (input: ListUserHierarchyGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
215
226
|
export declare const serializeAws_restJson1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
216
227
|
export declare const serializeAws_restJson1ResumeContactRecordingCommand: (input: ResumeContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
228
|
+
export declare const serializeAws_restJson1SearchVocabulariesCommand: (input: SearchVocabulariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
217
229
|
export declare const serializeAws_restJson1StartChatContactCommand: (input: StartChatContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
218
230
|
export declare const serializeAws_restJson1StartContactRecordingCommand: (input: StartContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
219
231
|
export declare const serializeAws_restJson1StartContactStreamingCommand: (input: StartContactStreamingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -258,6 +270,7 @@ export declare const serializeAws_restJson1UpdateUserRoutingProfileCommand: (inp
|
|
|
258
270
|
export declare const serializeAws_restJson1UpdateUserSecurityProfilesCommand: (input: UpdateUserSecurityProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
271
|
export declare const deserializeAws_restJson1AssociateApprovedOriginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApprovedOriginCommandOutput>;
|
|
260
272
|
export declare const deserializeAws_restJson1AssociateBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateBotCommandOutput>;
|
|
273
|
+
export declare const deserializeAws_restJson1AssociateDefaultVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateDefaultVocabularyCommandOutput>;
|
|
261
274
|
export declare const deserializeAws_restJson1AssociateInstanceStorageConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateInstanceStorageConfigCommandOutput>;
|
|
262
275
|
export declare const deserializeAws_restJson1AssociateLambdaFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateLambdaFunctionCommandOutput>;
|
|
263
276
|
export declare const deserializeAws_restJson1AssociateLexBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateLexBotCommandOutput>;
|
|
@@ -277,6 +290,7 @@ export declare const deserializeAws_restJson1CreateSecurityProfileCommand: (outp
|
|
|
277
290
|
export declare const deserializeAws_restJson1CreateUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUseCaseCommandOutput>;
|
|
278
291
|
export declare const deserializeAws_restJson1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
279
292
|
export declare const deserializeAws_restJson1CreateUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserHierarchyGroupCommandOutput>;
|
|
293
|
+
export declare const deserializeAws_restJson1CreateVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVocabularyCommandOutput>;
|
|
280
294
|
export declare const deserializeAws_restJson1DeleteContactFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactFlowCommandOutput>;
|
|
281
295
|
export declare const deserializeAws_restJson1DeleteContactFlowModuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactFlowModuleCommandOutput>;
|
|
282
296
|
export declare const deserializeAws_restJson1DeleteHoursOfOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHoursOfOperationCommandOutput>;
|
|
@@ -287,6 +301,7 @@ export declare const deserializeAws_restJson1DeleteSecurityProfileCommand: (outp
|
|
|
287
301
|
export declare const deserializeAws_restJson1DeleteUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUseCaseCommandOutput>;
|
|
288
302
|
export declare const deserializeAws_restJson1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
289
303
|
export declare const deserializeAws_restJson1DeleteUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserHierarchyGroupCommandOutput>;
|
|
304
|
+
export declare const deserializeAws_restJson1DeleteVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVocabularyCommandOutput>;
|
|
290
305
|
export declare const deserializeAws_restJson1DescribeAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgentStatusCommandOutput>;
|
|
291
306
|
export declare const deserializeAws_restJson1DescribeContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeContactCommandOutput>;
|
|
292
307
|
export declare const deserializeAws_restJson1DescribeContactFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeContactFlowCommandOutput>;
|
|
@@ -302,6 +317,7 @@ export declare const deserializeAws_restJson1DescribeSecurityProfileCommand: (ou
|
|
|
302
317
|
export declare const deserializeAws_restJson1DescribeUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserCommandOutput>;
|
|
303
318
|
export declare const deserializeAws_restJson1DescribeUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserHierarchyGroupCommandOutput>;
|
|
304
319
|
export declare const deserializeAws_restJson1DescribeUserHierarchyStructureCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserHierarchyStructureCommandOutput>;
|
|
320
|
+
export declare const deserializeAws_restJson1DescribeVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVocabularyCommandOutput>;
|
|
305
321
|
export declare const deserializeAws_restJson1DisassociateApprovedOriginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApprovedOriginCommandOutput>;
|
|
306
322
|
export declare const deserializeAws_restJson1DisassociateBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateBotCommandOutput>;
|
|
307
323
|
export declare const deserializeAws_restJson1DisassociateInstanceStorageConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateInstanceStorageConfigCommandOutput>;
|
|
@@ -320,6 +336,7 @@ export declare const deserializeAws_restJson1ListBotsCommand: (output: __HttpRes
|
|
|
320
336
|
export declare const deserializeAws_restJson1ListContactFlowModulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactFlowModulesCommandOutput>;
|
|
321
337
|
export declare const deserializeAws_restJson1ListContactFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactFlowsCommandOutput>;
|
|
322
338
|
export declare const deserializeAws_restJson1ListContactReferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactReferencesCommandOutput>;
|
|
339
|
+
export declare const deserializeAws_restJson1ListDefaultVocabulariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDefaultVocabulariesCommandOutput>;
|
|
323
340
|
export declare const deserializeAws_restJson1ListHoursOfOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHoursOfOperationsCommandOutput>;
|
|
324
341
|
export declare const deserializeAws_restJson1ListInstanceAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstanceAttributesCommandOutput>;
|
|
325
342
|
export declare const deserializeAws_restJson1ListInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstancesCommandOutput>;
|
|
@@ -342,6 +359,7 @@ export declare const deserializeAws_restJson1ListUseCasesCommand: (output: __Htt
|
|
|
342
359
|
export declare const deserializeAws_restJson1ListUserHierarchyGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserHierarchyGroupsCommandOutput>;
|
|
343
360
|
export declare const deserializeAws_restJson1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
344
361
|
export declare const deserializeAws_restJson1ResumeContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeContactRecordingCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_restJson1SearchVocabulariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchVocabulariesCommandOutput>;
|
|
345
363
|
export declare const deserializeAws_restJson1StartChatContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartChatContactCommandOutput>;
|
|
346
364
|
export declare const deserializeAws_restJson1StartContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContactRecordingCommandOutput>;
|
|
347
365
|
export declare const deserializeAws_restJson1StartContactStreamingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContactStreamingCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "./commands/AssociateApprovedOriginCommand";
|
|
3
3
|
import { AssociateBotCommandInput, AssociateBotCommandOutput } from "./commands/AssociateBotCommand";
|
|
4
|
+
import { AssociateDefaultVocabularyCommandInput, AssociateDefaultVocabularyCommandOutput } from "./commands/AssociateDefaultVocabularyCommand";
|
|
4
5
|
import { AssociateInstanceStorageConfigCommandInput, AssociateInstanceStorageConfigCommandOutput } from "./commands/AssociateInstanceStorageConfigCommand";
|
|
5
6
|
import { AssociateLambdaFunctionCommandInput, AssociateLambdaFunctionCommandOutput } from "./commands/AssociateLambdaFunctionCommand";
|
|
6
7
|
import { AssociateLexBotCommandInput, AssociateLexBotCommandOutput } from "./commands/AssociateLexBotCommand";
|
|
@@ -20,6 +21,7 @@ import { CreateSecurityProfileCommandInput, CreateSecurityProfileCommandOutput }
|
|
|
20
21
|
import { CreateUseCaseCommandInput, CreateUseCaseCommandOutput } from "./commands/CreateUseCaseCommand";
|
|
21
22
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
22
23
|
import { CreateUserHierarchyGroupCommandInput, CreateUserHierarchyGroupCommandOutput } from "./commands/CreateUserHierarchyGroupCommand";
|
|
24
|
+
import { CreateVocabularyCommandInput, CreateVocabularyCommandOutput } from "./commands/CreateVocabularyCommand";
|
|
23
25
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "./commands/DeleteContactFlowCommand";
|
|
24
26
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "./commands/DeleteContactFlowModuleCommand";
|
|
25
27
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "./commands/DeleteHoursOfOperationCommand";
|
|
@@ -30,6 +32,7 @@ import { DeleteSecurityProfileCommandInput, DeleteSecurityProfileCommandOutput }
|
|
|
30
32
|
import { DeleteUseCaseCommandInput, DeleteUseCaseCommandOutput } from "./commands/DeleteUseCaseCommand";
|
|
31
33
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
32
34
|
import { DeleteUserHierarchyGroupCommandInput, DeleteUserHierarchyGroupCommandOutput } from "./commands/DeleteUserHierarchyGroupCommand";
|
|
35
|
+
import { DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput } from "./commands/DeleteVocabularyCommand";
|
|
33
36
|
import { DescribeAgentStatusCommandInput, DescribeAgentStatusCommandOutput } from "./commands/DescribeAgentStatusCommand";
|
|
34
37
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
35
38
|
import { DescribeContactFlowCommandInput, DescribeContactFlowCommandOutput } from "./commands/DescribeContactFlowCommand";
|
|
@@ -45,6 +48,7 @@ import { DescribeSecurityProfileCommandInput, DescribeSecurityProfileCommandOutp
|
|
|
45
48
|
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
|
|
46
49
|
import { DescribeUserHierarchyGroupCommandInput, DescribeUserHierarchyGroupCommandOutput } from "./commands/DescribeUserHierarchyGroupCommand";
|
|
47
50
|
import { DescribeUserHierarchyStructureCommandInput, DescribeUserHierarchyStructureCommandOutput } from "./commands/DescribeUserHierarchyStructureCommand";
|
|
51
|
+
import { DescribeVocabularyCommandInput, DescribeVocabularyCommandOutput } from "./commands/DescribeVocabularyCommand";
|
|
48
52
|
import { DisassociateApprovedOriginCommandInput, DisassociateApprovedOriginCommandOutput } from "./commands/DisassociateApprovedOriginCommand";
|
|
49
53
|
import { DisassociateBotCommandInput, DisassociateBotCommandOutput } from "./commands/DisassociateBotCommand";
|
|
50
54
|
import { DisassociateInstanceStorageConfigCommandInput, DisassociateInstanceStorageConfigCommandOutput } from "./commands/DisassociateInstanceStorageConfigCommand";
|
|
@@ -63,6 +67,7 @@ import { ListBotsCommandInput, ListBotsCommandOutput } from "./commands/ListBots
|
|
|
63
67
|
import { ListContactFlowModulesCommandInput, ListContactFlowModulesCommandOutput } from "./commands/ListContactFlowModulesCommand";
|
|
64
68
|
import { ListContactFlowsCommandInput, ListContactFlowsCommandOutput } from "./commands/ListContactFlowsCommand";
|
|
65
69
|
import { ListContactReferencesCommandInput, ListContactReferencesCommandOutput } from "./commands/ListContactReferencesCommand";
|
|
70
|
+
import { ListDefaultVocabulariesCommandInput, ListDefaultVocabulariesCommandOutput } from "./commands/ListDefaultVocabulariesCommand";
|
|
66
71
|
import { ListHoursOfOperationsCommandInput, ListHoursOfOperationsCommandOutput } from "./commands/ListHoursOfOperationsCommand";
|
|
67
72
|
import { ListInstanceAttributesCommandInput, ListInstanceAttributesCommandOutput } from "./commands/ListInstanceAttributesCommand";
|
|
68
73
|
import { ListInstancesCommandInput, ListInstancesCommandOutput } from "./commands/ListInstancesCommand";
|
|
@@ -85,6 +90,7 @@ import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "./commands/
|
|
|
85
90
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "./commands/ListUserHierarchyGroupsCommand";
|
|
86
91
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
87
92
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
93
|
+
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
88
94
|
import { StartChatContactCommandInput, StartChatContactCommandOutput } from "./commands/StartChatContactCommand";
|
|
89
95
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "./commands/StartContactRecordingCommand";
|
|
90
96
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "./commands/StartContactStreamingCommand";
|
|
@@ -139,6 +145,10 @@ export declare class Connect extends ConnectClient {
|
|
|
139
145
|
associateBot(args: AssociateBotCommandInput, cb: (err: any, data?: AssociateBotCommandOutput) => void): void;
|
|
140
146
|
associateBot(args: AssociateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBotCommandOutput) => void): void;
|
|
141
147
|
|
|
148
|
+
associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<AssociateDefaultVocabularyCommandOutput>;
|
|
149
|
+
associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, cb: (err: any, data?: AssociateDefaultVocabularyCommandOutput) => void): void;
|
|
150
|
+
associateDefaultVocabulary(args: AssociateDefaultVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDefaultVocabularyCommandOutput) => void): void;
|
|
151
|
+
|
|
142
152
|
associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, options?: __HttpHandlerOptions): Promise<AssociateInstanceStorageConfigCommandOutput>;
|
|
143
153
|
associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, cb: (err: any, data?: AssociateInstanceStorageConfigCommandOutput) => void): void;
|
|
144
154
|
associateInstanceStorageConfig(args: AssociateInstanceStorageConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateInstanceStorageConfigCommandOutput) => void): void;
|
|
@@ -215,6 +225,10 @@ export declare class Connect extends ConnectClient {
|
|
|
215
225
|
createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, cb: (err: any, data?: CreateUserHierarchyGroupCommandOutput) => void): void;
|
|
216
226
|
createUserHierarchyGroup(args: CreateUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserHierarchyGroupCommandOutput) => void): void;
|
|
217
227
|
|
|
228
|
+
createVocabulary(args: CreateVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<CreateVocabularyCommandOutput>;
|
|
229
|
+
createVocabulary(args: CreateVocabularyCommandInput, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
|
|
230
|
+
createVocabulary(args: CreateVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
|
|
231
|
+
|
|
218
232
|
deleteContactFlow(args: DeleteContactFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactFlowCommandOutput>;
|
|
219
233
|
deleteContactFlow(args: DeleteContactFlowCommandInput, cb: (err: any, data?: DeleteContactFlowCommandOutput) => void): void;
|
|
220
234
|
deleteContactFlow(args: DeleteContactFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactFlowCommandOutput) => void): void;
|
|
@@ -255,6 +269,10 @@ export declare class Connect extends ConnectClient {
|
|
|
255
269
|
deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, cb: (err: any, data?: DeleteUserHierarchyGroupCommandOutput) => void): void;
|
|
256
270
|
deleteUserHierarchyGroup(args: DeleteUserHierarchyGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserHierarchyGroupCommandOutput) => void): void;
|
|
257
271
|
|
|
272
|
+
deleteVocabulary(args: DeleteVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVocabularyCommandOutput>;
|
|
273
|
+
deleteVocabulary(args: DeleteVocabularyCommandInput, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
|
|
274
|
+
deleteVocabulary(args: DeleteVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
|
|
275
|
+
|
|
258
276
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAgentStatusCommandOutput>;
|
|
259
277
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
|
|
260
278
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
|
|
@@ -315,6 +333,10 @@ export declare class Connect extends ConnectClient {
|
|
|
315
333
|
describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, cb: (err: any, data?: DescribeUserHierarchyStructureCommandOutput) => void): void;
|
|
316
334
|
describeUserHierarchyStructure(args: DescribeUserHierarchyStructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserHierarchyStructureCommandOutput) => void): void;
|
|
317
335
|
|
|
336
|
+
describeVocabulary(args: DescribeVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVocabularyCommandOutput>;
|
|
337
|
+
describeVocabulary(args: DescribeVocabularyCommandInput, cb: (err: any, data?: DescribeVocabularyCommandOutput) => void): void;
|
|
338
|
+
describeVocabulary(args: DescribeVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVocabularyCommandOutput) => void): void;
|
|
339
|
+
|
|
318
340
|
disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateApprovedOriginCommandOutput>;
|
|
319
341
|
disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, cb: (err: any, data?: DisassociateApprovedOriginCommandOutput) => void): void;
|
|
320
342
|
disassociateApprovedOrigin(args: DisassociateApprovedOriginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateApprovedOriginCommandOutput) => void): void;
|
|
@@ -387,6 +409,10 @@ export declare class Connect extends ConnectClient {
|
|
|
387
409
|
listContactReferences(args: ListContactReferencesCommandInput, cb: (err: any, data?: ListContactReferencesCommandOutput) => void): void;
|
|
388
410
|
listContactReferences(args: ListContactReferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactReferencesCommandOutput) => void): void;
|
|
389
411
|
|
|
412
|
+
listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListDefaultVocabulariesCommandOutput>;
|
|
413
|
+
listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void): void;
|
|
414
|
+
listDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDefaultVocabulariesCommandOutput) => void): void;
|
|
415
|
+
|
|
390
416
|
listHoursOfOperations(args: ListHoursOfOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListHoursOfOperationsCommandOutput>;
|
|
391
417
|
listHoursOfOperations(args: ListHoursOfOperationsCommandInput, cb: (err: any, data?: ListHoursOfOperationsCommandOutput) => void): void;
|
|
392
418
|
listHoursOfOperations(args: ListHoursOfOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHoursOfOperationsCommandOutput) => void): void;
|
|
@@ -475,6 +501,10 @@ export declare class Connect extends ConnectClient {
|
|
|
475
501
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
|
|
476
502
|
resumeContactRecording(args: ResumeContactRecordingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeContactRecordingCommandOutput) => void): void;
|
|
477
503
|
|
|
504
|
+
searchVocabularies(args: SearchVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<SearchVocabulariesCommandOutput>;
|
|
505
|
+
searchVocabularies(args: SearchVocabulariesCommandInput, cb: (err: any, data?: SearchVocabulariesCommandOutput) => void): void;
|
|
506
|
+
searchVocabularies(args: SearchVocabulariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchVocabulariesCommandOutput) => void): void;
|
|
507
|
+
|
|
478
508
|
startChatContact(args: StartChatContactCommandInput, options?: __HttpHandlerOptions): Promise<StartChatContactCommandOutput>;
|
|
479
509
|
startChatContact(args: StartChatContactCommandInput, cb: (err: any, data?: StartChatContactCommandOutput) => void): void;
|
|
480
510
|
startChatContact(args: StartChatContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChatContactCommandOutput) => void): void;
|