@aws-sdk/client-lex-models-v2 3.687.0 → 3.691.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.
@@ -113,23 +113,23 @@ import {
113
113
  WaitAndContinueSpecification,
114
114
  } from "./models_0";
115
115
  export interface DescribeBotLocaleResponse {
116
- botId?: string;
117
- botVersion?: string;
118
- localeId?: string;
119
- localeName?: string;
120
- description?: string;
121
- nluIntentConfidenceThreshold?: number;
122
- voiceSettings?: VoiceSettings;
123
- intentsCount?: number;
124
- slotTypesCount?: number;
125
- botLocaleStatus?: BotLocaleStatus;
126
- failureReasons?: string[];
127
- creationDateTime?: Date;
128
- lastUpdatedDateTime?: Date;
129
- lastBuildSubmittedDateTime?: Date;
130
- botLocaleHistoryEvents?: BotLocaleHistoryEvent[];
131
- recommendedActions?: string[];
132
- generativeAISettings?: GenerativeAISettings;
116
+ botId?: string | undefined;
117
+ botVersion?: string | undefined;
118
+ localeId?: string | undefined;
119
+ localeName?: string | undefined;
120
+ description?: string | undefined;
121
+ nluIntentConfidenceThreshold?: number | undefined;
122
+ voiceSettings?: VoiceSettings | undefined;
123
+ intentsCount?: number | undefined;
124
+ slotTypesCount?: number | undefined;
125
+ botLocaleStatus?: BotLocaleStatus | undefined;
126
+ failureReasons?: string[] | undefined;
127
+ creationDateTime?: Date | undefined;
128
+ lastUpdatedDateTime?: Date | undefined;
129
+ lastBuildSubmittedDateTime?: Date | undefined;
130
+ botLocaleHistoryEvents?: BotLocaleHistoryEvent[] | undefined;
131
+ recommendedActions?: string[] | undefined;
132
+ generativeAISettings?: GenerativeAISettings | undefined;
133
133
  }
