@aws-sdk/client-connect 3.1110.0 → 3.1112.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.
Files changed (86) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +206 -9
  3. package/dist-es/Connect.js +12 -0
  4. package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
  5. package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
  6. package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
  7. package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
  8. package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +7 -0
  11. package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +146 -8
  14. package/dist-types/Connect.d.ts +42 -0
  15. package/dist-types/ConnectClient.d.ts +7 -2
  16. package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
  17. package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
  18. package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
  22. package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
  23. package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
  24. package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  25. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
  26. package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
  27. package/dist-types/commands/ListRulesCommand.d.ts +3 -3
  28. package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  29. package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  30. package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
  31. package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
  32. package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
  33. package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
  34. package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
  35. package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  39. package/dist-types/commands/index.d.ts +5 -0
  40. package/dist-types/models/enums.d.ts +15 -0
  41. package/dist-types/models/models_0.d.ts +128 -188
  42. package/dist-types/models/models_1.d.ts +285 -492
  43. package/dist-types/models/models_2.d.ts +1736 -1606
  44. package/dist-types/models/models_3.d.ts +2192 -2081
  45. package/dist-types/models/models_4.d.ts +367 -7
  46. package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +1 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +40 -40
  49. package/dist-types/runtimeConfig.d.ts +36 -36
  50. package/dist-types/runtimeConfig.native.d.ts +38 -38
  51. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  52. package/dist-types/schemas/schemas_0.d.ts +22 -0
  53. package/dist-types/ts3.4/Connect.d.ts +92 -0
  54. package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
  55. package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
  63. package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
  64. package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
  65. package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
  66. package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
  67. package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
  68. package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
  69. package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
  70. package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  73. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  74. package/dist-types/ts3.4/models/models_0.d.ts +31 -46
  75. package/dist-types/ts3.4/models/models_1.d.ts +72 -72
  76. package/dist-types/ts3.4/models/models_2.d.ts +89 -102
  77. package/dist-types/ts3.4/models/models_3.d.ts +112 -104
  78. package/dist-types/ts3.4/models/models_4.d.ts +109 -14
  79. package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  81. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
  82. package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
  83. package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
  84. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  85. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  86. package/package.json +5 -5
