@aws-sdk/client-lex-models-v2 3.370.0 → 3.374.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 +56 -0
- package/dist-cjs/LexModelsV2.js +14 -0
- package/dist-cjs/commands/ListIntentMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListIntentPathsCommand.js +46 -0
- package/dist-cjs/commands/ListIntentStageMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListSessionAnalyticsDataCommand.js +46 -0
- package/dist-cjs/commands/ListSessionMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListUtteranceAnalyticsDataCommand.js +46 -0
- package/dist-cjs/commands/ListUtteranceMetricsCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +148 -79
- package/dist-cjs/models/models_1.js +92 -1
- package/dist-cjs/pagination/ListIntentMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListIntentStageMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSessionAnalyticsDataPaginator.js +29 -0
- package/dist-cjs/pagination/ListSessionMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListUtteranceAnalyticsDataPaginator.js +29 -0
- package/dist-cjs/pagination/ListUtteranceMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +767 -56
- package/dist-es/LexModelsV2.js +14 -0
- package/dist-es/commands/ListIntentMetricsCommand.js +42 -0
- package/dist-es/commands/ListIntentPathsCommand.js +42 -0
- package/dist-es/commands/ListIntentStageMetricsCommand.js +42 -0
- package/dist-es/commands/ListSessionAnalyticsDataCommand.js +42 -0
- package/dist-es/commands/ListSessionMetricsCommand.js +42 -0
- package/dist-es/commands/ListUtteranceAnalyticsDataCommand.js +42 -0
- package/dist-es/commands/ListUtteranceMetricsCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +146 -77
- package/dist-es/models/models_1.js +91 -0
- package/dist-es/pagination/ListIntentMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListIntentStageMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListSessionAnalyticsDataPaginator.js +25 -0
- package/dist-es/pagination/ListSessionMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListUtteranceAnalyticsDataPaginator.js +25 -0
- package/dist-es/pagination/ListUtteranceMetricsPaginator.js +25 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +749 -52
- package/dist-types/LexModelsV2.d.ts +49 -0
- package/dist-types/LexModelsV2Client.d.ts +9 -2
- package/dist-types/commands/DescribeSlotTypeCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTestExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetDiscrepancyReportCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetGenerationCommand.d.ts +1 -1
- package/dist-types/commands/GetTestExecutionArtifactsUrlCommand.d.ts +1 -1
- package/dist-types/commands/ListAggregatedUtterancesCommand.d.ts +1 -1
- package/dist-types/commands/ListIntentMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListIntentPathsCommand.d.ts +124 -0
- package/dist-types/commands/ListIntentStageMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListSessionAnalyticsDataCommand.d.ts +140 -0
- package/dist-types/commands/ListSessionMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListUtteranceAnalyticsDataCommand.d.ts +174 -0
- package/dist-types/commands/ListUtteranceMetricsCommand.d.ts +185 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +4423 -3748
- package/dist-types/models/models_1.d.ts +2016 -53
- package/dist-types/pagination/ListIntentMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIntentStageMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionAnalyticsDataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUtteranceAnalyticsDataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUtteranceMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/LexModelsV2.d.ts +119 -0
- package/dist-types/ts3.4/LexModelsV2Client.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeSlotTypeCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTestExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetDiscrepancyReportCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetGenerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTestExecutionArtifactsUrlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAggregatedUtterancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListIntentMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListIntentPathsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListIntentStageMetricsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSessionAnalyticsDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSessionMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListUtteranceAnalyticsDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListUtteranceMetricsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +330 -327
- package/dist-types/ts3.4/models/models_1.d.ts +534 -19
- package/dist-types/ts3.4/pagination/ListIntentMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIntentStageMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionAnalyticsDataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUtteranceAnalyticsDataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUtteranceMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +1 -1
|
@@ -68,6 +68,329 @@ export interface AllowedInputTypes {
|
|
|
68
68
|
allowAudioInput: boolean | undefined;
|
|
69
69
|
allowDTMFInput: boolean | undefined;
|
|
70
70
|
}
|
|
71
|
+
export declare const AnalyticsInterval: {
|
|
72
|
+
readonly OneDay: "OneDay";
|
|
73
|
+
readonly OneHour: "OneHour";
|
|
74
|
+
};
|
|
75
|
+
export type AnalyticsInterval =
|
|
76
|
+
(typeof AnalyticsInterval)[keyof typeof AnalyticsInterval];
|
|
77
|
+
export declare const AnalyticsBinByName: {
|
|
78
|
+
readonly ConversationStartTime: "ConversationStartTime";
|
|
79
|
+
readonly UtteranceTimestamp: "UtteranceTimestamp";
|
|
80
|
+
};
|
|
81
|
+
export type AnalyticsBinByName =
|
|
82
|
+
(typeof AnalyticsBinByName)[keyof typeof AnalyticsBinByName];
|
|
83
|
+
export declare const AnalyticsSortOrder: {
|
|
84
|
+
readonly Ascending: "Ascending";
|
|
85
|
+
readonly Descending: "Descending";
|
|
86
|
+
};
|
|
87
|
+
export type AnalyticsSortOrder =
|
|
88
|
+
(typeof AnalyticsSortOrder)[keyof typeof AnalyticsSortOrder];
|
|
89
|
+
export interface AnalyticsBinBySpecification {
|
|
90
|
+
name: AnalyticsBinByName | string | undefined;
|
|
91
|
+
interval: AnalyticsInterval | string | undefined;
|
|
92
|
+
order?: AnalyticsSortOrder | string;
|
|
93
|
+
}
|
|
94
|
+
export interface AnalyticsBinKey {
|
|
95
|
+
name?: AnalyticsBinByName | string;
|
|
96
|
+
value?: number;
|
|
97
|
+
}
|
|
98
|
+
export declare const AnalyticsCommonFilterName: {
|
|
99
|
+
readonly BotAliasId: "BotAliasId";
|
|
100
|
+
readonly BotVersion: "BotVersion";
|
|
101
|
+
readonly Channel: "Channel";
|
|
102
|
+
readonly LocaleId: "LocaleId";
|
|
103
|
+
readonly Modality: "Modality";
|
|
104
|
+
};
|
|
105
|
+
export type AnalyticsCommonFilterName =
|
|
106
|
+
(typeof AnalyticsCommonFilterName)[keyof typeof AnalyticsCommonFilterName];
|
|
107
|
+
export declare const AnalyticsFilterOperator: {
|
|
108
|
+
readonly Equals: "EQ";
|
|
109
|
+
readonly GreaterThan: "GT";
|
|
110
|
+
readonly LessThan: "LT";
|
|
111
|
+
};
|
|
112
|
+
export type AnalyticsFilterOperator =
|
|
113
|
+
(typeof AnalyticsFilterOperator)[keyof typeof AnalyticsFilterOperator];
|
|
114
|
+
export declare const AnalyticsIntentField: {
|
|
115
|
+
readonly IntentEndState: "IntentEndState";
|
|
116
|
+
readonly IntentLevel: "IntentLevel";
|
|
117
|
+
readonly IntentName: "IntentName";
|
|
118
|
+
};
|
|
119
|
+
export type AnalyticsIntentField =
|
|
120
|
+
(typeof AnalyticsIntentField)[keyof typeof AnalyticsIntentField];
|
|
121
|
+
export declare const AnalyticsIntentFilterName: {
|
|
122
|
+
readonly BotAliasId: "BotAliasId";
|
|
123
|
+
readonly BotVersion: "BotVersion";
|
|
124
|
+
readonly Channel: "Channel";
|
|
125
|
+
readonly IntentEndState: "IntentEndState";
|
|
126
|
+
readonly IntentName: "IntentName";
|
|
127
|
+
readonly LocaleId: "LocaleId";
|
|
128
|
+
readonly Modality: "Modality";
|
|
129
|
+
readonly OriginatingRequestId: "OriginatingRequestId";
|
|
130
|
+
readonly SessionId: "SessionId";
|
|
131
|
+
};
|
|
132
|
+
export type AnalyticsIntentFilterName =
|
|
133
|
+
(typeof AnalyticsIntentFilterName)[keyof typeof AnalyticsIntentFilterName];
|
|
134
|
+
export interface AnalyticsIntentFilter {
|
|
135
|
+
name: AnalyticsIntentFilterName | string | undefined;
|
|
136
|
+
operator: AnalyticsFilterOperator | string | undefined;
|
|
137
|
+
values: string[] | undefined;
|
|
138
|
+
}
|
|
139
|
+
export interface AnalyticsIntentGroupByKey {
|
|
140
|
+
name?: AnalyticsIntentField | string;
|
|
141
|
+
value?: string;
|
|
142
|
+
}
|
|
143
|
+
export interface AnalyticsIntentGroupBySpecification {
|
|
144
|
+
name: AnalyticsIntentField | string | undefined;
|
|
145
|
+
}
|
|
146
|
+
export declare const AnalyticsIntentMetricName: {
|
|
147
|
+
readonly Count: "Count";
|
|
148
|
+
readonly Dropped: "Dropped";
|
|
149
|
+
readonly Failure: "Failure";
|
|
150
|
+
readonly Success: "Success";
|
|
151
|
+
readonly Switched: "Switched";
|
|
152
|
+
};
|
|
153
|
+
export type AnalyticsIntentMetricName =
|
|
154
|
+
(typeof AnalyticsIntentMetricName)[keyof typeof AnalyticsIntentMetricName];
|
|
155
|
+
export declare const AnalyticsMetricStatistic: {
|
|
156
|
+
readonly Avg: "Avg";
|
|
157
|
+
readonly Max: "Max";
|
|
158
|
+
readonly Sum: "Sum";
|
|
159
|
+
};
|
|
160
|
+
export type AnalyticsMetricStatistic =
|
|
161
|
+
(typeof AnalyticsMetricStatistic)[keyof typeof AnalyticsMetricStatistic];
|
|
162
|
+
export interface AnalyticsIntentMetric {
|
|
163
|
+
name: AnalyticsIntentMetricName | string | undefined;
|
|
164
|
+
statistic: AnalyticsMetricStatistic | string | undefined;
|
|
165
|
+
order?: AnalyticsSortOrder | string;
|
|
166
|
+
}
|
|
167
|
+
export interface AnalyticsIntentMetricResult {
|
|
168
|
+
name?: AnalyticsIntentMetricName | string;
|
|
169
|
+
statistic?: AnalyticsMetricStatistic | string;
|
|
170
|
+
value?: number;
|
|
171
|
+
}
|
|
172
|
+
export declare const AnalyticsNodeType: {
|
|
173
|
+
readonly Exit: "Exit";
|
|
174
|
+
readonly Inner: "Inner";
|
|
175
|
+
};
|
|
176
|
+
export type AnalyticsNodeType =
|
|
177
|
+
(typeof AnalyticsNodeType)[keyof typeof AnalyticsNodeType];
|
|
178
|
+
export interface AnalyticsIntentNodeSummary {
|
|
179
|
+
intentName?: string;
|
|
180
|
+
intentPath?: string;
|
|
181
|
+
intentCount?: number;
|
|
182
|
+
intentLevel?: number;
|
|
183
|
+
nodeType?: AnalyticsNodeType | string;
|
|
184
|
+
}
|
|
185
|
+
export interface AnalyticsIntentResult {
|
|
186
|
+
binKeys?: AnalyticsBinKey[];
|
|
187
|
+
groupByKeys?: AnalyticsIntentGroupByKey[];
|
|
188
|
+
metricsResults?: AnalyticsIntentMetricResult[];
|
|
189
|
+
}
|
|
190
|
+
export declare const AnalyticsIntentStageField: {
|
|
191
|
+
readonly IntentStageName: "IntentStageName";
|
|
192
|
+
readonly SwitchedToIntent: "SwitchedToIntent";
|
|
193
|
+
};
|
|
194
|
+
export type AnalyticsIntentStageField =
|
|
195
|
+
(typeof AnalyticsIntentStageField)[keyof typeof AnalyticsIntentStageField];
|
|
196
|
+
export declare const AnalyticsIntentStageFilterName: {
|
|
197
|
+
readonly BotAliasId: "BotAliasId";
|
|
198
|
+
readonly BotVersion: "BotVersion";
|
|
199
|
+
readonly Channel: "Channel";
|
|
200
|
+
readonly IntentName: "IntentName";
|
|
201
|
+
readonly IntentStageName: "IntentStageName";
|
|
202
|
+
readonly LocaleId: "LocaleId";
|
|
203
|
+
readonly Modality: "Modality";
|
|
204
|
+
readonly OriginatingRequestId: "OriginatingRequestId";
|
|
205
|
+
readonly SessionId: "SessionId";
|
|
206
|
+
};
|
|
207
|
+
export type AnalyticsIntentStageFilterName =
|
|
208
|
+
(typeof AnalyticsIntentStageFilterName)[keyof typeof AnalyticsIntentStageFilterName];
|
|
209
|
+
export interface AnalyticsIntentStageFilter {
|
|
210
|
+
name: AnalyticsIntentStageFilterName | string | undefined;
|
|
211
|
+
operator: AnalyticsFilterOperator | string | undefined;
|
|
212
|
+
values: string[] | undefined;
|
|
213
|
+
}
|
|
214
|
+
export interface AnalyticsIntentStageGroupByKey {
|
|
215
|
+
name?: AnalyticsIntentStageField | string;
|
|
216
|
+
value?: string;
|
|
217
|
+
}
|
|
218
|
+
export interface AnalyticsIntentStageGroupBySpecification {
|
|
219
|
+
name: AnalyticsIntentStageField | string | undefined;
|
|
220
|
+
}
|
|
221
|
+
export declare const AnalyticsIntentStageMetricName: {
|
|
222
|
+
readonly Count: "Count";
|
|
223
|
+
readonly Dropped: "Dropped";
|
|
224
|
+
readonly Failed: "Failed";
|
|
225
|
+
readonly Retry: "Retry";
|
|
226
|
+
readonly Success: "Success";
|
|
227
|
+
};
|
|
228
|
+
export type AnalyticsIntentStageMetricName =
|
|
229
|
+
(typeof AnalyticsIntentStageMetricName)[keyof typeof AnalyticsIntentStageMetricName];
|
|
230
|
+
export interface AnalyticsIntentStageMetric {
|
|
231
|
+
name: AnalyticsIntentStageMetricName | string | undefined;
|
|
232
|
+
statistic: AnalyticsMetricStatistic | string | undefined;
|
|
233
|
+
order?: AnalyticsSortOrder | string;
|
|
234
|
+
}
|
|
235
|
+
export interface AnalyticsIntentStageMetricResult {
|
|
236
|
+
name?: AnalyticsIntentStageMetricName | string;
|
|
237
|
+
statistic?: AnalyticsMetricStatistic | string;
|
|
238
|
+
value?: number;
|
|
239
|
+
}
|
|
240
|
+
export interface AnalyticsIntentStageResult {
|
|
241
|
+
binKeys?: AnalyticsBinKey[];
|
|
242
|
+
groupByKeys?: AnalyticsIntentStageGroupByKey[];
|
|
243
|
+
metricsResults?: AnalyticsIntentStageMetricResult[];
|
|
244
|
+
}
|
|
245
|
+
export declare const AnalyticsModality: {
|
|
246
|
+
readonly DTMF: "DTMF";
|
|
247
|
+
readonly MultiMode: "MultiMode";
|
|
248
|
+
readonly Speech: "Speech";
|
|
249
|
+
readonly Text: "Text";
|
|
250
|
+
};
|
|
251
|
+
export type AnalyticsModality =
|
|
252
|
+
(typeof AnalyticsModality)[keyof typeof AnalyticsModality];
|
|
253
|
+
export interface AnalyticsPathFilter {
|
|
254
|
+
name: AnalyticsCommonFilterName | string | undefined;
|
|
255
|
+
operator: AnalyticsFilterOperator | string | undefined;
|
|
256
|
+
values: string[] | undefined;
|
|
257
|
+
}
|
|
258
|
+
export declare const AnalyticsSessionField: {
|
|
259
|
+
readonly ConversationEndState: "ConversationEndState";
|
|
260
|
+
readonly LocaleId: "LocaleId";
|
|
261
|
+
};
|
|
262
|
+
export type AnalyticsSessionField =
|
|
263
|
+
(typeof AnalyticsSessionField)[keyof typeof AnalyticsSessionField];
|
|
264
|
+
export declare const AnalyticsSessionFilterName: {
|
|
265
|
+
readonly BotAliasId: "BotAliasId";
|
|
266
|
+
readonly BotVersion: "BotVersion";
|
|
267
|
+
readonly Channel: "Channel";
|
|
268
|
+
readonly ConversationEndState: "ConversationEndState";
|
|
269
|
+
readonly Duration: "Duration";
|
|
270
|
+
readonly IntentPath: "IntentPath";
|
|
271
|
+
readonly LocaleId: "LocaleId";
|
|
272
|
+
readonly Modality: "Modality";
|
|
273
|
+
readonly OriginatingRequestId: "OriginatingRequestId";
|
|
274
|
+
readonly SessionId: "SessionId";
|
|
275
|
+
};
|
|
276
|
+
export type AnalyticsSessionFilterName =
|
|
277
|
+
(typeof AnalyticsSessionFilterName)[keyof typeof AnalyticsSessionFilterName];
|
|
278
|
+
export interface AnalyticsSessionFilter {
|
|
279
|
+
name: AnalyticsSessionFilterName | string | undefined;
|
|
280
|
+
operator: AnalyticsFilterOperator | string | undefined;
|
|
281
|
+
values: string[] | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface AnalyticsSessionGroupByKey {
|
|
284
|
+
name?: AnalyticsSessionField | string;
|
|
285
|
+
value?: string;
|
|
286
|
+
}
|
|
287
|
+
export interface AnalyticsSessionGroupBySpecification {
|
|
288
|
+
name: AnalyticsSessionField | string | undefined;
|
|
289
|
+
}
|
|
290
|
+
export declare const AnalyticsSessionMetricName: {
|
|
291
|
+
readonly Concurrency: "Concurrency";
|
|
292
|
+
readonly Count: "Count";
|
|
293
|
+
readonly Dropped: "Dropped";
|
|
294
|
+
readonly Duration: "Duration";
|
|
295
|
+
readonly Failure: "Failure";
|
|
296
|
+
readonly Success: "Success";
|
|
297
|
+
readonly TurnsPerConversation: "TurnsPerConversation";
|
|
298
|
+
};
|
|
299
|
+
export type AnalyticsSessionMetricName =
|
|
300
|
+
(typeof AnalyticsSessionMetricName)[keyof typeof AnalyticsSessionMetricName];
|
|
301
|
+
export interface AnalyticsSessionMetric {
|
|
302
|
+
name: AnalyticsSessionMetricName | string | undefined;
|
|
303
|
+
statistic: AnalyticsMetricStatistic | string | undefined;
|
|
304
|
+
order?: AnalyticsSortOrder | string;
|
|
305
|
+
}
|
|
306
|
+
export interface AnalyticsSessionMetricResult {
|
|
307
|
+
name?: AnalyticsSessionMetricName | string;
|
|
308
|
+
statistic?: AnalyticsMetricStatistic | string;
|
|
309
|
+
value?: number;
|
|
310
|
+
}
|
|
311
|
+
export interface AnalyticsSessionResult {
|
|
312
|
+
binKeys?: AnalyticsBinKey[];
|
|
313
|
+
groupByKeys?: AnalyticsSessionGroupByKey[];
|
|
314
|
+
metricsResults?: AnalyticsSessionMetricResult[];
|
|
315
|
+
}
|
|
316
|
+
export declare const AnalyticsSessionSortByName: {
|
|
317
|
+
readonly ConversationStartTime: "ConversationStartTime";
|
|
318
|
+
readonly Duration: "Duration";
|
|
319
|
+
readonly NumberOfTurns: "NumberOfTurns";
|
|
320
|
+
};
|
|
321
|
+
export type AnalyticsSessionSortByName =
|
|
322
|
+
(typeof AnalyticsSessionSortByName)[keyof typeof AnalyticsSessionSortByName];
|
|
323
|
+
export declare const AnalyticsUtteranceAttributeName: {
|
|
324
|
+
readonly LastUsedIntent: "LastUsedIntent";
|
|
325
|
+
};
|
|
326
|
+
export type AnalyticsUtteranceAttributeName =
|
|
327
|
+
(typeof AnalyticsUtteranceAttributeName)[keyof typeof AnalyticsUtteranceAttributeName];
|
|
328
|
+
export interface AnalyticsUtteranceAttribute {
|
|
329
|
+
name: AnalyticsUtteranceAttributeName | string | undefined;
|
|
330
|
+
}
|
|
331
|
+
export interface AnalyticsUtteranceAttributeResult {
|
|
332
|
+
lastUsedIntent?: string;
|
|
333
|
+
}
|
|
334
|
+
export declare const AnalyticsUtteranceField: {
|
|
335
|
+
readonly UtteranceState: "UtteranceState";
|
|
336
|
+
readonly UtteranceText: "UtteranceText";
|
|
337
|
+
};
|
|
338
|
+
export type AnalyticsUtteranceField =
|
|
339
|
+
(typeof AnalyticsUtteranceField)[keyof typeof AnalyticsUtteranceField];
|
|
340
|
+
export declare const AnalyticsUtteranceFilterName: {
|
|
341
|
+
readonly BotAliasId: "BotAliasId";
|
|
342
|
+
readonly BotVersion: "BotVersion";
|
|
343
|
+
readonly Channel: "Channel";
|
|
344
|
+
readonly LocaleId: "LocaleId";
|
|
345
|
+
readonly Modality: "Modality";
|
|
346
|
+
readonly OriginatingRequestId: "OriginatingRequestId";
|
|
347
|
+
readonly SessionId: "SessionId";
|
|
348
|
+
readonly UtteranceState: "UtteranceState";
|
|
349
|
+
readonly UtteranceText: "UtteranceText";
|
|
350
|
+
};
|
|
351
|
+
export type AnalyticsUtteranceFilterName =
|
|
352
|
+
(typeof AnalyticsUtteranceFilterName)[keyof typeof AnalyticsUtteranceFilterName];
|
|
353
|
+
export interface AnalyticsUtteranceFilter {
|
|
354
|
+
name: AnalyticsUtteranceFilterName | string | undefined;
|
|
355
|
+
operator: AnalyticsFilterOperator | string | undefined;
|
|
356
|
+
values: string[] | undefined;
|
|
357
|
+
}
|
|
358
|
+
export interface AnalyticsUtteranceGroupByKey {
|
|
359
|
+
name?: AnalyticsUtteranceField | string;
|
|
360
|
+
value?: string;
|
|
361
|
+
}
|
|
362
|
+
export interface AnalyticsUtteranceGroupBySpecification {
|
|
363
|
+
name: AnalyticsUtteranceField | string | undefined;
|
|
364
|
+
}
|
|
365
|
+
export declare const AnalyticsUtteranceMetricName: {
|
|
366
|
+
readonly Count: "Count";
|
|
367
|
+
readonly Detected: "Detected";
|
|
368
|
+
readonly Missed: "Missed";
|
|
369
|
+
readonly UtteranceTimestamp: "UtteranceTimestamp";
|
|
370
|
+
};
|
|
371
|
+
export type AnalyticsUtteranceMetricName =
|
|
372
|
+
(typeof AnalyticsUtteranceMetricName)[keyof typeof AnalyticsUtteranceMetricName];
|
|
373
|
+
export interface AnalyticsUtteranceMetric {
|
|
374
|
+
name: AnalyticsUtteranceMetricName | string | undefined;
|
|
375
|
+
statistic: AnalyticsMetricStatistic | string | undefined;
|
|
376
|
+
order?: AnalyticsSortOrder | string;
|
|
377
|
+
}
|
|
378
|
+
export interface AnalyticsUtteranceMetricResult {
|
|
379
|
+
name?: AnalyticsUtteranceMetricName | string;
|
|
380
|
+
statistic?: AnalyticsMetricStatistic | string;
|
|
381
|
+
value?: number;
|
|
382
|
+
}
|
|
383
|
+
export interface AnalyticsUtteranceResult {
|
|
384
|
+
binKeys?: AnalyticsBinKey[];
|
|
385
|
+
groupByKeys?: AnalyticsUtteranceGroupByKey[];
|
|
386
|
+
metricsResults?: AnalyticsUtteranceMetricResult[];
|
|
387
|
+
attributeResults?: AnalyticsUtteranceAttributeResult[];
|
|
388
|
+
}
|
|
389
|
+
export declare const AnalyticsUtteranceSortByName: {
|
|
390
|
+
readonly UtteranceTimestamp: "UtteranceTimestamp";
|
|
391
|
+
};
|
|
392
|
+
export type AnalyticsUtteranceSortByName =
|
|
393
|
+
(typeof AnalyticsUtteranceSortByName)[keyof typeof AnalyticsUtteranceSortByName];
|
|
71
394
|
export interface AssociatedTranscript {
|
|
72
395
|
transcript?: string;
|
|
73
396
|
}
|
|
@@ -567,6 +890,13 @@ export interface ResponseSpecification {
|
|
|
567
890
|
messageGroups: MessageGroup[] | undefined;
|
|
568
891
|
allowInterrupt?: boolean;
|
|
569
892
|
}
|
|
893
|
+
export declare const ConversationEndState: {
|
|
894
|
+
readonly Dropped: "Dropped";
|
|
895
|
+
readonly Failure: "Failure";
|
|
896
|
+
readonly Success: "Success";
|
|
897
|
+
};
|
|
898
|
+
export type ConversationEndState =
|
|
899
|
+
(typeof ConversationEndState)[keyof typeof ConversationEndState];
|
|
570
900
|
export declare const TestResultMatchStatus: {
|
|
571
901
|
readonly ExecutionError: "ExecutionError";
|
|
572
902
|
readonly Matched: "Matched";
|
|
@@ -1361,333 +1691,6 @@ export interface DescribeSlotTypeRequest {
|
|
|
1361
1691
|
botVersion: string | undefined;
|
|
1362
1692
|
localeId: string | undefined;
|
|
1363
1693
|
}
|
|
1364
|
-
export interface DescribeSlotTypeResponse {
|
|
1365
|
-
slotTypeId?: string;
|
|
1366
|
-
slotTypeName?: string;
|
|
1367
|
-
description?: string;
|
|
1368
|
-
slotTypeValues?: SlotTypeValue[];
|
|
1369
|
-
valueSelectionSetting?: SlotValueSelectionSetting;
|
|
1370
|
-
parentSlotTypeSignature?: string;
|
|
1371
|
-
botId?: string;
|
|
1372
|
-
botVersion?: string;
|
|
1373
|
-
localeId?: string;
|
|
1374
|
-
creationDateTime?: Date;
|
|
1375
|
-
lastUpdatedDateTime?: Date;
|
|
1376
|
-
externalSourceSetting?: ExternalSourceSetting;
|
|
1377
|
-
compositeSlotTypeSetting?: CompositeSlotTypeSetting;
|
|
1378
|
-
}
|
|
1379
|
-
export interface DescribeTestExecutionRequest {
|
|
1380
|
-
testExecutionId: string | undefined;
|
|
1381
|
-
}
|
|
1382
|
-
export declare const TestExecutionApiMode: {
|
|
1383
|
-
readonly NonStreaming: "NonStreaming";
|
|
1384
|
-
readonly Streaming: "Streaming";
|
|
1385
|
-
};
|
|
1386
|
-
export type TestExecutionApiMode =
|
|
1387
|
-
(typeof TestExecutionApiMode)[keyof typeof TestExecutionApiMode];
|
|
1388
|
-
export interface TestExecutionTarget {
|
|
1389
|
-
botAliasTarget?: BotAliasTestExecutionTarget;
|
|
1390
|
-
}
|
|
1391
|
-
export declare const TestExecutionModality: {
|
|
1392
|
-
readonly Audio: "Audio";
|
|
1393
|
-
readonly Text: "Text";
|
|
1394
|
-
};
|
|
1395
|
-
export type TestExecutionModality =
|
|
1396
|
-
(typeof TestExecutionModality)[keyof typeof TestExecutionModality];
|
|
1397
|
-
export declare const TestExecutionStatus: {
|
|
1398
|
-
readonly Completed: "Completed";
|
|
1399
|
-
readonly Failed: "Failed";
|
|
1400
|
-
readonly InProgress: "InProgress";
|
|
1401
|
-
readonly Pending: "Pending";
|
|
1402
|
-
readonly Stopped: "Stopped";
|
|
1403
|
-
readonly Stopping: "Stopping";
|
|
1404
|
-
readonly Waiting: "Waiting";
|
|
1405
|
-
};
|
|
1406
|
-
export type TestExecutionStatus =
|
|
1407
|
-
(typeof TestExecutionStatus)[keyof typeof TestExecutionStatus];
|
|
1408
|
-
export interface DescribeTestExecutionResponse {
|
|
1409
|
-
testExecutionId?: string;
|
|
1410
|
-
creationDateTime?: Date;
|
|
1411
|
-
lastUpdatedDateTime?: Date;
|
|
1412
|
-
testExecutionStatus?: TestExecutionStatus | string;
|
|
1413
|
-
testSetId?: string;
|
|
1414
|
-
testSetName?: string;
|
|
1415
|
-
target?: TestExecutionTarget;
|
|
1416
|
-
apiMode?: TestExecutionApiMode | string;
|
|
1417
|
-
testExecutionModality?: TestExecutionModality | string;
|
|
1418
|
-
failureReasons?: string[];
|
|
1419
|
-
}
|
|
1420
|
-
export interface DescribeTestSetRequest {
|
|
1421
|
-
testSetId: string | undefined;
|
|
1422
|
-
}
|
|
1423
|
-
export declare const TestSetStatus: {
|
|
1424
|
-
readonly Deleting: "Deleting";
|
|
1425
|
-
readonly Importing: "Importing";
|
|
1426
|
-
readonly PendingAnnotation: "PendingAnnotation";
|
|
1427
|
-
readonly Ready: "Ready";
|
|
1428
|
-
readonly ValidationError: "ValidationError";
|
|
1429
|
-
};
|
|
1430
|
-
export type TestSetStatus = (typeof TestSetStatus)[keyof typeof TestSetStatus];
|
|
1431
|
-
export interface DescribeTestSetResponse {
|
|
1432
|
-
testSetId?: string;
|
|
1433
|
-
testSetName?: string;
|
|
1434
|
-
description?: string;
|
|
1435
|
-
modality?: TestSetModality | string;
|
|
1436
|
-
status?: TestSetStatus | string;
|
|
1437
|
-
roleArn?: string;
|
|
1438
|
-
numTurns?: number;
|
|
1439
|
-
storageLocation?: TestSetStorageLocation;
|
|
1440
|
-
creationDateTime?: Date;
|
|
1441
|
-
lastUpdatedDateTime?: Date;
|
|
1442
|
-
}
|
|
1443
|
-
export interface DescribeTestSetDiscrepancyReportRequest {
|
|
1444
|
-
testSetDiscrepancyReportId: string | undefined;
|
|
1445
|
-
}
|
|
1446
|
-
export declare const TestSetDiscrepancyReportStatus: {
|
|
1447
|
-
readonly Completed: "Completed";
|
|
1448
|
-
readonly Failed: "Failed";
|
|
1449
|
-
readonly InProgress: "InProgress";
|
|
1450
|
-
};
|
|
1451
|
-
export type TestSetDiscrepancyReportStatus =
|
|
1452
|
-
(typeof TestSetDiscrepancyReportStatus)[keyof typeof TestSetDiscrepancyReportStatus];
|
|
1453
|
-
export interface TestSetIntentDiscrepancyItem {
|
|
1454
|
-
intentName: string | undefined;
|
|
1455
|
-
errorMessage: string | undefined;
|
|
1456
|
-
}
|
|
1457
|
-
export interface TestSetSlotDiscrepancyItem {
|
|
1458
|
-
intentName: string | undefined;
|
|
1459
|
-
slotName: string | undefined;
|
|
1460
|
-
errorMessage: string | undefined;
|
|
1461
|
-
}
|
|
1462
|
-
export interface TestSetDiscrepancyErrors {
|
|
1463
|
-
intentDiscrepancies: TestSetIntentDiscrepancyItem[] | undefined;
|
|
1464
|
-
slotDiscrepancies: TestSetSlotDiscrepancyItem[] | undefined;
|
|
1465
|
-
}
|
|
1466
|
-
export interface DescribeTestSetDiscrepancyReportResponse {
|
|
1467
|
-
testSetDiscrepancyReportId?: string;
|
|
1468
|
-
testSetId?: string;
|
|
1469
|
-
creationDateTime?: Date;
|
|
1470
|
-
target?: TestSetDiscrepancyReportResourceTarget;
|
|
1471
|
-
testSetDiscrepancyReportStatus?: TestSetDiscrepancyReportStatus | string;
|
|
1472
|
-
lastUpdatedDataTime?: Date;
|
|
1473
|
-
testSetDiscrepancyTopErrors?: TestSetDiscrepancyErrors;
|
|
1474
|
-
testSetDiscrepancyRawOutputUrl?: string;
|
|
1475
|
-
failureReasons?: string[];
|
|
1476
|
-
}
|
|
1477
|
-
export interface DescribeTestSetGenerationRequest {
|
|
1478
|
-
testSetGenerationId: string | undefined;
|
|
1479
|
-
}
|
|
1480
|
-
export interface TestSetGenerationDataSource {
|
|
1481
|
-
conversationLogsDataSource?: ConversationLogsDataSource;
|
|
1482
|
-
}
|
|
1483
|
-
export declare const TestSetGenerationStatus: {
|
|
1484
|
-
readonly Failed: "Failed";
|
|
1485
|
-
readonly Generating: "Generating";
|
|
1486
|
-
readonly Pending: "Pending";
|
|
1487
|
-
readonly Ready: "Ready";
|
|
1488
|
-
};
|
|
1489
|
-
export type TestSetGenerationStatus =
|
|
1490
|
-
(typeof TestSetGenerationStatus)[keyof typeof TestSetGenerationStatus];
|
|
1491
|
-
export interface DescribeTestSetGenerationResponse {
|
|
1492
|
-
testSetGenerationId?: string;
|
|
1493
|
-
testSetGenerationStatus?: TestSetGenerationStatus | string;
|
|
1494
|
-
failureReasons?: string[];
|
|
1495
|
-
testSetId?: string;
|
|
1496
|
-
testSetName?: string;
|
|
1497
|
-
description?: string;
|
|
1498
|
-
storageLocation?: TestSetStorageLocation;
|
|
1499
|
-
generationDataSource?: TestSetGenerationDataSource;
|
|
1500
|
-
roleArn?: string;
|
|
1501
|
-
creationDateTime?: Date;
|
|
1502
|
-
lastUpdatedDateTime?: Date;
|
|
1503
|
-
}
|
|
1504
|
-
export declare const ExportFilterName: {
|
|
1505
|
-
readonly ExportResourceType: "ExportResourceType";
|
|
1506
|
-
};
|
|
1507
|
-
export type ExportFilterName =
|
|
1508
|
-
(typeof ExportFilterName)[keyof typeof ExportFilterName];
|
|
1509
|
-
export declare const ExportFilterOperator: {
|
|
1510
|
-
readonly Contains: "CO";
|
|
1511
|
-
readonly Equals: "EQ";
|
|
1512
|
-
};
|
|
1513
|
-
export type ExportFilterOperator =
|
|
1514
|
-
(typeof ExportFilterOperator)[keyof typeof ExportFilterOperator];
|
|
1515
|
-
export interface ExportFilter {
|
|
1516
|
-
name: ExportFilterName | string | undefined;
|
|
1517
|
-
values: string[] | undefined;
|
|
1518
|
-
operator: ExportFilterOperator | string | undefined;
|
|
1519
|
-
}
|
|
1520
|
-
export declare const ExportSortAttribute: {
|
|
1521
|
-
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
1522
|
-
};
|
|
1523
|
-
export type ExportSortAttribute =
|
|
1524
|
-
(typeof ExportSortAttribute)[keyof typeof ExportSortAttribute];
|
|
1525
|
-
export interface ExportSortBy {
|
|
1526
|
-
attribute: ExportSortAttribute | string | undefined;
|
|
1527
|
-
order: SortOrder | string | undefined;
|
|
1528
|
-
}
|
|
1529
|
-
export interface ExportSummary {
|
|
1530
|
-
exportId?: string;
|
|
1531
|
-
resourceSpecification?: ExportResourceSpecification;
|
|
1532
|
-
fileFormat?: ImportExportFileFormat | string;
|
|
1533
|
-
exportStatus?: ExportStatus | string;
|
|
1534
|
-
creationDateTime?: Date;
|
|
1535
|
-
lastUpdatedDateTime?: Date;
|
|
1536
|
-
}
|
|
1537
|
-
export interface GetTestExecutionArtifactsUrlRequest {
|
|
1538
|
-
testExecutionId: string | undefined;
|
|
1539
|
-
}
|
|
1540
|
-
export interface GetTestExecutionArtifactsUrlResponse {
|
|
1541
|
-
testExecutionId?: string;
|
|
1542
|
-
downloadArtifactsUrl?: string;
|
|
1543
|
-
}
|
|
1544
|
-
export declare const ImportFilterName: {
|
|
1545
|
-
readonly ImportResourceType: "ImportResourceType";
|
|
1546
|
-
};
|
|
1547
|
-
export type ImportFilterName =
|
|
1548
|
-
(typeof ImportFilterName)[keyof typeof ImportFilterName];
|
|
1549
|
-
export declare const ImportFilterOperator: {
|
|
1550
|
-
readonly Contains: "CO";
|
|
1551
|
-
readonly Equals: "EQ";
|
|
1552
|
-
};
|
|
1553
|
-
export type ImportFilterOperator =
|
|
1554
|
-
(typeof ImportFilterOperator)[keyof typeof ImportFilterOperator];
|
|
1555
|
-
export interface ImportFilter {
|
|
1556
|
-
name: ImportFilterName | string | undefined;
|
|
1557
|
-
values: string[] | undefined;
|
|
1558
|
-
operator: ImportFilterOperator | string | undefined;
|
|
1559
|
-
}
|
|
1560
|
-
export declare const ImportResourceType: {
|
|
1561
|
-
readonly Bot: "Bot";
|
|
1562
|
-
readonly BotLocale: "BotLocale";
|
|
1563
|
-
readonly CustomVocabulary: "CustomVocabulary";
|
|
1564
|
-
readonly TestSet: "TestSet";
|
|
1565
|
-
};
|
|
1566
|
-
export type ImportResourceType =
|
|
1567
|
-
(typeof ImportResourceType)[keyof typeof ImportResourceType];
|
|
1568
|
-
export declare const ImportSortAttribute: {
|
|
1569
|
-
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
1570
|
-
};
|
|
1571
|
-
export type ImportSortAttribute =
|
|
1572
|
-
(typeof ImportSortAttribute)[keyof typeof ImportSortAttribute];
|
|
1573
|
-
export interface ImportSortBy {
|
|
1574
|
-
attribute: ImportSortAttribute | string | undefined;
|
|
1575
|
-
order: SortOrder | string | undefined;
|
|
1576
|
-
}
|
|
1577
|
-
export interface ImportSummary {
|
|
1578
|
-
importId?: string;
|
|
1579
|
-
importedResourceId?: string;
|
|
1580
|
-
importedResourceName?: string;
|
|
1581
|
-
importStatus?: ImportStatus | string;
|
|
1582
|
-
mergeStrategy?: MergeStrategy | string;
|
|
1583
|
-
creationDateTime?: Date;
|
|
1584
|
-
lastUpdatedDateTime?: Date;
|
|
1585
|
-
importedResourceType?: ImportResourceType | string;
|
|
1586
|
-
}
|
|
1587
|
-
export interface RuntimeHintValue {
|
|
1588
|
-
phrase: string | undefined;
|
|
1589
|
-
}
|
|
1590
|
-
export interface IntentClassificationTestResultItemCounts {
|
|
1591
|
-
totalResultCount: number | undefined;
|
|
1592
|
-
speechTranscriptionResultCounts?: Record<string, number>;
|
|
1593
|
-
intentMatchResultCounts: Record<string, number> | undefined;
|
|
1594
|
-
}
|
|
1595
|
-
export interface IntentClassificationTestResultItem {
|
|
1596
|
-
intentName: string | undefined;
|
|
1597
|
-
multiTurnConversation: boolean | undefined;
|
|
1598
|
-
resultCounts: IntentClassificationTestResultItemCounts | undefined;
|
|
1599
|
-
}
|
|
1600
|
-
export interface IntentClassificationTestResults {
|
|
1601
|
-
items: IntentClassificationTestResultItem[] | undefined;
|
|
1602
|
-
}
|
|
1603
|
-
export declare const IntentFilterName: {
|
|
1604
|
-
readonly IntentName: "IntentName";
|
|
1605
|
-
};
|
|
1606
|
-
export type IntentFilterName =
|
|
1607
|
-
(typeof IntentFilterName)[keyof typeof IntentFilterName];
|
|
1608
|
-
export declare const IntentFilterOperator: {
|
|
1609
|
-
readonly Contains: "CO";
|
|
1610
|
-
readonly Equals: "EQ";
|
|
1611
|
-
};
|
|
1612
|
-
export type IntentFilterOperator =
|
|
1613
|
-
(typeof IntentFilterOperator)[keyof typeof IntentFilterOperator];
|
|
1614
|
-
export interface IntentFilter {
|
|
1615
|
-
name: IntentFilterName | string | undefined;
|
|
1616
|
-
values: string[] | undefined;
|
|
1617
|
-
operator: IntentFilterOperator | string | undefined;
|
|
1618
|
-
}
|
|
1619
|
-
export interface SlotResolutionTestResultItemCounts {
|
|
1620
|
-
totalResultCount: number | undefined;
|
|
1621
|
-
speechTranscriptionResultCounts?: Record<string, number>;
|
|
1622
|
-
slotMatchResultCounts: Record<string, number> | undefined;
|
|
1623
|
-
}
|
|
1624
|
-
export interface SlotResolutionTestResultItem {
|
|
1625
|
-
slotName: string | undefined;
|
|
1626
|
-
resultCounts: SlotResolutionTestResultItemCounts | undefined;
|
|
1627
|
-
}
|
|
1628
|
-
export interface IntentLevelSlotResolutionTestResultItem {
|
|
1629
|
-
intentName: string | undefined;
|
|
1630
|
-
multiTurnConversation: boolean | undefined;
|
|
1631
|
-
slotResolutionResults: SlotResolutionTestResultItem[] | undefined;
|
|
1632
|
-
}
|
|
1633
|
-
export interface IntentLevelSlotResolutionTestResults {
|
|
1634
|
-
items: IntentLevelSlotResolutionTestResultItem[] | undefined;
|
|
1635
|
-
}
|
|
1636
|
-
export declare const IntentSortAttribute: {
|
|
1637
|
-
readonly IntentName: "IntentName";
|
|
1638
|
-
readonly LastUpdatedDateTime: "LastUpdatedDateTime";
|
|
1639
|
-
};
|
|
1640
|
-
export type IntentSortAttribute =
|
|
1641
|
-
(typeof IntentSortAttribute)[keyof typeof IntentSortAttribute];
|
|
1642
|
-
export interface IntentSortBy {
|
|
1643
|
-
attribute: IntentSortAttribute | string | undefined;
|
|
1644
|
-
order: SortOrder | string | undefined;
|
|
1645
|
-
}
|
|
1646
|
-
export interface IntentSummary {
|
|
1647
|
-
intentId?: string;
|
|
1648
|
-
intentName?: string;
|
|
1649
|
-
description?: string;
|
|
1650
|
-
parentIntentSignature?: string;
|
|
1651
|
-
inputContexts?: InputContext[];
|
|
1652
|
-
outputContexts?: OutputContext[];
|
|
1653
|
-
lastUpdatedDateTime?: Date;
|
|
1654
|
-
}
|
|
1655
|
-
export declare const TimeDimension: {
|
|
1656
|
-
readonly Days: "Days";
|
|
1657
|
-
readonly Hours: "Hours";
|
|
1658
|
-
readonly Weeks: "Weeks";
|
|
1659
|
-
};
|
|
1660
|
-
export type TimeDimension = (typeof TimeDimension)[keyof typeof TimeDimension];
|
|
1661
|
-
export interface RelativeAggregationDuration {
|
|
1662
|
-
timeDimension: TimeDimension | string | undefined;
|
|
1663
|
-
timeValue: number | undefined;
|
|
1664
|
-
}
|
|
1665
|
-
export interface UtteranceAggregationDuration {
|
|
1666
|
-
relativeAggregationDuration: RelativeAggregationDuration | undefined;
|
|
1667
|
-
}
|
|
1668
|
-
export interface ListAggregatedUtterancesRequest {
|
|
1669
|
-
botId: string | undefined;
|
|
1670
|
-
botAliasId?: string;
|
|
1671
|
-
botVersion?: string;
|
|
1672
|
-
localeId: string | undefined;
|
|
1673
|
-
aggregationDuration: UtteranceAggregationDuration | undefined;
|
|
1674
|
-
sortBy?: AggregatedUtterancesSortBy;
|
|
1675
|
-
filters?: AggregatedUtterancesFilter[];
|
|
1676
|
-
maxResults?: number;
|
|
1677
|
-
nextToken?: string;
|
|
1678
|
-
}
|
|
1679
|
-
export interface ListAggregatedUtterancesResponse {
|
|
1680
|
-
botId?: string;
|
|
1681
|
-
botAliasId?: string;
|
|
1682
|
-
botVersion?: string;
|
|
1683
|
-
localeId?: string;
|
|
1684
|
-
aggregationDuration?: UtteranceAggregationDuration;
|
|
1685
|
-
aggregationWindowStartTime?: Date;
|
|
1686
|
-
aggregationWindowEndTime?: Date;
|
|
1687
|
-
aggregationLastRefreshedDateTime?: Date;
|
|
1688
|
-
aggregatedUtterancesSummaries?: AggregatedUtterancesSummary[];
|
|
1689
|
-
nextToken?: string;
|
|
1690
|
-
}
|
|
1691
1694
|
export declare const CreateExportRequestFilterSensitiveLog: (
|
|
1692
1695
|
obj: CreateExportRequest
|
|
1693
1696
|
) => any;
|