@aws-sdk/client-connect 3.478.0 → 3.479.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 +96 -0
- package/dist-cjs/Connect.js +24 -0
- package/dist-cjs/commands/AssociateUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/CreatePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/DeletePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/DescribePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/DisassociateUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/ListPredefinedAttributesCommand.js +51 -0
- package/dist-cjs/commands/ListUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/SearchContactsCommand.js +52 -0
- package/dist-cjs/commands/SearchPredefinedAttributesCommand.js +51 -0
- package/dist-cjs/commands/UpdateContactRoutingDataCommand.js +51 -0
- package/dist-cjs/commands/UpdatePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/UpdateUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/models/models_0.js +10 -16
- package/dist-cjs/models/models_1.js +62 -25
- package/dist-cjs/models/models_2.js +39 -1
- package/dist-cjs/pagination/ListPredefinedAttributesPaginator.js +7 -0
- package/dist-cjs/pagination/ListUserProficienciesPaginator.js +7 -0
- package/dist-cjs/pagination/SearchContactsPaginator.js +7 -0
- package/dist-cjs/pagination/SearchPredefinedAttributesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +4 -0
- package/dist-cjs/protocols/Aws_restJson1.js +878 -32
- package/dist-es/Connect.js +24 -0
- package/dist-es/commands/AssociateUserProficienciesCommand.js +47 -0
- package/dist-es/commands/CreatePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/DeletePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/DescribePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/DisassociateUserProficienciesCommand.js +47 -0
- package/dist-es/commands/ListPredefinedAttributesCommand.js +47 -0
- package/dist-es/commands/ListUserProficienciesCommand.js +47 -0
- package/dist-es/commands/SearchContactsCommand.js +48 -0
- package/dist-es/commands/SearchPredefinedAttributesCommand.js +47 -0
- package/dist-es/commands/UpdateContactRoutingDataCommand.js +47 -0
- package/dist-es/commands/UpdatePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/UpdateUserProficienciesCommand.js +47 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/models_0.js +8 -14
- package/dist-es/models/models_1.js +55 -23
- package/dist-es/models/models_2.js +36 -0
- package/dist-es/pagination/ListPredefinedAttributesPaginator.js +4 -0
- package/dist-es/pagination/ListUserProficienciesPaginator.js +4 -0
- package/dist-es/pagination/SearchContactsPaginator.js +4 -0
- package/dist-es/pagination/SearchPredefinedAttributesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +846 -24
- package/dist-types/Connect.d.ts +84 -0
- package/dist-types/ConnectClient.d.ts +14 -2
- package/dist-types/commands/AssociateUserProficienciesCommand.d.ts +94 -0
- package/dist-types/commands/CreatePredefinedAttributeCommand.d.ts +98 -0
- package/dist-types/commands/DeletePredefinedAttributeCommand.d.ts +90 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +2 -0
- package/dist-types/commands/DescribePhoneNumberCommand.d.ts +2 -1
- package/dist-types/commands/DescribePredefinedAttributeCommand.d.ts +98 -0
- package/dist-types/commands/DescribePromptCommand.d.ts +1 -2
- package/dist-types/commands/DisassociateUserProficienciesCommand.d.ts +93 -0
- package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +5 -1
- package/dist-types/commands/GetMetricDataCommand.d.ts +5 -1
- package/dist-types/commands/ListPredefinedAttributesCommand.d.ts +97 -0
- package/dist-types/commands/ListUserProficienciesCommand.d.ts +100 -0
- package/dist-types/commands/PauseContactCommand.d.ts +2 -1
- package/dist-types/commands/ResumeContactCommand.d.ts +2 -1
- package/dist-types/commands/SearchContactsCommand.d.ts +177 -0
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchPredefinedAttributesCommand.d.ts +128 -0
- package/dist-types/commands/SearchPromptsCommand.d.ts +1 -2
- package/dist-types/commands/SearchQueuesCommand.d.ts +1 -2
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +1 -2
- package/dist-types/commands/SearchResourceTagsCommand.d.ts +1 -1
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +1 -2
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +1 -2
- package/dist-types/commands/TagContactCommand.d.ts +3 -3
- package/dist-types/commands/UntagContactCommand.d.ts +3 -2
- package/dist-types/commands/UpdateContactRoutingDataCommand.d.ts +101 -0
- package/dist-types/commands/UpdatePredefinedAttributeCommand.d.ts +92 -0
- package/dist-types/commands/UpdateUserProficienciesCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +159 -185
- package/dist-types/models/models_1.d.ts +495 -423
- package/dist-types/models/models_2.d.ts +875 -12
- package/dist-types/pagination/ListPredefinedAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUserProficienciesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContactsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchPredefinedAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +108 -0
- package/dist-types/ts3.4/Connect.d.ts +204 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/AssociateUserProficienciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreatePredefinedAttributeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeletePredefinedAttributeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePhoneNumberCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePredefinedAttributeCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribePromptCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DisassociateUserProficienciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPredefinedAttributesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListUserProficienciesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContactsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SearchHoursOfOperationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchPredefinedAttributesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchPromptsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchQueuesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchResourceTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateContactRoutingDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdatePredefinedAttributeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateUserProficienciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -42
- package/dist-types/ts3.4/models/models_1.d.ts +153 -113
- package/dist-types/ts3.4/models/models_2.d.ts +215 -10
- package/dist-types/ts3.4/pagination/ListPredefinedAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUserProficienciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContactsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchPredefinedAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +144 -0
- package/package.json +1 -1
package/dist-types/Connect.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { AssociateQueueQuickConnectsCommandInput, AssociateQueueQuickConnectsCom
|
|
|
13
13
|
import { AssociateRoutingProfileQueuesCommandInput, AssociateRoutingProfileQueuesCommandOutput } from "./commands/AssociateRoutingProfileQueuesCommand";
|
|
14
14
|
import { AssociateSecurityKeyCommandInput, AssociateSecurityKeyCommandOutput } from "./commands/AssociateSecurityKeyCommand";
|
|
15
15
|
import { AssociateTrafficDistributionGroupUserCommandInput, AssociateTrafficDistributionGroupUserCommandOutput } from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
16
|
+
import { AssociateUserProficienciesCommandInput, AssociateUserProficienciesCommandOutput } from "./commands/AssociateUserProficienciesCommand";
|
|
16
17
|
import { BatchAssociateAnalyticsDataSetCommandInput, BatchAssociateAnalyticsDataSetCommandOutput } from "./commands/BatchAssociateAnalyticsDataSetCommand";
|
|
17
18
|
import { BatchDisassociateAnalyticsDataSetCommandInput, BatchDisassociateAnalyticsDataSetCommandOutput } from "./commands/BatchDisassociateAnalyticsDataSetCommand";
|
|
18
19
|
import { BatchGetFlowAssociationCommandInput, BatchGetFlowAssociationCommandOutput } from "./commands/BatchGetFlowAssociationCommand";
|
|
@@ -27,6 +28,7 @@ import { CreateInstanceCommandInput, CreateInstanceCommandOutput } from "./comma
|
|
|
27
28
|
import { CreateIntegrationAssociationCommandInput, CreateIntegrationAssociationCommandOutput } from "./commands/CreateIntegrationAssociationCommand";
|
|
28
29
|
import { CreateParticipantCommandInput, CreateParticipantCommandOutput } from "./commands/CreateParticipantCommand";
|
|
29
30
|
import { CreatePersistentContactAssociationCommandInput, CreatePersistentContactAssociationCommandOutput } from "./commands/CreatePersistentContactAssociationCommand";
|
|
31
|
+
import { CreatePredefinedAttributeCommandInput, CreatePredefinedAttributeCommandOutput } from "./commands/CreatePredefinedAttributeCommand";
|
|
30
32
|
import { CreatePromptCommandInput, CreatePromptCommandOutput } from "./commands/CreatePromptCommand";
|
|
31
33
|
import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
|
|
32
34
|
import { CreateQuickConnectCommandInput, CreateQuickConnectCommandOutput } from "./commands/CreateQuickConnectCommand";
|
|
@@ -49,6 +51,7 @@ import { DeleteEvaluationFormCommandInput, DeleteEvaluationFormCommandOutput } f
|
|
|
49
51
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "./commands/DeleteHoursOfOperationCommand";
|
|
50
52
|
import { DeleteInstanceCommandInput, DeleteInstanceCommandOutput } from "./commands/DeleteInstanceCommand";
|
|
51
53
|
import { DeleteIntegrationAssociationCommandInput, DeleteIntegrationAssociationCommandOutput } from "./commands/DeleteIntegrationAssociationCommand";
|
|
54
|
+
import { DeletePredefinedAttributeCommandInput, DeletePredefinedAttributeCommandOutput } from "./commands/DeletePredefinedAttributeCommand";
|
|
52
55
|
import { DeletePromptCommandInput, DeletePromptCommandOutput } from "./commands/DeletePromptCommand";
|
|
53
56
|
import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
|
|
54
57
|
import { DeleteQuickConnectCommandInput, DeleteQuickConnectCommandOutput } from "./commands/DeleteQuickConnectCommand";
|
|
@@ -74,6 +77,7 @@ import { DescribeInstanceAttributeCommandInput, DescribeInstanceAttributeCommand
|
|
|
74
77
|
import { DescribeInstanceCommandInput, DescribeInstanceCommandOutput } from "./commands/DescribeInstanceCommand";
|
|
75
78
|
import { DescribeInstanceStorageConfigCommandInput, DescribeInstanceStorageConfigCommandOutput } from "./commands/DescribeInstanceStorageConfigCommand";
|
|
76
79
|
import { DescribePhoneNumberCommandInput, DescribePhoneNumberCommandOutput } from "./commands/DescribePhoneNumberCommand";
|
|
80
|
+
import { DescribePredefinedAttributeCommandInput, DescribePredefinedAttributeCommandOutput } from "./commands/DescribePredefinedAttributeCommand";
|
|
77
81
|
import { DescribePromptCommandInput, DescribePromptCommandOutput } from "./commands/DescribePromptCommand";
|
|
78
82
|
import { DescribeQueueCommandInput, DescribeQueueCommandOutput } from "./commands/DescribeQueueCommand";
|
|
79
83
|
import { DescribeQuickConnectCommandInput, DescribeQuickConnectCommandOutput } from "./commands/DescribeQuickConnectCommand";
|
|
@@ -98,6 +102,7 @@ import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConne
|
|
|
98
102
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "./commands/DisassociateRoutingProfileQueuesCommand";
|
|
99
103
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "./commands/DisassociateSecurityKeyCommand";
|
|
100
104
|
import { DisassociateTrafficDistributionGroupUserCommandInput, DisassociateTrafficDistributionGroupUserCommandOutput } from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
105
|
+
import { DisassociateUserProficienciesCommandInput, DisassociateUserProficienciesCommandOutput } from "./commands/DisassociateUserProficienciesCommand";
|
|
101
106
|
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "./commands/DismissUserContactCommand";
|
|
102
107
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "./commands/GetContactAttributesCommand";
|
|
103
108
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "./commands/GetCurrentMetricDataCommand";
|
|
@@ -131,6 +136,7 @@ import { ListLambdaFunctionsCommandInput, ListLambdaFunctionsCommandOutput } fro
|
|
|
131
136
|
import { ListLexBotsCommandInput, ListLexBotsCommandOutput } from "./commands/ListLexBotsCommand";
|
|
132
137
|
import { ListPhoneNumbersCommandInput, ListPhoneNumbersCommandOutput } from "./commands/ListPhoneNumbersCommand";
|
|
133
138
|
import { ListPhoneNumbersV2CommandInput, ListPhoneNumbersV2CommandOutput } from "./commands/ListPhoneNumbersV2Command";
|
|
139
|
+
import { ListPredefinedAttributesCommandInput, ListPredefinedAttributesCommandOutput } from "./commands/ListPredefinedAttributesCommand";
|
|
134
140
|
import { ListPromptsCommandInput, ListPromptsCommandOutput } from "./commands/ListPromptsCommand";
|
|
135
141
|
import { ListQueueQuickConnectsCommandInput, ListQueueQuickConnectsCommandOutput } from "./commands/ListQueueQuickConnectsCommand";
|
|
136
142
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
|
|
@@ -149,6 +155,7 @@ import { ListTrafficDistributionGroupsCommandInput, ListTrafficDistributionGroup
|
|
|
149
155
|
import { ListTrafficDistributionGroupUsersCommandInput, ListTrafficDistributionGroupUsersCommandOutput } from "./commands/ListTrafficDistributionGroupUsersCommand";
|
|
150
156
|
import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "./commands/ListUseCasesCommand";
|
|
151
157
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "./commands/ListUserHierarchyGroupsCommand";
|
|
158
|
+
import { ListUserProficienciesCommandInput, ListUserProficienciesCommandOutput } from "./commands/ListUserProficienciesCommand";
|
|
152
159
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
153
160
|
import { ListViewsCommandInput, ListViewsCommandOutput } from "./commands/ListViewsCommand";
|
|
154
161
|
import { ListViewVersionsCommandInput, ListViewVersionsCommandOutput } from "./commands/ListViewVersionsCommand";
|
|
@@ -160,7 +167,9 @@ import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from ".
|
|
|
160
167
|
import { ResumeContactCommandInput, ResumeContactCommandOutput } from "./commands/ResumeContactCommand";
|
|
161
168
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
162
169
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
170
|
+
import { SearchContactsCommandInput, SearchContactsCommandOutput } from "./commands/SearchContactsCommand";
|
|
163
171
|
import { SearchHoursOfOperationsCommandInput, SearchHoursOfOperationsCommandOutput } from "./commands/SearchHoursOfOperationsCommand";
|
|
172
|
+
import { SearchPredefinedAttributesCommandInput, SearchPredefinedAttributesCommandOutput } from "./commands/SearchPredefinedAttributesCommand";
|
|
164
173
|
import { SearchPromptsCommandInput, SearchPromptsCommandOutput } from "./commands/SearchPromptsCommand";
|
|
165
174
|
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "./commands/SearchQueuesCommand";
|
|
166
175
|
import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } from "./commands/SearchQuickConnectsCommand";
|
|
@@ -196,6 +205,7 @@ import { UpdateContactFlowMetadataCommandInput, UpdateContactFlowMetadataCommand
|
|
|
196
205
|
import { UpdateContactFlowModuleContentCommandInput, UpdateContactFlowModuleContentCommandOutput } from "./commands/UpdateContactFlowModuleContentCommand";
|
|
197
206
|
import { UpdateContactFlowModuleMetadataCommandInput, UpdateContactFlowModuleMetadataCommandOutput } from "./commands/UpdateContactFlowModuleMetadataCommand";
|
|
198
207
|
import { UpdateContactFlowNameCommandInput, UpdateContactFlowNameCommandOutput } from "./commands/UpdateContactFlowNameCommand";
|
|
208
|
+
import { UpdateContactRoutingDataCommandInput, UpdateContactRoutingDataCommandOutput } from "./commands/UpdateContactRoutingDataCommand";
|
|
199
209
|
import { UpdateContactScheduleCommandInput, UpdateContactScheduleCommandOutput } from "./commands/UpdateContactScheduleCommand";
|
|
200
210
|
import { UpdateEvaluationFormCommandInput, UpdateEvaluationFormCommandOutput } from "./commands/UpdateEvaluationFormCommand";
|
|
201
211
|
import { UpdateHoursOfOperationCommandInput, UpdateHoursOfOperationCommandOutput } from "./commands/UpdateHoursOfOperationCommand";
|
|
@@ -204,6 +214,7 @@ import { UpdateInstanceStorageConfigCommandInput, UpdateInstanceStorageConfigCom
|
|
|
204
214
|
import { UpdateParticipantRoleConfigCommandInput, UpdateParticipantRoleConfigCommandOutput } from "./commands/UpdateParticipantRoleConfigCommand";
|
|
205
215
|
import { UpdatePhoneNumberCommandInput, UpdatePhoneNumberCommandOutput } from "./commands/UpdatePhoneNumberCommand";
|
|
206
216
|
import { UpdatePhoneNumberMetadataCommandInput, UpdatePhoneNumberMetadataCommandOutput } from "./commands/UpdatePhoneNumberMetadataCommand";
|
|
217
|
+
import { UpdatePredefinedAttributeCommandInput, UpdatePredefinedAttributeCommandOutput } from "./commands/UpdatePredefinedAttributeCommand";
|
|
207
218
|
import { UpdatePromptCommandInput, UpdatePromptCommandOutput } from "./commands/UpdatePromptCommand";
|
|
208
219
|
import { UpdateQueueHoursOfOperationCommandInput, UpdateQueueHoursOfOperationCommandOutput } from "./commands/UpdateQueueHoursOfOperationCommand";
|
|
209
220
|
import { UpdateQueueMaxContactsCommandInput, UpdateQueueMaxContactsCommandOutput } from "./commands/UpdateQueueMaxContactsCommand";
|
|
@@ -226,6 +237,7 @@ import { UpdateUserHierarchyGroupNameCommandInput, UpdateUserHierarchyGroupNameC
|
|
|
226
237
|
import { UpdateUserHierarchyStructureCommandInput, UpdateUserHierarchyStructureCommandOutput } from "./commands/UpdateUserHierarchyStructureCommand";
|
|
227
238
|
import { UpdateUserIdentityInfoCommandInput, UpdateUserIdentityInfoCommandOutput } from "./commands/UpdateUserIdentityInfoCommand";
|
|
228
239
|
import { UpdateUserPhoneConfigCommandInput, UpdateUserPhoneConfigCommandOutput } from "./commands/UpdateUserPhoneConfigCommand";
|
|
240
|
+
import { UpdateUserProficienciesCommandInput, UpdateUserProficienciesCommandOutput } from "./commands/UpdateUserProficienciesCommand";
|
|
229
241
|
import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOutput } from "./commands/UpdateUserRoutingProfileCommand";
|
|
230
242
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "./commands/UpdateUserSecurityProfilesCommand";
|
|
231
243
|
import { UpdateViewContentCommandInput, UpdateViewContentCommandOutput } from "./commands/UpdateViewContentCommand";
|
|
@@ -316,6 +328,12 @@ export interface Connect {
|
|
|
316
328
|
associateTrafficDistributionGroupUser(args: AssociateTrafficDistributionGroupUserCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTrafficDistributionGroupUserCommandOutput>;
|
|
317
329
|
associateTrafficDistributionGroupUser(args: AssociateTrafficDistributionGroupUserCommandInput, cb: (err: any, data?: AssociateTrafficDistributionGroupUserCommandOutput) => void): void;
|
|
318
330
|
associateTrafficDistributionGroupUser(args: AssociateTrafficDistributionGroupUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrafficDistributionGroupUserCommandOutput) => void): void;
|
|
331
|
+
/**
|
|
332
|
+
* @see {@link AssociateUserProficienciesCommand}
|
|
333
|
+
*/
|
|
334
|
+
associateUserProficiencies(args: AssociateUserProficienciesCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserProficienciesCommandOutput>;
|
|
335
|
+
associateUserProficiencies(args: AssociateUserProficienciesCommandInput, cb: (err: any, data?: AssociateUserProficienciesCommandOutput) => void): void;
|
|
336
|
+
associateUserProficiencies(args: AssociateUserProficienciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserProficienciesCommandOutput) => void): void;
|
|
319
337
|
/**
|
|
320
338
|
* @see {@link BatchAssociateAnalyticsDataSetCommand}
|
|
321
339
|
*/
|
|
@@ -400,6 +418,12 @@ export interface Connect {
|
|
|
400
418
|
createPersistentContactAssociation(args: CreatePersistentContactAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreatePersistentContactAssociationCommandOutput>;
|
|
401
419
|
createPersistentContactAssociation(args: CreatePersistentContactAssociationCommandInput, cb: (err: any, data?: CreatePersistentContactAssociationCommandOutput) => void): void;
|
|
402
420
|
createPersistentContactAssociation(args: CreatePersistentContactAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePersistentContactAssociationCommandOutput) => void): void;
|
|
421
|
+
/**
|
|
422
|
+
* @see {@link CreatePredefinedAttributeCommand}
|
|
423
|
+
*/
|
|
424
|
+
createPredefinedAttribute(args: CreatePredefinedAttributeCommandInput, options?: __HttpHandlerOptions): Promise<CreatePredefinedAttributeCommandOutput>;
|
|
425
|
+
createPredefinedAttribute(args: CreatePredefinedAttributeCommandInput, cb: (err: any, data?: CreatePredefinedAttributeCommandOutput) => void): void;
|
|
426
|
+
createPredefinedAttribute(args: CreatePredefinedAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePredefinedAttributeCommandOutput) => void): void;
|
|
403
427
|
/**
|
|
404
428
|
* @see {@link CreatePromptCommand}
|
|
405
429
|
*/
|
|
@@ -532,6 +556,12 @@ export interface Connect {
|
|
|
532
556
|
deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationAssociationCommandOutput>;
|
|
533
557
|
deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void): void;
|
|
534
558
|
deleteIntegrationAssociation(args: DeleteIntegrationAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void): void;
|
|
559
|
+
/**
|
|
560
|
+
* @see {@link DeletePredefinedAttributeCommand}
|
|
561
|
+
*/
|
|
562
|
+
deletePredefinedAttribute(args: DeletePredefinedAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DeletePredefinedAttributeCommandOutput>;
|
|
563
|
+
deletePredefinedAttribute(args: DeletePredefinedAttributeCommandInput, cb: (err: any, data?: DeletePredefinedAttributeCommandOutput) => void): void;
|
|
564
|
+
deletePredefinedAttribute(args: DeletePredefinedAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePredefinedAttributeCommandOutput) => void): void;
|
|
535
565
|
/**
|
|
536
566
|
* @see {@link DeletePromptCommand}
|
|
537
567
|
*/
|
|
@@ -682,6 +712,12 @@ export interface Connect {
|
|
|
682
712
|
describePhoneNumber(args: DescribePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<DescribePhoneNumberCommandOutput>;
|
|
683
713
|
describePhoneNumber(args: DescribePhoneNumberCommandInput, cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void): void;
|
|
684
714
|
describePhoneNumber(args: DescribePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void): void;
|
|
715
|
+
/**
|
|
716
|
+
* @see {@link DescribePredefinedAttributeCommand}
|
|
717
|
+
*/
|
|
718
|
+
describePredefinedAttribute(args: DescribePredefinedAttributeCommandInput, options?: __HttpHandlerOptions): Promise<DescribePredefinedAttributeCommandOutput>;
|
|
719
|
+
describePredefinedAttribute(args: DescribePredefinedAttributeCommandInput, cb: (err: any, data?: DescribePredefinedAttributeCommandOutput) => void): void;
|
|
720
|
+
describePredefinedAttribute(args: DescribePredefinedAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePredefinedAttributeCommandOutput) => void): void;
|
|
685
721
|
/**
|
|
686
722
|
* @see {@link DescribePromptCommand}
|
|
687
723
|
*/
|
|
@@ -826,6 +862,12 @@ export interface Connect {
|
|
|
826
862
|
disassociateTrafficDistributionGroupUser(args: DisassociateTrafficDistributionGroupUserCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTrafficDistributionGroupUserCommandOutput>;
|
|
827
863
|
disassociateTrafficDistributionGroupUser(args: DisassociateTrafficDistributionGroupUserCommandInput, cb: (err: any, data?: DisassociateTrafficDistributionGroupUserCommandOutput) => void): void;
|
|
828
864
|
disassociateTrafficDistributionGroupUser(args: DisassociateTrafficDistributionGroupUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrafficDistributionGroupUserCommandOutput) => void): void;
|
|
865
|
+
/**
|
|
866
|
+
* @see {@link DisassociateUserProficienciesCommand}
|
|
867
|
+
*/
|
|
868
|
+
disassociateUserProficiencies(args: DisassociateUserProficienciesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserProficienciesCommandOutput>;
|
|
869
|
+
disassociateUserProficiencies(args: DisassociateUserProficienciesCommandInput, cb: (err: any, data?: DisassociateUserProficienciesCommandOutput) => void): void;
|
|
870
|
+
disassociateUserProficiencies(args: DisassociateUserProficienciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserProficienciesCommandOutput) => void): void;
|
|
829
871
|
/**
|
|
830
872
|
* @see {@link DismissUserContactCommand}
|
|
831
873
|
*/
|
|
@@ -1024,6 +1066,12 @@ export interface Connect {
|
|
|
1024
1066
|
listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersV2CommandOutput>;
|
|
1025
1067
|
listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void): void;
|
|
1026
1068
|
listPhoneNumbersV2(args: ListPhoneNumbersV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void): void;
|
|
1069
|
+
/**
|
|
1070
|
+
* @see {@link ListPredefinedAttributesCommand}
|
|
1071
|
+
*/
|
|
1072
|
+
listPredefinedAttributes(args: ListPredefinedAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListPredefinedAttributesCommandOutput>;
|
|
1073
|
+
listPredefinedAttributes(args: ListPredefinedAttributesCommandInput, cb: (err: any, data?: ListPredefinedAttributesCommandOutput) => void): void;
|
|
1074
|
+
listPredefinedAttributes(args: ListPredefinedAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPredefinedAttributesCommandOutput) => void): void;
|
|
1027
1075
|
/**
|
|
1028
1076
|
* @see {@link ListPromptsCommand}
|
|
1029
1077
|
*/
|
|
@@ -1132,6 +1180,12 @@ export interface Connect {
|
|
|
1132
1180
|
listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserHierarchyGroupsCommandOutput>;
|
|
1133
1181
|
listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void): void;
|
|
1134
1182
|
listUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void): void;
|
|
1183
|
+
/**
|
|
1184
|
+
* @see {@link ListUserProficienciesCommand}
|
|
1185
|
+
*/
|
|
1186
|
+
listUserProficiencies(args: ListUserProficienciesCommandInput, options?: __HttpHandlerOptions): Promise<ListUserProficienciesCommandOutput>;
|
|
1187
|
+
listUserProficiencies(args: ListUserProficienciesCommandInput, cb: (err: any, data?: ListUserProficienciesCommandOutput) => void): void;
|
|
1188
|
+
listUserProficiencies(args: ListUserProficienciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserProficienciesCommandOutput) => void): void;
|
|
1135
1189
|
/**
|
|
1136
1190
|
* @see {@link ListUsersCommand}
|
|
1137
1191
|
*/
|
|
@@ -1198,12 +1252,24 @@ export interface Connect {
|
|
|
1198
1252
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
1199
1253
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
1200
1254
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
1255
|
+
/**
|
|
1256
|
+
* @see {@link SearchContactsCommand}
|
|
1257
|
+
*/
|
|
1258
|
+
searchContacts(args: SearchContactsCommandInput, options?: __HttpHandlerOptions): Promise<SearchContactsCommandOutput>;
|
|
1259
|
+
searchContacts(args: SearchContactsCommandInput, cb: (err: any, data?: SearchContactsCommandOutput) => void): void;
|
|
1260
|
+
searchContacts(args: SearchContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchContactsCommandOutput) => void): void;
|
|
1201
1261
|
/**
|
|
1202
1262
|
* @see {@link SearchHoursOfOperationsCommand}
|
|
1203
1263
|
*/
|
|
1204
1264
|
searchHoursOfOperations(args: SearchHoursOfOperationsCommandInput, options?: __HttpHandlerOptions): Promise<SearchHoursOfOperationsCommandOutput>;
|
|
1205
1265
|
searchHoursOfOperations(args: SearchHoursOfOperationsCommandInput, cb: (err: any, data?: SearchHoursOfOperationsCommandOutput) => void): void;
|
|
1206
1266
|
searchHoursOfOperations(args: SearchHoursOfOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchHoursOfOperationsCommandOutput) => void): void;
|
|
1267
|
+
/**
|
|
1268
|
+
* @see {@link SearchPredefinedAttributesCommand}
|
|
1269
|
+
*/
|
|
1270
|
+
searchPredefinedAttributes(args: SearchPredefinedAttributesCommandInput, options?: __HttpHandlerOptions): Promise<SearchPredefinedAttributesCommandOutput>;
|
|
1271
|
+
searchPredefinedAttributes(args: SearchPredefinedAttributesCommandInput, cb: (err: any, data?: SearchPredefinedAttributesCommandOutput) => void): void;
|
|
1272
|
+
searchPredefinedAttributes(args: SearchPredefinedAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchPredefinedAttributesCommandOutput) => void): void;
|
|
1207
1273
|
/**
|
|
1208
1274
|
* @see {@link SearchPromptsCommand}
|
|
1209
1275
|
*/
|
|
@@ -1414,6 +1480,12 @@ export interface Connect {
|
|
|
1414
1480
|
updateContactFlowName(args: UpdateContactFlowNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactFlowNameCommandOutput>;
|
|
1415
1481
|
updateContactFlowName(args: UpdateContactFlowNameCommandInput, cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void): void;
|
|
1416
1482
|
updateContactFlowName(args: UpdateContactFlowNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void): void;
|
|
1483
|
+
/**
|
|
1484
|
+
* @see {@link UpdateContactRoutingDataCommand}
|
|
1485
|
+
*/
|
|
1486
|
+
updateContactRoutingData(args: UpdateContactRoutingDataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactRoutingDataCommandOutput>;
|
|
1487
|
+
updateContactRoutingData(args: UpdateContactRoutingDataCommandInput, cb: (err: any, data?: UpdateContactRoutingDataCommandOutput) => void): void;
|
|
1488
|
+
updateContactRoutingData(args: UpdateContactRoutingDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactRoutingDataCommandOutput) => void): void;
|
|
1417
1489
|
/**
|
|
1418
1490
|
* @see {@link UpdateContactScheduleCommand}
|
|
1419
1491
|
*/
|
|
@@ -1462,6 +1534,12 @@ export interface Connect {
|
|
|
1462
1534
|
updatePhoneNumberMetadata(args: UpdatePhoneNumberMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberMetadataCommandOutput>;
|
|
1463
1535
|
updatePhoneNumberMetadata(args: UpdatePhoneNumberMetadataCommandInput, cb: (err: any, data?: UpdatePhoneNumberMetadataCommandOutput) => void): void;
|
|
1464
1536
|
updatePhoneNumberMetadata(args: UpdatePhoneNumberMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberMetadataCommandOutput) => void): void;
|
|
1537
|
+
/**
|
|
1538
|
+
* @see {@link UpdatePredefinedAttributeCommand}
|
|
1539
|
+
*/
|
|
1540
|
+
updatePredefinedAttribute(args: UpdatePredefinedAttributeCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePredefinedAttributeCommandOutput>;
|
|
1541
|
+
updatePredefinedAttribute(args: UpdatePredefinedAttributeCommandInput, cb: (err: any, data?: UpdatePredefinedAttributeCommandOutput) => void): void;
|
|
1542
|
+
updatePredefinedAttribute(args: UpdatePredefinedAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePredefinedAttributeCommandOutput) => void): void;
|
|
1465
1543
|
/**
|
|
1466
1544
|
* @see {@link UpdatePromptCommand}
|
|
1467
1545
|
*/
|
|
@@ -1594,6 +1672,12 @@ export interface Connect {
|
|
|
1594
1672
|
updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserPhoneConfigCommandOutput>;
|
|
1595
1673
|
updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void): void;
|
|
1596
1674
|
updateUserPhoneConfig(args: UpdateUserPhoneConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void): void;
|
|
1675
|
+
/**
|
|
1676
|
+
* @see {@link UpdateUserProficienciesCommand}
|
|
1677
|
+
*/
|
|
1678
|
+
updateUserProficiencies(args: UpdateUserProficienciesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserProficienciesCommandOutput>;
|
|
1679
|
+
updateUserProficiencies(args: UpdateUserProficienciesCommandInput, cb: (err: any, data?: UpdateUserProficienciesCommandOutput) => void): void;
|
|
1680
|
+
updateUserProficiencies(args: UpdateUserProficienciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserProficienciesCommandOutput) => void): void;
|
|
1597
1681
|
/**
|
|
1598
1682
|
* @see {@link UpdateUserRoutingProfileCommand}
|
|
1599
1683
|
*/
|
|
@@ -22,6 +22,7 @@ import { AssociateQueueQuickConnectsCommandInput, AssociateQueueQuickConnectsCom
|
|
|
22
22
|
import { AssociateRoutingProfileQueuesCommandInput, AssociateRoutingProfileQueuesCommandOutput } from "./commands/AssociateRoutingProfileQueuesCommand";
|
|
23
23
|
import { AssociateSecurityKeyCommandInput, AssociateSecurityKeyCommandOutput } from "./commands/AssociateSecurityKeyCommand";
|
|
24
24
|
import { AssociateTrafficDistributionGroupUserCommandInput, AssociateTrafficDistributionGroupUserCommandOutput } from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
25
|
+
import { AssociateUserProficienciesCommandInput, AssociateUserProficienciesCommandOutput } from "./commands/AssociateUserProficienciesCommand";
|
|
25
26
|
import { BatchAssociateAnalyticsDataSetCommandInput, BatchAssociateAnalyticsDataSetCommandOutput } from "./commands/BatchAssociateAnalyticsDataSetCommand";
|
|
26
27
|
import { BatchDisassociateAnalyticsDataSetCommandInput, BatchDisassociateAnalyticsDataSetCommandOutput } from "./commands/BatchDisassociateAnalyticsDataSetCommand";
|
|
27
28
|
import { BatchGetFlowAssociationCommandInput, BatchGetFlowAssociationCommandOutput } from "./commands/BatchGetFlowAssociationCommand";
|
|
@@ -36,6 +37,7 @@ import { CreateInstanceCommandInput, CreateInstanceCommandOutput } from "./comma
|
|
|
36
37
|
import { CreateIntegrationAssociationCommandInput, CreateIntegrationAssociationCommandOutput } from "./commands/CreateIntegrationAssociationCommand";
|
|
37
38
|
import { CreateParticipantCommandInput, CreateParticipantCommandOutput } from "./commands/CreateParticipantCommand";
|
|
38
39
|
import { CreatePersistentContactAssociationCommandInput, CreatePersistentContactAssociationCommandOutput } from "./commands/CreatePersistentContactAssociationCommand";
|
|
40
|
+
import { CreatePredefinedAttributeCommandInput, CreatePredefinedAttributeCommandOutput } from "./commands/CreatePredefinedAttributeCommand";
|
|
39
41
|
import { CreatePromptCommandInput, CreatePromptCommandOutput } from "./commands/CreatePromptCommand";
|
|
40
42
|
import { CreateQueueCommandInput, CreateQueueCommandOutput } from "./commands/CreateQueueCommand";
|
|
41
43
|
import { CreateQuickConnectCommandInput, CreateQuickConnectCommandOutput } from "./commands/CreateQuickConnectCommand";
|
|
@@ -58,6 +60,7 @@ import { DeleteEvaluationFormCommandInput, DeleteEvaluationFormCommandOutput } f
|
|
|
58
60
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "./commands/DeleteHoursOfOperationCommand";
|
|
59
61
|
import { DeleteInstanceCommandInput, DeleteInstanceCommandOutput } from "./commands/DeleteInstanceCommand";
|
|
60
62
|
import { DeleteIntegrationAssociationCommandInput, DeleteIntegrationAssociationCommandOutput } from "./commands/DeleteIntegrationAssociationCommand";
|
|
63
|
+
import { DeletePredefinedAttributeCommandInput, DeletePredefinedAttributeCommandOutput } from "./commands/DeletePredefinedAttributeCommand";
|
|
61
64
|
import { DeletePromptCommandInput, DeletePromptCommandOutput } from "./commands/DeletePromptCommand";
|
|
62
65
|
import { DeleteQueueCommandInput, DeleteQueueCommandOutput } from "./commands/DeleteQueueCommand";
|
|
63
66
|
import { DeleteQuickConnectCommandInput, DeleteQuickConnectCommandOutput } from "./commands/DeleteQuickConnectCommand";
|
|
@@ -83,6 +86,7 @@ import { DescribeInstanceAttributeCommandInput, DescribeInstanceAttributeCommand
|
|
|
83
86
|
import { DescribeInstanceCommandInput, DescribeInstanceCommandOutput } from "./commands/DescribeInstanceCommand";
|
|
84
87
|
import { DescribeInstanceStorageConfigCommandInput, DescribeInstanceStorageConfigCommandOutput } from "./commands/DescribeInstanceStorageConfigCommand";
|
|
85
88
|
import { DescribePhoneNumberCommandInput, DescribePhoneNumberCommandOutput } from "./commands/DescribePhoneNumberCommand";
|
|
89
|
+
import { DescribePredefinedAttributeCommandInput, DescribePredefinedAttributeCommandOutput } from "./commands/DescribePredefinedAttributeCommand";
|
|
86
90
|
import { DescribePromptCommandInput, DescribePromptCommandOutput } from "./commands/DescribePromptCommand";
|
|
87
91
|
import { DescribeQueueCommandInput, DescribeQueueCommandOutput } from "./commands/DescribeQueueCommand";
|
|
88
92
|
import { DescribeQuickConnectCommandInput, DescribeQuickConnectCommandOutput } from "./commands/DescribeQuickConnectCommand";
|
|
@@ -107,6 +111,7 @@ import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConne
|
|
|
107
111
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "./commands/DisassociateRoutingProfileQueuesCommand";
|
|
108
112
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "./commands/DisassociateSecurityKeyCommand";
|
|
109
113
|
import { DisassociateTrafficDistributionGroupUserCommandInput, DisassociateTrafficDistributionGroupUserCommandOutput } from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
114
|
+
import { DisassociateUserProficienciesCommandInput, DisassociateUserProficienciesCommandOutput } from "./commands/DisassociateUserProficienciesCommand";
|
|
110
115
|
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "./commands/DismissUserContactCommand";
|
|
111
116
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "./commands/GetContactAttributesCommand";
|
|
112
117
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "./commands/GetCurrentMetricDataCommand";
|
|
@@ -140,6 +145,7 @@ import { ListLambdaFunctionsCommandInput, ListLambdaFunctionsCommandOutput } fro
|
|
|
140
145
|
import { ListLexBotsCommandInput, ListLexBotsCommandOutput } from "./commands/ListLexBotsCommand";
|
|
141
146
|
import { ListPhoneNumbersCommandInput, ListPhoneNumbersCommandOutput } from "./commands/ListPhoneNumbersCommand";
|
|
142
147
|
import { ListPhoneNumbersV2CommandInput, ListPhoneNumbersV2CommandOutput } from "./commands/ListPhoneNumbersV2Command";
|
|
148
|
+
import { ListPredefinedAttributesCommandInput, ListPredefinedAttributesCommandOutput } from "./commands/ListPredefinedAttributesCommand";
|
|
143
149
|
import { ListPromptsCommandInput, ListPromptsCommandOutput } from "./commands/ListPromptsCommand";
|
|
144
150
|
import { ListQueueQuickConnectsCommandInput, ListQueueQuickConnectsCommandOutput } from "./commands/ListQueueQuickConnectsCommand";
|
|
145
151
|
import { ListQueuesCommandInput, ListQueuesCommandOutput } from "./commands/ListQueuesCommand";
|
|
@@ -158,6 +164,7 @@ import { ListTrafficDistributionGroupsCommandInput, ListTrafficDistributionGroup
|
|
|
158
164
|
import { ListTrafficDistributionGroupUsersCommandInput, ListTrafficDistributionGroupUsersCommandOutput } from "./commands/ListTrafficDistributionGroupUsersCommand";
|
|
159
165
|
import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "./commands/ListUseCasesCommand";
|
|
160
166
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "./commands/ListUserHierarchyGroupsCommand";
|
|
167
|
+
import { ListUserProficienciesCommandInput, ListUserProficienciesCommandOutput } from "./commands/ListUserProficienciesCommand";
|
|
161
168
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
162
169
|
import { ListViewsCommandInput, ListViewsCommandOutput } from "./commands/ListViewsCommand";
|
|
163
170
|
import { ListViewVersionsCommandInput, ListViewVersionsCommandOutput } from "./commands/ListViewVersionsCommand";
|
|
@@ -169,7 +176,9 @@ import { ReplicateInstanceCommandInput, ReplicateInstanceCommandOutput } from ".
|
|
|
169
176
|
import { ResumeContactCommandInput, ResumeContactCommandOutput } from "./commands/ResumeContactCommand";
|
|
170
177
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
171
178
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
179
|
+
import { SearchContactsCommandInput, SearchContactsCommandOutput } from "./commands/SearchContactsCommand";
|
|
172
180
|
import { SearchHoursOfOperationsCommandInput, SearchHoursOfOperationsCommandOutput } from "./commands/SearchHoursOfOperationsCommand";
|
|
181
|
+
import { SearchPredefinedAttributesCommandInput, SearchPredefinedAttributesCommandOutput } from "./commands/SearchPredefinedAttributesCommand";
|
|
173
182
|
import { SearchPromptsCommandInput, SearchPromptsCommandOutput } from "./commands/SearchPromptsCommand";
|
|
174
183
|
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "./commands/SearchQueuesCommand";
|
|
175
184
|
import { SearchQuickConnectsCommandInput, SearchQuickConnectsCommandOutput } from "./commands/SearchQuickConnectsCommand";
|
|
@@ -205,6 +214,7 @@ import { UpdateContactFlowMetadataCommandInput, UpdateContactFlowMetadataCommand
|
|
|
205
214
|
import { UpdateContactFlowModuleContentCommandInput, UpdateContactFlowModuleContentCommandOutput } from "./commands/UpdateContactFlowModuleContentCommand";
|
|
206
215
|
import { UpdateContactFlowModuleMetadataCommandInput, UpdateContactFlowModuleMetadataCommandOutput } from "./commands/UpdateContactFlowModuleMetadataCommand";
|
|
207
216
|
import { UpdateContactFlowNameCommandInput, UpdateContactFlowNameCommandOutput } from "./commands/UpdateContactFlowNameCommand";
|
|
217
|
+
import { UpdateContactRoutingDataCommandInput, UpdateContactRoutingDataCommandOutput } from "./commands/UpdateContactRoutingDataCommand";
|
|
208
218
|
import { UpdateContactScheduleCommandInput, UpdateContactScheduleCommandOutput } from "./commands/UpdateContactScheduleCommand";
|
|
209
219
|
import { UpdateEvaluationFormCommandInput, UpdateEvaluationFormCommandOutput } from "./commands/UpdateEvaluationFormCommand";
|
|
210
220
|
import { UpdateHoursOfOperationCommandInput, UpdateHoursOfOperationCommandOutput } from "./commands/UpdateHoursOfOperationCommand";
|
|
@@ -213,6 +223,7 @@ import { UpdateInstanceStorageConfigCommandInput, UpdateInstanceStorageConfigCom
|
|
|
213
223
|
import { UpdateParticipantRoleConfigCommandInput, UpdateParticipantRoleConfigCommandOutput } from "./commands/UpdateParticipantRoleConfigCommand";
|
|
214
224
|
import { UpdatePhoneNumberCommandInput, UpdatePhoneNumberCommandOutput } from "./commands/UpdatePhoneNumberCommand";
|
|
215
225
|
import { UpdatePhoneNumberMetadataCommandInput, UpdatePhoneNumberMetadataCommandOutput } from "./commands/UpdatePhoneNumberMetadataCommand";
|
|
226
|
+
import { UpdatePredefinedAttributeCommandInput, UpdatePredefinedAttributeCommandOutput } from "./commands/UpdatePredefinedAttributeCommand";
|
|
216
227
|
import { UpdatePromptCommandInput, UpdatePromptCommandOutput } from "./commands/UpdatePromptCommand";
|
|
217
228
|
import { UpdateQueueHoursOfOperationCommandInput, UpdateQueueHoursOfOperationCommandOutput } from "./commands/UpdateQueueHoursOfOperationCommand";
|
|
218
229
|
import { UpdateQueueMaxContactsCommandInput, UpdateQueueMaxContactsCommandOutput } from "./commands/UpdateQueueMaxContactsCommand";
|
|
@@ -235,6 +246,7 @@ import { UpdateUserHierarchyGroupNameCommandInput, UpdateUserHierarchyGroupNameC
|
|
|
235
246
|
import { UpdateUserHierarchyStructureCommandInput, UpdateUserHierarchyStructureCommandOutput } from "./commands/UpdateUserHierarchyStructureCommand";
|
|
236
247
|
import { UpdateUserIdentityInfoCommandInput, UpdateUserIdentityInfoCommandOutput } from "./commands/UpdateUserIdentityInfoCommand";
|
|
237
248
|
import { UpdateUserPhoneConfigCommandInput, UpdateUserPhoneConfigCommandOutput } from "./commands/UpdateUserPhoneConfigCommand";
|
|
249
|
+
import { UpdateUserProficienciesCommandInput, UpdateUserProficienciesCommandOutput } from "./commands/UpdateUserProficienciesCommand";
|
|
238
250
|
import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOutput } from "./commands/UpdateUserRoutingProfileCommand";
|
|
239
251
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "./commands/UpdateUserSecurityProfilesCommand";
|
|
240
252
|
import { UpdateViewContentCommandInput, UpdateViewContentCommandOutput } from "./commands/UpdateViewContentCommand";
|
|
@@ -245,11 +257,11 @@ export { __Client };
|
|
|
245
257
|
/**
|
|
246
258
|
* @public
|
|
247
259
|
*/
|
|
248
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DismissUserContactCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchHoursOfOperationsCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
260
|
+
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
249
261
|
/**
|
|
250
262
|
* @public
|
|
251
263
|
*/
|
|
252
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DismissUserContactCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
264
|
+
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
253
265
|
/**
|
|
254
266
|
* @public
|
|
255
267
|
*/
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
5
|
+
import { AssociateUserProficienciesRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link AssociateUserProficienciesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface AssociateUserProficienciesCommandInput extends AssociateUserProficienciesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link AssociateUserProficienciesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface AssociateUserProficienciesCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>>Associates a set of proficiencies with a user.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ConnectClient, AssociateUserProficienciesCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
31
|
+
* // const { ConnectClient, AssociateUserProficienciesCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
32
|
+
* const client = new ConnectClient(config);
|
|
33
|
+
* const input = { // AssociateUserProficienciesRequest
|
|
34
|
+
* InstanceId: "STRING_VALUE", // required
|
|
35
|
+
* UserId: "STRING_VALUE", // required
|
|
36
|
+
* UserProficiencies: [ // UserProficiencyList // required
|
|
37
|
+
* { // UserProficiency
|
|
38
|
+
* AttributeName: "STRING_VALUE", // required
|
|
39
|
+
* AttributeValue: "STRING_VALUE", // required
|
|
40
|
+
* Level: Number("float"), // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
44
|
+
* const command = new AssociateUserProficienciesCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param AssociateUserProficienciesCommandInput - {@link AssociateUserProficienciesCommandInput}
|
|
51
|
+
* @returns {@link AssociateUserProficienciesCommandOutput}
|
|
52
|
+
* @see {@link AssociateUserProficienciesCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link AssociateUserProficienciesCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
57
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
60
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
63
|
+
* <p>The request is not valid.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>The specified resource was not found.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
69
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ConnectServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
export declare class AssociateUserProficienciesCommand extends $Command<AssociateUserProficienciesCommandInput, AssociateUserProficienciesCommandOutput, ConnectClientResolvedConfig> {
|
|
76
|
+
readonly input: AssociateUserProficienciesCommandInput;
|
|
77
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
constructor(input: AssociateUserProficienciesCommandInput);
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateUserProficienciesCommandInput, AssociateUserProficienciesCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
private deserialize;
|
|
94
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
5
|
+
import { CreatePredefinedAttributeRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreatePredefinedAttributeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreatePredefinedAttributeCommandInput extends CreatePredefinedAttributeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreatePredefinedAttributeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePredefinedAttributeCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Creates a new predefined attribute for the specified Amazon Connect instance.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ConnectClient, CreatePredefinedAttributeCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
31
|
+
* // const { ConnectClient, CreatePredefinedAttributeCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
32
|
+
* const client = new ConnectClient(config);
|
|
33
|
+
* const input = { // CreatePredefinedAttributeRequest
|
|
34
|
+
* InstanceId: "STRING_VALUE", // required
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* Values: { // PredefinedAttributeValues Union: only one key present
|
|
37
|
+
* StringList: [ // PredefinedAttributeStringValuesList
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* };
|
|
42
|
+
* const command = new CreatePredefinedAttributeCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param CreatePredefinedAttributeCommandInput - {@link CreatePredefinedAttributeCommandInput}
|
|
49
|
+
* @returns {@link CreatePredefinedAttributeCommandOutput}
|
|
50
|
+
* @see {@link CreatePredefinedAttributeCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link CreatePredefinedAttributeCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link DuplicateResourceException} (client fault)
|
|
55
|
+
* <p>A resource with the specified name already exists.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
58
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
61
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
64
|
+
* <p>The request is not valid.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
67
|
+
* <p>The allowed limit for the resource has been exceeded.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The specified resource was not found.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ConnectServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
77
|
+
*
|
|
78
|
+
*/
|
|
79
|
+
export declare class CreatePredefinedAttributeCommand extends $Command<CreatePredefinedAttributeCommandInput, CreatePredefinedAttributeCommandOutput, ConnectClientResolvedConfig> {
|
|
80
|
+
readonly input: CreatePredefinedAttributeCommandInput;
|
|
81
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
constructor(input: CreatePredefinedAttributeCommandInput);
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePredefinedAttributeCommandInput, CreatePredefinedAttributeCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
private deserialize;
|
|
98
|
+
}
|