@@ -1,8 +1,369 @@
1
- import type { AnsweringMachineDetectionStatus, Channel, ContactInitiationMethod, DisconnectOnCustomerExitParticipantType, EvaluationFormQuestionType, EvaluationFormValidationStatus, EvaluationFormVersionStatus, InitiateAs, RoutingCriteriaStepStatus, SearchableQueueType, TestCaseStatus, ViewStatus, ViewType } from "./enums";
2
- import type { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, AllowedCapabilities, Campaign, Endpoint, EvaluationFormAutoEvaluationConfiguration, EvaluationFormLanguageConfiguration, EvaluationFormQuestionScoringConfiguration, EvaluationFormQuestionTypeProperties, EvaluationFormScoreThreshold, EvaluationFormScoringStrategy, EvaluationFormTargetConfiguration, EvaluationReviewConfiguration, OutboundStrategy, Reference, StringCondition, UserInfo } from "./models_0";
3
- import type { AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, Expiry, GlobalResiliencyMetadata, NextContactEntry, QualityMetrics, QueueInfo, RecordingInfo, TaskTemplateInfoV2, WisdomInfo } from "./models_1";
4
- import type { BooleanCondition, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, DateTimeCondition, DecimalCondition, EvaluationSearchFilter, NumberCondition } from "./models_2";
5
- import type { AgentStatusSearchCriteria, ChatMessage, ContactFlowModuleSearchCriteria, ContactFlowSearchCriteria, ContactSearchSummaryAgentInfo, ContactSearchSummaryAiAgentInfo, ContactSearchSummaryQueueInfo, DataTableSearchCriteria, DataTableSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchCriteria, EmailAddressSearchFilter, EmailAttachment, EvaluationFormItemEnablementConfiguration, EvaluationFormSearchFilter, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, MetricSearchFilter, NotificationSearchFilter, ParticipantConfiguration, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, RulesSearchFilter, SecurityProfilesSearchFilter, TaskAttachment, TemplatedMessageConfig, TestCaseSearchFilter, UserHierarchyGroupSearchFilter, UserSearchFilter, ViewSearchFilter, WorkspaceAssociationSearchFilter, WorkspaceSearchFilter } from "./models_3";
1
+ import type { AnsweringMachineDetectionStatus, Channel, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, DisconnectOnCustomerExitParticipantType, EvaluationFormItemEnablementAction, EvaluationFormItemEnablementOperator, EvaluationFormQuestionType, EvaluationFormValidationStatus, EvaluationFormVersionStatus, InitiateAs, RoutingCriteriaStepStatus, SearchableQueueType, TestCaseStatus, ViewStatus, ViewType, Visibility } from "./enums";
2
+ import type { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, AllowedCapabilities, Campaign, Endpoint, EvaluationFormAutoEvaluationConfiguration, EvaluationFormItemEnablementExpression, EvaluationFormLanguageConfiguration, EvaluationFormQuestionScoringConfiguration, EvaluationFormQuestionTypeProperties, EvaluationFormScoreThreshold, EvaluationFormScoringStrategy, EvaluationFormTargetConfiguration, EvaluationReviewConfiguration, OutboundStrategy, Reference, StringCondition, UserInfo } from "./models_0";
3
+ import type { AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, Expiry, GlobalResiliencyMetadata, NextContactEntry, QualityMetrics, QueueInfo, RecordingInfo, TaskTemplateInfoV2, WisdomInfo, WorkspaceTheme } from "./models_1";
4
+ import type { BooleanCondition, DateTimeCondition, DecimalCondition, NumberCondition } from "./models_2";
5
+ import type { ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, ContactSearchSummaryAgentInfo, ContactSearchSummaryAiAgentInfo, ContactSearchSummaryQueueInfo, DataTableSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, EvaluationFormSearchFilter, EvaluationSearchFilter, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, MetricSearchFilter, NotificationSearchFilter, ParticipantConfiguration, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, RulesSearchFilter, SecurityProfilesSearchFilter, TaskAttachment, TemplatedMessageConfig, TestCaseSearchFilter, UserHierarchyGroupSearchFilter, UserSearchFilter, ViewSearchFilter, WorkspaceAssociationSearchFilter, WorkspaceSearchFilter } from "./models_3";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface UpdateViewMetadataResponse {
10
+ }
11
+ /**
12
+ * @public
13
+ */
14
+ export interface UpdateWorkspaceMetadataRequest {
15
+ /**
16
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
17
+ * the Amazon Resource Name (ARN) of the instance.</p>
18
+ * @public
19
+ */
20
+ InstanceId: string | undefined;
21
+ /**
22
+ * <p>The identifier of the workspace.</p>
23
+ * @public
24
+ */
25
+ WorkspaceId: string | undefined;
26
+ /**
27
+ * <p>The name of the workspace.</p>
28
+ * @public
29
+ */
30
+ Name?: string | undefined;
31
+ /**
32
+ * <p>The description of the workspace.</p>
33
+ * @public
34
+ */
35
+ Description?: string | undefined;
36
+ /**
37
+ * <p>The title displayed for the workspace.</p>
38
+ * @public
39
+ */
40
+ Title?: string | undefined;
41
+ }
42
+ /**
43
+ * @public
44
+ */
45
+ export interface UpdateWorkspaceMetadataResponse {
46
+ }
47
+ /**
48
+ * @public
49
+ */
50
+ export interface UpdateWorkspacePageRequest {
51
+ /**
52
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
53
+ * the Amazon Resource Name (ARN) of the instance.</p>
54
+ * @public
55
+ */
56
+ InstanceId: string | undefined;
57
+ /**
58
+ * <p>The identifier of the workspace.</p>
59
+ * @public
60
+ */
61
+ WorkspaceId: string | undefined;
62
+ /**
63
+ * <p>The current page identifier.</p>
64
+ * @public
65
+ */
66
+ Page: string | undefined;
67
+ /**
68
+ * <p>The new page identifier, if changing the page name.</p>
69
+ * @public
70
+ */
71
+ NewPage?: string | undefined;
72
+ /**
73
+ * <p>The Amazon Resource Name (ARN) of the view to associate with the page.</p>
74
+ * @public
75
+ */
76
+ ResourceArn?: string | undefined;
77
+ /**
78
+ * <p>The URL-friendly identifier for the page.</p>
79
+ * @public
80
+ */
81
+ Slug?: string | undefined;
82
+ /**
83
+ * <p>A JSON string containing input parameters for the view.</p>
84
+ * @public
85
+ */
86
+ InputData?: string | undefined;
87
+ }
88
+ /**
89
+ * @public
90
+ */
91
+ export interface UpdateWorkspacePageResponse {
92
+ }
93
+ /**
94
+ * @public
95
+ */
96
+ export interface UpdateWorkspaceThemeRequest {
97
+ /**
98
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
99
+ * the Amazon Resource Name (ARN) of the instance.</p>
100
+ * @public
101
+ */
102
+ InstanceId: string | undefined;
103
+ /**
104
+ * <p>The identifier of the workspace.</p>
105
+ * @public
106
+ */
107
+ WorkspaceId: string | undefined;
108
+ /**
109
+ * <p>The theme configuration, including color schemes and visual styles.</p>
110
+ * @public
111
+ */
112
+ Theme?: WorkspaceTheme | undefined;
113
+ }
114
+ /**
115
+ * @public
116
+ */
117
+ export interface UpdateWorkspaceThemeResponse {
118
+ }
119
+ /**
120
+ * @public
121
+ */
122
+ export interface UpdateWorkspaceVisibilityRequest {
123
+ /**
124
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
125
+ * the Amazon Resource Name (ARN) of the instance.</p>
126
+ * @public
127
+ */
128
+ InstanceId: string | undefined;
129
+ /**
130
+ * <p>The identifier of the workspace.</p>
131
+ * @public
132
+ */
133
+ WorkspaceId: string | undefined;
134
+ /**
135
+ * <p>The visibility setting for the workspace. Valid values are: <code>ALL</code> (available to all users),
136
+ * <code>ASSIGNED</code> (available only to assigned users and routing profiles), and <code>NONE</code> (not visible to
137
+ * any users).</p>
138
+ * @public
139
+ */
140
+ Visibility: Visibility | undefined;
141
+ }
142
+ /**
143
+ * @public
144
+ */
145
+ export interface UpdateWorkspaceVisibilityResponse {
146
+ }
147
+ /**
148
+ * <p>A condition for item enablement.</p>
149
+ * @public
150
+ */
151
+ export interface EvaluationFormItemEnablementCondition {
152
+ /**
153
+ * <p>Operands of the enablement condition.</p>
154
+ * @public
155
+ */
156
+ Operands: EvaluationFormItemEnablementConditionOperand[] | undefined;
157
+ /**
158
+ * <p>The operator to be used to be applied to operands if more than one provided. </p>
159
+ * @public
160
+ */
161
+ Operator?: EvaluationFormItemEnablementOperator | undefined;
162
+ }
163
+ /**
164
+ * <p>An operand of the enablement condition.</p>
165
+ * @public
166
+ */
167
+ export type EvaluationFormItemEnablementConditionOperand = EvaluationFormItemEnablementConditionOperand.ConditionMember | EvaluationFormItemEnablementConditionOperand.ExpressionMember | EvaluationFormItemEnablementConditionOperand.$UnknownMember;
168
+ /**
169
+ * @public
170
+ */
171
+ export declare namespace EvaluationFormItemEnablementConditionOperand {
172
+ /**
173
+ * <p>An expression of the enablement condition.</p>
174
+ * @public
175
+ */
176
+ interface ExpressionMember {
177
+ Expression: EvaluationFormItemEnablementExpression;
178
+ Condition?: never;
179
+ $unknown?: never;
180
+ }
181
+ /**
182
+ * <p>A condition for item enablement.</p>
183
+ * @public
184
+ */
185
+ interface ConditionMember {
186
+ Expression?: never;
187
+ Condition: EvaluationFormItemEnablementCondition;
188
+ $unknown?: never;
189
+ }
190
+ /**
191
+ * @public
192
+ */
193
+ interface $UnknownMember {
194
+ Expression?: never;
195
+ Condition?: never;
196
+ $unknown: [string, any];
197
+ }
198
+ /**
199
+ * @deprecated unused in schema-serde mode.
200
+ *
201
+ */
202
+ interface Visitor<T> {
203
+ Expression: (value: EvaluationFormItemEnablementExpression) => T;
204
+ Condition: (value: EvaluationFormItemEnablementCondition) => T;
205
+ _: (name: string, value: any) => T;
206
+ }
207
+ }
208
+ /**
209
+ * <p>The search criteria to be used to return agent statuses.</p>
210
+ * @public
211
+ */
212
+ export interface AgentStatusSearchCriteria {
213
+ /**
214
+ * <p>A list of conditions which would be applied together with an <code>OR</code> condition.</p>
215
+ * @public
216
+ */
217
+ OrConditions?: AgentStatusSearchCriteria[] | undefined;
218
+ /**
219
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
220
+ * <note>
221
+ * <p>The currently supported values for <code>FieldName</code> are <code>name</code>, <code>description</code>,
222
+ * <code>state</code>, <code>type</code>, <code>displayOrder</code>, and <code>resourceID</code>.</p>
223
+ * </note>
224
+ * @public
225
+ */
226
+ AndConditions?: AgentStatusSearchCriteria[] | undefined;
227
+ /**
228
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
229
+ * <note>
230
+ * <p>The currently supported values for <code>FieldName</code> are <code>name</code>, <code>description</code>,
231
+ * <code>state</code>, <code>type</code>, <code>displayOrder</code>, and <code>resourceID</code>.</p>
232
+ * </note>
233
+ * @public
234
+ */
235
+ StringCondition?: StringCondition | undefined;
236
+ }
237
+ /**
238
+ * <p>The search criteria to be used to return flow modules.</p>
239
+ * @public
240
+ */
241
+ export interface ContactFlowModuleSearchCriteria {
242
+ /**
243
+ * <p>A list of conditions which would be applied together with an <code>OR</code> condition.</p>
244
+ * @public
245
+ */
246
+ OrConditions?: ContactFlowModuleSearchCriteria[] | undefined;
247
+ /**
248
+ * <p>A list of conditions which would be applied together with an <code>AND</code> condition.</p>
249
+ * @public
250
+ */
251
+ AndConditions?: ContactFlowModuleSearchCriteria[] | undefined;
252
+ /**
253
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
254
+ * @public
255
+ */
256
+ StringCondition?: StringCondition | undefined;
257
+ /**
258
+ * <p>The state of the flow.</p>
259
+ * @public
260
+ */
261
+ StateCondition?: ContactFlowModuleState | undefined;
262
+ /**
263
+ * <p>The status of the flow.</p>
264
+ * @public
265
+ */
266
+ StatusCondition?: ContactFlowModuleStatus | undefined;
267
+ }
268
+ /**
269
+ * <p>The search criteria to be used to return flows.</p>
270
+ * @public
271
+ */
272
+ export interface ContactFlowSearchCriteria {
273
+ /**
274
+ * <p>A list of conditions which would be applied together with an <code>OR</code> condition.</p>
275
+ * @public
276
+ */
277
+ OrConditions?: ContactFlowSearchCriteria[] | undefined;
278
+ /**
279
+ * <p>A list of conditions which would be applied together with an <code>AND</code> condition.</p>
280
+ * @public
281
+ */
282
+ AndConditions?: ContactFlowSearchCriteria[] | undefined;
283
+ /**
284
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
285
+ * @public
286
+ */
287
+ StringCondition?: StringCondition | undefined;
288
+ /**
289
+ * <p>The type of flow.</p>
290
+ * @public
291
+ */
292
+ TypeCondition?: ContactFlowType | undefined;
293
+ /**
294
+ * <p>The state of the flow.</p>
295
+ * @public
296
+ */
297
+ StateCondition?: ContactFlowState | undefined;
298
+ /**
299
+ * <p>The status of the flow.</p>
300
+ * @public
301
+ */
302
+ StatusCondition?: ContactFlowStatus | undefined;
303
+ }
304
+ /**
305
+ * <p>A data table search criteria.</p>
306
+ * @public
307
+ */
308
+ export interface DataTableSearchCriteria {
309
+ /**
310
+ * <p>The criteria's or conditions.</p>
311
+ * @public
312
+ */
313
+ OrConditions?: DataTableSearchCriteria[] | undefined;
314
+ /**
315
+ * <p>The criteria's and conditions.</p>
316
+ * @public
317
+ */
318
+ AndConditions?: DataTableSearchCriteria[] | undefined;
319
+ /**
320
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
321
+ * @public
322
+ */
323
+ StringCondition?: StringCondition | undefined;
324
+ }
325
+ /**
326
+ * <p>The search criteria to be used to return email addresses.</p>
327
+ * @public
328
+ */
329
+ export interface EmailAddressSearchCriteria {
330
+ /**
331
+ * <p>A list of conditions which would be applied together with an OR condition.</p>
332
+ * @public
333
+ */
334
+ OrConditions?: EmailAddressSearchCriteria[] | undefined;
335
+ /**
336
+ * <p>A list of conditions which would be applied together with an AND condition.</p>
337
+ * @public
338
+ */
339
+ AndConditions?: EmailAddressSearchCriteria[] | undefined;
340
+ /**
341
+ * <p>A leaf node condition which can be used to specify a string condition.</p>
342
+ * @public
343
+ */
344
+ StringCondition?: StringCondition | undefined;
345
+ }
346
+ /**
347
+ * <p>An item enablement configuration.</p>
348
+ * @public
349
+ */
350
+ export interface EvaluationFormItemEnablementConfiguration {
351
+ /**
352
+ * <p>A condition for item enablement configuration.</p>
353
+ * @public
354
+ */
355
+ Condition: EvaluationFormItemEnablementCondition | undefined;
356
+ /**
357
+ * <p>An enablement action that if condition is satisfied. </p>
358
+ * @public
359
+ */
360
+ Action: EvaluationFormItemEnablementAction | undefined;
361
+ /**
362
+ * <p>An enablement action that if condition is not satisfied. </p>
363
+ * @public
364
+ */
365
+ DefaultAction?: EvaluationFormItemEnablementAction | undefined;
366
+ }
6
367
  /**
7
368
  * <p>The search criteria to be used to return evaluation forms.</p>
8
369
  * @public
@@ -2129,9 +2490,8 @@ export interface StartWebRTCContactRequest {
2129
2490
  */
