aws-sdk 2.1394.0 → 2.1395.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 +4 -1
- package/README.md +1 -1
- package/apis/connect-2017-08-08.min.json +263 -62
- package/apis/connect-2017-08-08.paginators.json +27 -0
- package/clients/acmpca.d.ts +2 -2
- package/clients/connect.d.ts +197 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +293 -65
- package/dist/aws-sdk.min.js +79 -79
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/connect.d.ts
CHANGED
@@ -1067,6 +1067,22 @@ declare class Connect extends Service {
|
|
1067
1067
|
* Searches for available phone numbers that you can claim to your Amazon Connect instance or traffic distribution group. If the provided TargetArn is a traffic distribution group, you can call this API in both Amazon Web Services Regions associated with the traffic distribution group.
|
1068
1068
|
*/
|
1069
1069
|
searchAvailablePhoneNumbers(callback?: (err: AWSError, data: Connect.Types.SearchAvailablePhoneNumbersResponse) => void): Request<Connect.Types.SearchAvailablePhoneNumbersResponse, AWSError>;
|
1070
|
+
/**
|
1071
|
+
* Searches the hours of operation in an Amazon Connect instance, with optional filtering.
|
1072
|
+
*/
|
1073
|
+
searchHoursOfOperations(params: Connect.Types.SearchHoursOfOperationsRequest, callback?: (err: AWSError, data: Connect.Types.SearchHoursOfOperationsResponse) => void): Request<Connect.Types.SearchHoursOfOperationsResponse, AWSError>;
|
1074
|
+
/**
|
1075
|
+
* Searches the hours of operation in an Amazon Connect instance, with optional filtering.
|
1076
|
+
*/
|
1077
|
+
searchHoursOfOperations(callback?: (err: AWSError, data: Connect.Types.SearchHoursOfOperationsResponse) => void): Request<Connect.Types.SearchHoursOfOperationsResponse, AWSError>;
|
1078
|
+
/**
|
1079
|
+
* Searches prompts in an Amazon Connect instance, with optional filtering.
|
1080
|
+
*/
|
1081
|
+
searchPrompts(params: Connect.Types.SearchPromptsRequest, callback?: (err: AWSError, data: Connect.Types.SearchPromptsResponse) => void): Request<Connect.Types.SearchPromptsResponse, AWSError>;
|
1082
|
+
/**
|
1083
|
+
* Searches prompts in an Amazon Connect instance, with optional filtering.
|
1084
|
+
*/
|
1085
|
+
searchPrompts(callback?: (err: AWSError, data: Connect.Types.SearchPromptsResponse) => void): Request<Connect.Types.SearchPromptsResponse, AWSError>;
|
1070
1086
|
/**
|
1071
1087
|
* This API is in preview release for Amazon Connect and is subject to change. Searches queues in an Amazon Connect instance, with optional filtering.
|
1072
1088
|
*/
|
@@ -1075,6 +1091,14 @@ declare class Connect extends Service {
|
|
1075
1091
|
* This API is in preview release for Amazon Connect and is subject to change. Searches queues in an Amazon Connect instance, with optional filtering.
|
1076
1092
|
*/
|
1077
1093
|
searchQueues(callback?: (err: AWSError, data: Connect.Types.SearchQueuesResponse) => void): Request<Connect.Types.SearchQueuesResponse, AWSError>;
|
1094
|
+
/**
|
1095
|
+
* Searches quick connects in an Amazon Connect instance, with optional filtering.
|
1096
|
+
*/
|
1097
|
+
searchQuickConnects(params: Connect.Types.SearchQuickConnectsRequest, callback?: (err: AWSError, data: Connect.Types.SearchQuickConnectsResponse) => void): Request<Connect.Types.SearchQuickConnectsResponse, AWSError>;
|
1098
|
+
/**
|
1099
|
+
* Searches quick connects in an Amazon Connect instance, with optional filtering.
|
1100
|
+
*/
|
1101
|
+
searchQuickConnects(callback?: (err: AWSError, data: Connect.Types.SearchQuickConnectsResponse) => void): Request<Connect.Types.SearchQuickConnectsResponse, AWSError>;
|
1078
1102
|
/**
|
1079
1103
|
* This API is in preview release for Amazon Connect and is subject to change. Searches routing profiles in an Amazon Connect instance, with optional filtering.
|
1080
1104
|
*/
|
@@ -4931,7 +4955,26 @@ declare namespace Connect {
|
|
4931
4955
|
export type HoursOfOperationDays = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|string;
|
4932
4956
|
export type HoursOfOperationDescription = string;
|
4933
4957
|
export type HoursOfOperationId = string;
|
4958
|
+
export type HoursOfOperationList = HoursOfOperation[];
|
4934
4959
|
export type HoursOfOperationName = string;
|
4960
|
+
export type HoursOfOperationSearchConditionList = HoursOfOperationSearchCriteria[];
|
4961
|
+
export interface HoursOfOperationSearchCriteria {
|
4962
|
+
/**
|
4963
|
+
* A list of conditions which would be applied together with an OR condition.
|
4964
|
+
*/
|
4965
|
+
OrConditions?: HoursOfOperationSearchConditionList;
|
4966
|
+
/**
|
4967
|
+
* A list of conditions which would be applied together with an AND condition.
|
4968
|
+
*/
|
4969
|
+
AndConditions?: HoursOfOperationSearchConditionList;
|
4970
|
+
/**
|
4971
|
+
* A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, timezone, and resourceID.
|
4972
|
+
*/
|
4973
|
+
StringCondition?: StringCondition;
|
4974
|
+
}
|
4975
|
+
export interface HoursOfOperationSearchFilter {
|
4976
|
+
TagFilter?: ControlPlaneTagFilter;
|
4977
|
+
}
|
4935
4978
|
export interface HoursOfOperationSummary {
|
4936
4979
|
/**
|
4937
4980
|
* The identifier of the hours of operation.
|
@@ -6423,7 +6466,7 @@ declare namespace Connect {
|
|
6423
6466
|
*/
|
6424
6467
|
Name?: CommonNameLength127;
|
6425
6468
|
/**
|
6426
|
-
*
|
6469
|
+
* The description of the prompt.
|
6427
6470
|
*/
|
6428
6471
|
Description?: PromptDescription;
|
6429
6472
|
/**
|
@@ -6433,8 +6476,27 @@ declare namespace Connect {
|
|
6433
6476
|
}
|
6434
6477
|
export type PromptDescription = string;
|
6435
6478
|
export type PromptId = string;
|
6479
|
+
export type PromptList = Prompt[];
|
6436
6480
|
export type PromptName = string;
|
6437
6481
|
export type PromptPresignedUrl = string;
|
6482
|
+
export type PromptSearchConditionList = PromptSearchCriteria[];
|
6483
|
+
export interface PromptSearchCriteria {
|
6484
|
+
/**
|
6485
|
+
* A list of conditions which would be applied together with an OR condition.
|
6486
|
+
*/
|
6487
|
+
OrConditions?: PromptSearchConditionList;
|
6488
|
+
/**
|
6489
|
+
* A list of conditions which would be applied together with an AND condition.
|
6490
|
+
*/
|
6491
|
+
AndConditions?: PromptSearchConditionList;
|
6492
|
+
/**
|
6493
|
+
* A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, and resourceID.
|
6494
|
+
*/
|
6495
|
+
StringCondition?: StringCondition;
|
6496
|
+
}
|
6497
|
+
export interface PromptSearchFilter {
|
6498
|
+
TagFilter?: ControlPlaneTagFilter;
|
6499
|
+
}
|
6438
6500
|
export interface PromptSummary {
|
6439
6501
|
/**
|
6440
6502
|
* The identifier of the prompt.
|
@@ -6548,6 +6610,9 @@ declare namespace Connect {
|
|
6548
6610
|
* A list of conditions which would be applied together with an AND condition.
|
6549
6611
|
*/
|
6550
6612
|
AndConditions?: QueueSearchConditionList;
|
6613
|
+
/**
|
6614
|
+
* A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, and resourceID.
|
6615
|
+
*/
|
6551
6616
|
StringCondition?: StringCondition;
|
6552
6617
|
/**
|
6553
6618
|
* The type of queue.
|
@@ -6628,6 +6693,25 @@ declare namespace Connect {
|
|
6628
6693
|
export type QuickConnectDescription = string;
|
6629
6694
|
export type QuickConnectId = string;
|
6630
6695
|
export type QuickConnectName = string;
|
6696
|
+
export type QuickConnectSearchConditionList = QuickConnectSearchCriteria[];
|
6697
|
+
export interface QuickConnectSearchCriteria {
|
6698
|
+
/**
|
6699
|
+
* A list of conditions which would be applied together with an OR condition.
|
6700
|
+
*/
|
6701
|
+
OrConditions?: QuickConnectSearchConditionList;
|
6702
|
+
/**
|
6703
|
+
* A list of conditions which would be applied together with an AND condition.
|
6704
|
+
*/
|
6705
|
+
AndConditions?: QuickConnectSearchConditionList;
|
6706
|
+
/**
|
6707
|
+
* A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, and resourceID.
|
6708
|
+
*/
|
6709
|
+
StringCondition?: StringCondition;
|
6710
|
+
}
|
6711
|
+
export interface QuickConnectSearchFilter {
|
6712
|
+
TagFilter?: ControlPlaneTagFilter;
|
6713
|
+
}
|
6714
|
+
export type QuickConnectSearchSummaryList = QuickConnect[];
|
6631
6715
|
export interface QuickConnectSummary {
|
6632
6716
|
/**
|
6633
6717
|
* The identifier for the quick connect.
|
@@ -6883,6 +6967,9 @@ declare namespace Connect {
|
|
6883
6967
|
* A list of conditions which would be applied together with an AND condition.
|
6884
6968
|
*/
|
6885
6969
|
AndConditions?: RoutingProfileSearchConditionList;
|
6970
|
+
/**
|
6971
|
+
* A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, and resourceID.
|
6972
|
+
*/
|
6886
6973
|
StringCondition?: StringCondition;
|
6887
6974
|
}
|
6888
6975
|
export interface RoutingProfileSearchFilter {
|
@@ -7073,6 +7160,78 @@ declare namespace Connect {
|
|
7073
7160
|
*/
|
7074
7161
|
AvailableNumbersList?: AvailableNumbersList;
|
7075
7162
|
}
|
7163
|
+
export interface SearchHoursOfOperationsRequest {
|
7164
|
+
/**
|
7165
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
7166
|
+
*/
|
7167
|
+
InstanceId: InstanceId;
|
7168
|
+
/**
|
7169
|
+
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
|
7170
|
+
*/
|
7171
|
+
NextToken?: NextToken2500;
|
7172
|
+
/**
|
7173
|
+
* The maximum number of results to return per page.
|
7174
|
+
*/
|
7175
|
+
MaxResults?: MaxResult100;
|
7176
|
+
/**
|
7177
|
+
* Filters to be applied to search results.
|
7178
|
+
*/
|
7179
|
+
SearchFilter?: HoursOfOperationSearchFilter;
|
7180
|
+
/**
|
7181
|
+
* The search criteria to be used to return hours of operations.
|
7182
|
+
*/
|
7183
|
+
SearchCriteria?: HoursOfOperationSearchCriteria;
|
7184
|
+
}
|
7185
|
+
export interface SearchHoursOfOperationsResponse {
|
7186
|
+
/**
|
7187
|
+
* Information about the hours of operations.
|
7188
|
+
*/
|
7189
|
+
HoursOfOperations?: HoursOfOperationList;
|
7190
|
+
/**
|
7191
|
+
* If there are additional results, this is the token for the next set of results.
|
7192
|
+
*/
|
7193
|
+
NextToken?: NextToken2500;
|
7194
|
+
/**
|
7195
|
+
* The total number of hours of operations which matched your search query.
|
7196
|
+
*/
|
7197
|
+
ApproximateTotalCount?: ApproximateTotalCount;
|
7198
|
+
}
|
7199
|
+
export interface SearchPromptsRequest {
|
7200
|
+
/**
|
7201
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
7202
|
+
*/
|
7203
|
+
InstanceId: InstanceId;
|
7204
|
+
/**
|
7205
|
+
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
|
7206
|
+
*/
|
7207
|
+
NextToken?: NextToken2500;
|
7208
|
+
/**
|
7209
|
+
* The maximum number of results to return per page.
|
7210
|
+
*/
|
7211
|
+
MaxResults?: MaxResult100;
|
7212
|
+
/**
|
7213
|
+
* Filters to be applied to search results.
|
7214
|
+
*/
|
7215
|
+
SearchFilter?: PromptSearchFilter;
|
7216
|
+
/**
|
7217
|
+
* The search criteria to be used to return prompts.
|
7218
|
+
*/
|
7219
|
+
SearchCriteria?: PromptSearchCriteria;
|
7220
|
+
}
|
7221
|
+
export interface SearchPromptsResponse {
|
7222
|
+
/**
|
7223
|
+
* Information about the prompts.
|
7224
|
+
*/
|
7225
|
+
Prompts?: PromptList;
|
7226
|
+
/**
|
7227
|
+
* If there are additional results, this is the token for the next set of results.
|
7228
|
+
*/
|
7229
|
+
NextToken?: NextToken2500;
|
7230
|
+
/**
|
7231
|
+
* The total number of quick connects which matched your search query.
|
7232
|
+
*/
|
7233
|
+
ApproximateTotalCount?: ApproximateTotalCount;
|
7234
|
+
}
|
7076
7235
|
export interface SearchQueuesRequest {
|
7077
7236
|
/**
|
7078
7237
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -7109,6 +7268,42 @@ declare namespace Connect {
|
|
7109
7268
|
*/
|
7110
7269
|
ApproximateTotalCount?: ApproximateTotalCount;
|
7111
7270
|
}
|
7271
|
+
export interface SearchQuickConnectsRequest {
|
7272
|
+
/**
|
7273
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
7274
|
+
*/
|
7275
|
+
InstanceId: InstanceId;
|
7276
|
+
/**
|
7277
|
+
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
|
7278
|
+
*/
|
7279
|
+
NextToken?: NextToken2500;
|
7280
|
+
/**
|
7281
|
+
* The maximum number of results to return per page.
|
7282
|
+
*/
|
7283
|
+
MaxResults?: MaxResult100;
|
7284
|
+
/**
|
7285
|
+
* Filters to be applied to search results.
|
7286
|
+
*/
|
7287
|
+
SearchFilter?: QuickConnectSearchFilter;
|
7288
|
+
/**
|
7289
|
+
* The search criteria to be used to return quick connects.
|
7290
|
+
*/
|
7291
|
+
SearchCriteria?: QuickConnectSearchCriteria;
|
7292
|
+
}
|
7293
|
+
export interface SearchQuickConnectsResponse {
|
7294
|
+
/**
|
7295
|
+
* Information about the quick connects.
|
7296
|
+
*/
|
7297
|
+
QuickConnects?: QuickConnectSearchSummaryList;
|
7298
|
+
/**
|
7299
|
+
* If there are additional results, this is the token for the next set of results.
|
7300
|
+
*/
|
7301
|
+
NextToken?: NextToken2500;
|
7302
|
+
/**
|
7303
|
+
* The total number of quick connects which matched your search query.
|
7304
|
+
*/
|
7305
|
+
ApproximateTotalCount?: ApproximateTotalCount;
|
7306
|
+
}
|
7112
7307
|
export interface SearchRoutingProfilesRequest {
|
7113
7308
|
/**
|
7114
7309
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -9075,7 +9270,7 @@ declare namespace Connect {
|
|
9075
9270
|
*/
|
9076
9271
|
AndConditions?: UserSearchConditionList;
|
9077
9272
|
/**
|
9078
|
-
* A leaf node condition which can be used to specify a string condition.
|
9273
|
+
* A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, and resourceID.
|
9079
9274
|
*/
|
9080
9275
|
StringCondition?: StringCondition;
|
9081
9276
|
/**
|