@aws-sdk/client-connect 3.1111.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.
- package/README.md +35 -0
- package/dist-cjs/index.js +206 -9
- package/dist-es/Connect.js +12 -0
- package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
- package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +146 -8
- package/dist-types/Connect.d.ts +42 -0
- package/dist-types/ConnectClient.d.ts +7 -2
- package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
- package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
- package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
- package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
- package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
- package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
- package/dist-types/commands/ListRulesCommand.d.ts +3 -3
- package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
- package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
- package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
- package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +128 -188
- package/dist-types/models/models_1.d.ts +285 -492
- package/dist-types/models/models_2.d.ts +1736 -1606
- package/dist-types/models/models_3.d.ts +2192 -2081
- package/dist-types/models/models_4.d.ts +367 -7
- package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/Connect.d.ts +92 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -46
- package/dist-types/ts3.4/models/models_1.d.ts +72 -72
- package/dist-types/ts3.4/models/models_2.d.ts +89 -102
- package/dist-types/ts3.4/models/models_3.d.ts +112 -104
- package/dist-types/ts3.4/models/models_4.d.ts +109 -14
- package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +1 -1
|
@@ -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,
|
|
5
|
-
import type {
|
|
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>
|
|
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";
|
|
@@ -229,6 +229,8 @@ export declare var CreateEmailAddressRequest$: StaticStructureSchema;
|
|
|
229
229
|
export declare var CreateEmailAddressResponse$: StaticStructureSchema;
|
|
230
230
|
export declare var CreateEvaluationFormRequest$: StaticStructureSchema;
|
|
231
231
|
export declare var CreateEvaluationFormResponse$: StaticStructureSchema;
|
|
232
|
+
export declare var CreateExtractionDefinitionRequest$: StaticStructureSchema;
|
|
233
|
+
export declare var CreateExtractionDefinitionResponse$: StaticStructureSchema;
|
|
232
234
|
export declare var CreateHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
233
235
|
export declare var CreateHoursOfOperationOverrideResponse$: StaticStructureSchema;
|
|
234
236
|
export declare var CreateHoursOfOperationRequest$: StaticStructureSchema;
|
|
@@ -333,6 +335,8 @@ export declare var DeleteDataTableResponse$: StaticStructureSchema;
|
|
|
333
335
|
export declare var DeleteEmailAddressRequest$: StaticStructureSchema;
|
|
334
336
|
export declare var DeleteEmailAddressResponse$: StaticStructureSchema;
|
|
335
337
|
export declare var DeleteEvaluationFormRequest$: StaticStructureSchema;
|
|
338
|
+
export declare var DeleteExtractionDefinitionRequest$: StaticStructureSchema;
|
|
339
|
+
export declare var DeleteExtractionDefinitionResponse$: StaticStructureSchema;
|
|
336
340
|
export declare var DeleteHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
337
341
|
export declare var DeleteHoursOfOperationRequest$: StaticStructureSchema;
|
|
338
342
|
export declare var DeleteInstanceRequest$: StaticStructureSchema;
|
|
@@ -397,6 +401,8 @@ export declare var DescribeEmailAddressRequest$: StaticStructureSchema;
|
|
|
397
401
|
export declare var DescribeEmailAddressResponse$: StaticStructureSchema;
|
|
398
402
|
export declare var DescribeEvaluationFormRequest$: StaticStructureSchema;
|
|
399
403
|
export declare var DescribeEvaluationFormResponse$: StaticStructureSchema;
|
|
404
|
+
export declare var DescribeExtractionDefinitionRequest$: StaticStructureSchema;
|
|
405
|
+
export declare var DescribeExtractionDefinitionResponse$: StaticStructureSchema;
|
|
400
406
|
export declare var DescribeHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
401
407
|
export declare var DescribeHoursOfOperationOverrideResponse$: StaticStructureSchema;
|
|
402
408
|
export declare var DescribeHoursOfOperationRequest$: StaticStructureSchema;
|
|
@@ -558,6 +564,12 @@ export declare var Expiry$: StaticStructureSchema;
|
|
|
558
564
|
export declare var Expression$: StaticStructureSchema;
|
|
559
565
|
export declare var ExtensionConfiguration$: StaticStructureSchema;
|
|
560
566
|
export declare var ExternalInvocationConfiguration$: StaticStructureSchema;
|
|
567
|
+
export declare var ExtractInformationActionDefinition$: StaticStructureSchema;
|
|
568
|
+
export declare var ExtractionConfiguration$: StaticStructureSchema;
|
|
569
|
+
export declare var ExtractionDefinition$: StaticStructureSchema;
|
|
570
|
+
export declare var ExtractionDefinitionDisplay$: StaticStructureSchema;
|
|
571
|
+
export declare var ExtractionDefinitionNotFoundBehavior$: StaticStructureSchema;
|
|
572
|
+
export declare var ExtractionDefinitionSummary$: StaticStructureSchema;
|
|
561
573
|
export declare var FailedBatchAssociationSummary$: StaticStructureSchema;
|
|
562
574
|
export declare var FailedRequest$: StaticStructureSchema;
|
|
563
575
|
export declare var FieldValue$: StaticStructureSchema;
|
|
@@ -697,6 +709,8 @@ export declare var ListEvaluationFormsRequest$: StaticStructureSchema;
|
|
|
697
709
|
export declare var ListEvaluationFormsResponse$: StaticStructureSchema;
|
|
698
710
|
export declare var ListEvaluationFormVersionsRequest$: StaticStructureSchema;
|
|
699
711
|
export declare var ListEvaluationFormVersionsResponse$: StaticStructureSchema;
|
|
712
|
+
export declare var ListExtractionDefinitionsRequest$: StaticStructureSchema;
|
|
713
|
+
export declare var ListExtractionDefinitionsResponse$: StaticStructureSchema;
|
|
700
714
|
export declare var ListFlowAssociationsRequest$: StaticStructureSchema;
|
|
701
715
|
export declare var ListFlowAssociationsResponse$: StaticStructureSchema;
|
|
702
716
|
export declare var ListHoursOfOperationOverridesRequest$: StaticStructureSchema;
|
|
@@ -945,6 +959,7 @@ export declare var RuleAttributeAndCondition$: StaticStructureSchema;
|
|
|
945
959
|
export declare var RuleAttributeFilter$: StaticStructureSchema;
|
|
946
960
|
export declare var RulesConfiguration$: StaticStructureSchema;
|
|
947
961
|
export declare var RuleSearchSummary$: StaticStructureSchema;
|
|
962
|
+
export declare var RulesExtractionDefinitionIdentifier$: StaticStructureSchema;
|
|
948
963
|
export declare var RulesSearchCriteria$: StaticStructureSchema;
|
|
949
964
|
export declare var RulesSearchFilter$: StaticStructureSchema;
|
|
950
965
|
export declare var RuleSummary$: StaticStructureSchema;
|
|
@@ -1170,6 +1185,8 @@ export declare var UpdateEmailAddressMetadataRequest$: StaticStructureSchema;
|
|
|
1170
1185
|
export declare var UpdateEmailAddressMetadataResponse$: StaticStructureSchema;
|
|
1171
1186
|
export declare var UpdateEvaluationFormRequest$: StaticStructureSchema;
|
|
1172
1187
|
export declare var UpdateEvaluationFormResponse$: StaticStructureSchema;
|
|
1188
|
+
export declare var UpdateExtractionDefinitionRequest$: StaticStructureSchema;
|
|
1189
|
+
export declare var UpdateExtractionDefinitionResponse$: StaticStructureSchema;
|
|
1173
1190
|
export declare var UpdateHoursOfOperationOverrideRequest$: StaticStructureSchema;
|
|
1174
1191
|
export declare var UpdateHoursOfOperationRequest$: StaticStructureSchema;
|
|
1175
1192
|
export declare var UpdateInstanceAttributeRequest$: StaticStructureSchema;
|
|
@@ -1352,6 +1369,7 @@ export declare var CreateDataTable$: StaticOperationSchema;
|
|
|
1352
1369
|
export declare var CreateDataTableAttribute$: StaticOperationSchema;
|
|
1353
1370
|
export declare var CreateEmailAddress$: StaticOperationSchema;
|
|
1354
1371
|
export declare var CreateEvaluationForm$: StaticOperationSchema;
|
|
1372
|
+
export declare var CreateExtractionDefinition$: StaticOperationSchema;
|
|
1355
1373
|
export declare var CreateHoursOfOperation$: StaticOperationSchema;
|
|
1356
1374
|
export declare var CreateHoursOfOperationOverride$: StaticOperationSchema;
|
|
1357
1375
|
export declare var CreateInstance$: StaticOperationSchema;
|
|
@@ -1392,6 +1410,7 @@ export declare var DeleteDataTable$: StaticOperationSchema;
|
|
|
1392
1410
|
export declare var DeleteDataTableAttribute$: StaticOperationSchema;
|
|
1393
1411
|
export declare var DeleteEmailAddress$: StaticOperationSchema;
|
|
1394
1412
|
export declare var DeleteEvaluationForm$: StaticOperationSchema;
|
|
1413
|
+
export declare var DeleteExtractionDefinition$: StaticOperationSchema;
|
|
1395
1414
|
export declare var DeleteHoursOfOperation$: StaticOperationSchema;
|
|
1396
1415
|
export declare var DeleteHoursOfOperationOverride$: StaticOperationSchema;
|
|
1397
1416
|
export declare var DeleteInstance$: StaticOperationSchema;
|
|
@@ -1431,6 +1450,7 @@ export declare var DescribeDataTable$: StaticOperationSchema;
|
|
|
1431
1450
|
export declare var DescribeDataTableAttribute$: StaticOperationSchema;
|
|
1432
1451
|
export declare var DescribeEmailAddress$: StaticOperationSchema;
|
|
1433
1452
|
export declare var DescribeEvaluationForm$: StaticOperationSchema;
|
|
1453
|
+
export declare var DescribeExtractionDefinition$: StaticOperationSchema;
|
|
1434
1454
|
export declare var DescribeHoursOfOperation$: StaticOperationSchema;
|
|
1435
1455
|
export declare var DescribeHoursOfOperationOverride$: StaticOperationSchema;
|
|
1436
1456
|
export declare var DescribeInstance$: StaticOperationSchema;
|
|
@@ -1515,6 +1535,7 @@ export declare var ListDefaultVocabularies$: StaticOperationSchema;
|
|
|
1515
1535
|
export declare var ListEntitySecurityProfiles$: StaticOperationSchema;
|
|
1516
1536
|
export declare var ListEvaluationForms$: StaticOperationSchema;
|
|
1517
1537
|
export declare var ListEvaluationFormVersions$: StaticOperationSchema;
|
|
1538
|
+
export declare var ListExtractionDefinitions$: StaticOperationSchema;
|
|
1518
1539
|
export declare var ListFlowAssociations$: StaticOperationSchema;
|
|
1519
1540
|
export declare var ListHoursOfOperationOverrides$: StaticOperationSchema;
|
|
1520
1541
|
export declare var ListHoursOfOperations$: StaticOperationSchema;
|
|
@@ -1648,6 +1669,7 @@ export declare var UpdateDataTableMetadata$: StaticOperationSchema;
|
|
|
1648
1669
|
export declare var UpdateDataTablePrimaryValues$: StaticOperationSchema;
|
|
1649
1670
|
export declare var UpdateEmailAddressMetadata$: StaticOperationSchema;
|
|
1650
1671
|
export declare var UpdateEvaluationForm$: StaticOperationSchema;
|
|
1672
|
+
export declare var UpdateExtractionDefinition$: StaticOperationSchema;
|
|
1651
1673
|
export declare var UpdateHoursOfOperation$: StaticOperationSchema;
|
|
1652
1674
|
export declare var UpdateHoursOfOperationOverride$: StaticOperationSchema;
|
|
1653
1675
|
export declare var UpdateInstanceAttribute$: StaticOperationSchema;
|
|
@@ -183,6 +183,10 @@ import {
|
|
|
183
183
|
CreateEvaluationFormCommandInput,
|
|
184
184
|
CreateEvaluationFormCommandOutput,
|
|
185
185
|
} from "./commands/CreateEvaluationFormCommand";
|
|
186
|
+
import {
|
|
187
|
+
CreateExtractionDefinitionCommandInput,
|
|
188
|
+
CreateExtractionDefinitionCommandOutput,
|
|
189
|
+
} from "./commands/CreateExtractionDefinitionCommand";
|
|
186
190
|
import {
|
|
187
191
|
CreateHoursOfOperationCommandInput,
|
|
188
192
|
CreateHoursOfOperationCommandOutput,
|
|
@@ -331,6 +335,10 @@ import {
|
|
|
331
335
|
DeleteEvaluationFormCommandInput,
|
|
332
336
|
DeleteEvaluationFormCommandOutput,
|
|
333
337
|
} from "./commands/DeleteEvaluationFormCommand";
|
|
338
|
+
import {
|
|
339
|
+
DeleteExtractionDefinitionCommandInput,
|
|
340
|
+
DeleteExtractionDefinitionCommandOutput,
|
|
341
|
+
} from "./commands/DeleteExtractionDefinitionCommand";
|
|
334
342
|
import {
|
|
335
343
|
DeleteHoursOfOperationCommandInput,
|
|
336
344
|
DeleteHoursOfOperationCommandOutput,
|
|
@@ -475,6 +483,10 @@ import {
|
|
|
475
483
|
DescribeEvaluationFormCommandInput,
|
|
476
484
|
DescribeEvaluationFormCommandOutput,
|
|
477
485
|
} from "./commands/DescribeEvaluationFormCommand";
|
|
486
|
+
import {
|
|
487
|
+
DescribeExtractionDefinitionCommandInput,
|
|
488
|
+
DescribeExtractionDefinitionCommandOutput,
|
|
489
|
+
} from "./commands/DescribeExtractionDefinitionCommand";
|
|
478
490
|
import {
|
|
479
491
|
DescribeHoursOfOperationCommandInput,
|
|
480
492
|
DescribeHoursOfOperationCommandOutput,
|
|
@@ -808,6 +820,10 @@ import {
|
|
|
808
820
|
ListEvaluationFormVersionsCommandInput,
|
|
809
821
|
ListEvaluationFormVersionsCommandOutput,
|
|
810
822
|
} from "./commands/ListEvaluationFormVersionsCommand";
|
|
823
|
+
import {
|
|
824
|
+
ListExtractionDefinitionsCommandInput,
|
|
825
|
+
ListExtractionDefinitionsCommandOutput,
|
|
826
|
+
} from "./commands/ListExtractionDefinitionsCommand";
|
|
811
827
|
import {
|
|
812
828
|
ListFlowAssociationsCommandInput,
|
|
813
829
|
ListFlowAssociationsCommandOutput,
|
|
@@ -1301,6 +1317,10 @@ import {
|
|
|
1301
1317
|
UpdateEvaluationFormCommandInput,
|
|
1302
1318
|
UpdateEvaluationFormCommandOutput,
|
|
1303
1319
|
} from "./commands/UpdateEvaluationFormCommand";
|
|
1320
|
+
import {
|
|
1321
|
+
UpdateExtractionDefinitionCommandInput,
|
|
1322
|
+
UpdateExtractionDefinitionCommandOutput,
|
|
1323
|
+
} from "./commands/UpdateExtractionDefinitionCommand";
|
|
1304
1324
|
import {
|
|
1305
1325
|
UpdateHoursOfOperationCommandInput,
|
|
1306
1326
|
UpdateHoursOfOperationCommandOutput,
|
|
@@ -2073,6 +2093,19 @@ export interface Connect {
|
|
|
2073
2093
|
options: __HttpHandlerOptions,
|
|
2074
2094
|
cb: (err: any, data?: CreateEvaluationFormCommandOutput) => void,
|
|
2075
2095
|
): void;
|
|
2096
|
+
createExtractionDefinition(
|
|
2097
|
+
args: CreateExtractionDefinitionCommandInput,
|
|
2098
|
+
options?: __HttpHandlerOptions,
|
|
2099
|
+
): Promise<CreateExtractionDefinitionCommandOutput>;
|
|
2100
|
+
createExtractionDefinition(
|
|
2101
|
+
args: CreateExtractionDefinitionCommandInput,
|
|
2102
|
+
cb: (err: any, data?: CreateExtractionDefinitionCommandOutput) => void,
|
|
2103
|
+
): void;
|
|
2104
|
+
createExtractionDefinition(
|
|
2105
|
+
args: CreateExtractionDefinitionCommandInput,
|
|
2106
|
+
options: __HttpHandlerOptions,
|
|
2107
|
+
cb: (err: any, data?: CreateExtractionDefinitionCommandOutput) => void,
|
|
2108
|
+
): void;
|
|
2076
2109
|
createHoursOfOperation(
|
|
2077
2110
|
args: CreateHoursOfOperationCommandInput,
|
|
2078
2111
|
options?: __HttpHandlerOptions,
|
|
@@ -2593,6 +2626,19 @@ export interface Connect {
|
|
|
2593
2626
|
options: __HttpHandlerOptions,
|
|
2594
2627
|
cb: (err: any, data?: DeleteEvaluationFormCommandOutput) => void,
|
|
2595
2628
|
): void;
|
|
2629
|
+
deleteExtractionDefinition(
|
|
2630
|
+
args: DeleteExtractionDefinitionCommandInput,
|
|
2631
|
+
options?: __HttpHandlerOptions,
|
|
2632
|
+
): Promise<DeleteExtractionDefinitionCommandOutput>;
|
|
2633
|
+
deleteExtractionDefinition(
|
|
2634
|
+
args: DeleteExtractionDefinitionCommandInput,
|
|
2635
|
+
cb: (err: any, data?: DeleteExtractionDefinitionCommandOutput) => void,
|
|
2636
|
+
): void;
|
|
2637
|
+
deleteExtractionDefinition(
|
|
2638
|
+
args: DeleteExtractionDefinitionCommandInput,
|
|
2639
|
+
options: __HttpHandlerOptions,
|
|
2640
|
+
cb: (err: any, data?: DeleteExtractionDefinitionCommandOutput) => void,
|
|
2641
|
+
): void;
|
|
2596
2642
|
deleteHoursOfOperation(
|
|
2597
2643
|
args: DeleteHoursOfOperationCommandInput,
|
|
2598
2644
|
options?: __HttpHandlerOptions,
|
|
@@ -3100,6 +3146,19 @@ export interface Connect {
|
|
|
3100
3146
|
options: __HttpHandlerOptions,
|
|
3101
3147
|
cb: (err: any, data?: DescribeEvaluationFormCommandOutput) => void,
|
|
3102
3148
|
): void;
|
|
3149
|
+
describeExtractionDefinition(
|
|
3150
|
+
args: DescribeExtractionDefinitionCommandInput,
|
|
3151
|
+
options?: __HttpHandlerOptions,
|
|
3152
|
+
): Promise<DescribeExtractionDefinitionCommandOutput>;
|
|
3153
|
+
describeExtractionDefinition(
|
|
3154
|
+
args: DescribeExtractionDefinitionCommandInput,
|
|
3155
|
+
cb: (err: any, data?: DescribeExtractionDefinitionCommandOutput) => void,
|
|
3156
|
+
): void;
|
|
3157
|
+
describeExtractionDefinition(
|
|
3158
|
+
args: DescribeExtractionDefinitionCommandInput,
|
|
3159
|
+
options: __HttpHandlerOptions,
|
|
3160
|
+
cb: (err: any, data?: DescribeExtractionDefinitionCommandOutput) => void,
|
|
3161
|
+
): void;
|
|
3103
3162
|
describeHoursOfOperation(
|
|
3104
3163
|
args: DescribeHoursOfOperationCommandInput,
|
|
3105
3164
|
options?: __HttpHandlerOptions,
|
|
@@ -4189,6 +4248,19 @@ export interface Connect {
|
|
|
4189
4248
|
options: __HttpHandlerOptions,
|
|
4190
4249
|
cb: (err: any, data?: ListEvaluationFormVersionsCommandOutput) => void,
|
|
4191
4250
|
): void;
|
|
4251
|
+
listExtractionDefinitions(
|
|
4252
|
+
args: ListExtractionDefinitionsCommandInput,
|
|
4253
|
+
options?: __HttpHandlerOptions,
|
|
4254
|
+
): Promise<ListExtractionDefinitionsCommandOutput>;
|
|
4255
|
+
listExtractionDefinitions(
|
|
4256
|
+
args: ListExtractionDefinitionsCommandInput,
|
|
4257
|
+
cb: (err: any, data?: ListExtractionDefinitionsCommandOutput) => void,
|
|
4258
|
+
): void;
|
|
4259
|
+
listExtractionDefinitions(
|
|
4260
|
+
args: ListExtractionDefinitionsCommandInput,
|
|
4261
|
+
options: __HttpHandlerOptions,
|
|
4262
|
+
cb: (err: any, data?: ListExtractionDefinitionsCommandOutput) => void,
|
|
4263
|
+
): void;
|
|
4192
4264
|
listFlowAssociations(
|
|
4193
4265
|
args: ListFlowAssociationsCommandInput,
|
|
4194
4266
|
options?: __HttpHandlerOptions,
|
|
@@ -5923,6 +5995,19 @@ export interface Connect {
|
|
|
5923
5995
|
options: __HttpHandlerOptions,
|
|
5924
5996
|
cb: (err: any, data?: UpdateEvaluationFormCommandOutput) => void,
|
|
5925
5997
|
): void;
|
|
5998
|
+
updateExtractionDefinition(
|
|
5999
|
+
args: UpdateExtractionDefinitionCommandInput,
|
|
6000
|
+
options?: __HttpHandlerOptions,
|
|
6001
|
+
): Promise<UpdateExtractionDefinitionCommandOutput>;
|
|
6002
|
+
updateExtractionDefinition(
|
|
6003
|
+
args: UpdateExtractionDefinitionCommandInput,
|
|
6004
|
+
cb: (err: any, data?: UpdateExtractionDefinitionCommandOutput) => void,
|
|
6005
|
+
): void;
|
|
6006
|
+
updateExtractionDefinition(
|
|
6007
|
+
args: UpdateExtractionDefinitionCommandInput,
|
|
6008
|
+
options: __HttpHandlerOptions,
|
|
6009
|
+
cb: (err: any, data?: UpdateExtractionDefinitionCommandOutput) => void,
|
|
6010
|
+
): void;
|
|
5926
6011
|
updateHoursOfOperation(
|
|
5927
6012
|
args: UpdateHoursOfOperationCommandInput,
|
|
5928
6013
|
options?: __HttpHandlerOptions,
|
|
@@ -6716,6 +6801,13 @@ export interface Connect {
|
|
|
6716
6801
|
Exclude<keyof PaginationConfiguration, "client">
|
|
6717
6802
|
>,
|
|
6718
6803
|
): Paginator<ListEvaluationFormVersionsCommandOutput>;
|
|
6804
|
+
paginateListExtractionDefinitions(
|
|
6805
|
+
args: ListExtractionDefinitionsCommandInput,
|
|
6806
|
+
paginationConfig?: Pick<
|
|
6807
|
+
PaginationConfiguration,
|
|
6808
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6809
|
+
>,
|
|
6810
|
+
): Paginator<ListExtractionDefinitionsCommandOutput>;
|
|
6719
6811
|
paginateListFlowAssociations(
|
|
6720
6812
|
args: ListFlowAssociationsCommandInput,
|
|
6721
6813
|
paginationConfig?: Pick<
|