2130
2491
  Description?: string | undefined;
2131
2492
  /**
2132
- * <p>Use this map to specify system-defined attributes for the WebRTC contact segment. Use the
2493
+ * <p>A map of system-defined attributes for the WebRTC contact segment. Use the
2133
2494
  * <code>connect:Subtype</code> attribute to specify the channel subtype, such as <code>connect:WebRTC</code>.</p>
2134
- * <p>Attribute keys can contain only alphanumeric characters, hyphens, and underscores.</p>
2135
2495
  * @public
2136
2496
  */
2137
2497
  SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListExtractionDefinitionsCommandInput, ListExtractionDefinitionsCommandOutput } from "../commands/ListExtractionDefinitionsCommand";
3
+ import type { ConnectPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListExtractionDefinitions: (config: ConnectPaginationConfiguration, input: ListExtractionDefinitionsCommandInput, ...rest: any[]) => Paginator<ListExtractionDefinitionsCommandOutput>;
@@ -25,6 +25,7 @@ export * from "./ListDefaultVocabulariesPaginator";
25
25
  export * from "./ListEntitySecurityProfilesPaginator";
26
26
  export * from "./ListEvaluationFormsPaginator";
27
27
  export * from "./ListEvaluationFormVersionsPaginator";
28
+ export * from "./ListExtractionDefinitionsPaginator";
28
29
  export * from "./ListFlowAssociationsPaginator";
29
30
  export * from "./ListHoursOfOperationOverridesPaginator";
30
31
  export * from "./ListHoursOfOperationsPaginator";
@@ -4,49 +4,14 @@ import type { ConnectClientConfig } from "./ConnectClient";
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
7
- runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
- defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
- maxAttempts: number | import("@smithy/types").Provider<number>;
13
- region: string | import("@smithy/types").Provider<any>;
14
- requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
- retryMode: string | import("@smithy/types").Provider<string>;
16
- streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
17
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
18
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
- cacheMiddleware?: boolean | undefined;
20
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
21
- protocolSettings: {
22
- defaultNamespace?: string;
23
- [setting: string]: unknown;
24
- };
25
- apiVersion: string;
26
- sha256: import("@smithy/types").HashConstructor;
27
- urlParser: import("@smithy/types").UrlParser;
28
- base64Decoder: import("@smithy/types").Decoder;
29
- base64Encoder: (_input: Uint8Array | string) => string;
30
- utf8Decoder: import("@smithy/types").Decoder;
31
- utf8Encoder: (input: Uint8Array | string) => string;
32
- disableHostPrefix: boolean;
33
- serviceId: string;
34
- profile?: string;
35
- logger: import("@smithy/types").Logger;
36
- extensions: import("./runtimeExtensions").RuntimeExtension[];
37
- customUserAgent?: string | import("@smithy/types").UserAgent;
38
- userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
39
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
40
- endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
41
- endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
42
- logger?: import("@smithy/types").Logger;
43
- }) => import("@smithy/types").EndpointV2;
7
+ cacheMiddleware?: boolean;
8
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
44
9
  tls?: boolean;
