@@ -807,6 +807,11 @@ import {
807
807
ResumeContactRecordingCommandInput ,
808
808
ResumeContactRecordingCommandOutput ,
809
809
} from "./commands/ResumeContactRecordingCommand" ;
810
+ import {
811
+ SearchAgentStatusesCommand ,
812
+ SearchAgentStatusesCommandInput ,
813
+ SearchAgentStatusesCommandOutput ,
814
+ } from "./commands/SearchAgentStatusesCommand" ;
810
815
import {
811
816
SearchAvailablePhoneNumbersCommand ,
812
817
SearchAvailablePhoneNumbersCommandInput ,
@@ -867,6 +872,11 @@ import {
867
872
SearchSecurityProfilesCommandInput ,
868
873
SearchSecurityProfilesCommandOutput ,
869
874
} from "./commands/SearchSecurityProfilesCommand" ;
875
+ import {
876
+ SearchUserHierarchyGroupsCommand ,
877
+ SearchUserHierarchyGroupsCommandInput ,
878
+ SearchUserHierarchyGroupsCommandOutput ,
879
+ } from "./commands/SearchUserHierarchyGroupsCommand" ;
870
880
import { SearchUsersCommand , SearchUsersCommandInput , SearchUsersCommandOutput } from "./commands/SearchUsersCommand" ;
871
881
import {
872
882
SearchVocabulariesCommand ,
@@ -1363,6 +1373,7 @@ const commands = {
1363
1373
ReplicateInstanceCommand,
1364
1374
ResumeContactCommand,
1365
1375
ResumeContactRecordingCommand,
1376
+ SearchAgentStatusesCommand,
1366
1377
SearchAvailablePhoneNumbersCommand,
1367
1378
SearchContactFlowModulesCommand,
1368
1379
SearchContactFlowsCommand,
@@ -1375,6 +1386,7 @@ const commands = {
1375
1386
SearchResourceTagsCommand,
1376
1387
SearchRoutingProfilesCommand,
1377
1388
SearchSecurityProfilesCommand,
1389
+ SearchUserHierarchyGroupsCommand,
1378
1390
SearchUsersCommand,
1379
1391
SearchVocabulariesCommand,
1380
1392
SendChatIntegrationEventCommand,
@@ -4165,6 +4177,23 @@ export interface Connect {
4165
4177
cb : ( err : any , data ?: ResumeContactRecordingCommandOutput ) => void
4166
4178
) : void ;
4167
4179
4180
+ /**
4181
+ * @see {@link SearchAgentStatusesCommand }
4182
+ */
4183
+ searchAgentStatuses (
4184
+ args : SearchAgentStatusesCommandInput ,
4185
+ options ?: __HttpHandlerOptions
4186
+ ) : Promise < SearchAgentStatusesCommandOutput > ;
4187
+ searchAgentStatuses (
4188
+ args : SearchAgentStatusesCommandInput ,
4189
+ cb : ( err : any , data ?: SearchAgentStatusesCommandOutput ) => void
4190
+ ) : void ;
4191
+ searchAgentStatuses (
4192
+ args : SearchAgentStatusesCommandInput ,
4193
+ options : __HttpHandlerOptions ,
4194
+ cb : ( err : any , data ?: SearchAgentStatusesCommandOutput ) => void
4195
+ ) : void ;
4196
+
4168
4197
/**
4169
4198
* @see {@link SearchAvailablePhoneNumbersCommand }
4170
4199
*/
@@ -4354,6 +4383,23 @@ export interface Connect {
4354
4383
cb : ( err : any , data ?: SearchSecurityProfilesCommandOutput ) => void
4355
4384
) : void ;
4356
4385
4386
+ /**
4387
+ * @see {@link SearchUserHierarchyGroupsCommand }
4388
+ */
4389
+ searchUserHierarchyGroups (
4390
+ args : SearchUserHierarchyGroupsCommandInput ,
4391
+ options ?: __HttpHandlerOptions
4392
+ ) : Promise < SearchUserHierarchyGroupsCommandOutput > ;
4393
+ searchUserHierarchyGroups (
4394
+ args : SearchUserHierarchyGroupsCommandInput ,
4395
+ cb : ( err : any , data ?: SearchUserHierarchyGroupsCommandOutput ) => void
4396
+ ) : void ;
4397
+ searchUserHierarchyGroups (
4398
+ args : SearchUserHierarchyGroupsCommandInput ,
4399
+ options : __HttpHandlerOptions ,
4400
+ cb : ( err : any , data ?: SearchUserHierarchyGroupsCommandOutput ) => void
4401
+ ) : void ;
4402
+
4357
4403
/**
4358
4404
* @see {@link SearchUsersCommand }
4359
4405
*/
@@ -5455,14 +5501,13 @@ export interface Connect {
5455
5501
* <ul>
5456
5502
* <li>
5457
5503
* <p>
5458
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect
5459
- * actions</a>
5504
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect actions</a>
5460
5505
* </p>
5461
5506
* </li>
5462
5507
* <li>
5463
5508
* <p>
5464
5509
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Service.html">Amazon Connect
5465
- * data types</a>
5510
+ * data types</a>
5466
5511
* </p>
5467
5512
* </li>
5468
5513
* </ul>
0 commit comments