@aws-sdk/client-connect 3.162.0 → 3.165.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/Connect.js +30 -0
- package/dist-cjs/commands/SearchQueuesCommand.js +36 -0
- package/dist-cjs/commands/SearchRoutingProfilesCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_1.js +39 -3
- package/dist-cjs/pagination/SearchQueuesPaginator.js +36 -0
- package/dist-cjs/pagination/SearchRoutingProfilesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +249 -5
- package/dist-es/Connect.js +30 -0
- package/dist-es/commands/SearchQueuesCommand.js +39 -0
- package/dist-es/commands/SearchRoutingProfilesCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_1.js +12 -0
- package/dist-es/pagination/SearchQueuesPaginator.js +75 -0
- package/dist-es/pagination/SearchRoutingProfilesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +281 -0
- package/dist-types/Connect.d.ts +42 -22
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/DescribeContactCommand.d.ts +2 -0
- package/dist-types/commands/DisassociatePhoneNumberContactFlowCommand.d.ts +2 -2
- package/dist-types/commands/ListBotsCommand.d.ts +2 -1
- package/dist-types/commands/ListContactFlowsCommand.d.ts +2 -2
- package/dist-types/commands/ListLexBotsCommand.d.ts +3 -2
- package/dist-types/commands/SearchQueuesCommand.d.ts +36 -0
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +36 -0
- package/dist-types/commands/StartChatContactCommand.d.ts +2 -2
- package/dist-types/commands/StartOutboundVoiceContactCommand.d.ts +5 -6
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/TransferContactCommand.d.ts +4 -4
- package/dist-types/commands/UpdateContactAttributesCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +26 -16
- package/dist-types/models/models_1.d.ts +225 -22
- package/dist-types/pagination/SearchQueuesPaginator.d.ts +4 -0
- package/dist-types/pagination/SearchRoutingProfilesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/Connect.d.ts +10 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchQueuesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +90 -1
- package/dist-types/ts3.4/pagination/SearchQueuesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchRoutingProfilesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/package.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentStatusState, Channel, ContactFlowModuleState, ContactFlowState, HierarchyGroupSummary, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, QueueStatus, QuickConnectConfig, QuickConnectSummary, QuickConnectType, ReferenceType, RoutingProfileQueueConfig, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
3
|
+
import { AgentStatusState, Channel, ContactFlowModuleState, ContactFlowState, HierarchyGroupSummary, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, Queue, QueueStatus, QuickConnectConfig, QuickConnectSummary, QuickConnectType, ReferenceType, RoutingProfile, RoutingProfileQueueConfig, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
4
|
export declare enum QueueType {
|
|
5
5
|
AGENT = "AGENT",
|
|
6
6
|
STANDARD = "STANDARD"
|
|
@@ -252,7 +252,9 @@ export interface ListSecurityProfilePermissionsRequest {
|
|
|
252
252
|
}
|
|
253
253
|
export interface ListSecurityProfilePermissionsResponse {
|
|
254
254
|
/**
|
|
255
|
-
* <p>The permissions granted to the security profile
|
|
255
|
+
* <p>The permissions granted to the security profile. For a complete list of valid permissions,
|
|
256
|
+
* see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html">List
|
|
257
|
+
* of security profile permissions</a>.</p>
|
|
256
258
|
*/
|
|
257
259
|
Permissions?: string[];
|
|
258
260
|
/**
|
|
@@ -612,6 +614,9 @@ export interface SearchAvailablePhoneNumbersResponse {
|
|
|
612
614
|
*/
|
|
613
615
|
AvailableNumbersList?: AvailableNumberSummary[];
|
|
614
616
|
}
|
|
617
|
+
export declare enum SearchableQueueType {
|
|
618
|
+
STANDARD = "STANDARD"
|
|
619
|
+
}
|
|
615
620
|
export declare enum StringComparisonType {
|
|
616
621
|
CONTAINS = "CONTAINS",
|
|
617
622
|
EXACT = "EXACT",
|
|
@@ -679,6 +684,74 @@ export interface ControlPlaneTagFilter {
|
|
|
679
684
|
*/
|
|
680
685
|
TagCondition?: TagCondition;
|
|
681
686
|
}
|
|
687
|
+
/**
|
|
688
|
+
* <p>Filters to be applied to search results.</p>
|
|
689
|
+
*/
|
|
690
|
+
export interface QueueSearchFilter {
|
|
691
|
+
/**
|
|
692
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
693
|
+
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
694
|
+
* <ul>
|
|
695
|
+
* <li>
|
|
696
|
+
* <p>Top level list specifies conditions that need to be applied with <code>OR</code>
|
|
697
|
+
* operator</p>
|
|
698
|
+
* </li>
|
|
699
|
+
* <li>
|
|
700
|
+
* <p>Inner list specifies conditions that need to be applied with <code>AND</code>
|
|
701
|
+
* operator.</p>
|
|
702
|
+
* </li>
|
|
703
|
+
* </ul>
|
|
704
|
+
*/
|
|
705
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
706
|
+
}
|
|
707
|
+
export interface SearchQueuesResponse {
|
|
708
|
+
/**
|
|
709
|
+
* <p>Information about the queues.</p>
|
|
710
|
+
*/
|
|
711
|
+
Queues?: Queue[];
|
|
712
|
+
/**
|
|
713
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
714
|
+
*/
|
|
715
|
+
NextToken?: string;
|
|
716
|
+
/**
|
|
717
|
+
* <p>The total number of queues which matched your search query.</p>
|
|
718
|
+
*/
|
|
719
|
+
ApproximateTotalCount?: number;
|
|
720
|
+
}
|
|
721
|
+
/**
|
|
722
|
+
* <p>Filters to be applied to search results.</p>
|
|
723
|
+
*/
|
|
724
|
+
export interface RoutingProfileSearchFilter {
|
|
725
|
+
/**
|
|
726
|
+
* <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
|
|
727
|
+
* This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
|
|
728
|
+
* <ul>
|
|
729
|
+
* <li>
|
|
730
|
+
* <p>Top level list specifies conditions that need to be applied with <code>OR</code>
|
|
731
|
+
* operator</p>
|
|
732
|
+
* </li>
|
|
733
|
+
* <li>
|
|
734
|
+
* <p>Inner list specifies conditions that need to be applied with <code>AND</code>
|
|
735
|
+
* operator.</p>
|
|
736
|
+
* </li>
|
|
737
|
+
* </ul>
|
|
738
|
+
*/
|
|
739
|
+
TagFilter?: ControlPlaneTagFilter;
|
|
740
|
+
}
|
|
741
|
+
export interface SearchRoutingProfilesResponse {
|
|
742
|
+
/**
|
|
743
|
+
* <p>Information about the routing profiles.</p>
|
|
744
|
+
*/
|
|
745
|
+
RoutingProfiles?: RoutingProfile[];
|
|
746
|
+
/**
|
|
747
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
748
|
+
*/
|
|
749
|
+
NextToken?: string;
|
|
750
|
+
/**
|
|
751
|
+
* <p>The total number of routing profiles which matched your search query.</p>
|
|
752
|
+
*/
|
|
753
|
+
ApproximateTotalCount?: number;
|
|
754
|
+
}
|
|
682
755
|
/**
|
|
683
756
|
* <p>Filters to be applied to search results.</p>
|
|
684
757
|
*/
|
|
@@ -955,9 +1028,9 @@ export interface StartChatContactRequest {
|
|
|
955
1028
|
/**
|
|
956
1029
|
* <p>The identifier of the flow for initiating the chat.
|
|
957
1030
|
* To
|
|
958
|
-
* see the ContactFlowId in the Amazon Connect console user interface, on the navigation menu go to <b>Routing</b>, <b>Contact Flows</b>. Choose the
|
|
959
|
-
*
|
|
960
|
-
*
|
|
1031
|
+
* see the ContactFlowId in the Amazon Connect console user interface, on the navigation menu go to <b>Routing</b>, <b>Contact Flows</b>. Choose the flow.
|
|
1032
|
+
* On the flow page, under the name of the flow, choose <b>Show additional flow
|
|
1033
|
+
* information</b>. The ContactFlowId is the last part of the ARN, shown here in bold: </p>
|
|
961
1034
|
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
962
1035
|
* </p>
|
|
963
1036
|
*/
|
|
@@ -1137,11 +1210,10 @@ export interface StartOutboundVoiceContactRequest {
|
|
|
1137
1210
|
DestinationPhoneNumber: string | undefined;
|
|
1138
1211
|
/**
|
|
1139
1212
|
* <p>The
|
|
1140
|
-
* identifier of the flow for the outbound call. To see the ContactFlowId in the Amazon Connect
|
|
1141
|
-
*
|
|
1142
|
-
*
|
|
1143
|
-
*
|
|
1144
|
-
* information</b>. The ContactFlowId is the last part of the ARN, shown here in bold: </p>
|
|
1213
|
+
* identifier of the flow for the outbound call. To see the ContactFlowId in the Amazon Connect console user
|
|
1214
|
+
* interface, on the navigation menu go to <b>Routing</b>, <b>Contact Flows</b>. Choose the flow. On the flow page, under the name of the
|
|
1215
|
+
* flow, choose <b>Show additional flow information</b>. The ContactFlowId
|
|
1216
|
+
* is the last part of the ARN, shown here in bold: </p>
|
|
1145
1217
|
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
1146
1218
|
* </p>
|
|
1147
1219
|
*/
|
|
@@ -1164,9 +1236,8 @@ export interface StartOutboundVoiceContactRequest {
|
|
|
1164
1236
|
SourcePhoneNumber?: string;
|
|
1165
1237
|
/**
|
|
1166
1238
|
* <p>The queue for the call. If you specify a queue, the phone displayed for caller ID is the
|
|
1167
|
-
* phone number specified in the queue. If you do not specify a queue, the queue defined in the
|
|
1168
|
-
*
|
|
1169
|
-
* number.</p>
|
|
1239
|
+
* phone number specified in the queue. If you do not specify a queue, the queue defined in the flow
|
|
1240
|
+
* is used. If you do not specify a queue, you must specify a source phone number.</p>
|
|
1170
1241
|
*/
|
|
1171
1242
|
QueueId?: string;
|
|
1172
1243
|
/**
|
|
@@ -1223,11 +1294,11 @@ export interface StartTaskContactRequest {
|
|
|
1223
1294
|
*/
|
|
1224
1295
|
PreviousContactId?: string;
|
|
1225
1296
|
/**
|
|
1226
|
-
* <p>The identifier of the flow for initiating the tasks. To see the ContactFlowId in the
|
|
1227
|
-
*
|
|
1228
|
-
*
|
|
1229
|
-
*
|
|
1230
|
-
* here in bold: </p>
|
|
1297
|
+
* <p>The identifier of the flow for initiating the tasks. To see the ContactFlowId in the Amazon Connect
|
|
1298
|
+
* console user interface, on the navigation menu go to <b>Routing</b>,
|
|
1299
|
+
* <b>Contact Flows</b>. Choose the flow. On the flow page, under the
|
|
1300
|
+
* name of the flow, choose <b>Show additional flow information</b>. The
|
|
1301
|
+
* ContactFlowId is the last part of the ARN, shown here in bold: </p>
|
|
1231
1302
|
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
1232
1303
|
* </p>
|
|
1233
1304
|
*/
|
|
@@ -1477,8 +1548,8 @@ export interface UpdateContactAttributesRequest {
|
|
|
1477
1548
|
*/
|
|
1478
1549
|
InstanceId: string | undefined;
|
|
1479
1550
|
/**
|
|
1480
|
-
* <p>The Amazon Connect attributes. These attributes can be accessed in flows just like any other
|
|
1481
|
-
*
|
|
1551
|
+
* <p>The Amazon Connect attributes. These attributes can be accessed in flows just like any other contact
|
|
1552
|
+
* attributes.</p>
|
|
1482
1553
|
* <p>You can have up to 32,768 UTF-8 bytes across all attributes for a contact. Attribute keys
|
|
1483
1554
|
* can include only alphanumeric, dash, and underscore characters.</p>
|
|
1484
1555
|
*/
|
|
@@ -1512,7 +1583,7 @@ export interface UpdateContactFlowMetadataRequest {
|
|
|
1512
1583
|
*/
|
|
1513
1584
|
ContactFlowId: string | undefined;
|
|
1514
1585
|
/**
|
|
1515
|
-
* <p>
|
|
1586
|
+
* <p>The name of the flow.</p>
|
|
1516
1587
|
*/
|
|
1517
1588
|
Name?: string;
|
|
1518
1589
|
/**
|
|
@@ -1859,7 +1930,9 @@ export interface UpdateSecurityProfileRequest {
|
|
|
1859
1930
|
*/
|
|
1860
1931
|
Description?: string;
|
|
1861
1932
|
/**
|
|
1862
|
-
* <p>The permissions granted to a security profile
|
|
1933
|
+
* <p>The permissions granted to a security profile. For a list of valid permissions,
|
|
1934
|
+
* see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html">List
|
|
1935
|
+
* of security profile permissions</a>.</p>
|
|
1863
1936
|
*/
|
|
1864
1937
|
Permissions?: string[];
|
|
1865
1938
|
/**
|
|
@@ -2093,6 +2166,46 @@ export interface UpdateUserSecurityProfilesRequest {
|
|
|
2093
2166
|
*/
|
|
2094
2167
|
InstanceId: string | undefined;
|
|
2095
2168
|
}
|
|
2169
|
+
/**
|
|
2170
|
+
* <p>The search criteria to be used to return queues.</p>
|
|
2171
|
+
*/
|
|
2172
|
+
export interface QueueSearchCriteria {
|
|
2173
|
+
/**
|
|
2174
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
2175
|
+
*/
|
|
2176
|
+
OrConditions?: QueueSearchCriteria[];
|
|
2177
|
+
/**
|
|
2178
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
2179
|
+
*/
|
|
2180
|
+
AndConditions?: QueueSearchCriteria[];
|
|
2181
|
+
/**
|
|
2182
|
+
* <p>A leaf node condition which can be used to specify a string condition, for example,
|
|
2183
|
+
* <code>username = 'abc'</code>. </p>
|
|
2184
|
+
*/
|
|
2185
|
+
StringCondition?: StringCondition;
|
|
2186
|
+
/**
|
|
2187
|
+
* <p>The type of queue.</p>
|
|
2188
|
+
*/
|
|
2189
|
+
QueueTypeCondition?: SearchableQueueType | string;
|
|
2190
|
+
}
|
|
2191
|
+
/**
|
|
2192
|
+
* <p>The search criteria to be used to return routing profiles.</p>
|
|
2193
|
+
*/
|
|
2194
|
+
export interface RoutingProfileSearchCriteria {
|
|
2195
|
+
/**
|
|
2196
|
+
* <p>A list of conditions which would be applied together with an OR condition.</p>
|
|
2197
|
+
*/
|
|
2198
|
+
OrConditions?: RoutingProfileSearchCriteria[];
|
|
2199
|
+
/**
|
|
2200
|
+
* <p>A list of conditions which would be applied together with an AND condition.</p>
|
|
2201
|
+
*/
|
|
2202
|
+
AndConditions?: RoutingProfileSearchCriteria[];
|
|
2203
|
+
/**
|
|
2204
|
+
* <p>A leaf node condition which can be used to specify a string condition, for example,
|
|
2205
|
+
* <code>username = 'abc'</code>. </p>
|
|
2206
|
+
*/
|
|
2207
|
+
StringCondition?: StringCondition;
|
|
2208
|
+
}
|
|
2096
2209
|
/**
|
|
2097
2210
|
* <p>The search criteria to be used to return security profiles.</p>
|
|
2098
2211
|
*/
|
|
@@ -2113,6 +2226,12 @@ export interface SecurityProfileSearchCriteria {
|
|
|
2113
2226
|
}
|
|
2114
2227
|
/**
|
|
2115
2228
|
* <p>The search criteria to be used to return users.</p>
|
|
2229
|
+
* <note>
|
|
2230
|
+
* <p>The <code>Username</code>, <code>Firstname</code>, and <code>Lastname</code> fields support
|
|
2231
|
+
* "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries
|
|
2232
|
+
* with character lengths outside of this range result in empty results.
|
|
2233
|
+
* </p>
|
|
2234
|
+
* </note>
|
|
2116
2235
|
*/
|
|
2117
2236
|
export interface UserSearchCriteria {
|
|
2118
2237
|
/**
|
|
@@ -2134,6 +2253,52 @@ export interface UserSearchCriteria {
|
|
|
2134
2253
|
*/
|
|
2135
2254
|
HierarchyGroupCondition?: HierarchyGroupCondition;
|
|
2136
2255
|
}
|
|
2256
|
+
export interface SearchQueuesRequest {
|
|
2257
|
+
/**
|
|
2258
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
2259
|
+
*/
|
|
2260
|
+
InstanceId: string | undefined;
|
|
2261
|
+
/**
|
|
2262
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
2263
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
2264
|
+
*/
|
|
2265
|
+
NextToken?: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* <p>The maximum number of results to return per page.</p>
|
|
2268
|
+
*/
|
|
2269
|
+
MaxResults?: number;
|
|
2270
|
+
/**
|
|
2271
|
+
* <p>Filters to be applied to search results.</p>
|
|
2272
|
+
*/
|
|
2273
|
+
SearchFilter?: QueueSearchFilter;
|
|
2274
|
+
/**
|
|
2275
|
+
* <p>The search criteria to be used to return queues.</p>
|
|
2276
|
+
*/
|
|
2277
|
+
SearchCriteria?: QueueSearchCriteria;
|
|
2278
|
+
}
|
|
2279
|
+
export interface SearchRoutingProfilesRequest {
|
|
2280
|
+
/**
|
|
2281
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
2282
|
+
*/
|
|
2283
|
+
InstanceId: string | undefined;
|
|
2284
|
+
/**
|
|
2285
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
2286
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
2287
|
+
*/
|
|
2288
|
+
NextToken?: string;
|
|
2289
|
+
/**
|
|
2290
|
+
* <p>The maximum number of results to return per page.</p>
|
|
2291
|
+
*/
|
|
2292
|
+
MaxResults?: number;
|
|
2293
|
+
/**
|
|
2294
|
+
* <p>Filters to be applied to search results.</p>
|
|
2295
|
+
*/
|
|
2296
|
+
SearchFilter?: RoutingProfileSearchFilter;
|
|
2297
|
+
/**
|
|
2298
|
+
* <p>The search criteria to be used to return routing profiles.</p>
|
|
2299
|
+
*/
|
|
2300
|
+
SearchCriteria?: RoutingProfileSearchCriteria;
|
|
2301
|
+
}
|
|
2137
2302
|
export interface SearchSecurityProfilesRequest {
|
|
2138
2303
|
/**
|
|
2139
2304
|
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
@@ -2177,6 +2342,12 @@ export interface SearchUsersRequest {
|
|
|
2177
2342
|
SearchFilter?: UserSearchFilter;
|
|
2178
2343
|
/**
|
|
2179
2344
|
* <p>The search criteria to be used to return users.</p>
|
|
2345
|
+
* <note>
|
|
2346
|
+
* <p>The <code>Username</code>, <code>Firstname</code>, and <code>Lastname</code> fields support
|
|
2347
|
+
* "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries
|
|
2348
|
+
* with character lengths outside of this range result in empty results.
|
|
2349
|
+
* </p>
|
|
2350
|
+
* </note>
|
|
2180
2351
|
*/
|
|
2181
2352
|
SearchCriteria?: UserSearchCriteria;
|
|
2182
2353
|
}
|
|
@@ -2352,6 +2523,22 @@ export declare const TagConditionFilterSensitiveLog: (obj: TagCondition) => any;
|
|
|
2352
2523
|
* @internal
|
|
2353
2524
|
*/
|
|
2354
2525
|
export declare const ControlPlaneTagFilterFilterSensitiveLog: (obj: ControlPlaneTagFilter) => any;
|
|
2526
|
+
/**
|
|
2527
|
+
* @internal
|
|
2528
|
+
*/
|
|
2529
|
+
export declare const QueueSearchFilterFilterSensitiveLog: (obj: QueueSearchFilter) => any;
|
|
2530
|
+
/**
|
|
2531
|
+
* @internal
|
|
2532
|
+
*/
|
|
2533
|
+
export declare const SearchQueuesResponseFilterSensitiveLog: (obj: SearchQueuesResponse) => any;
|
|
2534
|
+
/**
|
|
2535
|
+
* @internal
|
|
2536
|
+
*/
|
|
2537
|
+
export declare const RoutingProfileSearchFilterFilterSensitiveLog: (obj: RoutingProfileSearchFilter) => any;
|
|
2538
|
+
/**
|
|
2539
|
+
* @internal
|
|
2540
|
+
*/
|
|
2541
|
+
export declare const SearchRoutingProfilesResponseFilterSensitiveLog: (obj: SearchRoutingProfilesResponse) => any;
|
|
2355
2542
|
/**
|
|
2356
2543
|
* @internal
|
|
2357
2544
|
*/
|
|
@@ -2676,6 +2863,14 @@ export declare const UpdateUserRoutingProfileRequestFilterSensitiveLog: (obj: Up
|
|
|
2676
2863
|
* @internal
|
|
2677
2864
|
*/
|
|
2678
2865
|
export declare const UpdateUserSecurityProfilesRequestFilterSensitiveLog: (obj: UpdateUserSecurityProfilesRequest) => any;
|
|
2866
|
+
/**
|
|
2867
|
+
* @internal
|
|
2868
|
+
*/
|
|
2869
|
+
export declare const QueueSearchCriteriaFilterSensitiveLog: (obj: QueueSearchCriteria) => any;
|
|
2870
|
+
/**
|
|
2871
|
+
* @internal
|
|
2872
|
+
*/
|
|
2873
|
+
export declare const RoutingProfileSearchCriteriaFilterSensitiveLog: (obj: RoutingProfileSearchCriteria) => any;
|
|
2679
2874
|
/**
|
|
2680
2875
|
* @internal
|
|
2681
2876
|
*/
|
|
@@ -2684,6 +2879,14 @@ export declare const SecurityProfileSearchCriteriaFilterSensitiveLog: (obj: Secu
|
|
|
2684
2879
|
* @internal
|
|
2685
2880
|
*/
|
|
2686
2881
|
export declare const UserSearchCriteriaFilterSensitiveLog: (obj: UserSearchCriteria) => any;
|
|
2882
|
+
/**
|
|
2883
|
+
* @internal
|
|
2884
|
+
*/
|
|
2885
|
+
export declare const SearchQueuesRequestFilterSensitiveLog: (obj: SearchQueuesRequest) => any;
|
|
2886
|
+
/**
|
|
2887
|
+
* @internal
|
|
2888
|
+
*/
|
|
2889
|
+
export declare const SearchRoutingProfilesRequestFilterSensitiveLog: (obj: SearchRoutingProfilesRequest) => any;
|
|
2687
2890
|
/**
|
|
2688
2891
|
* @internal
|
|
2689
2892
|
*/
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "../commands/SearchQueuesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateSearchQueues(config: ConnectPaginationConfiguration, input: SearchQueuesCommandInput, ...additionalArguments: any): Paginator<SearchQueuesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "../commands/SearchRoutingProfilesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateSearchRoutingProfiles(config: ConnectPaginationConfiguration, input: SearchRoutingProfilesCommandInput, ...additionalArguments: any): Paginator<SearchRoutingProfilesCommandOutput>;
|
|
@@ -32,6 +32,8 @@ export * from "./ListUseCasesPaginator";
|
|
|
32
32
|
export * from "./ListUserHierarchyGroupsPaginator";
|
|
33
33
|
export * from "./ListUsersPaginator";
|
|
34
34
|
export * from "./SearchAvailablePhoneNumbersPaginator";
|
|
35
|
+
export * from "./SearchQueuesPaginator";
|
|
36
|
+
export * from "./SearchRoutingProfilesPaginator";
|
|
35
37
|
export * from "./SearchSecurityProfilesPaginator";
|
|
36
38
|
export * from "./SearchUsersPaginator";
|
|
37
39
|
export * from "./SearchVocabulariesPaginator";
|
|
@@ -104,6 +104,8 @@ import { PutUserStatusCommandInput, PutUserStatusCommandOutput } from "../comman
|
|
|
104
104
|
import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from "../commands/ReleasePhoneNumberCommand";
|
|
105
105
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "../commands/ResumeContactRecordingCommand";
|
|
106
106
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "../commands/SearchAvailablePhoneNumbersCommand";
|
|
107
|
+
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "../commands/SearchQueuesCommand";
|
|
108
|
+
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "../commands/SearchRoutingProfilesCommand";
|
|
107
109
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "../commands/SearchSecurityProfilesCommand";
|
|
108
110
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand";
|
|
109
111
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "../commands/SearchVocabulariesCommand";
|
|
@@ -256,6 +258,8 @@ export declare const serializeAws_restJson1PutUserStatusCommand: (input: PutUser
|
|
|
256
258
|
export declare const serializeAws_restJson1ReleasePhoneNumberCommand: (input: ReleasePhoneNumberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
257
259
|
export declare const serializeAws_restJson1ResumeContactRecordingCommand: (input: ResumeContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
258
260
|
export declare const serializeAws_restJson1SearchAvailablePhoneNumbersCommand: (input: SearchAvailablePhoneNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
261
|
+
export declare const serializeAws_restJson1SearchQueuesCommand: (input: SearchQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const serializeAws_restJson1SearchRoutingProfilesCommand: (input: SearchRoutingProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
263
|
export declare const serializeAws_restJson1SearchSecurityProfilesCommand: (input: SearchSecurityProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
260
264
|
export declare const serializeAws_restJson1SearchUsersCommand: (input: SearchUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
261
265
|
export declare const serializeAws_restJson1SearchVocabulariesCommand: (input: SearchVocabulariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -408,6 +412,8 @@ export declare const deserializeAws_restJson1PutUserStatusCommand: (output: __Ht
|
|
|
408
412
|
export declare const deserializeAws_restJson1ReleasePhoneNumberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReleasePhoneNumberCommandOutput>;
|
|
409
413
|
export declare const deserializeAws_restJson1ResumeContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeContactRecordingCommandOutput>;
|
|
410
414
|
export declare const deserializeAws_restJson1SearchAvailablePhoneNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
415
|
+
export declare const deserializeAws_restJson1SearchQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQueuesCommandOutput>;
|
|
416
|
+
export declare const deserializeAws_restJson1SearchRoutingProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchRoutingProfilesCommandOutput>;
|
|
411
417
|
export declare const deserializeAws_restJson1SearchSecurityProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSecurityProfilesCommandOutput>;
|
|
412
418
|
export declare const deserializeAws_restJson1SearchUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchUsersCommandOutput>;
|
|
413
419
|
export declare const deserializeAws_restJson1SearchVocabulariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchVocabulariesCommandOutput>;
|
|
@@ -103,6 +103,8 @@ import { PutUserStatusCommandInput, PutUserStatusCommandOutput } from "./command
|
|
|
103
103
|
import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from "./commands/ReleasePhoneNumberCommand";
|
|
104
104
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
105
105
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
106
|
+
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "./commands/SearchQueuesCommand";
|
|
107
|
+
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "./commands/SearchRoutingProfilesCommand";
|
|
106
108
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "./commands/SearchSecurityProfilesCommand";
|
|
107
109
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
108
110
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
@@ -571,6 +573,14 @@ export declare class Connect extends ConnectClient {
|
|
|
571
573
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
572
574
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
573
575
|
|
|
576
|
+
searchQueues(args: SearchQueuesCommandInput, options?: __HttpHandlerOptions): Promise<SearchQueuesCommandOutput>;
|
|
577
|
+
searchQueues(args: SearchQueuesCommandInput, cb: (err: any, data?: SearchQueuesCommandOutput) => void): void;
|
|
578
|
+
searchQueues(args: SearchQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchQueuesCommandOutput) => void): void;
|
|
579
|
+
|
|
580
|
+
searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchRoutingProfilesCommandOutput>;
|
|
581
|
+
searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, cb: (err: any, data?: SearchRoutingProfilesCommandOutput) => void): void;
|
|
582
|
+
searchRoutingProfiles(args: SearchRoutingProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchRoutingProfilesCommandOutput) => void): void;
|
|
583
|
+
|
|
574
584
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSecurityProfilesCommandOutput>;
|
|
575
585
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
|
|
576
586
|
searchSecurityProfiles(args: SearchSecurityProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSecurityProfilesCommandOutput) => void): void;
|
|
@@ -110,6 +110,8 @@ import { PutUserStatusCommandInput, PutUserStatusCommandOutput } from "./command
|
|
|
110
110
|
import { ReleasePhoneNumberCommandInput, ReleasePhoneNumberCommandOutput } from "./commands/ReleasePhoneNumberCommand";
|
|
111
111
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "./commands/ResumeContactRecordingCommand";
|
|
112
112
|
import { SearchAvailablePhoneNumbersCommandInput, SearchAvailablePhoneNumbersCommandOutput } from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
113
|
+
import { SearchQueuesCommandInput, SearchQueuesCommandOutput } from "./commands/SearchQueuesCommand";
|
|
114
|
+
import { SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput } from "./commands/SearchRoutingProfilesCommand";
|
|
113
115
|
import { SearchSecurityProfilesCommandInput, SearchSecurityProfilesCommandOutput } from "./commands/SearchSecurityProfilesCommand";
|
|
114
116
|
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
115
117
|
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand";
|
|
@@ -158,8 +160,8 @@ import { UpdateUserIdentityInfoCommandInput, UpdateUserIdentityInfoCommandOutput
|
|
|
158
160
|
import { UpdateUserPhoneConfigCommandInput, UpdateUserPhoneConfigCommandOutput } from "./commands/UpdateUserPhoneConfigCommand";
|
|
159
161
|
import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOutput } from "./commands/UpdateUserRoutingProfileCommand";
|
|
160
162
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "./commands/UpdateUserSecurityProfilesCommand";
|
|
161
|
-
export declare type ServiceInputTypes = AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateVocabularyCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeleteQuickConnectCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeSecurityProfileCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeVocabularyCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetMetricDataCommandInput | GetTaskTemplateCommandInput | ListAgentStatusesCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUsersCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | StartChatContactCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SuspendContactRecordingCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactScheduleCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdatePhoneNumberCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput;
|
|
162
|
-
export declare type ServiceOutputTypes = AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateVocabularyCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeleteQuickConnectCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeSecurityProfileCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeVocabularyCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetMetricDataCommandOutput | GetTaskTemplateCommandOutput | ListAgentStatusesCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUsersCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | StartChatContactCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SuspendContactRecordingCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactScheduleCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput;
|
|
163
|
+
export declare type ServiceInputTypes = AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateVocabularyCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeleteQuickConnectCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeSecurityProfileCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeVocabularyCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetMetricDataCommandInput | GetTaskTemplateCommandInput | ListAgentStatusesCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUsersCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchQueuesCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | StartChatContactCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SuspendContactRecordingCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactScheduleCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdatePhoneNumberCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput;
|
|
164
|
+
export declare type ServiceOutputTypes = AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateVocabularyCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeleteQuickConnectCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeSecurityProfileCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeVocabularyCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetMetricDataCommandOutput | GetTaskTemplateCommandOutput | ListAgentStatusesCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUsersCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchQueuesCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | StartChatContactCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SuspendContactRecordingCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactScheduleCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput;
|
|
163
165
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
164
166
|
|
|
165
167
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import { SearchQueuesRequest, SearchQueuesResponse } from "../models/models_1";
|
|
5
|
+
export interface SearchQueuesCommandInput extends SearchQueuesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface SearchQueuesCommandOutput extends SearchQueuesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class SearchQueuesCommand extends $Command<SearchQueuesCommandInput, SearchQueuesCommandOutput, ConnectClientResolvedConfig> {
|
|
11
|
+
readonly input: SearchQueuesCommandInput;
|
|
12
|
+
constructor(input: SearchQueuesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchQueuesCommandInput, SearchQueuesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import { SearchRoutingProfilesRequest, SearchRoutingProfilesResponse } from "../models/models_1";
|
|
5
|
+
export interface SearchRoutingProfilesCommandInput extends SearchRoutingProfilesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface SearchRoutingProfilesCommandOutput extends SearchRoutingProfilesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class SearchRoutingProfilesCommand extends $Command<SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput, ConnectClientResolvedConfig> {
|
|
11
|
+
readonly input: SearchRoutingProfilesCommandInput;
|
|
12
|
+
constructor(input: SearchRoutingProfilesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchRoutingProfilesCommandInput, SearchRoutingProfilesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -102,6 +102,8 @@ export * from "./PutUserStatusCommand";
|
|
|
102
102
|
export * from "./ReleasePhoneNumberCommand";
|
|
103
103
|
export * from "./ResumeContactRecordingCommand";
|
|
104
104
|
export * from "./SearchAvailablePhoneNumbersCommand";
|
|
105
|
+
export * from "./SearchQueuesCommand";
|
|
106
|
+
export * from "./SearchRoutingProfilesCommand";
|
|
105
107
|
export * from "./SearchSecurityProfilesCommand";
|
|
106
108
|
export * from "./SearchUsersCommand";
|
|
107
109
|
export * from "./SearchVocabulariesCommand";
|
|
@@ -1697,6 +1697,10 @@ export interface RoutingProfile {
|
|
|
1697
1697
|
DefaultOutboundQueueId?: string;
|
|
1698
1698
|
|
|
1699
1699
|
Tags?: Record<string, string>;
|
|
1700
|
+
|
|
1701
|
+
NumberOfAssociatedQueues?: number;
|
|
1702
|
+
|
|
1703
|
+
NumberOfAssociatedUsers?: number;
|
|
1700
1704
|
}
|
|
1701
1705
|
export interface DescribeRoutingProfileResponse {
|
|
1702
1706
|
|