45
10
  ignoreConfiguredEndpointUrls?: boolean;
46
11
  serviceConfiguredEndpoint?: never;
47
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
48
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
12
+ customUserAgent?: string | import("@smithy/types").UserAgent;
13
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
14
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
50
15
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
16
  signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
17
  signingEscapePath?: boolean;
@@ -54,4 +19,39 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
54
19
  signingRegion?: string;
55
20
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
21
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
22
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
23
+ apiVersion: string;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
+ disableHostPrefix: boolean;
27
+ endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
28
+ logger?: import("@smithy/types").Logger;
29
+ }) => import("@smithy/types").EndpointV2;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
32
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
33
+ logger: import("@smithy/types").Logger;
34
+ protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
35
+ protocolSettings: {
36
+ [setting: string]: unknown;
37
+ defaultNamespace?: string;
38
+ };
39
+ serviceId: string;
40
+ sha256: import("@smithy/types").HashConstructor;
41
+ urlParser: import("@smithy/types").UrlParser;
42
+ utf8Decoder: import("@smithy/types").Decoder;
43
+ utf8Encoder: (input: Uint8Array | string) => string;
44
+ profile?: string;
45
+ runtime: string;
46
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
47
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
48
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
49
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
50
+ maxAttempts: number | import("@smithy/types").Provider<number>;
51
+ region: string | import("@smithy/types").Provider<any>;
52
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
53
+ retryMode: string | import("@smithy/types").Provider<string>;
54
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
55
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
56
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
57
57
  };