134
134
  export interface DescribeBotRecommendationRequest {
135
135
  botId: string | undefined;
@@ -138,18 +138,18 @@ export interface DescribeBotRecommendationRequest {
138
138
  botRecommendationId: string | undefined;
139
139
  }
140
140
  export interface EncryptionSetting {
141
- kmsKeyArn?: string;
142
- botLocaleExportPassword?: string;
143
- associatedTranscriptsPassword?: string;
141
+ kmsKeyArn?: string | undefined;
142
+ botLocaleExportPassword?: string | undefined;
143
+ associatedTranscriptsPassword?: string | undefined;
144
144
  }
145
145
  export interface PathFormat {
146
- objectPrefixes?: string[];
146
+ objectPrefixes?: string[] | undefined;
147
147
  }
148
148
  export interface LexTranscriptFilter {
149
- dateRangeFilter?: DateRangeFilter;
149
+ dateRangeFilter?: DateRangeFilter | undefined;
150
150
  }
151
151
  export interface TranscriptFilter {
152
- lexTranscriptFilter?: LexTranscriptFilter;
152
+ lexTranscriptFilter?: LexTranscriptFilter | undefined;
153
153
  }
154
154
  export declare const TranscriptFormat: {
155
155
  readonly Lex: "Lex";
@@ -158,38 +158,38 @@ export type TranscriptFormat =
158
158
  (typeof TranscriptFormat)[keyof typeof TranscriptFormat];
159
159
  export interface S3BucketTranscriptSource {
160
160
  s3BucketName: string | undefined;
161
- pathFormat?: PathFormat;
161
+ pathFormat?: PathFormat | undefined;
162
162
  transcriptFormat: TranscriptFormat | undefined;
163
- transcriptFilter?: TranscriptFilter;
164
- kmsKeyArn?: string;
163
+ transcriptFilter?: TranscriptFilter | undefined;
164
+ kmsKeyArn?: string | undefined;
165
165
  }
166
166
  export interface TranscriptSourceSetting {
167
- s3BucketTranscriptSource?: S3BucketTranscriptSource;
167
+ s3BucketTranscriptSource?: S3BucketTranscriptSource | undefined;
168
168
  }
169
169
  export interface DescribeBotRecommendationResponse {
170
- botId?: string;
171
- botVersion?: string;
172
- localeId?: string;
173
- botRecommendationStatus?: BotRecommendationStatus;
174
- botRecommendationId?: string;
175
- failureReasons?: string[];
176
- creationDateTime?: Date;
177
- lastUpdatedDateTime?: Date;
178
- transcriptSourceSetting?: TranscriptSourceSetting;
179
- encryptionSetting?: EncryptionSetting;
180
- botRecommendationResults?: BotRecommendationResults;
170
+ botId?: string | undefined;
171
+ botVersion?: string | undefined;
172
+ localeId?: string | undefined;
173
+ botRecommendationStatus?: BotRecommendationStatus | undefined;
174
+ botRecommendationId?: string | undefined;
175
+ failureReasons?: string[] | undefined;
176
+ creationDateTime?: Date | undefined;
177
+ lastUpdatedDateTime?: Date | undefined;
178
+ transcriptSourceSetting?: TranscriptSourceSetting | undefined;
179
+ encryptionSetting?: EncryptionSetting | undefined;
180
+ botRecommendationResults?: BotRecommendationResults | undefined;
181
181
  }
182
182
  export interface DescribeBotReplicaRequest {
183
183
  botId: string | undefined;
184
184
  replicaRegion: string | undefined;
185
185
  }
186
186
  export interface DescribeBotReplicaResponse {
187
- botId?: string;
188
- replicaRegion?: string;
189
- sourceRegion?: string;
190
- creationDateTime?: Date;
191
- botReplicaStatus?: BotReplicaStatus;
192
- failureReasons?: string[];
187
+ botId?: string | undefined;
188
+ replicaRegion?: string | undefined;
189
+ sourceRegion?: string | undefined;
190
+ creationDateTime?: Date | undefined;
191
+ botReplicaStatus?: BotReplicaStatus | undefined;
192
+ failureReasons?: string[] | undefined;
193
193
  }
194
194
  export interface DescribeBotResourceGenerationRequest {
195
195
  botId: string | undefined;
@@ -205,36 +205,36 @@ export declare const GenerationStatus: {
205
205
  export type GenerationStatus =
206
206
  (typeof GenerationStatus)[keyof typeof GenerationStatus];
207
207
  export interface DescribeBotResourceGenerationResponse {
208
- botId?: string;
209
- botVersion?: string;
210
- localeId?: string;
211
- generationId?: string;
212
- failureReasons?: string[];
213
- generationStatus?: GenerationStatus;
214
- generationInputPrompt?: string;
215
- generatedBotLocaleUrl?: string;
216
- creationDateTime?: Date;
217
- modelArn?: string;
218
- lastUpdatedDateTime?: Date;
208
+ botId?: string | undefined;
209
+ botVersion?: string | undefined;
210
+ localeId?: string | undefined;
211
+ generationId?: string | undefined;
212
+ failureReasons?: string[] | undefined;
213
+ generationStatus?: GenerationStatus | undefined;
214
+ generationInputPrompt?: string | undefined;
215
+ generatedBotLocaleUrl?: string | undefined;
216
+ creationDateTime?: Date | undefined;
217
+ modelArn?: string | undefined;
218
+ lastUpdatedDateTime?: Date | undefined;
219
219
  }
220
220
  export interface DescribeBotVersionRequest {
221
221
  botId: string | undefined;
222
222
  botVersion: string | undefined;
223
223
  }
224
224
  export interface DescribeBotVersionResponse {
225
- botId?: string;
226
- botName?: string;
227
- botVersion?: string;
228
- description?: string;
229
- roleArn?: string;
230
- dataPrivacy?: DataPrivacy;
231
- idleSessionTTLInSeconds?: number;
232
- botStatus?: BotStatus;
233
- failureReasons?: string[];
234
- creationDateTime?: Date;
235
- parentBotNetworks?: ParentBotNetwork[];
236
- botType?: BotType;
237
- botMembers?: BotMember[];
225
+ botId?: string | undefined;
226
+ botName?: string | undefined;
227
+ botVersion?: string | undefined;
228
+ description?: string | undefined;
229
+ roleArn?: string | undefined;
230
+ dataPrivacy?: DataPrivacy | undefined;
231
+ idleSessionTTLInSeconds?: number | undefined;
232
+ botStatus?: BotStatus | undefined;
233
+ failureReasons?: string[] | undefined;
234
+ creationDateTime?: Date | undefined;
235
+ parentBotNetworks?: ParentBotNetwork[] | undefined;
236
+ botType?: BotType | undefined;
237
+ botMembers?: BotMember[] | undefined;
238
238
  }
239
239
  export interface DescribeCustomVocabularyMetadataRequest {
240
240
  botId: string | undefined;
@@ -242,25 +242,25 @@ export interface DescribeCustomVocabularyMetadataRequest {
242
242
  localeId: string | undefined;
243
243
  }
244
244
  export interface DescribeCustomVocabularyMetadataResponse {
245
- botId?: string;
246
- botVersion?: string;
247
- localeId?: string;
248
- customVocabularyStatus?: CustomVocabularyStatus;
249
- creationDateTime?: Date;
250
- lastUpdatedDateTime?: Date;
245
+ botId?: string | undefined;
246
+ botVersion?: string | undefined;
247
+ localeId?: string | undefined;
248
+ customVocabularyStatus?: CustomVocabularyStatus | undefined;
249
+ creationDateTime?: Date | undefined;
250
+ lastUpdatedDateTime?: Date | undefined;
251
251
  }
252
252
  export interface DescribeExportRequest {
253
253
  exportId: string | undefined;
254
254
  }
255
255
  export interface DescribeExportResponse {
256
- exportId?: string;
257
- resourceSpecification?: ExportResourceSpecification;
258
- fileFormat?: ImportExportFileFormat;
259
- exportStatus?: ExportStatus;
260
- failureReasons?: string[];
261
- downloadUrl?: string;
262
- creationDateTime?: Date;
263
- lastUpdatedDateTime?: Date;
256
+ exportId?: string | undefined;
257
+ resourceSpecification?: ExportResourceSpecification | undefined;
258
+ fileFormat?: ImportExportFileFormat | undefined;
259
+ exportStatus?: ExportStatus | undefined;
260
+ failureReasons?: string[] | undefined;
261
+ downloadUrl?: string | undefined;
262
+ creationDateTime?: Date | undefined;
263
+ lastUpdatedDateTime?: Date | undefined;
264
264
  }
265
265
  export interface DescribeImportRequest {
266
266
  importId: string | undefined;
@@ -284,33 +284,37 @@ export type TestSetModality =
284
284
  export interface TestSetStorageLocation {
285
285
  s3BucketName: string | undefined;
286
286
  s3Path: string | undefined;
287
- kmsKeyArn?: string;
287
+ kmsKeyArn?: string | undefined;
288
288
  }
289
289
  export interface TestSetImportResourceSpecification {
290
290
  testSetName: string | undefined;
291
- description?: string;
291
+ description?: string | undefined;
292
292
  roleArn: string | undefined;
293
293
  storageLocation: TestSetStorageLocation | undefined;
294
294
  importInputLocation: TestSetImportInputLocation | undefined;
295
295
  modality: TestSetModality | undefined;
296
- testSetTags?: Record<string, string>;
296
+ testSetTags?: Record<string, string> | undefined;
297
297
  }
298
298
  export interface ImportResourceSpecification {
299
- botImportSpecification?: BotImportSpecification;
300
- botLocaleImportSpecification?: BotLocaleImportSpecification;
301
- customVocabularyImportSpecification?: CustomVocabularyImportSpecification;
302
- testSetImportResourceSpecification?: TestSetImportResourceSpecification;
299
+ botImportSpecification?: BotImportSpecification | undefined;
300
+ botLocaleImportSpecification?: BotLocaleImportSpecification | undefined;
301
+ customVocabularyImportSpecification?:
302
+ | CustomVocabularyImportSpecification
303
+ | undefined;
304
+ testSetImportResourceSpecification?:
305
+ | TestSetImportResourceSpecification
306
+ | undefined;
303
307
  }
304
308
  export interface DescribeImportResponse {
305
- importId?: string;
306
- resourceSpecification?: ImportResourceSpecification;
307
- importedResourceId?: string;
308
- importedResourceName?: string;
309
- mergeStrategy?: MergeStrategy;
310
- importStatus?: ImportStatus;
311
- failureReasons?: string[];
312
- creationDateTime?: Date;
313
- lastUpdatedDateTime?: Date;
309
+ importId?: string | undefined;
310
+ resourceSpecification?: ImportResourceSpecification | undefined;
311
+ importedResourceId?: string | undefined;
312
+ importedResourceName?: string | undefined;
313
+ mergeStrategy?: MergeStrategy | undefined;
314
+ importStatus?: ImportStatus | undefined;
315
+ failureReasons?: string[] | undefined;
316
+ creationDateTime?: Date | undefined;
317
+ lastUpdatedDateTime?: Date | undefined;
314
318
  }
315
319
  export interface DescribeIntentRequest {
316
320
  intentId: string | undefined;
@@ -326,9 +330,9 @@ export interface DescribeResourcePolicyRequest {
326
330
  resourceArn: string | undefined;
327
331
  }
328
332
  export interface DescribeResourcePolicyResponse {
329
- resourceArn?: string;
330
- policy?: string;
331
- revisionId?: string;
333
+ resourceArn?: string | undefined;
334
+ policy?: string | undefined;
335
+ revisionId?: string | undefined;
332
336
  }
333
337
  export interface DescribeSlotRequest {
334
338
  slotId: string | undefined;
@@ -344,19 +348,19 @@ export interface DescribeSlotTypeRequest {
344
348
  localeId: string | undefined;
345
349
  }
346
350
  export interface DescribeSlotTypeResponse {
347
- slotTypeId?: string;
348
- slotTypeName?: string;
349
- description?: string;
350
- slotTypeValues?: SlotTypeValue[];
351
- valueSelectionSetting?: SlotValueSelectionSetting;
352
- parentSlotTypeSignature?: string;
353
- botId?: string;
354
- botVersion?: string;
355
- localeId?: string;
356
- creationDateTime?: Date;
357
- lastUpdatedDateTime?: Date;
358
- externalSourceSetting?: ExternalSourceSetting;
359
- compositeSlotTypeSetting?: CompositeSlotTypeSetting;
351
+ slotTypeId?: string | undefined;
352
+ slotTypeName?: string | undefined;
353
+ description?: string | undefined;
354
+ slotTypeValues?: SlotTypeValue[] | undefined;
355
+ valueSelectionSetting?: SlotValueSelectionSetting | undefined;
356
+ parentSlotTypeSignature?: string | undefined;
357
+ botId?: string | undefined;
358
+ botVersion?: string | undefined;
359
+ localeId?: string | undefined;
360
+ creationDateTime?: Date | undefined;
361
+ lastUpdatedDateTime?: Date | undefined;
362
+ externalSourceSetting?: ExternalSourceSetting | undefined;
363
+ compositeSlotTypeSetting?: CompositeSlotTypeSetting | undefined;
360
364
  }
361
365
  export interface DescribeTestExecutionRequest {
362
366
  testExecutionId: string | undefined;
@@ -368,7 +372,7 @@ export declare const TestExecutionApiMode: {
368
372
  export type TestExecutionApiMode =
369
373
  (typeof TestExecutionApiMode)[keyof typeof TestExecutionApiMode];
370
374
  export interface TestExecutionTarget {
371
- botAliasTarget?: BotAliasTestExecutionTarget;
375
+ botAliasTarget?: BotAliasTestExecutionTarget | undefined;
372
376
  }
373
377
  export declare const TestExecutionModality: {
374
378
  readonly Audio: "Audio";
@@ -388,16 +392,16 @@ export declare const TestExecutionStatus: {
388
392
  export type TestExecutionStatus =
389
393
  (typeof TestExecutionStatus)[keyof typeof TestExecutionStatus];
390
394
  export interface DescribeTestExecutionResponse {
391
- testExecutionId?: string;
392
- creationDateTime?: Date;
393
- lastUpdatedDateTime?: Date;
394
- testExecutionStatus?: TestExecutionStatus;
395
- testSetId?: string;
396
- testSetName?: string;
397
- target?: TestExecutionTarget;
398
- apiMode?: TestExecutionApiMode;
399
- testExecutionModality?: TestExecutionModality;
400
- failureReasons?: string[];
395
+ testExecutionId?: string | undefined;
396
+ creationDateTime?: Date | undefined;
397
+ lastUpdatedDateTime?: Date | undefined;
398
+ testExecutionStatus?: TestExecutionStatus | undefined;
399
+ testSetId?: string | undefined;
400
+ testSetName?: string | undefined;
401
+ target?: TestExecutionTarget | undefined;
402
+ apiMode?: TestExecutionApiMode | undefined;
403
+ testExecutionModality?: TestExecutionModality | undefined;
404
+ failureReasons?: string[] | undefined;
401
405
  }
402
406
  export interface DescribeTestSetRequest {
403
407
  testSetId: string | undefined;
@@ -411,16 +415,16 @@ export declare const TestSetStatus: {
411
415
  };
412
416
  export type TestSetStatus = (typeof TestSetStatus)[keyof typeof TestSetStatus];
413
417
  export interface DescribeTestSetResponse {
414
- testSetId?: string;
415
- testSetName?: string;
416
- description?: string;
417
- modality?: TestSetModality;
418
- status?: TestSetStatus;
419
- roleArn?: string;
420
- numTurns?: number;
421
- storageLocation?: TestSetStorageLocation;
422
- creationDateTime?: Date;
423
- lastUpdatedDateTime?: Date;
418
+ testSetId?: string | undefined;
419
+ testSetName?: string | undefined;
420
+ description?: string | undefined;
421
+ modality?: TestSetModality | undefined;
422
+ status?: TestSetStatus | undefined;
423
+ roleArn?: string | undefined;
424
+ numTurns?: number | undefined;
425
+ storageLocation?: TestSetStorageLocation | undefined;
426
+ creationDateTime?: Date | undefined;
427
+ lastUpdatedDateTime?: Date | undefined;
424
428
  }
425
429
  export interface DescribeTestSetDiscrepancyReportRequest {
426
430
  testSetDiscrepancyReportId: string | undefined;
@@ -446,21 +450,21 @@ export interface TestSetDiscrepancyErrors {
446
450
  slotDiscrepancies: TestSetSlotDiscrepancyItem[] | undefined;
447
451
  }
448
452
  export interface DescribeTestSetDiscrepancyReportResponse {
449
- testSetDiscrepancyReportId?: string;
450
- testSetId?: string;
451
- creationDateTime?: Date;
452
- target?: TestSetDiscrepancyReportResourceTarget;
453
- testSetDiscrepancyReportStatus?: TestSetDiscrepancyReportStatus;
454
- lastUpdatedDataTime?: Date;
455
- testSetDiscrepancyTopErrors?: TestSetDiscrepancyErrors;
456
- testSetDiscrepancyRawOutputUrl?: string;
457
- failureReasons?: string[];
453
+ testSetDiscrepancyReportId?: string | undefined;
454
+ testSetId?: string | undefined;
455
+ creationDateTime?: Date | undefined;
456
+ target?: TestSetDiscrepancyReportResourceTarget | undefined;
457
+ testSetDiscrepancyReportStatus?: TestSetDiscrepancyReportStatus | undefined;
458
+ lastUpdatedDataTime?: Date | undefined;
459
+ testSetDiscrepancyTopErrors?: TestSetDiscrepancyErrors | undefined;
460
+ testSetDiscrepancyRawOutputUrl?: string | undefined;
461
+ failureReasons?: string[] | undefined;
458
462
  }
459
463
  export interface DescribeTestSetGenerationRequest {
460
464
  testSetGenerationId: string | undefined;
461
465
  }
462
466
  export interface TestSetGenerationDataSource {
463
- conversationLogsDataSource?: ConversationLogsDataSource;
467
+ conversationLogsDataSource?: ConversationLogsDataSource | undefined;
464
468
  }
465
469
  export declare const TestSetGenerationStatus: {
466
470
  readonly Failed: "Failed";
@@ -471,17 +475,17 @@ export declare const TestSetGenerationStatus: {
471
475
  export type TestSetGenerationStatus =
472
476
  (typeof TestSetGenerationStatus)[keyof typeof TestSetGenerationStatus];
473
477
  export interface DescribeTestSetGenerationResponse {
474
- testSetGenerationId?: string;
475
- testSetGenerationStatus?: TestSetGenerationStatus;
476
- failureReasons?: string[];
477
- testSetId?: string;
478
- testSetName?: string;
479
- description?: string;
480
- storageLocation?: TestSetStorageLocation;
481
- generationDataSource?: TestSetGenerationDataSource;
482
- roleArn?: string;
483
- creationDateTime?: Date;
484
- lastUpdatedDateTime?: Date;
478
+ testSetGenerationId?: string | undefined;
479
+ testSetGenerationStatus?: TestSetGenerationStatus | undefined;
480
+ failureReasons?: string[] | undefined;
481
+ testSetId?: string | undefined;
482
+ testSetName?: string | undefined;
483
+ description?: string | undefined;
484
+ storageLocation?: TestSetStorageLocation | undefined;
485
+ generationDataSource?: TestSetGenerationDataSource | undefined;
486
+ roleArn?: string | undefined;
487
+ creationDateTime?: Date | undefined;
488
+ lastUpdatedDateTime?: Date | undefined;
485
489
  }
486
490
  export declare const ExportFilterName: {
487
491
  readonly ExportResourceType: "ExportResourceType";
@@ -509,12 +513,12 @@ export interface ExportSortBy {
509
513
  order: SortOrder | undefined;
510
514
  }
511
515
  export interface ExportSummary {
512
- exportId?: string;
513
- resourceSpecification?: ExportResourceSpecification;
514
- fileFormat?: ImportExportFileFormat;
515
- exportStatus?: ExportStatus;
516
- creationDateTime?: Date;
517
- lastUpdatedDateTime?: Date;
516
+ exportId?: string | undefined;
517
+ resourceSpecification?: ExportResourceSpecification | undefined;
518
+ fileFormat?: ImportExportFileFormat | undefined;
519
+ exportStatus?: ExportStatus | undefined;
520
+ creationDateTime?: Date | undefined;
521
+ lastUpdatedDateTime?: Date | undefined;
518
522
  }
519
523
  export interface GenerateBotElementRequest {
520
524
  intentId: string | undefined;
@@ -523,11 +527,11 @@ export interface GenerateBotElementRequest {
523
527
  localeId: string | undefined;
524
528
  }
525
529
  export interface GenerateBotElementResponse {
526
- botId?: string;
527
- botVersion?: string;
528
- localeId?: string;
529
- intentId?: string;
530
- sampleUtterances?: SampleUtterance[];
530
+ botId?: string | undefined;
531
+ botVersion?: string | undefined;
532
+ localeId?: string | undefined;
533
+ intentId?: string | undefined;
534
+ sampleUtterances?: SampleUtterance[] | undefined;
531
535
  }
532
536
  export declare const GenerationSortByAttribute: {
533
537
  readonly creationStartTime: "creationStartTime";
@@ -540,17 +544,17 @@ export interface GenerationSortBy {
540
544
  order: SortOrder | undefined;
541
545
  }
542
546
  export interface GenerationSummary {
543
- generationId?: string;
544
- generationStatus?: GenerationStatus;
545
- creationDateTime?: Date;
546
- lastUpdatedDateTime?: Date;
547
+ generationId?: string | undefined;
548
+ generationStatus?: GenerationStatus | undefined;
549
+ creationDateTime?: Date | undefined;
550
+ lastUpdatedDateTime?: Date | undefined;
547
551
  }
548
552
  export interface GetTestExecutionArtifactsUrlRequest {
549
553
  testExecutionId: string | undefined;
550
554
  }
551
555
  export interface GetTestExecutionArtifactsUrlResponse {
552
- testExecutionId?: string;
553
- downloadArtifactsUrl?: string;
556
+ testExecutionId?: string | undefined;
557
+ downloadArtifactsUrl?: string | undefined;
554
558
  }
555
559
  export declare const ImportFilterName: {
556
560
  readonly ImportResourceType: "ImportResourceType";
@@ -586,23 +590,23 @@ export interface ImportSortBy {
586
590
  order: SortOrder | undefined;
587
591
  }
588
592
  export interface ImportSummary {
589
- importId?: string;
590
- importedResourceId?: string;
591
- importedResourceName?: string;
592
- importStatus?: ImportStatus;
593
- mergeStrategy?: MergeStrategy;
594
- creationDateTime?: Date;
595
- lastUpdatedDateTime?: Date;
596
- importedResourceType?: ImportResourceType;
593
+ importId?: string | undefined;
594
+ importedResourceId?: string | undefined;
595
+ importedResourceName?: string | undefined;
596
+ importStatus?: ImportStatus | undefined;
597
+ mergeStrategy?: MergeStrategy | undefined;
598
+ creationDateTime?: Date | undefined;
599
+ lastUpdatedDateTime?: Date | undefined;
600
+ importedResourceType?: ImportResourceType | undefined;
597
601
  }
598
602
  export interface RuntimeHintValue {
599
603
  phrase: string | undefined;
600
604
  }
601
605
  export interface IntentClassificationTestResultItemCounts {
602
606
  totalResultCount: number | undefined;
603
- speechTranscriptionResultCounts?: Partial<
604
- Record<TestResultMatchStatus, number>
605
- >;
607
+ speechTranscriptionResultCounts?:
608
+ | Partial<Record<TestResultMatchStatus, number>>
609
+ | undefined;
606
610
  intentMatchResultCounts:
607
611
  | Partial<Record<TestResultMatchStatus, number>>
608
612
  | undefined;
@@ -633,9 +637,9 @@ export interface IntentFilter {
633
637
  }
634
638
  export interface SlotResolutionTestResultItemCounts {
635
639
  totalResultCount: number | undefined;
636
- speechTranscriptionResultCounts?: Partial<
637
- Record<TestResultMatchStatus, number>
638
- >;
640
+ speechTranscriptionResultCounts?:
641
+ | Partial<Record<TestResultMatchStatus, number>>
642
+ | undefined;
639
643
  slotMatchResultCounts:
640
644
  | Partial<Record<TestResultMatchStatus, number>>
641
645
  | undefined;
@@ -672,16 +676,16 @@ export declare const IntentState: {
672
676
  };
673
677
  export type IntentState = (typeof IntentState)[keyof typeof IntentState];
674
678
  export interface IntentSummary {
675
- intentId?: string;
676
- intentName?: string;
677
- description?: string;
678
- parentIntentSignature?: string;
679
- inputContexts?: InputContext[];
680
- outputContexts?: OutputContext[];
681
- lastUpdatedDateTime?: Date;
679
+ intentId?: string | undefined;
680
+ intentName?: string | undefined;
681
+ description?: string | undefined;
682
+ parentIntentSignature?: string | undefined;
683
+ inputContexts?: InputContext[] | undefined;
684
+ outputContexts?: OutputContext[] | undefined;
685
+ lastUpdatedDateTime?: Date | undefined;
682
686
  }
683
687
  export interface InvokedIntentSample {
684
- intentName?: string;
688
+ intentName?: string | undefined;
685
689
  }
686
690
  export declare const TimeDimension: {
687
691
  readonly Days: "Days";
@@ -698,282 +702,282 @@ export interface UtteranceAggregationDuration {
698
702
  }
699
703
  export interface ListAggregatedUtterancesRequest {
700
704
  botId: string | undefined;
701
- botAliasId?: string;
702
- botVersion?: string;
705
+ botAliasId?: string | undefined;
706
+ botVersion?: string | undefined;
703
707
  localeId: string | undefined;
704
708
  aggregationDuration: UtteranceAggregationDuration | undefined;
705
- sortBy?: AggregatedUtterancesSortBy;
706
- filters?: AggregatedUtterancesFilter[];
707
- maxResults?: number;
708
- nextToken?: string;
709
+ sortBy?: AggregatedUtterancesSortBy | undefined;
710
+ filters?: AggregatedUtterancesFilter[] | undefined;
711
+ maxResults?: number | undefined;
712
+ nextToken?: string | undefined;
709
713
  }
710
714
  export interface ListAggregatedUtterancesResponse {
711
- botId?: string;
712
- botAliasId?: string;
713
- botVersion?: string;
714
- localeId?: string;
715
- aggregationDuration?: UtteranceAggregationDuration;
716
- aggregationWindowStartTime?: Date;
717
- aggregationWindowEndTime?: Date;
718
- aggregationLastRefreshedDateTime?: Date;
719
- aggregatedUtterancesSummaries?: AggregatedUtterancesSummary[];
720
- nextToken?: string;
715
+ botId?: string | undefined;
716
+ botAliasId?: string | undefined;
717
+ botVersion?: string | undefined;
718
+ localeId?: string | undefined;
719
+ aggregationDuration?: UtteranceAggregationDuration | undefined;
720
+ aggregationWindowStartTime?: Date | undefined;
721
+ aggregationWindowEndTime?: Date | undefined;
722
+ aggregationLastRefreshedDateTime?: Date | undefined;
723
+ aggregatedUtterancesSummaries?: AggregatedUtterancesSummary[] | undefined;
724
+ nextToken?: string | undefined;
721
725
  }
722
726
  export interface ListBotAliasesRequest {
723
727
  botId: string | undefined;
724
- maxResults?: number;
725
- nextToken?: string;
728
+ maxResults?: number | undefined;
729
+ nextToken?: string | undefined;
726
730
  }
727
731
  export interface ListBotAliasesResponse {
728
- botAliasSummaries?: BotAliasSummary[];
729
- nextToken?: string;
730
- botId?: string;
732
+ botAliasSummaries?: BotAliasSummary[] | undefined;
733
+ nextToken?: string | undefined;
734
+ botId?: string | undefined;
731
735
  }
732
736
  export interface ListBotAliasReplicasRequest {
733
737
  botId: string | undefined;
734
738
  replicaRegion: string | undefined;
735
- maxResults?: number;
736
- nextToken?: string;
739
+ maxResults?: number | undefined;
740
+ nextToken?: string | undefined;
737
741
  }
738
742
  export interface ListBotAliasReplicasResponse {
739
- botId?: string;
740
- sourceRegion?: string;
741
- replicaRegion?: string;
742
- botAliasReplicaSummaries?: BotAliasReplicaSummary[];
743
- nextToken?: string;
743
+ botId?: string | undefined;
744
+ sourceRegion?: string | undefined;
745
+ replicaRegion?: string | undefined;
746
+ botAliasReplicaSummaries?: BotAliasReplicaSummary[] | undefined;
747
+ nextToken?: string | undefined;
744
748
  }
745
749
  export interface ListBotLocalesRequest {
746
750
  botId: string | undefined;
747
751
  botVersion: string | undefined;
748
- sortBy?: BotLocaleSortBy;
749
- filters?: BotLocaleFilter[];
750
- maxResults?: number;
751
- nextToken?: string;
752
+ sortBy?: BotLocaleSortBy | undefined;
753
+ filters?: BotLocaleFilter[] | undefined;
754
+ maxResults?: number | undefined;
755
+ nextToken?: string | undefined;
752
756
  }
753
757
  export interface ListBotLocalesResponse {
754
- botId?: string;
755
- botVersion?: string;
756
- nextToken?: string;
757
- botLocaleSummaries?: BotLocaleSummary[];
758
+ botId?: string | undefined;
759
+ botVersion?: string | undefined;
760
+ nextToken?: string | undefined;
761
+ botLocaleSummaries?: BotLocaleSummary[] | undefined;
758
762
  }
759
763
  export interface ListBotRecommendationsRequest {
760
764
  botId: string | undefined;
761
765
  botVersion: string | undefined;
762
766
  localeId: string | undefined;
763
- maxResults?: number;
764
- nextToken?: string;
767
+ maxResults?: number | undefined;
768
+ nextToken?: string | undefined;
765
769
  }
766
770
  export interface ListBotRecommendationsResponse {
767
- botId?: string;
768
- botVersion?: string;
769
- localeId?: string;
770
- botRecommendationSummaries?: BotRecommendationSummary[];
771
- nextToken?: string;
771
+ botId?: string | undefined;
772
+ botVersion?: string | undefined;
773
+ localeId?: string | undefined;
774
+ botRecommendationSummaries?: BotRecommendationSummary[] | undefined;
775
+ nextToken?: string | undefined;
772
776
  }
773
777
  export interface ListBotReplicasRequest {
774
778
  botId: string | undefined;
775
779
  }
776
780
  export interface ListBotReplicasResponse {
777
- botId?: string;
778
- sourceRegion?: string;
779
- botReplicaSummaries?: BotReplicaSummary[];
781
+ botId?: string | undefined;
782
+ sourceRegion?: string | undefined;
783
+ botReplicaSummaries?: BotReplicaSummary[] | undefined;
780
784
  }
781
785
  export interface ListBotResourceGenerationsRequest {
782
786
  botId: string | undefined;
783
787
  botVersion: string | undefined;
784
788
  localeId: string | undefined;
785
- sortBy?: GenerationSortBy;
786
- maxResults?: number;
787
- nextToken?: string;
789
+ sortBy?: GenerationSortBy | undefined;
790
+ maxResults?: number | undefined;
791
+ nextToken?: string | undefined;
788
792
  }
789
793
  export interface ListBotResourceGenerationsResponse {
790
- botId?: string;
791
- botVersion?: string;
792
- localeId?: string;
793
- generationSummaries?: GenerationSummary[];
794
- nextToken?: string;
794
+ botId?: string | undefined;
795
+ botVersion?: string | undefined;
796
+ localeId?: string | undefined;
797
+ generationSummaries?: GenerationSummary[] | undefined;
798
+ nextToken?: string | undefined;
795
799
  }
796
800
  export interface ListBotsRequest {
797
- sortBy?: BotSortBy;
798
- filters?: BotFilter[];
799
- maxResults?: number;
800
- nextToken?: string;
801
+ sortBy?: BotSortBy | undefined;
802
+ filters?: BotFilter[] | undefined;
803
+ maxResults?: number | undefined;
804
+ nextToken?: string | undefined;
801
805
  }
802
806
  export interface ListBotsResponse {
803
- botSummaries?: BotSummary[];
804
- nextToken?: string;
807
+ botSummaries?: BotSummary[] | undefined;
808
+ nextToken?: string | undefined;
805
809
  }
806
810
  export interface ListBotVersionReplicasRequest {
807
811
  botId: string | undefined;
808
812
  replicaRegion: string | undefined;
809
- maxResults?: number;
810
- nextToken?: string;
811
- sortBy?: BotVersionReplicaSortBy;
813
+ maxResults?: number | undefined;
814
+ nextToken?: string | undefined;
815
+ sortBy?: BotVersionReplicaSortBy | undefined;
812
816
  }
813
817
  export interface ListBotVersionReplicasResponse {
814
- botId?: string;
815
- sourceRegion?: string;
816
- replicaRegion?: string;
817
- botVersionReplicaSummaries?: BotVersionReplicaSummary[];
818
- nextToken?: string;
818
+ botId?: string | undefined;
819
+ sourceRegion?: string | undefined;
820
+ replicaRegion?: string | undefined;
821
+ botVersionReplicaSummaries?: BotVersionReplicaSummary[] | undefined;
822
+ nextToken?: string | undefined;
819
823
  }
820
824
  export interface ListBotVersionsRequest {
821
825
  botId: string | undefined;
822
- sortBy?: BotVersionSortBy;
823
- maxResults?: number;
824
- nextToken?: string;
826
+ sortBy?: BotVersionSortBy | undefined;
827
+ maxResults?: number | undefined;
828
+ nextToken?: string | undefined;
825
829
  }
826
830
  export interface ListBotVersionsResponse {
827
- botId?: string;
828
- botVersionSummaries?: BotVersionSummary[];
829
- nextToken?: string;
831
+ botId?: string | undefined;
832
+ botVersionSummaries?: BotVersionSummary[] | undefined;
833
+ nextToken?: string | undefined;
830
834
  }
831
835
  export interface ListBuiltInIntentsRequest {
832
836
  localeId: string | undefined;
833
- sortBy?: BuiltInIntentSortBy;
834
- maxResults?: number;
835
- nextToken?: string;
837
+ sortBy?: BuiltInIntentSortBy | undefined;
838
+ maxResults?: number | undefined;
839
+ nextToken?: string | undefined;
836
840
  }
837
841
  export interface ListBuiltInIntentsResponse {
838
- builtInIntentSummaries?: BuiltInIntentSummary[];
839
- nextToken?: string;
840
- localeId?: string;
842
+ builtInIntentSummaries?: BuiltInIntentSummary[] | undefined;
843
+ nextToken?: string | undefined;
844
+ localeId?: string | undefined;
841
845
  }
842
846
  export interface ListBuiltInSlotTypesRequest {
843
847
  localeId: string | undefined;
844
- sortBy?: BuiltInSlotTypeSortBy;
845
- maxResults?: number;
846
- nextToken?: string;
848
+ sortBy?: BuiltInSlotTypeSortBy | undefined;
849
+ maxResults?: number | undefined;
850
+ nextToken?: string | undefined;
847
851
  }
848
852
  export interface ListBuiltInSlotTypesResponse {
849
- builtInSlotTypeSummaries?: BuiltInSlotTypeSummary[];
850
- nextToken?: string;
851
- localeId?: string;
853
+ builtInSlotTypeSummaries?: BuiltInSlotTypeSummary[] | undefined;
854
+ nextToken?: string | undefined;
855
+ localeId?: string | undefined;
852
856
  }
853
857
  export interface ListCustomVocabularyItemsRequest {
854
858
  botId: string | undefined;
855
859
  botVersion: string | undefined;
856
860
  localeId: string | undefined;
857
- maxResults?: number;
858
- nextToken?: string;
861
+ maxResults?: number | undefined;
862
+ nextToken?: string | undefined;
859
863
  }
860
864
  export interface ListCustomVocabularyItemsResponse {
861
- botId?: string;
862
- botVersion?: string;
863
- localeId?: string;
864
- customVocabularyItems?: CustomVocabularyItem[];
865
- nextToken?: string;
865
+ botId?: string | undefined;
866
+ botVersion?: string | undefined;
867
+ localeId?: string | undefined;
868
+ customVocabularyItems?: CustomVocabularyItem[] | undefined;
869
+ nextToken?: string | undefined;
866
870
  }
867
871
  export interface ListExportsRequest {
868
- botId?: string;
869
- botVersion?: string;
870
- sortBy?: ExportSortBy;
871
- filters?: ExportFilter[];
872
- maxResults?: number;
873
- nextToken?: string;
874
- localeId?: string;
872
+ botId?: string | undefined;
873
+ botVersion?: string | undefined;
874
+ sortBy?: ExportSortBy | undefined;
875
+ filters?: ExportFilter[] | undefined;
876
+ maxResults?: number | undefined;
877
+ nextToken?: string | undefined;
878
+ localeId?: string | undefined;
875
879
  }
876
880
  export interface ListExportsResponse {
877
- botId?: string;
878
- botVersion?: string;
879
- exportSummaries?: ExportSummary[];
880
- nextToken?: string;
881
- localeId?: string;
881
+ botId?: string | undefined;
882
+ botVersion?: string | undefined;
883
+ exportSummaries?: ExportSummary[] | undefined;
884
+ nextToken?: string | undefined;
885
+ localeId?: string | undefined;
882
886
  }
883
887
  export interface ListImportsRequest {
884
- botId?: string;
885
- botVersion?: string;
886
- sortBy?: ImportSortBy;
887
- filters?: ImportFilter[];
888
- maxResults?: number;
889
- nextToken?: string;
890
- localeId?: string;
888
+ botId?: string | undefined;
889
+ botVersion?: string | undefined;
890
+ sortBy?: ImportSortBy | undefined;
891
+ filters?: ImportFilter[] | undefined;
892
+ maxResults?: number | undefined;
893
+ nextToken?: string | undefined;
894
+ localeId?: string | undefined;
891
895
  }
892
896
  export interface ListImportsResponse {
893
- botId?: string;
894
- botVersion?: string;
895
- importSummaries?: ImportSummary[];
896
- nextToken?: string;
897
- localeId?: string;
897
+ botId?: string | undefined;
898
+ botVersion?: string | undefined;
899
+ importSummaries?: ImportSummary[] | undefined;
900
+ nextToken?: string | undefined;
901
+ localeId?: string | undefined;
898
902
  }
899
903
  export interface ListIntentMetricsRequest {
900
904
  botId: string | undefined;
901
905
  startDateTime: Date | undefined;
902
906
  endDateTime: Date | undefined;
903
907
  metrics: AnalyticsIntentMetric[] | undefined;
904
- binBy?: AnalyticsBinBySpecification[];
905
- groupBy?: AnalyticsIntentGroupBySpecification[];
906
- filters?: AnalyticsIntentFilter[];
907
- maxResults?: number;
908
- nextToken?: string;
908
+ binBy?: AnalyticsBinBySpecification[] | undefined;
909
+ groupBy?: AnalyticsIntentGroupBySpecification[] | undefined;
910
+ filters?: AnalyticsIntentFilter[] | undefined;
911
+ maxResults?: number | undefined;
912
+ nextToken?: string | undefined;
909
913
  }
910
914
  export interface ListIntentMetricsResponse {
911
- botId?: string;
912
- results?: AnalyticsIntentResult[];
913
- nextToken?: string;
915
+ botId?: string | undefined;
916
+ results?: AnalyticsIntentResult[] | undefined;
917
+ nextToken?: string | undefined;
914
918
  }
915
919
  export interface ListIntentPathsRequest {
916
920
  botId: string | undefined;
917
921
  startDateTime: Date | undefined;
918
922
  endDateTime: Date | undefined;
919
923
  intentPath: string | undefined;
920
- filters?: AnalyticsPathFilter[];
924
+ filters?: AnalyticsPathFilter[] | undefined;
921
925
  }
922
926
  export interface ListIntentPathsResponse {
923
- nodeSummaries?: AnalyticsIntentNodeSummary[];
927
+ nodeSummaries?: AnalyticsIntentNodeSummary[] | undefined;
924
928
  }
925
929
  export interface ListIntentsRequest {
926
930
  botId: string | undefined;
927
931
  botVersion: string | undefined;
928
932
  localeId: string | undefined;
929
- sortBy?: IntentSortBy;
930
- filters?: IntentFilter[];
931
- maxResults?: number;
932
- nextToken?: string;
933
+ sortBy?: IntentSortBy | undefined;
934
+ filters?: IntentFilter[] | undefined;
935
+ maxResults?: number | undefined;
936
+ nextToken?: string | undefined;
933
937
  }
934
938
  export interface ListIntentsResponse {
935
- botId?: string;
936
- botVersion?: string;
937
- localeId?: string;
938
- intentSummaries?: IntentSummary[];
939
- nextToken?: string;
939
+ botId?: string | undefined;
940
+ botVersion?: string | undefined;
941
+ localeId?: string | undefined;
942
+ intentSummaries?: IntentSummary[] | undefined;
943
+ nextToken?: string | undefined;
940
944
  }
941
945
  export interface ListIntentStageMetricsRequest {
942
946
  botId: string | undefined;
943
947
  startDateTime: Date | undefined;
944
948
  endDateTime: Date | undefined;
945
949
  metrics: AnalyticsIntentStageMetric[] | undefined;
946
- binBy?: AnalyticsBinBySpecification[];
947
- groupBy?: AnalyticsIntentStageGroupBySpecification[];
948
- filters?: AnalyticsIntentStageFilter[];
949
- maxResults?: number;
950
- nextToken?: string;
950
+ binBy?: AnalyticsBinBySpecification[] | undefined;
951
+ groupBy?: AnalyticsIntentStageGroupBySpecification[] | undefined;
952
+ filters?: AnalyticsIntentStageFilter[] | undefined;
953
+ maxResults?: number | undefined;
954
+ nextToken?: string | undefined;
951
955
  }
952
956
  export interface ListIntentStageMetricsResponse {
953
- botId?: string;
954
- results?: AnalyticsIntentStageResult[];
955
- nextToken?: string;
957
+ botId?: string | undefined;
958
+ results?: AnalyticsIntentStageResult[] | undefined;
959
+ nextToken?: string | undefined;
956
960
  }
957
961
  export interface ListRecommendedIntentsRequest {
958
962
  botId: string | undefined;
959
963
  botVersion: string | undefined;
960
964
  localeId: string | undefined;
961
965
  botRecommendationId: string | undefined;
962
- nextToken?: string;
963
- maxResults?: number;
966
+ nextToken?: string | undefined;
967
+ maxResults?: number | undefined;
964
968
  }
965
969
  export interface RecommendedIntentSummary {
966
- intentId?: string;
967
- intentName?: string;
968
- sampleUtterancesCount?: number;
970
+ intentId?: string | undefined;
971
+ intentName?: string | undefined;
972
+ sampleUtterancesCount?: number | undefined;
969
973
  }
970
974
  export interface ListRecommendedIntentsResponse {
971
- botId?: string;
972
- botVersion?: string;
973
- localeId?: string;
974
- botRecommendationId?: string;
975
- summaryList?: RecommendedIntentSummary[];
976
- nextToken?: string;
975
+ botId?: string | undefined;
976
+ botVersion?: string | undefined;
977
+ localeId?: string | undefined;
978
+ botRecommendationId?: string | undefined;
979
+ summaryList?: RecommendedIntentSummary[] | undefined;
980
+ nextToken?: string | undefined;
977
981
  }
978
982
  export interface SessionDataSortBy {
979
983
  name: AnalyticsSessionSortByName | undefined;
@@ -983,46 +987,46 @@ export interface ListSessionAnalyticsDataRequest {
983
987
  botId: string | undefined;
984
988
  startDateTime: Date | undefined;
985
989
  endDateTime: Date | undefined;
986
- sortBy?: SessionDataSortBy;
987
- filters?: AnalyticsSessionFilter[];
988
- maxResults?: number;
989
- nextToken?: string;
990
+ sortBy?: SessionDataSortBy | undefined;
991
+ filters?: AnalyticsSessionFilter[] | undefined;
992
+ maxResults?: number | undefined;
993
+ nextToken?: string | undefined;
990
994
  }
991
995
  export interface SessionSpecification {
992
- botAliasId?: string;
993
- botVersion?: string;
994
- localeId?: string;
995
- channel?: string;
996
- sessionId?: string;
997
- conversationStartTime?: Date;
998
- conversationEndTime?: Date;
999
- conversationDurationSeconds?: number;
1000
- conversationEndState?: ConversationEndState;
1001
- mode?: AnalyticsModality;
1002
- numberOfTurns?: number;
1003
- invokedIntentSamples?: InvokedIntentSample[];
1004
- originatingRequestId?: string;
996
+ botAliasId?: string | undefined;
997
+ botVersion?: string | undefined;
998
+ localeId?: string | undefined;
999
+ channel?: string | undefined;
1000
+ sessionId?: string | undefined;
1001
+ conversationStartTime?: Date | undefined;
1002
+ conversationEndTime?: Date | undefined;
1003
+ conversationDurationSeconds?: number | undefined;
1004
+ conversationEndState?: ConversationEndState | undefined;
1005
+ mode?: AnalyticsModality | undefined;
1006
+ numberOfTurns?: number | undefined;
1007
+ invokedIntentSamples?: InvokedIntentSample[] | undefined;
1008
+ originatingRequestId?: string | undefined;
1005
1009
  }
1006
1010
  export interface ListSessionAnalyticsDataResponse {
1007
- botId?: string;
1008
- nextToken?: string;
1009
- sessions?: SessionSpecification[];
1011
+ botId?: string | undefined;
1012
+ nextToken?: string | undefined;
1013
+ sessions?: SessionSpecification[] | undefined;
1010
1014
  }
1011
1015
  export interface ListSessionMetricsRequest {
1012
1016
  botId: string | undefined;
1013
1017
  startDateTime: Date | undefined;
1014
1018
  endDateTime: Date | undefined;
1015
1019
  metrics: AnalyticsSessionMetric[] | undefined;
1016
- binBy?: AnalyticsBinBySpecification[];
1017
- groupBy?: AnalyticsSessionGroupBySpecification[];
1018
- filters?: AnalyticsSessionFilter[];
1019
- maxResults?: number;
1020
- nextToken?: string;
1020
+ binBy?: AnalyticsBinBySpecification[] | undefined;
1021
+ groupBy?: AnalyticsSessionGroupBySpecification[] | undefined;
1022
+ filters?: AnalyticsSessionFilter[] | undefined;
1023
+ maxResults?: number | undefined;
1024
+ nextToken?: string | undefined;
1021
1025
  }
1022
1026
  export interface ListSessionMetricsResponse {
1023
- botId?: string;
1024
- results?: AnalyticsSessionResult[];
1025
- nextToken?: string;
1027
+ botId?: string | undefined;
1028
+ results?: AnalyticsSessionResult[] | undefined;
1029
+ nextToken?: string | undefined;
1026
1030
  }
1027
1031
  export declare const SlotFilterName: {
1028
1032
  readonly SlotName: "SlotName";
@@ -1055,27 +1059,27 @@ export interface ListSlotsRequest {
1055
1059
  botVersion: string | undefined;
1056
1060
  localeId: string | undefined;
1057
1061
  intentId: string | undefined;
1058
- sortBy?: SlotSortBy;
1059
- filters?: SlotFilter[];
1060
- maxResults?: number;
1061
- nextToken?: string;
1062
+ sortBy?: SlotSortBy | undefined;
1063
+ filters?: SlotFilter[] | undefined;
1064
+ maxResults?: number | undefined;
1065
+ nextToken?: string | undefined;
1062
1066
  }
1063
1067
  export interface SlotSummary {
1064
- slotId?: string;
1065
- slotName?: string;
1066
- description?: string;
1067
- slotConstraint?: SlotConstraint;
1068
- slotTypeId?: string;
1069
- valueElicitationPromptSpecification?: PromptSpecification;
1070
- lastUpdatedDateTime?: Date;
1068
+ slotId?: string | undefined;
1069
+ slotName?: string | undefined;
1070
+ description?: string | undefined;
1071
+ slotConstraint?: SlotConstraint | undefined;
1072
+ slotTypeId?: string | undefined;
1073
+ valueElicitationPromptSpecification?: PromptSpecification | undefined;
1074
+ lastUpdatedDateTime?: Date | undefined;
1071
1075
  }
1072
1076
  export interface ListSlotsResponse {
1073
- botId?: string;
1074
- botVersion?: string;
1075
- localeId?: string;
1076
- intentId?: string;
1077
- slotSummaries?: SlotSummary[];
1078
- nextToken?: string;
1077
+ botId?: string | undefined;
1078
+ botVersion?: string | undefined;
1079
+ localeId?: string | undefined;
1080
+ intentId?: string | undefined;
1081
+ slotSummaries?: SlotSummary[] | undefined;
1082
+ nextToken?: string | undefined;
1079
1083
  }
1080
1084
  export declare const SlotTypeFilterName: {
1081
1085
  readonly ExternalSourceType: "ExternalSourceType";
@@ -1108,10 +1112,10 @@ export interface ListSlotTypesRequest {
1108
1112
  botId: string | undefined;
1109
1113
  botVersion: string | undefined;
1110
1114
  localeId: string | undefined;
1111
- sortBy?: SlotTypeSortBy;
1112
- filters?: SlotTypeFilter[];
1113
- maxResults?: number;
1114
- nextToken?: string;
1115
+ sortBy?: SlotTypeSortBy | undefined;
1116
+ filters?: SlotTypeFilter[] | undefined;
1117
+ maxResults?: number | undefined;
1118
+ nextToken?: string | undefined;
1115
1119
  }
1116
1120
  export declare const SlotTypeCategory: {
1117
1121
  readonly Composite: "Composite";
@@ -1122,25 +1126,25 @@ export declare const SlotTypeCategory: {
1122
1126
  export type SlotTypeCategory =
1123
1127
  (typeof SlotTypeCategory)[keyof typeof SlotTypeCategory];
1124
1128
  export interface SlotTypeSummary {
1125
- slotTypeId?: string;
1126
- slotTypeName?: string;
1127
- description?: string;
1128
- parentSlotTypeSignature?: string;
1129
- lastUpdatedDateTime?: Date;
1130
- slotTypeCategory?: SlotTypeCategory;
1129
+ slotTypeId?: string | undefined;
1130
+ slotTypeName?: string | undefined;
1131
+ description?: string | undefined;
1132
+ parentSlotTypeSignature?: string | undefined;
1133
+ lastUpdatedDateTime?: Date | undefined;
1134
+ slotTypeCategory?: SlotTypeCategory | undefined;
1131
1135
  }
1132
1136
  export interface ListSlotTypesResponse {
1133
- botId?: string;
1134
- botVersion?: string;
1135
- localeId?: string;
1136
- slotTypeSummaries?: SlotTypeSummary[];
1137
- nextToken?: string;
1137
+ botId?: string | undefined;
1138
+ botVersion?: string | undefined;
1139
+ localeId?: string | undefined;
1140
+ slotTypeSummaries?: SlotTypeSummary[] | undefined;
1141
+ nextToken?: string | undefined;
1138
1142
  }
1139
1143
  export interface ListTagsForResourceRequest {
1140
1144
  resourceARN: string | undefined;
1141
1145
  }
1142
1146
  export interface ListTagsForResourceResponse {
1143
- tags?: Record<string, string>;
1147
+ tags?: Record<string, string> | undefined;
1144
1148
  }
1145
1149
  export declare const TestResultTypeFilter: {
1146
1150
  readonly ConversationLevelTestResults: "ConversationLevelTestResults";
@@ -1153,20 +1157,22 @@ export type TestResultTypeFilter =
1153
1157
  (typeof TestResultTypeFilter)[keyof typeof TestResultTypeFilter];
1154
1158
  export interface TestExecutionResultFilterBy {
1155
1159
  resultTypeFilter: TestResultTypeFilter | undefined;
1156
- conversationLevelTestResultsFilterBy?: ConversationLevelTestResultsFilterBy;
1160
+ conversationLevelTestResultsFilterBy?:
1161
+ | ConversationLevelTestResultsFilterBy
1162
+ | undefined;
1157
1163
  }
1158
1164
  export interface ListTestExecutionResultItemsRequest {
1159
1165
  testExecutionId: string | undefined;
1160
1166
  resultFilterBy: TestExecutionResultFilterBy | undefined;
1161
- maxResults?: number;
1162
- nextToken?: string;
1167
+ maxResults?: number | undefined;
1168
+ nextToken?: string | undefined;
1163
1169
  }
1164
1170
  export interface OverallTestResultItem {
1165
1171
  multiTurnConversation: boolean | undefined;
1166
1172
  totalResultCount: number | undefined;
1167
- speechTranscriptionResultCounts?: Partial<
1168
- Record<TestResultMatchStatus, number>
1169
- >;
1173
+ speechTranscriptionResultCounts?:
1174
+ | Partial<Record<TestResultMatchStatus, number>>
1175
+ | undefined;
1170
1176
  endToEndResultCounts:
1171
1177
  | Partial<Record<TestResultMatchStatus, number>>
1172
1178
  | undefined;
@@ -1178,8 +1184,8 @@ export interface UtteranceAudioInputSpecification {
1178
1184
  audioFileS3Location: string | undefined;
1179
1185
  }
1180
1186
  export interface UtteranceInputSpecification {
1181
- textInput?: string;
1182
- audioInput?: UtteranceAudioInputSpecification;
1187
+ textInput?: string | undefined;
1188
+ audioInput?: UtteranceAudioInputSpecification | undefined;
1183
1189
  }
1184
1190
  export declare const TestExecutionSortAttribute: {
1185
1191
  readonly CreationDateTime: "CreationDateTime";
@@ -1192,29 +1198,29 @@ export interface TestExecutionSortBy {
1192
1198
  order: SortOrder | undefined;
1193
1199
  }
1194
1200
  export interface ListTestExecutionsRequest {
1195
- sortBy?: TestExecutionSortBy;
1196
- maxResults?: number;
1197
- nextToken?: string;
1201
+ sortBy?: TestExecutionSortBy | undefined;
1202
+ maxResults?: number | undefined;
1203
+ nextToken?: string | undefined;
1198
1204
  }
1199
1205
  export interface TestExecutionSummary {
1200
- testExecutionId?: string;
1201
- creationDateTime?: Date;
1202
- lastUpdatedDateTime?: Date;
1203
- testExecutionStatus?: TestExecutionStatus;
1204
- testSetId?: string;
1205
- testSetName?: string;
1206
- target?: TestExecutionTarget;
1207
- apiMode?: TestExecutionApiMode;
1208
- testExecutionModality?: TestExecutionModality;
1206
+ testExecutionId?: string | undefined;
1207
+ creationDateTime?: Date | undefined;
1208
+ lastUpdatedDateTime?: Date | undefined;
1209
+ testExecutionStatus?: TestExecutionStatus | undefined;
1210
+ testSetId?: string | undefined;
1211
+ testSetName?: string | undefined;
1212
+ target?: TestExecutionTarget | undefined;
1213
+ apiMode?: TestExecutionApiMode | undefined;
1214
+ testExecutionModality?: TestExecutionModality | undefined;
1209
1215
  }
1210
1216
  export interface ListTestExecutionsResponse {
1211
- testExecutions?: TestExecutionSummary[];
1212
- nextToken?: string;
1217
+ testExecutions?: TestExecutionSummary[] | undefined;
1218
+ nextToken?: string | undefined;
1213
1219
  }
1214
1220
  export interface ListTestSetRecordsRequest {
1215
1221
  testSetId: string | undefined;
1216
- maxResults?: number;
1217
- nextToken?: string;
1222
+ maxResults?: number | undefined;
1223
+ nextToken?: string | undefined;
1218
1224
  }
1219
1225
  export declare const TestSetSortAttribute: {
1220
1226
  readonly LastUpdatedDateTime: "LastUpdatedDateTime";
@@ -1227,25 +1233,25 @@ export interface TestSetSortBy {
1227
1233
  order: SortOrder | undefined;
1228
1234
  }
1229
1235
  export interface ListTestSetsRequest {
1230
- sortBy?: TestSetSortBy;
1231
- maxResults?: number;
1232
- nextToken?: string;
1236
+ sortBy?: TestSetSortBy | undefined;
1237
+ maxResults?: number | undefined;
1238
+ nextToken?: string | undefined;
1233
1239
  }
1234
1240
  export interface TestSetSummary {
1235
- testSetId?: string;
1236
- testSetName?: string;
1237
- description?: string;
1238
- modality?: TestSetModality;
1239
- status?: TestSetStatus;
1240
- roleArn?: string;
1241
- numTurns?: number;
1242
- storageLocation?: TestSetStorageLocation;
1243
- creationDateTime?: Date;
1244
- lastUpdatedDateTime?: Date;
1241
+ testSetId?: string | undefined;
1242
+ testSetName?: string | undefined;
1243
+ description?: string | undefined;
1244
+ modality?: TestSetModality | undefined;
1245
+ status?: TestSetStatus | undefined;
1246
+ roleArn?: string | undefined;
1247
+ numTurns?: number | undefined;
1248
+ storageLocation?: TestSetStorageLocation | undefined;
1249
+ creationDateTime?: Date | undefined;
1250
+ lastUpdatedDateTime?: Date | undefined;
1245
1251
  }
1246
1252
  export interface ListTestSetsResponse {
1247
- testSets?: TestSetSummary[];
1248
- nextToken?: string;
1253
+ testSets?: TestSetSummary[] | undefined;
1254
+ nextToken?: string | undefined;
1249
1255
  }
1250
1256
  export interface UtteranceDataSortBy {
1251
1257
  name: AnalyticsUtteranceSortByName | undefined;
@@ -1255,10 +1261,10 @@ export interface ListUtteranceAnalyticsDataRequest {
1255
1261
  botId: string | undefined;
1256
1262
  startDateTime: Date | undefined;
1257
1263
  endDateTime: Date | undefined;
1258
- sortBy?: UtteranceDataSortBy;
1259
- filters?: AnalyticsUtteranceFilter[];
1260
- maxResults?: number;
1261
- nextToken?: string;
1264
+ sortBy?: UtteranceDataSortBy | undefined;
1265
+ filters?: AnalyticsUtteranceFilter[] | undefined;
1266
+ maxResults?: number | undefined;
1267
+ nextToken?: string | undefined;
1262
1268
  }
1263
1269
  export declare const UtteranceContentType: {
1264
1270
  readonly CustomPayload: "CustomPayload";
@@ -1269,55 +1275,55 @@ export declare const UtteranceContentType: {
1269
1275
  export type UtteranceContentType =
1270
1276
  (typeof UtteranceContentType)[keyof typeof UtteranceContentType];
1271
1277
  export interface UtteranceBotResponse {
1272
- content?: string;
1273
- contentType?: UtteranceContentType;
1274
- imageResponseCard?: ImageResponseCard;
1278
+ content?: string | undefined;
1279
+ contentType?: UtteranceContentType | undefined;
1280
+ imageResponseCard?: ImageResponseCard | undefined;
1275
1281
  }
1276
1282
  export interface UtteranceSpecification {
1277
- botAliasId?: string;
1278
- botVersion?: string;
1279
- localeId?: string;
1280
- sessionId?: string;
1281
- channel?: string;
1282
- mode?: AnalyticsModality;
1283
- conversationStartTime?: Date;
1284
- conversationEndTime?: Date;
1285
- utterance?: string;
1286
- utteranceTimestamp?: Date;
1287
- audioVoiceDurationMillis?: number;
1288
- utteranceUnderstood?: boolean;
1289
- inputType?: string;
1290
- outputType?: string;
1291
- associatedIntentName?: string;
1292
- associatedSlotName?: string;
1293
- intentState?: IntentState;
1294
- dialogActionType?: string;
1295
- botResponseAudioVoiceId?: string;
1296
- slotsFilledInSession?: string;
1297
- utteranceRequestId?: string;
1298
- botResponses?: UtteranceBotResponse[];
1283
+ botAliasId?: string | undefined;
1284
+ botVersion?: string | undefined;
1285
+ localeId?: string | undefined;
1286
+ sessionId?: string | undefined;
1287
+ channel?: string | undefined;
1288
+ mode?: AnalyticsModality | undefined;
1289
+ conversationStartTime?: Date | undefined;
1290
+ conversationEndTime?: Date | undefined;
1291
+ utterance?: string | undefined;
1292
+ utteranceTimestamp?: Date | undefined;
1293
+ audioVoiceDurationMillis?: number | undefined;
1294
+ utteranceUnderstood?: boolean | undefined;
1295
+ inputType?: string | undefined;
1296
+ outputType?: string | undefined;
1297
+ associatedIntentName?: string | undefined;
1298
+ associatedSlotName?: string | undefined;
1299
+ intentState?: IntentState | undefined;
1300
+ dialogActionType?: string | undefined;
1301
+ botResponseAudioVoiceId?: string | undefined;
1302
+ slotsFilledInSession?: string | undefined;
1303
+ utteranceRequestId?: string | undefined;
1304
+ botResponses?: UtteranceBotResponse[] | undefined;
1299
1305
  }
1300
1306
  export interface ListUtteranceAnalyticsDataResponse {
1301
- botId?: string;
1302
- nextToken?: string;
1303
- utterances?: UtteranceSpecification[];
1307
+ botId?: string | undefined;
1308
+ nextToken?: string | undefined;
1309
+ utterances?: UtteranceSpecification[] | undefined;
1304
1310
  }
1305
1311
  export interface ListUtteranceMetricsRequest {
1306
1312
  botId: string | undefined;
1307
1313
  startDateTime: Date | undefined;
1308
1314
  endDateTime: Date | undefined;
1309
1315
  metrics: AnalyticsUtteranceMetric[] | undefined;
1310
- binBy?: AnalyticsBinBySpecification[];
1311
- groupBy?: AnalyticsUtteranceGroupBySpecification[];
1312
- attributes?: AnalyticsUtteranceAttribute[];
1313
- filters?: AnalyticsUtteranceFilter[];
1314
- maxResults?: number;
1315
- nextToken?: string;
1316
+ binBy?: AnalyticsBinBySpecification[] | undefined;
1317
+ groupBy?: AnalyticsUtteranceGroupBySpecification[] | undefined;
1318
+ attributes?: AnalyticsUtteranceAttribute[] | undefined;
1319
+ filters?: AnalyticsUtteranceFilter[] | undefined;
1320
+ maxResults?: number | undefined;
1321
+ nextToken?: string | undefined;
1316
1322
  }
1317
1323
  export interface ListUtteranceMetricsResponse {
1318
- botId?: string;
1319
- results?: AnalyticsUtteranceResult[];
1320
- nextToken?: string;
1324
+ botId?: string | undefined;
1325
+ results?: AnalyticsUtteranceResult[] | undefined;
1326
+ nextToken?: string | undefined;
1321
1327
  }
1322
1328
  export declare const SearchOrder: {
1323
1329
  readonly Ascending: "Ascending";
@@ -1329,36 +1335,36 @@ export interface SearchAssociatedTranscriptsRequest {
1329
1335
  botVersion: string | undefined;
1330
1336
  localeId: string | undefined;
1331
1337
  botRecommendationId: string | undefined;
1332
- searchOrder?: SearchOrder;
1338
+ searchOrder?: SearchOrder | undefined;
1333
1339
  filters: AssociatedTranscriptFilter[] | undefined;
1334
- maxResults?: number;
1335
- nextIndex?: number;
1340
+ maxResults?: number | undefined;
1341
+ nextIndex?: number | undefined;
1336
1342
  }
1337
1343
  export interface SearchAssociatedTranscriptsResponse {
1338
- botId?: string;
1339
- botVersion?: string;
1340
- localeId?: string;
1341
- botRecommendationId?: string;
1342
- nextIndex?: number;
1343
- associatedTranscripts?: AssociatedTranscript[];
1344
- totalResults?: number;
1344
+ botId?: string | undefined;
1345
+ botVersion?: string | undefined;
1346
+ localeId?: string | undefined;
1347
+ botRecommendationId?: string | undefined;
1348
+ nextIndex?: number | undefined;
1349
+ associatedTranscripts?: AssociatedTranscript[] | undefined;
1350
+ totalResults?: number | undefined;
1345
1351
  }
1346
1352
  export interface StartBotRecommendationRequest {
1347
1353
  botId: string | undefined;
1348
1354
  botVersion: string | undefined;
1349
1355
  localeId: string | undefined;
1350
1356
  transcriptSourceSetting: TranscriptSourceSetting | undefined;
1351
- encryptionSetting?: EncryptionSetting;
1357
+ encryptionSetting?: EncryptionSetting | undefined;
1352
1358
  }
1353
1359
  export interface StartBotRecommendationResponse {
1354
- botId?: string;
1355
- botVersion?: string;
1356
- localeId?: string;
1357
- botRecommendationStatus?: BotRecommendationStatus;
1358
- botRecommendationId?: string;
1359
- creationDateTime?: Date;
1360
- transcriptSourceSetting?: TranscriptSourceSetting;
1361
- encryptionSetting?: EncryptionSetting;
1360
+ botId?: string | undefined;
1361
+ botVersion?: string | undefined;
1362
+ localeId?: string | undefined;
1363
+ botRecommendationStatus?: BotRecommendationStatus | undefined;
1364
+ botRecommendationId?: string | undefined;
1365
+ creationDateTime?: Date | undefined;
1366
+ transcriptSourceSetting?: TranscriptSourceSetting | undefined;
1367
+ encryptionSetting?: EncryptionSetting | undefined;
1362
1368
  }
1363
1369
  export interface StartBotResourceGenerationRequest {
1364
1370
  generationInputPrompt: string | undefined;
@@ -1367,59 +1373,59 @@ export interface StartBotResourceGenerationRequest {
1367
1373
  localeId: string | undefined;
1368
1374
  }
1369
1375
  export interface StartBotResourceGenerationResponse {
1370
- generationInputPrompt?: string;
1371
- generationId?: string;
1372
- botId?: string;
1373
- botVersion?: string;
1374
- localeId?: string;
1375
- generationStatus?: GenerationStatus;
1376
- creationDateTime?: Date;
1376
+ generationInputPrompt?: string | undefined;
1377
+ generationId?: string | undefined;
1378
+ botId?: string | undefined;
1379
+ botVersion?: string | undefined;
1380
+ localeId?: string | undefined;
1381
+ generationStatus?: GenerationStatus | undefined;
1382
+ creationDateTime?: Date | undefined;
1377
1383
  }
1378
1384
  export interface StartImportRequest {
1379
1385
  importId: string | undefined;
1380
1386
  resourceSpecification: ImportResourceSpecification | undefined;
1381
1387
  mergeStrategy: MergeStrategy | undefined;
1382
- filePassword?: string;
1388
+ filePassword?: string | undefined;
1383
1389
  }
1384
1390
  export interface StartImportResponse {
1385
- importId?: string;
1386
- resourceSpecification?: ImportResourceSpecification;
1387
- mergeStrategy?: MergeStrategy;
1388
- importStatus?: ImportStatus;
1389
- creationDateTime?: Date;
1391
+ importId?: string | undefined;
1392
+ resourceSpecification?: ImportResourceSpecification | undefined;
1393
+ mergeStrategy?: MergeStrategy | undefined;
1394
+ importStatus?: ImportStatus | undefined;
1395
+ creationDateTime?: Date | undefined;
1390
1396
  }
1391
1397
  export interface StartTestExecutionRequest {
1392
1398
  testSetId: string | undefined;
1393
1399
  target: TestExecutionTarget | undefined;
1394
1400
  apiMode: TestExecutionApiMode | undefined;
1395
- testExecutionModality?: TestExecutionModality;
1401
+ testExecutionModality?: TestExecutionModality | undefined;
1396
1402
  }
1397
1403
  export interface StartTestExecutionResponse {
1398
- testExecutionId?: string;
1399
- creationDateTime?: Date;
1400
- testSetId?: string;
1401
- target?: TestExecutionTarget;
1402
- apiMode?: TestExecutionApiMode;
1403
- testExecutionModality?: TestExecutionModality;
1404
+ testExecutionId?: string | undefined;
1405
+ creationDateTime?: Date | undefined;
1406
+ testSetId?: string | undefined;
1407
+ target?: TestExecutionTarget | undefined;
1408
+ apiMode?: TestExecutionApiMode | undefined;
1409
+ testExecutionModality?: TestExecutionModality | undefined;
1404
1410
  }
1405
1411
  export interface StartTestSetGenerationRequest {
1406
1412
  testSetName: string | undefined;
1407
- description?: string;
1413
+ description?: string | undefined;
1408
1414
  storageLocation: TestSetStorageLocation | undefined;
1409
1415
  generationDataSource: TestSetGenerationDataSource | undefined;
1410
1416
  roleArn: string | undefined;
1411
- testSetTags?: Record<string, string>;
1417
+ testSetTags?: Record<string, string> | undefined;
1412
1418
  }
1413
1419
  export interface StartTestSetGenerationResponse {
1414
- testSetGenerationId?: string;
1415
- creationDateTime?: Date;
1416
- testSetGenerationStatus?: TestSetGenerationStatus;
1417
- testSetName?: string;
1418
- description?: string;
1419
- storageLocation?: TestSetStorageLocation;
1420
- generationDataSource?: TestSetGenerationDataSource;
1421
- roleArn?: string;
1422
- testSetTags?: Record<string, string>;
1420
+ testSetGenerationId?: string | undefined;
1421
+ creationDateTime?: Date | undefined;
1422
+ testSetGenerationStatus?: TestSetGenerationStatus | undefined;
1423
+ testSetName?: string | undefined;
1424
+ description?: string | undefined;
1425
+ storageLocation?: TestSetStorageLocation | undefined;
1426
+ generationDataSource?: TestSetGenerationDataSource | undefined;
1427
+ roleArn?: string | undefined;
1428
+ testSetTags?: Record<string, string> | undefined;
1423
1429
  }
1424
1430
  export interface StopBotRecommendationRequest {
1425
1431
  botId: string | undefined;
@@ -1428,11 +1434,11 @@ export interface StopBotRecommendationRequest {
1428
1434
  botRecommendationId: string | undefined;
1429
1435
  }
1430
1436
  export interface StopBotRecommendationResponse {
1431
- botId?: string;
1432
- botVersion?: string;
1433
- localeId?: string;
1434
- botRecommendationStatus?: BotRecommendationStatus;
1435
- botRecommendationId?: string;
1437
+ botId?: string | undefined;
1438
+ botVersion?: string | undefined;
1439
+ localeId?: string | undefined;
1440
+ botRecommendationStatus?: BotRecommendationStatus | undefined;
1441
+ botRecommendationId?: string | undefined;
1436
1442
  }
1437
1443
  export interface TagResourceRequest {
1438
1444
  resourceARN: string | undefined;
@@ -1447,72 +1453,72 @@ export interface UntagResourceResponse {}
1447
1453
  export interface UpdateBotRequest {
1448
1454
  botId: string | undefined;
1449
1455
  botName: string | undefined;
1450
- description?: string;
1456
+ description?: string | undefined;
1451
1457
  roleArn: string | undefined;
1452
1458
  dataPrivacy: DataPrivacy | undefined;
1453
1459
  idleSessionTTLInSeconds: number | undefined;
1454
- botType?: BotType;
1455
- botMembers?: BotMember[];
1460
+ botType?: BotType | undefined;
1461
+ botMembers?: BotMember[] | undefined;
1456
1462
  }
1457
1463
  export interface UpdateBotResponse {
1458
- botId?: string;
1459
- botName?: string;
1460
- description?: string;
1461
- roleArn?: string;
1462
- dataPrivacy?: DataPrivacy;
1463
- idleSessionTTLInSeconds?: number;
1464
- botStatus?: BotStatus;
1465
- creationDateTime?: Date;
1466
- lastUpdatedDateTime?: Date;
1467
- botType?: BotType;
1468
- botMembers?: BotMember[];
1464
+ botId?: string | undefined;
1465
+ botName?: string | undefined;
1466
+ description?: string | undefined;
1467
+ roleArn?: string | undefined;
1468
+ dataPrivacy?: DataPrivacy | undefined;
1469
+ idleSessionTTLInSeconds?: number | undefined;
1470
+ botStatus?: BotStatus | undefined;
1471
+ creationDateTime?: Date | undefined;
1472
+ lastUpdatedDateTime?: Date | undefined;
1473
+ botType?: BotType | undefined;
1474
+ botMembers?: BotMember[] | undefined;
1469
1475
  }
1470
1476
  export interface UpdateBotAliasRequest {
1471
1477
  botAliasId: string | undefined;
1472
1478
  botAliasName: string | undefined;
1473
- description?: string;
1474
- botVersion?: string;
1475
- botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
1476
- conversationLogSettings?: ConversationLogSettings;
1477
- sentimentAnalysisSettings?: SentimentAnalysisSettings;
1479
+ description?: string | undefined;
1480
+ botVersion?: string | undefined;
1481
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings> | undefined;
1482
+ conversationLogSettings?: ConversationLogSettings | undefined;
1483
+ sentimentAnalysisSettings?: SentimentAnalysisSettings | undefined;
1478
1484
  botId: string | undefined;
1479
1485
  }
1480
1486
  export interface UpdateBotAliasResponse {
1481
- botAliasId?: string;
1482
- botAliasName?: string;
1483
- description?: string;
1484
- botVersion?: string;
1485
- botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
1486
- conversationLogSettings?: ConversationLogSettings;
1487
- sentimentAnalysisSettings?: SentimentAnalysisSettings;
1488
- botAliasStatus?: BotAliasStatus;
1489
- botId?: string;
1490
- creationDateTime?: Date;
1491
- lastUpdatedDateTime?: Date;
1487
+ botAliasId?: string | undefined;
1488
+ botAliasName?: string | undefined;
1489
+ description?: string | undefined;
1490
+ botVersion?: string | undefined;
1491
+ botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings> | undefined;
1492
+ conversationLogSettings?: ConversationLogSettings | undefined;
1493
+ sentimentAnalysisSettings?: SentimentAnalysisSettings | undefined;
1494
+ botAliasStatus?: BotAliasStatus | undefined;
1495
+ botId?: string | undefined;
1496
+ creationDateTime?: Date | undefined;
1497
+ lastUpdatedDateTime?: Date | undefined;
1492
1498
  }
1493
1499
  export interface UpdateBotLocaleRequest {
1494
1500
  botId: string | undefined;
1495
1501
  botVersion: string | undefined;
1496
1502
  localeId: string | undefined;
1497
- description?: string;
1503
+ description?: string | undefined;
1498
1504
  nluIntentConfidenceThreshold: number | undefined;
1499
- voiceSettings?: VoiceSettings;
1500
- generativeAISettings?: GenerativeAISettings;
1505
+ voiceSettings?: VoiceSettings | undefined;
1506
+ generativeAISettings?: GenerativeAISettings | undefined;
1501
1507
  }
1502
1508
  export interface UpdateBotLocaleResponse {
1503
- botId?: string;
1504
- botVersion?: string;
1505
- localeId?: string;
1506
- localeName?: string;
1507
- description?: string;
1508
- nluIntentConfidenceThreshold?: number;
1509
- voiceSettings?: VoiceSettings;
1510
- botLocaleStatus?: BotLocaleStatus;
1511
- failureReasons?: string[];
1512
- creationDateTime?: Date;
1513
- lastUpdatedDateTime?: Date;
1514
- recommendedActions?: string[];
1515
- generativeAISettings?: GenerativeAISettings;
1509
+ botId?: string | undefined;
1510
+ botVersion?: string | undefined;
1511
+ localeId?: string | undefined;
1512
+ localeName?: string | undefined;
1513
+ description?: string | undefined;
1514
+ nluIntentConfidenceThreshold?: number | undefined;
1515
+ voiceSettings?: VoiceSettings | undefined;
1516
+ botLocaleStatus?: BotLocaleStatus | undefined;
1517
+ failureReasons?: string[] | undefined;
1518
+ creationDateTime?: Date | undefined;
1519
+ lastUpdatedDateTime?: Date | undefined;
1520
+ recommendedActions?: string[] | undefined;
1521
+ generativeAISettings?: GenerativeAISettings | undefined;
1516
1522
  }
1517
1523
  export interface UpdateBotRecommendationRequest {
1518
1524
  botId: string | undefined;
@@ -1522,136 +1528,136 @@ export interface UpdateBotRecommendationRequest {
1522
1528
  encryptionSetting: EncryptionSetting | undefined;
1523
1529
  }
1524
1530
  export interface UpdateBotRecommendationResponse {
1525
- botId?: string;
1526
- botVersion?: string;
1527
- localeId?: string;
1528
- botRecommendationStatus?: BotRecommendationStatus;
1529
- botRecommendationId?: string;
1530
- creationDateTime?: Date;
1531
- lastUpdatedDateTime?: Date;
1532
- transcriptSourceSetting?: TranscriptSourceSetting;
1533
- encryptionSetting?: EncryptionSetting;
1531
+ botId?: string | undefined;
1532
+ botVersion?: string | undefined;
1533
+ localeId?: string | undefined;
1534
+ botRecommendationStatus?: BotRecommendationStatus | undefined;
1535
+ botRecommendationId?: string | undefined;
1536
+ creationDateTime?: Date | undefined;
1537
+ lastUpdatedDateTime?: Date | undefined;
1538
+ transcriptSourceSetting?: TranscriptSourceSetting | undefined;
1539
+ encryptionSetting?: EncryptionSetting | undefined;
1534
1540
  }
1535
1541
  export interface UpdateExportRequest {
1536
1542
  exportId: string | undefined;
1537
- filePassword?: string;
1543
+ filePassword?: string | undefined;
1538
1544
  }
1539
1545
  export interface UpdateExportResponse {
1540
- exportId?: string;
1541
- resourceSpecification?: ExportResourceSpecification;
1542
- fileFormat?: ImportExportFileFormat;
1543
- exportStatus?: ExportStatus;
1544
- creationDateTime?: Date;
1545
- lastUpdatedDateTime?: Date;
1546
+ exportId?: string | undefined;
1547
+ resourceSpecification?: ExportResourceSpecification | undefined;
1548
+ fileFormat?: ImportExportFileFormat | undefined;
1549
+ exportStatus?: ExportStatus | undefined;
1550
+ creationDateTime?: Date | undefined;
1551
+ lastUpdatedDateTime?: Date | undefined;
1546
1552
  }
1547
1553
  export interface UpdateResourcePolicyRequest {
1548
1554
  resourceArn: string | undefined;
1549
1555
  policy: string | undefined;
1550
- expectedRevisionId?: string;
1556
+ expectedRevisionId?: string | undefined;
1551
1557
  }
1552
1558
  export interface UpdateResourcePolicyResponse {
1553
- resourceArn?: string;
1554
- revisionId?: string;
1559
+ resourceArn?: string | undefined;
1560
+ revisionId?: string | undefined;
1555
1561
  }
1556
1562
  export interface UpdateSlotTypeRequest {
1557
1563
  slotTypeId: string | undefined;
1558
1564
  slotTypeName: string | undefined;
1559
- description?: string;
1560
- slotTypeValues?: SlotTypeValue[];
1561
- valueSelectionSetting?: SlotValueSelectionSetting;
1562
- parentSlotTypeSignature?: string;
1565
+ description?: string | undefined;
1566
+ slotTypeValues?: SlotTypeValue[] | undefined;
1567
+ valueSelectionSetting?: SlotValueSelectionSetting | undefined;
1568
+ parentSlotTypeSignature?: string | undefined;
1563
1569
  botId: string | undefined;
1564
1570
  botVersion: string | undefined;
1565
1571
  localeId: string | undefined;
1566
- externalSourceSetting?: ExternalSourceSetting;
1567
- compositeSlotTypeSetting?: CompositeSlotTypeSetting;
1572
+ externalSourceSetting?: ExternalSourceSetting | undefined;
1573
+ compositeSlotTypeSetting?: CompositeSlotTypeSetting | undefined;
1568
1574
  }
1569
1575
  export interface UpdateSlotTypeResponse {
1570
- slotTypeId?: string;
1571
- slotTypeName?: string;
1572
- description?: string;
1573
- slotTypeValues?: SlotTypeValue[];
1574
- valueSelectionSetting?: SlotValueSelectionSetting;
1575
- parentSlotTypeSignature?: string;
1576
- botId?: string;
1577
- botVersion?: string;
1578
- localeId?: string;
1579
- creationDateTime?: Date;
1580
- lastUpdatedDateTime?: Date;
1581
- externalSourceSetting?: ExternalSourceSetting;
1582
- compositeSlotTypeSetting?: CompositeSlotTypeSetting;
1576
+ slotTypeId?: string | undefined;
1577
+ slotTypeName?: string | undefined;
1578
+ description?: string | undefined;
1579
+ slotTypeValues?: SlotTypeValue[] | undefined;
1580
+ valueSelectionSetting?: SlotValueSelectionSetting | undefined;
1581
+ parentSlotTypeSignature?: string | undefined;
1582
+ botId?: string | undefined;
1583
+ botVersion?: string | undefined;
1584
+ localeId?: string | undefined;
1585
+ creationDateTime?: Date | undefined;
1586
+ lastUpdatedDateTime?: Date | undefined;
1587
+ externalSourceSetting?: ExternalSourceSetting | undefined;
1588
+ compositeSlotTypeSetting?: CompositeSlotTypeSetting | undefined;
1583
1589
  }
1584
1590
  export interface UpdateTestSetRequest {
1585
1591
  testSetId: string | undefined;
1586
1592
  testSetName: string | undefined;
1587
- description?: string;
1593
+ description?: string | undefined;
1588
1594
  }
1589
1595
  export interface UpdateTestSetResponse {
1590
- testSetId?: string;
1591
- testSetName?: string;
1592
- description?: string;
1593
- modality?: TestSetModality;
1594
- status?: TestSetStatus;
1595
- roleArn?: string;
1596
- numTurns?: number;
1597
- storageLocation?: TestSetStorageLocation;
1598
- creationDateTime?: Date;
1599
- lastUpdatedDateTime?: Date;
1596
+ testSetId?: string | undefined;
1597
+ testSetName?: string | undefined;
1598
+ description?: string | undefined;
1599
+ modality?: TestSetModality | undefined;
1600
+ status?: TestSetStatus | undefined;
1601
+ roleArn?: string | undefined;
1602
+ numTurns?: number | undefined;
1603
+ storageLocation?: TestSetStorageLocation | undefined;
1604
+ creationDateTime?: Date | undefined;
1605
+ lastUpdatedDateTime?: Date | undefined;
1600
1606
  }
1601
1607
  export interface RuntimeHintDetails {
1602
- runtimeHintValues?: RuntimeHintValue[];
1603
- subSlotHints?: Record<string, RuntimeHintDetails>;
1608
+ runtimeHintValues?: RuntimeHintValue[] | undefined;
1609
+ subSlotHints?: Record<string, RuntimeHintDetails> | undefined;
1604
1610
  }
1605
1611
  export interface SlotValueOverride {
1606
- shape?: SlotShape;
1607
- value?: SlotValue;
1608
- values?: SlotValueOverride[];
1612
+ shape?: SlotShape | undefined;
1613
+ value?: SlotValue | undefined;
1614
+ values?: SlotValueOverride[] | undefined;
1609
1615
  }
1610
1616
  export interface IntentOverride {
1611
- name?: string;
1612
- slots?: Record<string, SlotValueOverride>;
1617
+ name?: string | undefined;
1618
+ slots?: Record<string, SlotValueOverride> | undefined;
1613
1619
  }
1614
1620
  export interface RuntimeHints {
1615
- slotHints?: Record<string, Record<string, RuntimeHintDetails>>;
1621
+ slotHints?: Record<string, Record<string, RuntimeHintDetails>> | undefined;
1616
1622
  }
1617
1623
  export interface UserTurnSlotOutput {
1618
- value?: string;
1619
- values?: UserTurnSlotOutput[];
1620
- subSlots?: Record<string, UserTurnSlotOutput>;
1624
+ value?: string | undefined;
1625
+ values?: UserTurnSlotOutput[] | undefined;
1626
+ subSlots?: Record<string, UserTurnSlotOutput> | undefined;
1621
1627
  }
1622
1628
  export interface DialogState {
1623
- dialogAction?: DialogAction;
1624
- intent?: IntentOverride;
1625
- sessionAttributes?: Record<string, string>;
1629
+ dialogAction?: DialogAction | undefined;
1630
+ intent?: IntentOverride | undefined;
1631
+ sessionAttributes?: Record<string, string> | undefined;
1626
1632
  }
1627
1633
  export interface InputSessionStateSpecification {
1628
- sessionAttributes?: Record<string, string>;
1629
- activeContexts?: ActiveContext[];
1630
- runtimeHints?: RuntimeHints;
1634
+ sessionAttributes?: Record<string, string> | undefined;
1635
+ activeContexts?: ActiveContext[] | undefined;
1636
+ runtimeHints?: RuntimeHints | undefined;
1631
1637
  }
1632
1638
  export interface ConditionalBranch {
1633
1639
  name: string | undefined;
1634
1640
  condition: Condition | undefined;
1635
1641
  nextStep: DialogState | undefined;
1636
- response?: ResponseSpecification;
1642
+ response?: ResponseSpecification | undefined;
1637
1643
  }
1638
1644
  export interface DefaultConditionalBranch {
1639
- nextStep?: DialogState;
1640
- response?: ResponseSpecification;
1645
+ nextStep?: DialogState | undefined;
1646
+ response?: ResponseSpecification | undefined;
1641
1647
  }
1642
1648
  export interface UserTurnInputSpecification {
1643
1649
  utteranceInput: UtteranceInputSpecification | undefined;
1644
- requestAttributes?: Record<string, string>;
1645
- sessionState?: InputSessionStateSpecification;
1650
+ requestAttributes?: Record<string, string> | undefined;
1651
+ sessionState?: InputSessionStateSpecification | undefined;
1646
1652
  }
1647
1653
  export interface UserTurnIntentOutput {
1648
1654
  name: string | undefined;
1649
- slots?: Record<string, UserTurnSlotOutput>;
1655
+ slots?: Record<string, UserTurnSlotOutput> | undefined;
1650
1656
  }
1651
1657
  export interface UserTurnOutputSpecification {
1652
1658
  intent: UserTurnIntentOutput | undefined;
1653
- activeContexts?: ActiveContext[];
1654
- transcript?: string;
1659
+ activeContexts?: ActiveContext[] | undefined;
1660
+ transcript?: string | undefined;
1655
1661
  }
1656
1662
  export interface ConditionalSpecification {
1657
1663
  active: boolean | undefined;
@@ -1663,310 +1669,314 @@ export interface UserTurnSpecification {
1663
1669
  expected: UserTurnOutputSpecification | undefined;
1664
1670
  }
1665
1671
  export interface TurnSpecification {
1666
- agentTurn?: AgentTurnSpecification;
1667
- userTurn?: UserTurnSpecification;
1672
+ agentTurn?: AgentTurnSpecification | undefined;
1673
+ userTurn?: UserTurnSpecification | undefined;
1668
1674
  }
1669
1675
  export interface IntentClosingSetting {
1670
- closingResponse?: ResponseSpecification;
1671
- active?: boolean;
1672
- nextStep?: DialogState;
1673
- conditional?: ConditionalSpecification;
1676
+ closingResponse?: ResponseSpecification | undefined;
1677
+ active?: boolean | undefined;
1678
+ nextStep?: DialogState | undefined;
1679
+ conditional?: ConditionalSpecification | undefined;
1674
1680
  }
1675
1681
  export interface TestSetTurnRecord {
1676
1682
  recordNumber: number | undefined;
1677
- conversationId?: string;
1678
- turnNumber?: number;
1683
+ conversationId?: string | undefined;
1684
+ turnNumber?: number | undefined;
1679
1685
  turnSpecification: TurnSpecification | undefined;
1680
1686
  }
1681
1687
  export interface UserTurnResult {
1682
1688
  input: UserTurnInputSpecification | undefined;
1683
1689
  expectedOutput: UserTurnOutputSpecification | undefined;
1684
- actualOutput?: UserTurnOutputSpecification;
1685
- errorDetails?: ExecutionErrorDetails;
1686
- endToEndResult?: TestResultMatchStatus;
1687
- intentMatchResult?: TestResultMatchStatus;
1688
- slotMatchResult?: TestResultMatchStatus;
1689
- speechTranscriptionResult?: TestResultMatchStatus;
1690
- conversationLevelResult?: ConversationLevelResultDetail;
1690
+ actualOutput?: UserTurnOutputSpecification | undefined;
1691
+ errorDetails?: ExecutionErrorDetails | undefined;
1692
+ endToEndResult?: TestResultMatchStatus | undefined;
1693
+ intentMatchResult?: TestResultMatchStatus | undefined;
1694
+ slotMatchResult?: TestResultMatchStatus | undefined;
1695
+ speechTranscriptionResult?: TestResultMatchStatus | undefined;
1696
+ conversationLevelResult?: ConversationLevelResultDetail | undefined;
1691
1697
  }
1692
1698
  export interface ListTestSetRecordsResponse {
1693
- testSetRecords?: TestSetTurnRecord[];
1694
- nextToken?: string;
1699
+ testSetRecords?: TestSetTurnRecord[] | undefined;
1700
+ nextToken?: string | undefined;
1695
1701
  }
1696
1702
  export interface TestSetTurnResult {
1697
- agent?: AgentTurnResult;
1698
- user?: UserTurnResult;
1703
+ agent?: AgentTurnResult | undefined;
1704
+ user?: UserTurnResult | undefined;
1699
1705
  }
1700
1706
  export interface UtteranceLevelTestResultItem {
1701
1707
  recordNumber: number | undefined;
1702
- conversationId?: string;
1708
+ conversationId?: string | undefined;
1703
1709
  turnResult: TestSetTurnResult | undefined;
1704
1710
  }
1705
1711
  export interface UtteranceLevelTestResults {
1706
1712
  items: UtteranceLevelTestResultItem[] | undefined;
1707
1713
  }
1708
1714
  export interface TestExecutionResultItems {
1709
- overallTestResults?: OverallTestResults;
1710
- conversationLevelTestResults?: ConversationLevelTestResults;
1711
- intentClassificationTestResults?: IntentClassificationTestResults;
1712
- intentLevelSlotResolutionTestResults?: IntentLevelSlotResolutionTestResults;
1713
- utteranceLevelTestResults?: UtteranceLevelTestResults;
1715
+ overallTestResults?: OverallTestResults | undefined;
1716
+ conversationLevelTestResults?: ConversationLevelTestResults | undefined;
1717
+ intentClassificationTestResults?: IntentClassificationTestResults | undefined;
1718
+ intentLevelSlotResolutionTestResults?:
1719
+ | IntentLevelSlotResolutionTestResults
1720
+ | undefined;
1721
+ utteranceLevelTestResults?: UtteranceLevelTestResults | undefined;
1714
1722
  }
1715
1723
  export interface ListTestExecutionResultItemsResponse {
1716
- testExecutionResults?: TestExecutionResultItems;
1717
- nextToken?: string;
1724
+ testExecutionResults?: TestExecutionResultItems | undefined;
1725
+ nextToken?: string | undefined;
1718
1726
  }
1719
1727
  export interface PostDialogCodeHookInvocationSpecification {
1720
- successResponse?: ResponseSpecification;
1721
- successNextStep?: DialogState;
1722
- successConditional?: ConditionalSpecification;
1723
- failureResponse?: ResponseSpecification;
1724
- failureNextStep?: DialogState;
1725
- failureConditional?: ConditionalSpecification;
1726
- timeoutResponse?: ResponseSpecification;
1727
- timeoutNextStep?: DialogState;
1728
- timeoutConditional?: ConditionalSpecification;
1728
+ successResponse?: ResponseSpecification | undefined;
1729
+ successNextStep?: DialogState | undefined;
1730
+ successConditional?: ConditionalSpecification | undefined;
1731
+ failureResponse?: ResponseSpecification | undefined;
1732
+ failureNextStep?: DialogState | undefined;
1733
+ failureConditional?: ConditionalSpecification | undefined;
1734
+ timeoutResponse?: ResponseSpecification | undefined;
1735
+ timeoutNextStep?: DialogState | undefined;
1736
+ timeoutConditional?: ConditionalSpecification | undefined;
1729
1737
  }
1730
1738
  export interface PostFulfillmentStatusSpecification {
1731
- successResponse?: ResponseSpecification;
1732
- failureResponse?: ResponseSpecification;
1733
- timeoutResponse?: ResponseSpecification;
1734
- successNextStep?: DialogState;
1735
- successConditional?: ConditionalSpecification;
1736
- failureNextStep?: DialogState;
1737
- failureConditional?: ConditionalSpecification;
1738
- timeoutNextStep?: DialogState;
1739
- timeoutConditional?: ConditionalSpecification;
1739
+ successResponse?: ResponseSpecification | undefined;
1740
+ failureResponse?: ResponseSpecification | undefined;
1741
+ timeoutResponse?: ResponseSpecification | undefined;
1742
+ successNextStep?: DialogState | undefined;
1743
+ successConditional?: ConditionalSpecification | undefined;
1744
+ failureNextStep?: DialogState | undefined;
1745
+ failureConditional?: ConditionalSpecification | undefined;
1746
+ timeoutNextStep?: DialogState | undefined;
1747
+ timeoutConditional?: ConditionalSpecification | undefined;
1740
1748
  }
1741
1749
  export interface DialogCodeHookInvocationSetting {
1742
1750
  enableCodeHookInvocation: boolean | undefined;
1743
1751
  active: boolean | undefined;
1744
- invocationLabel?: string;
1752
+ invocationLabel?: string | undefined;
1745
1753
  postCodeHookSpecification:
1746
1754
  | PostDialogCodeHookInvocationSpecification
1747
1755
  | undefined;
1748
1756
  }
1749
1757
  export interface FulfillmentCodeHookSettings {
1750
1758
  enabled: boolean | undefined;
1751
- postFulfillmentStatusSpecification?: PostFulfillmentStatusSpecification;
1752
- fulfillmentUpdatesSpecification?: FulfillmentUpdatesSpecification;
1753
- active?: boolean;
1759
+ postFulfillmentStatusSpecification?:
1760
+ | PostFulfillmentStatusSpecification
1761
+ | undefined;
1762
+ fulfillmentUpdatesSpecification?: FulfillmentUpdatesSpecification | undefined;
1763
+ active?: boolean | undefined;
1754
1764
  }
1755
1765
  export interface InitialResponseSetting {
1756
- initialResponse?: ResponseSpecification;
1757
- nextStep?: DialogState;
1758
- conditional?: ConditionalSpecification;
1759
- codeHook?: DialogCodeHookInvocationSetting;
1766
+ initialResponse?: ResponseSpecification | undefined;
1767
+ nextStep?: DialogState | undefined;
1768
+ conditional?: ConditionalSpecification | undefined;
1769
+ codeHook?: DialogCodeHookInvocationSetting | undefined;
1760
1770
  }
1761
1771
  export interface SlotCaptureSetting {
1762
- captureResponse?: ResponseSpecification;
1763
- captureNextStep?: DialogState;
1764
- captureConditional?: ConditionalSpecification;
1765
- failureResponse?: ResponseSpecification;
1766
- failureNextStep?: DialogState;
1767
- failureConditional?: ConditionalSpecification;
1768
- codeHook?: DialogCodeHookInvocationSetting;
1769
- elicitationCodeHook?: ElicitationCodeHookInvocationSetting;
1772
+ captureResponse?: ResponseSpecification | undefined;
1773
+ captureNextStep?: DialogState | undefined;
1774
+ captureConditional?: ConditionalSpecification | undefined;
1775
+ failureResponse?: ResponseSpecification | undefined;
1776
+ failureNextStep?: DialogState | undefined;
1777
+ failureConditional?: ConditionalSpecification | undefined;
1778
+ codeHook?: DialogCodeHookInvocationSetting | undefined;
1779
+ elicitationCodeHook?: ElicitationCodeHookInvocationSetting | undefined;
1770
1780
  }
1771
1781
  export interface SlotValueElicitationSetting {
1772
- defaultValueSpecification?: SlotDefaultValueSpecification;
1782
+ defaultValueSpecification?: SlotDefaultValueSpecification | undefined;
1773
1783
  slotConstraint: SlotConstraint | undefined;
1774
- promptSpecification?: PromptSpecification;
1775
- sampleUtterances?: SampleUtterance[];
1776
- waitAndContinueSpecification?: WaitAndContinueSpecification;
1777
- slotCaptureSetting?: SlotCaptureSetting;
1778
- slotResolutionSetting?: SlotResolutionSetting;
1784
+ promptSpecification?: PromptSpecification | undefined;
1785
+ sampleUtterances?: SampleUtterance[] | undefined;
1786
+ waitAndContinueSpecification?: WaitAndContinueSpecification | undefined;
1787
+ slotCaptureSetting?: SlotCaptureSetting | undefined;
1788
+ slotResolutionSetting?: SlotResolutionSetting | undefined;
1779
1789
  }
1780
1790
  export interface IntentConfirmationSetting {
1781
1791
  promptSpecification: PromptSpecification | undefined;
1782
- declinationResponse?: ResponseSpecification;
1783
- active?: boolean;
1784
- confirmationResponse?: ResponseSpecification;
1785
- confirmationNextStep?: DialogState;
1786
- confirmationConditional?: ConditionalSpecification;
1787
- declinationNextStep?: DialogState;
1788
- declinationConditional?: ConditionalSpecification;
1789
- failureResponse?: ResponseSpecification;
1790
- failureNextStep?: DialogState;
1791
- failureConditional?: ConditionalSpecification;
1792
- codeHook?: DialogCodeHookInvocationSetting;
1793
- elicitationCodeHook?: ElicitationCodeHookInvocationSetting;
1792
+ declinationResponse?: ResponseSpecification | undefined;
1793
+ active?: boolean | undefined;
1794
+ confirmationResponse?: ResponseSpecification | undefined;
1795
+ confirmationNextStep?: DialogState | undefined;
1796
+ confirmationConditional?: ConditionalSpecification | undefined;
1797
+ declinationNextStep?: DialogState | undefined;
1798
+ declinationConditional?: ConditionalSpecification | undefined;
1799
+ failureResponse?: ResponseSpecification | undefined;
1800
+ failureNextStep?: DialogState | undefined;
1801
+ failureConditional?: ConditionalSpecification | undefined;
1802
+ codeHook?: DialogCodeHookInvocationSetting | undefined;
1803
+ elicitationCodeHook?: ElicitationCodeHookInvocationSetting | undefined;
1794
1804
  }
1795
1805
  export interface CreateSlotRequest {
1796
1806
  slotName: string | undefined;
1797
- description?: string;
1798
- slotTypeId?: string;
1807
+ description?: string | undefined;
1808
+ slotTypeId?: string | undefined;
1799
1809
  valueElicitationSetting: SlotValueElicitationSetting | undefined;
1800
- obfuscationSetting?: ObfuscationSetting;
1810
+ obfuscationSetting?: ObfuscationSetting | undefined;
1801
1811
  botId: string | undefined;
1802
1812
  botVersion: string | undefined;
1803
1813
  localeId: string | undefined;
1804
1814
  intentId: string | undefined;
1805
- multipleValuesSetting?: MultipleValuesSetting;
1806
- subSlotSetting?: SubSlotSetting;
1815
+ multipleValuesSetting?: MultipleValuesSetting | undefined;
1816
+ subSlotSetting?: SubSlotSetting | undefined;
1807
1817
  }
1808
1818
  export interface CreateSlotResponse {
1809
- slotId?: string;
1810
- slotName?: string;
1811
- description?: string;
1812
- slotTypeId?: string;
1813
- valueElicitationSetting?: SlotValueElicitationSetting;
1814
- obfuscationSetting?: ObfuscationSetting;
1815
- botId?: string;
1816
- botVersion?: string;
1817
- localeId?: string;
1818
- intentId?: string;
1819
- creationDateTime?: Date;
1820
- multipleValuesSetting?: MultipleValuesSetting;
1821
- subSlotSetting?: SubSlotSetting;
1819
+ slotId?: string | undefined;
1820
+ slotName?: string | undefined;
1821
+ description?: string | undefined;
1822
+ slotTypeId?: string | undefined;
1823
+ valueElicitationSetting?: SlotValueElicitationSetting | undefined;
1824
+ obfuscationSetting?: ObfuscationSetting | undefined;
1825
+ botId?: string | undefined;
1826
+ botVersion?: string | undefined;
1827
+ localeId?: string | undefined;
1828
+ intentId?: string | undefined;
1829
+ creationDateTime?: Date | undefined;
1830
+ multipleValuesSetting?: MultipleValuesSetting | undefined;
1831
+ subSlotSetting?: SubSlotSetting | undefined;
1822
1832
  }
1823
1833
  export interface DescribeSlotResponse {
1824
- slotId?: string;
1825
- slotName?: string;
1826
- description?: string;
1827
- slotTypeId?: string;
1828
- valueElicitationSetting?: SlotValueElicitationSetting;
1829
- obfuscationSetting?: ObfuscationSetting;
1830
- botId?: string;
1831
- botVersion?: string;
1832
- localeId?: string;
1833
- intentId?: string;
1834
- creationDateTime?: Date;
1835
- lastUpdatedDateTime?: Date;
1836
- multipleValuesSetting?: MultipleValuesSetting;
1837
- subSlotSetting?: SubSlotSetting;
1834
+ slotId?: string | undefined;
1835
+ slotName?: string | undefined;
1836
+ description?: string | undefined;
1837
+ slotTypeId?: string | undefined;
1838
+ valueElicitationSetting?: SlotValueElicitationSetting | undefined;
1839
+ obfuscationSetting?: ObfuscationSetting | undefined;
1840
+ botId?: string | undefined;
1841
+ botVersion?: string | undefined;
1842
+ localeId?: string | undefined;
1843
+ intentId?: string | undefined;
1844
+ creationDateTime?: Date | undefined;
1845
+ lastUpdatedDateTime?: Date | undefined;
1846
+ multipleValuesSetting?: MultipleValuesSetting | undefined;
1847
+ subSlotSetting?: SubSlotSetting | undefined;
1838
1848
  }
1839
1849
  export interface UpdateSlotRequest {
1840
1850
  slotId: string | undefined;
1841
1851
  slotName: string | undefined;
1842
- description?: string;
1843
- slotTypeId?: string;
1852
+ description?: string | undefined;
1853
+ slotTypeId?: string | undefined;
1844
1854
  valueElicitationSetting: SlotValueElicitationSetting | undefined;
1845
- obfuscationSetting?: ObfuscationSetting;
1855
+ obfuscationSetting?: ObfuscationSetting | undefined;
1846
1856
  botId: string | undefined;
1847
1857
  botVersion: string | undefined;
1848
1858
  localeId: string | undefined;
1849
1859
  intentId: string | undefined;
1850
- multipleValuesSetting?: MultipleValuesSetting;
1851
- subSlotSetting?: SubSlotSetting;
1860
+ multipleValuesSetting?: MultipleValuesSetting | undefined;
1861
+ subSlotSetting?: SubSlotSetting | undefined;
1852
1862
  }
1853
1863
  export interface UpdateSlotResponse {
1854
- slotId?: string;
1855
- slotName?: string;
1856
- description?: string;
1857
- slotTypeId?: string;
1858
- valueElicitationSetting?: SlotValueElicitationSetting;
1859
- obfuscationSetting?: ObfuscationSetting;
1860
- botId?: string;
1861
- botVersion?: string;
1862
- localeId?: string;
1863
- intentId?: string;
1864
- creationDateTime?: Date;
1865
- lastUpdatedDateTime?: Date;
1866
- multipleValuesSetting?: MultipleValuesSetting;
1867
- subSlotSetting?: SubSlotSetting;
1864
+ slotId?: string | undefined;
1865
+ slotName?: string | undefined;
1866
+ description?: string | undefined;
1867
+ slotTypeId?: string | undefined;
1868
+ valueElicitationSetting?: SlotValueElicitationSetting | undefined;
1869
+ obfuscationSetting?: ObfuscationSetting | undefined;
1870
+ botId?: string | undefined;
1871
+ botVersion?: string | undefined;
1872
+ localeId?: string | undefined;
1873
+ intentId?: string | undefined;
1874
+ creationDateTime?: Date | undefined;
1875
+ lastUpdatedDateTime?: Date | undefined;
1876
+ multipleValuesSetting?: MultipleValuesSetting | undefined;
1877
+ subSlotSetting?: SubSlotSetting | undefined;
1868
1878
  }
1869
1879
  export interface CreateIntentRequest {
1870
1880
  intentName: string | undefined;
1871
- description?: string;
1872
- parentIntentSignature?: string;
1873
- sampleUtterances?: SampleUtterance[];
1874
- dialogCodeHook?: DialogCodeHookSettings;
1875
- fulfillmentCodeHook?: FulfillmentCodeHookSettings;
1876
- intentConfirmationSetting?: IntentConfirmationSetting;
1877
- intentClosingSetting?: IntentClosingSetting;
1878
- inputContexts?: InputContext[];
1879
- outputContexts?: OutputContext[];
1880
- kendraConfiguration?: KendraConfiguration;
1881
+ description?: string | undefined;
1882
+ parentIntentSignature?: string | undefined;
1883
+ sampleUtterances?: SampleUtterance[] | undefined;
1884
+ dialogCodeHook?: DialogCodeHookSettings | undefined;
1885
+ fulfillmentCodeHook?: FulfillmentCodeHookSettings | undefined;
1886
+ intentConfirmationSetting?: IntentConfirmationSetting | undefined;
1887
+ intentClosingSetting?: IntentClosingSetting | undefined;
1888
+ inputContexts?: InputContext[] | undefined;
1889
+ outputContexts?: OutputContext[] | undefined;
1890
+ kendraConfiguration?: KendraConfiguration | undefined;
1881
1891
  botId: string | undefined;
1882
1892
  botVersion: string | undefined;
1883
1893
  localeId: string | undefined;
1884
- initialResponseSetting?: InitialResponseSetting;
1885
- qnAIntentConfiguration?: QnAIntentConfiguration;
1894
+ initialResponseSetting?: InitialResponseSetting | undefined;
1895
+ qnAIntentConfiguration?: QnAIntentConfiguration | undefined;
1886
1896
  }
1887
1897
  export interface CreateIntentResponse {
1888
- intentId?: string;
1889
- intentName?: string;
1890
- description?: string;
1891
- parentIntentSignature?: string;
1892
- sampleUtterances?: SampleUtterance[];
1893
- dialogCodeHook?: DialogCodeHookSettings;
1894
- fulfillmentCodeHook?: FulfillmentCodeHookSettings;
1895
- intentConfirmationSetting?: IntentConfirmationSetting;
1896
- intentClosingSetting?: IntentClosingSetting;
1897
- inputContexts?: InputContext[];
1898
- outputContexts?: OutputContext[];
1899
- kendraConfiguration?: KendraConfiguration;
1900
- botId?: string;
1901
- botVersion?: string;
1902
- localeId?: string;
1903
- creationDateTime?: Date;
1904
- initialResponseSetting?: InitialResponseSetting;
1905
- qnAIntentConfiguration?: QnAIntentConfiguration;
1898
+ intentId?: string | undefined;
1899
+ intentName?: string | undefined;
1900
+ description?: string | undefined;
1901
+ parentIntentSignature?: string | undefined;
1902
+ sampleUtterances?: SampleUtterance[] | undefined;
1903
+ dialogCodeHook?: DialogCodeHookSettings | undefined;
1904
+ fulfillmentCodeHook?: FulfillmentCodeHookSettings | undefined;
1905
+ intentConfirmationSetting?: IntentConfirmationSetting | undefined;
1906
+ intentClosingSetting?: IntentClosingSetting | undefined;
1907
+ inputContexts?: InputContext[] | undefined;
1908
+ outputContexts?: OutputContext[] | undefined;
1909
+ kendraConfiguration?: KendraConfiguration | undefined;
1910
+ botId?: string | undefined;
1911
+ botVersion?: string | undefined;
1912
+ localeId?: string | undefined;
1913
+ creationDateTime?: Date | undefined;
1914
+ initialResponseSetting?: InitialResponseSetting | undefined;
1915
+ qnAIntentConfiguration?: QnAIntentConfiguration | undefined;
1906
1916
  }
1907
1917
  export interface DescribeIntentResponse {
1908
- intentId?: string;
1909
- intentName?: string;
1910
- description?: string;
1911
- parentIntentSignature?: string;
1912
- sampleUtterances?: SampleUtterance[];
1913
- dialogCodeHook?: DialogCodeHookSettings;
1914
- fulfillmentCodeHook?: FulfillmentCodeHookSettings;
1915
- slotPriorities?: SlotPriority[];
1916
- intentConfirmationSetting?: IntentConfirmationSetting;
1917
- intentClosingSetting?: IntentClosingSetting;
1918
- inputContexts?: InputContext[];
1919
- outputContexts?: OutputContext[];
1920
- kendraConfiguration?: KendraConfiguration;
1921
- botId?: string;
1922
- botVersion?: string;
1923
- localeId?: string;
1924
- creationDateTime?: Date;
1925
- lastUpdatedDateTime?: Date;
1926
- initialResponseSetting?: InitialResponseSetting;
1927
- qnAIntentConfiguration?: QnAIntentConfiguration;
1918
+ intentId?: string | undefined;
1919
+ intentName?: string | undefined;
1920
+ description?: string | undefined;
1921
+ parentIntentSignature?: string | undefined;
1922
+ sampleUtterances?: SampleUtterance[] | undefined;
1923
+ dialogCodeHook?: DialogCodeHookSettings | undefined;
1924
+ fulfillmentCodeHook?: FulfillmentCodeHookSettings | undefined;
1925
+ slotPriorities?: SlotPriority[] | undefined;
1926
+ intentConfirmationSetting?: IntentConfirmationSetting | undefined;
1927
+ intentClosingSetting?: IntentClosingSetting | undefined;
1928
+ inputContexts?: InputContext[] | undefined;
1929
+ outputContexts?: OutputContext[] | undefined;
1930
+ kendraConfiguration?: KendraConfiguration | undefined;
1931
+ botId?: string | undefined;
1932
+ botVersion?: string | undefined;
1933
+ localeId?: string | undefined;
1934
+ creationDateTime?: Date | undefined;
1935
+ lastUpdatedDateTime?: Date | undefined;
1936
+ initialResponseSetting?: InitialResponseSetting | undefined;
1937
+ qnAIntentConfiguration?: QnAIntentConfiguration | undefined;
1928
1938
  }
1929
1939
  export interface UpdateIntentRequest {
1930
1940
  intentId: string | undefined;
1931
1941
  intentName: string | undefined;
1932
- description?: string;
1933
- parentIntentSignature?: string;
1934
- sampleUtterances?: SampleUtterance[];
1935
- dialogCodeHook?: DialogCodeHookSettings;
1936
- fulfillmentCodeHook?: FulfillmentCodeHookSettings;
1937
- slotPriorities?: SlotPriority[];
1938
- intentConfirmationSetting?: IntentConfirmationSetting;
1939
- intentClosingSetting?: IntentClosingSetting;
1940
- inputContexts?: InputContext[];
1941
- outputContexts?: OutputContext[];
1942
- kendraConfiguration?: KendraConfiguration;
1942
+ description?: string | undefined;
1943
+ parentIntentSignature?: string | undefined;
1944
+ sampleUtterances?: SampleUtterance[] | undefined;
1945
+ dialogCodeHook?: DialogCodeHookSettings | undefined;
1946
+ fulfillmentCodeHook?: FulfillmentCodeHookSettings | undefined;
1947
+ slotPriorities?: SlotPriority[] | undefined;
1948
+ intentConfirmationSetting?: IntentConfirmationSetting | undefined;
1949
+ intentClosingSetting?: IntentClosingSetting | undefined;
1950
+ inputContexts?: InputContext[] | undefined;
1951
+ outputContexts?: OutputContext[] | undefined;
1952
+ kendraConfiguration?: KendraConfiguration | undefined;
1943
1953
  botId: string | undefined;
1944
1954
  botVersion: string | undefined;
1945
1955
  localeId: string | undefined;
1946
- initialResponseSetting?: InitialResponseSetting;
1947
- qnAIntentConfiguration?: QnAIntentConfiguration;
1956
+ initialResponseSetting?: InitialResponseSetting | undefined;
1957
+ qnAIntentConfiguration?: QnAIntentConfiguration | undefined;
1948
1958
  }
1949
1959
  export interface UpdateIntentResponse {
1950
- intentId?: string;
1951
- intentName?: string;
1952
- description?: string;
1953
- parentIntentSignature?: string;
1954
- sampleUtterances?: SampleUtterance[];
1955
- dialogCodeHook?: DialogCodeHookSettings;
1956
- fulfillmentCodeHook?: FulfillmentCodeHookSettings;
1957
- slotPriorities?: SlotPriority[];
1958
- intentConfirmationSetting?: IntentConfirmationSetting;
1959
- intentClosingSetting?: IntentClosingSetting;
1960
- inputContexts?: InputContext[];
1961
- outputContexts?: OutputContext[];
1962
- kendraConfiguration?: KendraConfiguration;
1963
- botId?: string;
1964
- botVersion?: string;
1965
- localeId?: string;
1966
- creationDateTime?: Date;
1967
- lastUpdatedDateTime?: Date;
1968
- initialResponseSetting?: InitialResponseSetting;
1969
- qnAIntentConfiguration?: QnAIntentConfiguration;
1960
+ intentId?: string | undefined;
1961
+ intentName?: string | undefined;
1962
+ description?: string | undefined;
1963
+ parentIntentSignature?: string | undefined;
1964
+ sampleUtterances?: SampleUtterance[] | undefined;
1965
+ dialogCodeHook?: DialogCodeHookSettings | undefined;
1966
+ fulfillmentCodeHook?: FulfillmentCodeHookSettings | undefined;
1967
+ slotPriorities?: SlotPriority[] | undefined;
1968
+ intentConfirmationSetting?: IntentConfirmationSetting | undefined;
1969
+ intentClosingSetting?: IntentClosingSetting | undefined;
1970
+ inputContexts?: InputContext[] | undefined;
1971
+ outputContexts?: OutputContext[] | undefined;
1972
+ kendraConfiguration?: KendraConfiguration | undefined;
1973
+ botId?: string | undefined;
1974
+ botVersion?: string | undefined;
1975
+ localeId?: string | undefined;
1976
+ creationDateTime?: Date | undefined;
1977
+ lastUpdatedDateTime?: Date | undefined;
1978
+ initialResponseSetting?: InitialResponseSetting | undefined;
1979
+ qnAIntentConfiguration?: QnAIntentConfiguration | undefined;
1970
1980
  }
1971
1981
  export declare const EncryptionSettingFilterSensitiveLog: (
1972
1982
  obj: EncryptionSetting