@aws-sdk/client-connect 3.388.0 → 3.391.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/README.md +24 -0
- package/dist-cjs/Connect.js +6 -0
- package/dist-cjs/commands/AssociateTrafficDistributionGroupUserCommand.js +46 -0
- package/dist-cjs/commands/DisassociateTrafficDistributionGroupUserCommand.js +46 -0
- package/dist-cjs/commands/ListTrafficDistributionGroupUsersCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +1 -26
- package/dist-cjs/models/models_1.js +26 -11
- package/dist-cjs/models/models_2.js +11 -0
- package/dist-cjs/pagination/ListTrafficDistributionGroupUsersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +221 -9
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/AssociateTrafficDistributionGroupUserCommand.js +42 -0
- package/dist-es/commands/DisassociateTrafficDistributionGroupUserCommand.js +42 -0
- package/dist-es/commands/ListTrafficDistributionGroupUsersCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +0 -25
- package/dist-es/models/models_1.js +25 -10
- package/dist-es/models/models_2.js +10 -1
- package/dist-es/pagination/ListTrafficDistributionGroupUsersPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +207 -1
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/AssociateTrafficDistributionGroupUserCommand.d.ts +91 -0
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrafficDistributionGroupCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateTrafficDistributionGroupUserCommand.d.ts +91 -0
- package/dist-types/commands/GetContactAttributesCommand.d.ts +2 -1
- package/dist-types/commands/GetTrafficDistributionCommand.d.ts +16 -0
- package/dist-types/commands/ListPhoneNumbersV2Command.d.ts +12 -0
- package/dist-types/commands/ListTrafficDistributionGroupUsersCommand.d.ts +95 -0
- package/dist-types/commands/ListTrafficDistributionGroupsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.d.ts +3 -5
- package/dist-types/commands/UpdateTrafficDistributionCommand.d.ts +21 -0
- package/dist-types/commands/UpdateUserHierarchyStructureCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserIdentityInfoCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserPhoneConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserRoutingProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +97 -106
- package/dist-types/models/models_1.d.ts +213 -339
- package/dist-types/models/models_2.d.ts +320 -2
- package/dist-types/pagination/ListTrafficDistributionGroupUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Connect.d.ts +69 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociateTrafficDistributionGroupUserCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrafficDistributionGroupUserCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetContactAttributesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTrafficDistributionGroupUsersCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateUserHierarchyStructureCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserIdentityInfoCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserPhoneConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserRoutingProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -41
- package/dist-types/ts3.4/models/models_1.d.ts +65 -99
- package/dist-types/ts3.4/models/models_2.d.ts +98 -3
- package/dist-types/ts3.4/pagination/ListTrafficDistributionGroupUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +28 -28
|
@@ -1,5 +1,323 @@
|
|
|
1
|
-
import { Evaluation, EvaluationFormScoringStrategy } from "./models_0";
|
|
2
|
-
import {
|
|
1
|
+
import { Evaluation, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, UserIdentityInfo, UserPhoneConfig } from "./models_0";
|
|
2
|
+
import { HierarchyGroupCondition, HierarchyLevelUpdate, HoursOfOperationSearchFilter, PromptSearchFilter, QueueSearchFilter, QuickConnectSearchFilter, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, StringCondition, UserSearchFilter } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>Contains information about the level hierarchy to update.</p>
|
|
6
|
+
*/
|
|
7
|
+
export interface HierarchyStructureUpdate {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* <p>The
|
|
11
|
+
* update
|
|
12
|
+
* for level one.</p>
|
|
13
|
+
*/
|
|
14
|
+
LevelOne?: HierarchyLevelUpdate;
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The update for level two.</p>
|
|
18
|
+
*/
|
|
19
|
+
LevelTwo?: HierarchyLevelUpdate;
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>The update for level three.</p>
|
|
23
|
+
*/
|
|
24
|
+
LevelThree?: HierarchyLevelUpdate;
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* <p>The update for level four.</p>
|
|
28
|
+
*/
|
|
29
|
+
LevelFour?: HierarchyLevelUpdate;
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* <p>The update for level five.</p>
|
|
33
|
+
*/
|
|
34
|
+
LevelFive?: HierarchyLevelUpdate;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface UpdateUserHierarchyStructureRequest {
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* <p>The hierarchy levels to update.</p>
|
|
43
|
+
*/
|
|
44
|
+
HierarchyStructure: HierarchyStructureUpdate | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
48
|
+
*/
|
|
49
|
+
InstanceId: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export interface UpdateUserIdentityInfoRequest {
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* <p>The identity information for the user.</p>
|
|
58
|
+
*/
|
|
59
|
+
IdentityInfo: UserIdentityInfo | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* <p>The identifier of the user account.</p>
|
|
63
|
+
*/
|
|
64
|
+
UserId: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
68
|
+
*/
|
|
69
|
+
InstanceId: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export interface UpdateUserPhoneConfigRequest {
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
* <p>Information about phone configuration settings for the user.</p>
|
|
78
|
+
*/
|
|
79
|
+
PhoneConfig: UserPhoneConfig | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* <p>The identifier of the user account.</p>
|
|
83
|
+
*/
|
|
84
|
+
UserId: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
88
|
+
*/
|
|
89
|
+
InstanceId: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export interface UpdateUserRoutingProfileRequest {
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
* <p>The identifier of the routing profile for the user.</p>
|
|
98
|
+
*/
|
|
99
|
+
RoutingProfileId: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* <p>The identifier of the user account.</p>
|
|
103
|
+
*/
|
|
104
|
+
UserId: string | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
108
|
+
*/
|
|
109
|
+
InstanceId: string | undefined;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export interface UpdateUserSecurityProfilesRequest {
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* <p>The identifiers of the security profiles for the user.</p>
|
|
118
|
+
*/
|
|
119
|
+
SecurityProfileIds: string[] | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* <p>The identifier of the user account.</p>
|
|
123
|
+
*/
|
|
124
|
+
UserId: string | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* @public
|
|
127
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
128
|
+
*/
|
|
129
|
+
InstanceId: string | undefined;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* <p>Information about an item from an evaluation form. The item must be either a section or a
|
|
134
|
+
* question.</p>
|
|
135
|
+
*/
|
|
136
|
+
export type EvaluationFormItem = EvaluationFormItem.QuestionMember | EvaluationFormItem.SectionMember | EvaluationFormItem.$UnknownMember;
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
export declare namespace EvaluationFormItem {
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
* <p>The information of the section.</p>
|
|
144
|
+
*/
|
|
145
|
+
interface SectionMember {
|
|
146
|
+
Section: EvaluationFormSection;
|
|
147
|
+
Question?: never;
|
|
148
|
+
$unknown?: never;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
* <p>The information of the question.</p>
|
|
153
|
+
*/
|
|
154
|
+
interface QuestionMember {
|
|
155
|
+
Section?: never;
|
|
156
|
+
Question: EvaluationFormQuestion;
|
|
157
|
+
$unknown?: never;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
interface $UnknownMember {
|
|
163
|
+
Section?: never;
|
|
164
|
+
Question?: never;
|
|
165
|
+
$unknown: [string, any];
|
|
166
|
+
}
|
|
167
|
+
interface Visitor<T> {
|
|
168
|
+
Section: (value: EvaluationFormSection) => T;
|
|
169
|
+
Question: (value: EvaluationFormQuestion) => T;
|
|
170
|
+
_: (name: string, value: any) => T;
|
|
171
|
+
}
|
|
172
|
+
const visit: <T>(value: EvaluationFormItem, visitor: Visitor<T>) => T;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
* <p>Information about a section from an evaluation form. A section can contain sections and/or
|
|
177
|
+
* questions. Evaluation forms can only contain sections and subsections (two level nesting).</p>
|
|
178
|
+
*/
|
|
179
|
+
export interface EvaluationFormSection {
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
* <p>The title of the section.</p>
|
|
183
|
+
*/
|
|
184
|
+
Title: string | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* @public
|
|
187
|
+
* <p>The identifier of the section. An identifier must be unique within the evaluation
|
|
188
|
+
* form.</p>
|
|
189
|
+
*/
|
|
190
|
+
RefId: string | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
* <p>The instructions of the section.</p>
|
|
194
|
+
*/
|
|
195
|
+
Instructions?: string;
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
* <p>The items of the section.</p>
|
|
199
|
+
*/
|
|
200
|
+
Items: EvaluationFormItem[] | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* @public
|
|
203
|
+
* <p>The scoring weight of the section.</p>
|
|
204
|
+
*/
|
|
205
|
+
Weight?: number;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export interface CreateEvaluationFormRequest {
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
214
|
+
*/
|
|
215
|
+
InstanceId: string | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
* <p>A title of the evaluation form.</p>
|
|
219
|
+
*/
|
|
220
|
+
Title: string | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
* <p>The description of the evaluation form.</p>
|
|
224
|
+
*/
|
|
225
|
+
Description?: string;
|
|
226
|
+
/**
|
|
227
|
+
* @public
|
|
228
|
+
* <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
|
|
229
|
+
*/
|
|
230
|
+
Items: EvaluationFormItem[] | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
* <p>A scoring strategy of the evaluation form.</p>
|
|
234
|
+
*/
|
|
235
|
+
ScoringStrategy?: EvaluationFormScoringStrategy;
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
239
|
+
* request. If not provided, the Amazon Web Services
|
|
240
|
+
* SDK populates this field. For more information about idempotency, see
|
|
241
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
242
|
+
*/
|
|
243
|
+
ClientToken?: string;
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* @public
|
|
247
|
+
* <p>Information about the evaluation form.</p>
|
|
248
|
+
*/
|
|
249
|
+
export interface EvaluationForm {
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
* <p>The unique identifier for the evaluation form.</p>
|
|
253
|
+
*/
|
|
254
|
+
EvaluationFormId: string | undefined;
|
|
255
|
+
/**
|
|
256
|
+
* @public
|
|
257
|
+
* <p>A version of the evaluation form.</p>
|
|
258
|
+
*/
|
|
259
|
+
EvaluationFormVersion: number | undefined;
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
* <p>The flag indicating whether the evaluation form is locked for changes.</p>
|
|
263
|
+
*/
|
|
264
|
+
Locked: boolean | undefined;
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
* <p>The Amazon Resource Name (ARN) for the evaluation form resource.</p>
|
|
268
|
+
*/
|
|
269
|
+
EvaluationFormArn: string | undefined;
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
* <p>A title of the evaluation form.</p>
|
|
273
|
+
*/
|
|
274
|
+
Title: string | undefined;
|
|
275
|
+
/**
|
|
276
|
+
* @public
|
|
277
|
+
* <p>The description of the evaluation form.</p>
|
|
278
|
+
*/
|
|
279
|
+
Description?: string;
|
|
280
|
+
/**
|
|
281
|
+
* @public
|
|
282
|
+
* <p>The status of the evaluation form.</p>
|
|
283
|
+
*/
|
|
284
|
+
Status: EvaluationFormVersionStatus | string | undefined;
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
* <p>Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.</p>
|
|
288
|
+
*/
|
|
289
|
+
Items: EvaluationFormItem[] | undefined;
|
|
290
|
+
/**
|
|
291
|
+
* @public
|
|
292
|
+
* <p>A scoring strategy of the evaluation form.</p>
|
|
293
|
+
*/
|
|
294
|
+
ScoringStrategy?: EvaluationFormScoringStrategy;
|
|
295
|
+
/**
|
|
296
|
+
* @public
|
|
297
|
+
* <p>The timestamp for when the evaluation form was created.</p>
|
|
298
|
+
*/
|
|
299
|
+
CreatedTime: Date | undefined;
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
* <p>The Amazon Resource Name (ARN) of the user who created the evaluation form.</p>
|
|
303
|
+
*/
|
|
304
|
+
CreatedBy: string | undefined;
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
* <p>The timestamp for when the evaluation form was last updated.</p>
|
|
308
|
+
*/
|
|
309
|
+
LastModifiedTime: Date | undefined;
|
|
310
|
+
/**
|
|
311
|
+
* @public
|
|
312
|
+
* <p>The Amazon Resource Name (ARN) of the user who last updated the evaluation form.</p>
|
|
313
|
+
*/
|
|
314
|
+
LastModifiedBy: string | undefined;
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
318
|
+
*/
|
|
319
|
+
Tags?: Record<string, string>;
|
|
320
|
+
}
|
|
3
321
|
/**
|
|
4
322
|
* @public
|
|
5
323
|
* <p>Information about an evaluation form used in a contact evaluation.</p>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListTrafficDistributionGroupUsersCommandInput, ListTrafficDistributionGroupUsersCommandOutput } from "../commands/ListTrafficDistributionGroupUsersCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListTrafficDistributionGroupUsers(config: ConnectPaginationConfiguration, input: ListTrafficDistributionGroupUsersCommandInput, ...additionalArguments: any): Paginator<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
@@ -33,6 +33,7 @@ export * from "./ListSecurityKeysPaginator";
|
|
|
33
33
|
export * from "./ListSecurityProfilePermissionsPaginator";
|
|
34
34
|
export * from "./ListSecurityProfilesPaginator";
|
|
35
35
|
export * from "./ListTaskTemplatesPaginator";
|
|
36
|
+
export * from "./ListTrafficDistributionGroupUsersPaginator";
|
|
36
37
|
export * from "./ListTrafficDistributionGroupsPaginator";
|
|
37
38
|
export * from "./ListUseCasesPaginator";
|
|
38
39
|
export * from "./ListUserHierarchyGroupsPaginator";
|
|
@@ -11,6 +11,7 @@ import { AssociatePhoneNumberContactFlowCommandInput, AssociatePhoneNumberContac
|
|
|
11
11
|
import { AssociateQueueQuickConnectsCommandInput, AssociateQueueQuickConnectsCommandOutput } from "../commands/AssociateQueueQuickConnectsCommand";
|
|
12
12
|
import { AssociateRoutingProfileQueuesCommandInput, AssociateRoutingProfileQueuesCommandOutput } from "../commands/AssociateRoutingProfileQueuesCommand";
|
|
13
13
|
import { AssociateSecurityKeyCommandInput, AssociateSecurityKeyCommandOutput } from "../commands/AssociateSecurityKeyCommand";
|
|
14
|
+
import { AssociateTrafficDistributionGroupUserCommandInput, AssociateTrafficDistributionGroupUserCommandOutput } from "../commands/AssociateTrafficDistributionGroupUserCommand";
|
|
14
15
|
import { ClaimPhoneNumberCommandInput, ClaimPhoneNumberCommandOutput } from "../commands/ClaimPhoneNumberCommand";
|
|
15
16
|
import { CreateAgentStatusCommandInput, CreateAgentStatusCommandOutput } from "../commands/CreateAgentStatusCommand";
|
|
16
17
|
import { CreateContactFlowCommandInput, CreateContactFlowCommandOutput } from "../commands/CreateContactFlowCommand";
|
|
@@ -83,6 +84,7 @@ import { DisassociatePhoneNumberContactFlowCommandInput, DisassociatePhoneNumber
|
|
|
83
84
|
import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConnectsCommandOutput } from "../commands/DisassociateQueueQuickConnectsCommand";
|
|
84
85
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "../commands/DisassociateRoutingProfileQueuesCommand";
|
|
85
86
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "../commands/DisassociateSecurityKeyCommand";
|
|
87
|
+
import { DisassociateTrafficDistributionGroupUserCommandInput, DisassociateTrafficDistributionGroupUserCommandOutput } from "../commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
86
88
|
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "../commands/DismissUserContactCommand";
|
|
87
89
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "../commands/GetContactAttributesCommand";
|
|
88
90
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "../commands/GetCurrentMetricDataCommand";
|
|
@@ -125,6 +127,7 @@ import { ListSecurityProfilesCommandInput, ListSecurityProfilesCommandOutput } f
|
|
|
125
127
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
126
128
|
import { ListTaskTemplatesCommandInput, ListTaskTemplatesCommandOutput } from "../commands/ListTaskTemplatesCommand";
|
|
127
129
|
import { ListTrafficDistributionGroupsCommandInput, ListTrafficDistributionGroupsCommandOutput } from "../commands/ListTrafficDistributionGroupsCommand";
|
|
130
|
+
import { ListTrafficDistributionGroupUsersCommandInput, ListTrafficDistributionGroupUsersCommandOutput } from "../commands/ListTrafficDistributionGroupUsersCommand";
|
|
128
131
|
import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "../commands/ListUseCasesCommand";
|
|
129
132
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "../commands/ListUserHierarchyGroupsCommand";
|
|
130
133
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
@@ -241,6 +244,10 @@ export declare const se_AssociateRoutingProfileQueuesCommand: (input: AssociateR
|
|
|
241
244
|
* serializeAws_restJson1AssociateSecurityKeyCommand
|
|
242
245
|
*/
|
|
243
246
|
export declare const se_AssociateSecurityKeyCommand: (input: AssociateSecurityKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
247
|
+
/**
|
|
248
|
+
* serializeAws_restJson1AssociateTrafficDistributionGroupUserCommand
|
|
249
|
+
*/
|
|
250
|
+
export declare const se_AssociateTrafficDistributionGroupUserCommand: (input: AssociateTrafficDistributionGroupUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
244
251
|
/**
|
|
245
252
|
* serializeAws_restJson1ClaimPhoneNumberCommand
|
|
246
253
|
*/
|
|
@@ -529,6 +536,10 @@ export declare const se_DisassociateRoutingProfileQueuesCommand: (input: Disasso
|
|
|
529
536
|
* serializeAws_restJson1DisassociateSecurityKeyCommand
|
|
530
537
|
*/
|
|
531
538
|
export declare const se_DisassociateSecurityKeyCommand: (input: DisassociateSecurityKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
539
|
+
/**
|
|
540
|
+
* serializeAws_restJson1DisassociateTrafficDistributionGroupUserCommand
|
|
541
|
+
*/
|
|
542
|
+
export declare const se_DisassociateTrafficDistributionGroupUserCommand: (input: DisassociateTrafficDistributionGroupUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
532
543
|
/**
|
|
533
544
|
* serializeAws_restJson1DismissUserContactCommand
|
|
534
545
|
*/
|
|
@@ -697,6 +708,10 @@ export declare const se_ListTaskTemplatesCommand: (input: ListTaskTemplatesComma
|
|
|
697
708
|
* serializeAws_restJson1ListTrafficDistributionGroupsCommand
|
|
698
709
|
*/
|
|
699
710
|
export declare const se_ListTrafficDistributionGroupsCommand: (input: ListTrafficDistributionGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
711
|
+
/**
|
|
712
|
+
* serializeAws_restJson1ListTrafficDistributionGroupUsersCommand
|
|
713
|
+
*/
|
|
714
|
+
export declare const se_ListTrafficDistributionGroupUsersCommand: (input: ListTrafficDistributionGroupUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
700
715
|
/**
|
|
701
716
|
* serializeAws_restJson1ListUseCasesCommand
|
|
702
717
|
*/
|
|
@@ -1029,6 +1044,10 @@ export declare const de_AssociateRoutingProfileQueuesCommand: (output: __HttpRes
|
|
|
1029
1044
|
* deserializeAws_restJson1AssociateSecurityKeyCommand
|
|
1030
1045
|
*/
|
|
1031
1046
|
export declare const de_AssociateSecurityKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateSecurityKeyCommandOutput>;
|
|
1047
|
+
/**
|
|
1048
|
+
* deserializeAws_restJson1AssociateTrafficDistributionGroupUserCommand
|
|
1049
|
+
*/
|
|
1050
|
+
export declare const de_AssociateTrafficDistributionGroupUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateTrafficDistributionGroupUserCommandOutput>;
|
|
1032
1051
|
/**
|
|
1033
1052
|
* deserializeAws_restJson1ClaimPhoneNumberCommand
|
|
1034
1053
|
*/
|
|
@@ -1317,6 +1336,10 @@ export declare const de_DisassociateRoutingProfileQueuesCommand: (output: __Http
|
|
|
1317
1336
|
* deserializeAws_restJson1DisassociateSecurityKeyCommand
|
|
1318
1337
|
*/
|
|
1319
1338
|
export declare const de_DisassociateSecurityKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateSecurityKeyCommandOutput>;
|
|
1339
|
+
/**
|
|
1340
|
+
* deserializeAws_restJson1DisassociateTrafficDistributionGroupUserCommand
|
|
1341
|
+
*/
|
|
1342
|
+
export declare const de_DisassociateTrafficDistributionGroupUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateTrafficDistributionGroupUserCommandOutput>;
|
|
1320
1343
|
/**
|
|
1321
1344
|
* deserializeAws_restJson1DismissUserContactCommand
|
|
1322
1345
|
*/
|
|
@@ -1485,6 +1508,10 @@ export declare const de_ListTaskTemplatesCommand: (output: __HttpResponse, conte
|
|
|
1485
1508
|
* deserializeAws_restJson1ListTrafficDistributionGroupsCommand
|
|
1486
1509
|
*/
|
|
1487
1510
|
export declare const de_ListTrafficDistributionGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrafficDistributionGroupsCommandOutput>;
|
|
1511
|
+
/**
|
|
1512
|
+
* deserializeAws_restJson1ListTrafficDistributionGroupUsersCommand
|
|
1513
|
+
*/
|
|
1514
|
+
export declare const de_ListTrafficDistributionGroupUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
1488
1515
|
/**
|
|
1489
1516
|
* deserializeAws_restJson1ListUseCasesCommand
|
|
1490
1517
|
*/
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
AssociateSecurityKeyCommandInput,
|
|
44
44
|
AssociateSecurityKeyCommandOutput,
|
|
45
45
|
} from "./commands/AssociateSecurityKeyCommand";
|
|
46
|
+
import {
|
|
47
|
+
AssociateTrafficDistributionGroupUserCommandInput,
|
|
48
|
+
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
49
|
+
} from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
46
50
|
import {
|
|
47
51
|
ClaimPhoneNumberCommandInput,
|
|
48
52
|
ClaimPhoneNumberCommandOutput,
|
|
@@ -331,6 +335,10 @@ import {
|
|
|
331
335
|
DisassociateSecurityKeyCommandInput,
|
|
332
336
|
DisassociateSecurityKeyCommandOutput,
|
|
333
337
|
} from "./commands/DisassociateSecurityKeyCommand";
|
|
338
|
+
import {
|
|
339
|
+
DisassociateTrafficDistributionGroupUserCommandInput,
|
|
340
|
+
DisassociateTrafficDistributionGroupUserCommandOutput,
|
|
341
|
+
} from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
334
342
|
import {
|
|
335
343
|
DismissUserContactCommandInput,
|
|
336
344
|
DismissUserContactCommandOutput,
|
|
@@ -499,6 +507,10 @@ import {
|
|
|
499
507
|
ListTrafficDistributionGroupsCommandInput,
|
|
500
508
|
ListTrafficDistributionGroupsCommandOutput,
|
|
501
509
|
} from "./commands/ListTrafficDistributionGroupsCommand";
|
|
510
|
+
import {
|
|
511
|
+
ListTrafficDistributionGroupUsersCommandInput,
|
|
512
|
+
ListTrafficDistributionGroupUsersCommandOutput,
|
|
513
|
+
} from "./commands/ListTrafficDistributionGroupUsersCommand";
|
|
502
514
|
import {
|
|
503
515
|
ListUseCasesCommandInput,
|
|
504
516
|
ListUseCasesCommandOutput,
|
|
@@ -932,6 +944,25 @@ export interface Connect {
|
|
|
932
944
|
options: __HttpHandlerOptions,
|
|
933
945
|
cb: (err: any, data?: AssociateSecurityKeyCommandOutput) => void
|
|
934
946
|
): void;
|
|
947
|
+
associateTrafficDistributionGroupUser(
|
|
948
|
+
args: AssociateTrafficDistributionGroupUserCommandInput,
|
|
949
|
+
options?: __HttpHandlerOptions
|
|
950
|
+
): Promise<AssociateTrafficDistributionGroupUserCommandOutput>;
|
|
951
|
+
associateTrafficDistributionGroupUser(
|
|
952
|
+
args: AssociateTrafficDistributionGroupUserCommandInput,
|
|
953
|
+
cb: (
|
|
954
|
+
err: any,
|
|
955
|
+
data?: AssociateTrafficDistributionGroupUserCommandOutput
|
|
956
|
+
) => void
|
|
957
|
+
): void;
|
|
958
|
+
associateTrafficDistributionGroupUser(
|
|
959
|
+
args: AssociateTrafficDistributionGroupUserCommandInput,
|
|
960
|
+
options: __HttpHandlerOptions,
|
|
961
|
+
cb: (
|
|
962
|
+
err: any,
|
|
963
|
+
data?: AssociateTrafficDistributionGroupUserCommandOutput
|
|
964
|
+
) => void
|
|
965
|
+
): void;
|
|
935
966
|
claimPhoneNumber(
|
|
936
967
|
args: ClaimPhoneNumberCommandInput,
|
|
937
968
|
options?: __HttpHandlerOptions
|
|
@@ -1880,6 +1911,25 @@ export interface Connect {
|
|
|
1880
1911
|
options: __HttpHandlerOptions,
|
|
1881
1912
|
cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void
|
|
1882
1913
|
): void;
|
|
1914
|
+
disassociateTrafficDistributionGroupUser(
|
|
1915
|
+
args: DisassociateTrafficDistributionGroupUserCommandInput,
|
|
1916
|
+
options?: __HttpHandlerOptions
|
|
1917
|
+
): Promise<DisassociateTrafficDistributionGroupUserCommandOutput>;
|
|
1918
|
+
disassociateTrafficDistributionGroupUser(
|
|
1919
|
+
args: DisassociateTrafficDistributionGroupUserCommandInput,
|
|
1920
|
+
cb: (
|
|
1921
|
+
err: any,
|
|
1922
|
+
data?: DisassociateTrafficDistributionGroupUserCommandOutput
|
|
1923
|
+
) => void
|
|
1924
|
+
): void;
|
|
1925
|
+
disassociateTrafficDistributionGroupUser(
|
|
1926
|
+
args: DisassociateTrafficDistributionGroupUserCommandInput,
|
|
1927
|
+
options: __HttpHandlerOptions,
|
|
1928
|
+
cb: (
|
|
1929
|
+
err: any,
|
|
1930
|
+
data?: DisassociateTrafficDistributionGroupUserCommandOutput
|
|
1931
|
+
) => void
|
|
1932
|
+
): void;
|
|
1883
1933
|
dismissUserContact(
|
|
1884
1934
|
args: DismissUserContactCommandInput,
|
|
1885
1935
|
options?: __HttpHandlerOptions
|
|
@@ -2426,6 +2476,25 @@ export interface Connect {
|
|
|
2426
2476
|
options: __HttpHandlerOptions,
|
|
2427
2477
|
cb: (err: any, data?: ListTrafficDistributionGroupsCommandOutput) => void
|
|
2428
2478
|
): void;
|
|
2479
|
+
listTrafficDistributionGroupUsers(
|
|
2480
|
+
args: ListTrafficDistributionGroupUsersCommandInput,
|
|
2481
|
+
options?: __HttpHandlerOptions
|
|
2482
|
+
): Promise<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
2483
|
+
listTrafficDistributionGroupUsers(
|
|
2484
|
+
args: ListTrafficDistributionGroupUsersCommandInput,
|
|
2485
|
+
cb: (
|
|
2486
|
+
err: any,
|
|
2487
|
+
data?: ListTrafficDistributionGroupUsersCommandOutput
|
|
2488
|
+
) => void
|
|
2489
|
+
): void;
|
|
2490
|
+
listTrafficDistributionGroupUsers(
|
|
2491
|
+
args: ListTrafficDistributionGroupUsersCommandInput,
|
|
2492
|
+
options: __HttpHandlerOptions,
|
|
2493
|
+
cb: (
|
|
2494
|
+
err: any,
|
|
2495
|
+
data?: ListTrafficDistributionGroupUsersCommandOutput
|
|
2496
|
+
) => void
|
|
2497
|
+
): void;
|
|
2429
2498
|
listUseCases(
|
|
2430
2499
|
args: ListUseCasesCommandInput,
|
|
2431
2500
|
options?: __HttpHandlerOptions
|
|
@@ -89,6 +89,10 @@ import {
|
|
|
89
89
|
AssociateSecurityKeyCommandInput,
|
|
90
90
|
AssociateSecurityKeyCommandOutput,
|
|
91
91
|
} from "./commands/AssociateSecurityKeyCommand";
|
|
92
|
+
import {
|
|
93
|
+
AssociateTrafficDistributionGroupUserCommandInput,
|
|
94
|
+
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
95
|
+
} from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
92
96
|
import {
|
|
93
97
|
ClaimPhoneNumberCommandInput,
|
|
94
98
|
ClaimPhoneNumberCommandOutput,
|
|
@@ -377,6 +381,10 @@ import {
|
|
|
377
381
|
DisassociateSecurityKeyCommandInput,
|
|
378
382
|
DisassociateSecurityKeyCommandOutput,
|
|
379
383
|
} from "./commands/DisassociateSecurityKeyCommand";
|
|
384
|
+
import {
|
|
385
|
+
DisassociateTrafficDistributionGroupUserCommandInput,
|
|
386
|
+
DisassociateTrafficDistributionGroupUserCommandOutput,
|
|
387
|
+
} from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
380
388
|
import {
|
|
381
389
|
DismissUserContactCommandInput,
|
|
382
390
|
DismissUserContactCommandOutput,
|
|
@@ -545,6 +553,10 @@ import {
|
|
|
545
553
|
ListTrafficDistributionGroupsCommandInput,
|
|
546
554
|
ListTrafficDistributionGroupsCommandOutput,
|
|
547
555
|
} from "./commands/ListTrafficDistributionGroupsCommand";
|
|
556
|
+
import {
|
|
557
|
+
ListTrafficDistributionGroupUsersCommandInput,
|
|
558
|
+
ListTrafficDistributionGroupUsersCommandOutput,
|
|
559
|
+
} from "./commands/ListTrafficDistributionGroupUsersCommand";
|
|
548
560
|
import {
|
|
549
561
|
ListUseCasesCommandInput,
|
|
550
562
|
ListUseCasesCommandOutput,
|
|
@@ -851,6 +863,7 @@ export type ServiceInputTypes =
|
|
|
851
863
|
| AssociateQueueQuickConnectsCommandInput
|
|
852
864
|
| AssociateRoutingProfileQueuesCommandInput
|
|
853
865
|
| AssociateSecurityKeyCommandInput
|
|
866
|
+
| AssociateTrafficDistributionGroupUserCommandInput
|
|
854
867
|
| ClaimPhoneNumberCommandInput
|
|
855
868
|
| CreateAgentStatusCommandInput
|
|
856
869
|
| CreateContactFlowCommandInput
|
|
@@ -923,6 +936,7 @@ export type ServiceInputTypes =
|
|
|
923
936
|
| DisassociateQueueQuickConnectsCommandInput
|
|
924
937
|
| DisassociateRoutingProfileQueuesCommandInput
|
|
925
938
|
| DisassociateSecurityKeyCommandInput
|
|
939
|
+
| DisassociateTrafficDistributionGroupUserCommandInput
|
|
926
940
|
| DismissUserContactCommandInput
|
|
927
941
|
| GetContactAttributesCommandInput
|
|
928
942
|
| GetCurrentMetricDataCommandInput
|
|
@@ -964,6 +978,7 @@ export type ServiceInputTypes =
|
|
|
964
978
|
| ListSecurityProfilesCommandInput
|
|
965
979
|
| ListTagsForResourceCommandInput
|
|
966
980
|
| ListTaskTemplatesCommandInput
|
|
981
|
+
| ListTrafficDistributionGroupUsersCommandInput
|
|
967
982
|
| ListTrafficDistributionGroupsCommandInput
|
|
968
983
|
| ListUseCasesCommandInput
|
|
969
984
|
| ListUserHierarchyGroupsCommandInput
|
|
@@ -1049,6 +1064,7 @@ export type ServiceOutputTypes =
|
|
|
1049
1064
|
| AssociateQueueQuickConnectsCommandOutput
|
|
1050
1065
|
| AssociateRoutingProfileQueuesCommandOutput
|
|
1051
1066
|
| AssociateSecurityKeyCommandOutput
|
|
1067
|
+
| AssociateTrafficDistributionGroupUserCommandOutput
|
|
1052
1068
|
| ClaimPhoneNumberCommandOutput
|
|
1053
1069
|
| CreateAgentStatusCommandOutput
|
|
1054
1070
|
| CreateContactFlowCommandOutput
|
|
@@ -1121,6 +1137,7 @@ export type ServiceOutputTypes =
|
|
|
1121
1137
|
| DisassociateQueueQuickConnectsCommandOutput
|
|
1122
1138
|
| DisassociateRoutingProfileQueuesCommandOutput
|
|
1123
1139
|
| DisassociateSecurityKeyCommandOutput
|
|
1140
|
+
| DisassociateTrafficDistributionGroupUserCommandOutput
|
|
1124
1141
|
| DismissUserContactCommandOutput
|
|
1125
1142
|
| GetContactAttributesCommandOutput
|
|
1126
1143
|
| GetCurrentMetricDataCommandOutput
|
|
@@ -1162,6 +1179,7 @@ export type ServiceOutputTypes =
|
|
|
1162
1179
|
| ListSecurityProfilesCommandOutput
|
|
1163
1180
|
| ListTagsForResourceCommandOutput
|
|
1164
1181
|
| ListTaskTemplatesCommandOutput
|
|
1182
|
+
| ListTrafficDistributionGroupUsersCommandOutput
|
|
1165
1183
|
| ListTrafficDistributionGroupsCommandOutput
|
|
1166
1184
|
| ListUseCasesCommandOutput
|
|
1167
1185
|
| ListUserHierarchyGroupsCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectClient";
|
|
14
|
+
import {
|
|
15
|
+
AssociateTrafficDistributionGroupUserRequest,
|
|
16
|
+
AssociateTrafficDistributionGroupUserResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface AssociateTrafficDistributionGroupUserCommandInput
|
|
20
|
+
extends AssociateTrafficDistributionGroupUserRequest {}
|
|
21
|
+
export interface AssociateTrafficDistributionGroupUserCommandOutput
|
|
22
|
+
extends AssociateTrafficDistributionGroupUserResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class AssociateTrafficDistributionGroupUserCommand extends $Command<
|
|
25
|
+
AssociateTrafficDistributionGroupUserCommandInput,
|
|
26
|
+
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
27
|
+
ConnectClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: AssociateTrafficDistributionGroupUserCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: AssociateTrafficDistributionGroupUserCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ConnectClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
AssociateTrafficDistributionGroupUserCommandInput,
|
|
38
|
+
AssociateTrafficDistributionGroupUserCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
14
|
import { CreateEvaluationFormResponse } from "../models/models_0";
|
|
15
|
-
import { CreateEvaluationFormRequest } from "../models/
|
|
15
|
+
import { CreateEvaluationFormRequest } from "../models/models_2";
|
|
16
16
|
export { __MetadataBearer, $Command };
|
|
17
17
|
export interface CreateEvaluationFormCommandInput
|
|
18
18
|
extends CreateEvaluationFormRequest {}
|