@@ -4,11 +4,46 @@ import type { ConnectClientConfig } from "./ConnectClient";
4
4
  * @internal
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
7
+ cacheMiddleware?: boolean;
8
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
9
+ tls?: boolean;
10
+ ignoreConfiguredEndpointUrls?: boolean;
11
+ serviceConfiguredEndpoint?: never;
12
+ customUserAgent?: string | import("@smithy/types").UserAgent;
13
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
14
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
15
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
16
+ signingEscapePath?: boolean;
17
+ systemClockOffset?: number;
18
+ signingRegion?: string;
19
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
20
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
21
+ apiVersion: string;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: Uint8Array | string) => string;
24
+ disableHostPrefix: boolean;
25
+ endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
26
+ logger?: import("@smithy/types").Logger;
27
+ }) => import("@smithy/types").EndpointV2;
28
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
29
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
30
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
31
+ logger: import("@smithy/types").Logger;
32
+ protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
33
+ protocolSettings: {
34
+ [setting: string]: unknown;
35
+ defaultNamespace?: string;
36
+ };
37
+ serviceId: string;
38
+ sha256: import("@smithy/types").HashConstructor;
39
+ urlParser: import("@smithy/types").UrlParser;
40
+ utf8Decoder: import("@smithy/types").Decoder;
41
+ utf8Encoder: (input: Uint8Array | string) => string;
7
42
  runtime: string;
8
43
  defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
44
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
45
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
46
+ credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
12
47
  defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
48
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
49
  region: string | import("@smithy/types").Provider<string>;
@@ -18,40 +53,5 @@ export declare const getRuntimeConfig: (config: ConnectClientConfig) => {
18
53
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
54
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
55
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
- cacheMiddleware?: boolean | undefined;
22
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
23
- protocolSettings: {
24
- defaultNamespace?: string;
25
- [setting: string]: unknown;
26
- };
27
- apiVersion: string;
28
- sha256: import("@smithy/types").HashConstructor;
29
- urlParser: import("@smithy/types").UrlParser;
30
- base64Decoder: import("@smithy/types").Decoder;
31
- base64Encoder: (_input: Uint8Array | string) => string;
32
- utf8Decoder: import("@smithy/types").Decoder;
33
- utf8Encoder: (input: Uint8Array | string) => string;
34
- disableHostPrefix: boolean;
35
- serviceId: string;
36
56
  profile?: string;
37
- logger: import("@smithy/types").Logger;
38
- extensions: import("./runtimeExtensions").RuntimeExtension[];
39
- customUserAgent?: string | import("@smithy/types").UserAgent;
40
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
41
- endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
42
- endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
43
- logger?: import("@smithy/types").Logger;
44
- }) => import("@smithy/types").EndpointV2;
45
- tls?: boolean;
46
- ignoreConfiguredEndpointUrls?: boolean;
47
- serviceConfiguredEndpoint?: never;
48
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ConnectHttpAuthSchemeProvider;
50
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
- signingEscapePath?: boolean;
53
- systemClockOffset?: number;
54
- signingRegion?: string;
55
- signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
- disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
57
57
  };