@aws-sdk/client-lex-models-v2 3.428.0 → 3.430.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.
@@ -151,12 +151,12 @@ export interface DescribeTestExecutionResponse {
151
151
  testExecutionId?: string;
152
152
  creationDateTime?: Date;
153
153
  lastUpdatedDateTime?: Date;
154
- testExecutionStatus?: TestExecutionStatus | string;
154
+ testExecutionStatus?: TestExecutionStatus;
155
155
  testSetId?: string;
156
156
  testSetName?: string;
157
157
  target?: TestExecutionTarget;
158
- apiMode?: TestExecutionApiMode | string;
159
- testExecutionModality?: TestExecutionModality | string;
158
+ apiMode?: TestExecutionApiMode;
159
+ testExecutionModality?: TestExecutionModality;
160
160
  failureReasons?: string[];
161
161
  }
162
162
  export interface DescribeTestSetRequest {
@@ -174,8 +174,8 @@ export interface DescribeTestSetResponse {
174
174
  testSetId?: string;
175
175
  testSetName?: string;
176
176
  description?: string;
177
- modality?: TestSetModality | string;
178
- status?: TestSetStatus | string;
177
+ modality?: TestSetModality;
178
+ status?: TestSetStatus;
179
179
  roleArn?: string;
180
180
  numTurns?: number;
181
181
  storageLocation?: TestSetStorageLocation;
@@ -210,7 +210,7 @@ export interface DescribeTestSetDiscrepancyReportResponse {
210
210
  testSetId?: string;
211
211
  creationDateTime?: Date;
212
212
  target?: TestSetDiscrepancyReportResourceTarget;
213
- testSetDiscrepancyReportStatus?: TestSetDiscrepancyReportStatus | string;
213
+ testSetDiscrepancyReportStatus?: TestSetDiscrepancyReportStatus;
214
214
  lastUpdatedDataTime?: Date;
215
215
  testSetDiscrepancyTopErrors?: TestSetDiscrepancyErrors;
216
216
  testSetDiscrepancyRawOutputUrl?: string;
@@ -232,7 +232,7 @@ export type TestSetGenerationStatus =
232
232
  (typeof TestSetGenerationStatus)[keyof typeof TestSetGenerationStatus];
233
233
  export interface DescribeTestSetGenerationResponse {
234
234
  testSetGenerationId?: string;
235
- testSetGenerationStatus?: TestSetGenerationStatus | string;
235
+ testSetGenerationStatus?: TestSetGenerationStatus;
236
236
  failureReasons?: string[];
237
237
  testSetId?: string;
238
238
  testSetName?: string;
@@ -255,9 +255,9 @@ export declare const ExportFilterOperator: {
255
255
  export type ExportFilterOperator =
256
256
  (typeof ExportFilterOperator)[keyof typeof ExportFilterOperator];
257
257
  export interface ExportFilter {
258
- name: ExportFilterName | string | undefined;
258
+ name: ExportFilterName | undefined;
259
259
  values: string[] | undefined;
260
- operator: ExportFilterOperator | string | undefined;
260
+ operator: ExportFilterOperator | undefined;
261
261
  }
262
262
  export declare const ExportSortAttribute: {
263
263
  readonly LastUpdatedDateTime: "LastUpdatedDateTime";
@@ -265,14 +265,14 @@ export declare const ExportSortAttribute: {
265
265
  export type ExportSortAttribute =
266
266
  (typeof ExportSortAttribute)[keyof typeof ExportSortAttribute];
267
267
  export interface ExportSortBy {
268
- attribute: ExportSortAttribute | string | undefined;
269
- order: SortOrder | string | undefined;
268
+ attribute: ExportSortAttribute | undefined;
269
+ order: SortOrder | undefined;
270
270
  }
271
271
  export interface ExportSummary {
272
272
  exportId?: string;
273
273
  resourceSpecification?: ExportResourceSpecification;
274
- fileFormat?: ImportExportFileFormat | string;
275
- exportStatus?: ExportStatus | string;
274
+ fileFormat?: ImportExportFileFormat;
275
+ exportStatus?: ExportStatus;
276
276
  creationDateTime?: Date;
277
277
  lastUpdatedDateTime?: Date;
278
278
  }
@@ -295,9 +295,9 @@ export declare const ImportFilterOperator: {
295
295
  export type ImportFilterOperator =
296
296
  (typeof ImportFilterOperator)[keyof typeof ImportFilterOperator];
297
297
  export interface ImportFilter {
298
- name: ImportFilterName | string | undefined;
298
+ name: ImportFilterName | undefined;
299
299
  values: string[] | undefined;
300
- operator: ImportFilterOperator | string | undefined;
300
+ operator: ImportFilterOperator | undefined;
301
301
  }
302
302
  export declare const ImportResourceType: {
303
303
  readonly Bot: "Bot";
@@ -313,26 +313,26 @@ export declare const ImportSortAttribute: {
313
313
  export type ImportSortAttribute =
314
314
  (typeof ImportSortAttribute)[keyof typeof ImportSortAttribute];
315
315
  export interface ImportSortBy {
316
- attribute: ImportSortAttribute | string | undefined;
317
- order: SortOrder | string | undefined;
316
+ attribute: ImportSortAttribute | undefined;
317
+ order: SortOrder | undefined;
318
318
  }
319
319
  export interface ImportSummary {
320
320
  importId?: string;
321
321
  importedResourceId?: string;
322
322
  importedResourceName?: string;
323
- importStatus?: ImportStatus | string;
324
- mergeStrategy?: MergeStrategy | string;
323
+ importStatus?: ImportStatus;
324
+ mergeStrategy?: MergeStrategy;
325
325
  creationDateTime?: Date;
326
326
  lastUpdatedDateTime?: Date;
327
- importedResourceType?: ImportResourceType | string;
327
+ importedResourceType?: ImportResourceType;
328
328
  }
329
329
  export interface RuntimeHintValue {
330
330
  phrase: string | undefined;
331
331
  }
332
332
  export interface IntentClassificationTestResultItemCounts {
333
333
  totalResultCount: number | undefined;
334
- speechTranscriptionResultCounts?: Record<string, number>;
335
- intentMatchResultCounts: Record<string, number> | undefined;
334
+ speechTranscriptionResultCounts?: Record<TestResultMatchStatus, number>;
335
+ intentMatchResultCounts: Record<TestResultMatchStatus, number> | undefined;
336
336
  }
337
337
  export interface IntentClassificationTestResultItem {
338
338
  intentName: string | undefined;
@@ -354,14 +354,14 @@ export declare const IntentFilterOperator: {
354
354
  export type IntentFilterOperator =
355
355
  (typeof IntentFilterOperator)[keyof typeof IntentFilterOperator];
356
356
  export interface IntentFilter {
357
- name: IntentFilterName | string | undefined;
357
+ name: IntentFilterName | undefined;
358
358
  values: string[] | undefined;
359
- operator: IntentFilterOperator | string | undefined;
359
+ operator: IntentFilterOperator | undefined;
360
360
  }
361
361
  export interface SlotResolutionTestResultItemCounts {
362
362
  totalResultCount: number | undefined;
363
- speechTranscriptionResultCounts?: Record<string, number>;
364
- slotMatchResultCounts: Record<string, number> | undefined;
363
+ speechTranscriptionResultCounts?: Record<TestResultMatchStatus, number>;
364
+ slotMatchResultCounts: Record<TestResultMatchStatus, number> | undefined;
365
365
  }
366
366
  export interface SlotResolutionTestResultItem {
367
367
  slotName: string | undefined;
@@ -382,8 +382,8 @@ export declare const IntentSortAttribute: {
382
382
  export type IntentSortAttribute =
383
383
  (typeof IntentSortAttribute)[keyof typeof IntentSortAttribute];
384
384
  export interface IntentSortBy {
385
- attribute: IntentSortAttribute | string | undefined;
386
- order: SortOrder | string | undefined;
385
+ attribute: IntentSortAttribute | undefined;
386
+ order: SortOrder | undefined;
387
387
  }
388
388
  export declare const IntentState: {
389
389
  readonly Failed: "Failed";
@@ -413,7 +413,7 @@ export declare const TimeDimension: {
413
413
  };
414
414
  export type TimeDimension = (typeof TimeDimension)[keyof typeof TimeDimension];
415
415
  export interface RelativeAggregationDuration {
416
- timeDimension: TimeDimension | string | undefined;
416
+ timeDimension: TimeDimension | undefined;
417
417
  timeValue: number | undefined;
418
418
  }
419
419
  export interface UtteranceAggregationDuration {
@@ -649,8 +649,8 @@ export interface ListRecommendedIntentsResponse {
649
649
  nextToken?: string;
650
650
  }
651
651
  export interface SessionDataSortBy {
652
- name: AnalyticsSessionSortByName | string | undefined;
653
- order: AnalyticsSortOrder | string | undefined;
652
+ name: AnalyticsSessionSortByName | undefined;
653
+ order: AnalyticsSortOrder | undefined;
654
654
  }
655
655
  export interface ListSessionAnalyticsDataRequest {
656
656
  botId: string | undefined;
@@ -670,8 +670,8 @@ export interface SessionSpecification {
670
670
  conversationStartTime?: Date;
671
671
  conversationEndTime?: Date;
672
672
  conversationDurationSeconds?: number;
673
- conversationEndState?: ConversationEndState | string;
674
- mode?: AnalyticsModality | string;
673
+ conversationEndState?: ConversationEndState;
674
+ mode?: AnalyticsModality;
675
675
  numberOfTurns?: number;
676
676
  invokedIntentSamples?: InvokedIntentSample[];
677
677
  originatingRequestId?: string;
@@ -709,9 +709,9 @@ export declare const SlotFilterOperator: {
709
709
  export type SlotFilterOperator =
710
710
  (typeof SlotFilterOperator)[keyof typeof SlotFilterOperator];
711
711
  export interface SlotFilter {
712
- name: SlotFilterName | string | undefined;
712
+ name: SlotFilterName | undefined;
713
713
  values: string[] | undefined;
714
- operator: SlotFilterOperator | string | undefined;
714
+ operator: SlotFilterOperator | undefined;
715
715
  }
716
716
  export declare const SlotSortAttribute: {
717
717
  readonly LastUpdatedDateTime: "LastUpdatedDateTime";
@@ -720,8 +720,8 @@ export declare const SlotSortAttribute: {
720
720
  export type SlotSortAttribute =
721
721
  (typeof SlotSortAttribute)[keyof typeof SlotSortAttribute];
722
722
  export interface SlotSortBy {
723
- attribute: SlotSortAttribute | string | undefined;
724
- order: SortOrder | string | undefined;
723
+ attribute: SlotSortAttribute | undefined;
724
+ order: SortOrder | undefined;
725
725
  }
726
726
  export interface ListSlotsRequest {
727
727
  botId: string | undefined;
@@ -737,7 +737,7 @@ export interface SlotSummary {
737
737
  slotId?: string;
738
738
  slotName?: string;
739
739
  description?: string;
740
- slotConstraint?: SlotConstraint | string;
740
+ slotConstraint?: SlotConstraint;
741
741
  slotTypeId?: string;
742
742
  valueElicitationPromptSpecification?: PromptSpecification;
743
743
  lastUpdatedDateTime?: Date;
@@ -763,9 +763,9 @@ export declare const SlotTypeFilterOperator: {
763
763
  export type SlotTypeFilterOperator =
764
764
  (typeof SlotTypeFilterOperator)[keyof typeof SlotTypeFilterOperator];
765
765
  export interface SlotTypeFilter {
766
- name: SlotTypeFilterName | string | undefined;
766
+ name: SlotTypeFilterName | undefined;
767
767
  values: string[] | undefined;
768
- operator: SlotTypeFilterOperator | string | undefined;
768
+ operator: SlotTypeFilterOperator | undefined;
769
769
  }
770
770
  export declare const SlotTypeSortAttribute: {
771
771
  readonly LastUpdatedDateTime: "LastUpdatedDateTime";
@@ -774,8 +774,8 @@ export declare const SlotTypeSortAttribute: {
774
774
  export type SlotTypeSortAttribute =
775
775
  (typeof SlotTypeSortAttribute)[keyof typeof SlotTypeSortAttribute];
776
776
  export interface SlotTypeSortBy {
777
- attribute: SlotTypeSortAttribute | string | undefined;
778
- order: SortOrder | string | undefined;
777
+ attribute: SlotTypeSortAttribute | undefined;
778
+ order: SortOrder | undefined;
779
779
  }
780
780
  export interface ListSlotTypesRequest {
781
781
  botId: string | undefined;
@@ -800,7 +800,7 @@ export interface SlotTypeSummary {
800
800
  description?: string;
801
801
  parentSlotTypeSignature?: string;
802
802
  lastUpdatedDateTime?: Date;
803
- slotTypeCategory?: SlotTypeCategory | string;
803
+ slotTypeCategory?: SlotTypeCategory;
804
804
  }
805
805
  export interface ListSlotTypesResponse {
806
806
  botId?: string;
@@ -825,7 +825,7 @@ export declare const TestResultTypeFilter: {
825
825
  export type TestResultTypeFilter =
826
826
  (typeof TestResultTypeFilter)[keyof typeof TestResultTypeFilter];
827
827
  export interface TestExecutionResultFilterBy {
828
- resultTypeFilter: TestResultTypeFilter | string | undefined;
828
+ resultTypeFilter: TestResultTypeFilter | undefined;
829
829
  conversationLevelTestResultsFilterBy?: ConversationLevelTestResultsFilterBy;
830
830
  }
831
831
  export interface ListTestExecutionResultItemsRequest {
@@ -837,8 +837,8 @@ export interface ListTestExecutionResultItemsRequest {
837
837
  export interface OverallTestResultItem {
838
838
  multiTurnConversation: boolean | undefined;
839
839
  totalResultCount: number | undefined;
840
- speechTranscriptionResultCounts?: Record<string, number>;
841
- endToEndResultCounts: Record<string, number> | undefined;
840
+ speechTranscriptionResultCounts?: Record<TestResultMatchStatus, number>;
841
+ endToEndResultCounts: Record<TestResultMatchStatus, number> | undefined;
842
842
  }
843
843
  export interface OverallTestResults {
844
844
  items: OverallTestResultItem[] | undefined;
@@ -857,8 +857,8 @@ export declare const TestExecutionSortAttribute: {
857
857
  export type TestExecutionSortAttribute =
858
858
  (typeof TestExecutionSortAttribute)[keyof typeof TestExecutionSortAttribute];
859
859
  export interface TestExecutionSortBy {
860
- attribute: TestExecutionSortAttribute | string | undefined;
861
- order: SortOrder | string | undefined;
860
+ attribute: TestExecutionSortAttribute | undefined;
861
+ order: SortOrder | undefined;
862
862
  }
863
863
  export interface ListTestExecutionsRequest {
864
864
  sortBy?: TestExecutionSortBy;
@@ -869,12 +869,12 @@ export interface TestExecutionSummary {
869
869
  testExecutionId?: string;
870
870
  creationDateTime?: Date;
871
871
  lastUpdatedDateTime?: Date;
872
- testExecutionStatus?: TestExecutionStatus | string;
872
+ testExecutionStatus?: TestExecutionStatus;
873
873
  testSetId?: string;
874
874
  testSetName?: string;
875
875
  target?: TestExecutionTarget;
876
- apiMode?: TestExecutionApiMode | string;
877
- testExecutionModality?: TestExecutionModality | string;
876
+ apiMode?: TestExecutionApiMode;
877
+ testExecutionModality?: TestExecutionModality;
878
878
  }
879
879
  export interface ListTestExecutionsResponse {
880
880
  testExecutions?: TestExecutionSummary[];
@@ -892,8 +892,8 @@ export declare const TestSetSortAttribute: {
892
892
  export type TestSetSortAttribute =
893
893
  (typeof TestSetSortAttribute)[keyof typeof TestSetSortAttribute];
894
894
  export interface TestSetSortBy {
895
- attribute: TestSetSortAttribute | string | undefined;
896
- order: SortOrder | string | undefined;
895
+ attribute: TestSetSortAttribute | undefined;
896
+ order: SortOrder | undefined;
897
897
  }
898
898
  export interface ListTestSetsRequest {
899
899
  sortBy?: TestSetSortBy;
@@ -904,8 +904,8 @@ export interface TestSetSummary {
904
904
  testSetId?: string;
905
905
  testSetName?: string;
906
906
  description?: string;
907
- modality?: TestSetModality | string;
908
- status?: TestSetStatus | string;
907
+ modality?: TestSetModality;
908
+ status?: TestSetStatus;
909
909
  roleArn?: string;
910
910
  numTurns?: number;
911
911
  storageLocation?: TestSetStorageLocation;
@@ -917,8 +917,8 @@ export interface ListTestSetsResponse {
917
917
  nextToken?: string;
918
918
  }
919
919
  export interface UtteranceDataSortBy {
920
- name: AnalyticsUtteranceSortByName | string | undefined;
921
- order: AnalyticsSortOrder | string | undefined;
920
+ name: AnalyticsUtteranceSortByName | undefined;
921
+ order: AnalyticsSortOrder | undefined;
922
922
  }
923
923
  export interface ListUtteranceAnalyticsDataRequest {
924
924
  botId: string | undefined;
@@ -939,7 +939,7 @@ export type UtteranceContentType =
939
939
  (typeof UtteranceContentType)[keyof typeof UtteranceContentType];
940
940
  export interface UtteranceBotResponse {
941
941
  content?: string;
942
- contentType?: UtteranceContentType | string;
942
+ contentType?: UtteranceContentType;
943
943
  imageResponseCard?: ImageResponseCard;
944
944
  }
945
945
  export interface UtteranceSpecification {
@@ -948,7 +948,7 @@ export interface UtteranceSpecification {
948
948
  localeId?: string;
949
949
  sessionId?: string;
950
950
  channel?: string;
951
- mode?: AnalyticsModality | string;
951
+ mode?: AnalyticsModality;
952
952
  conversationStartTime?: Date;
953
953
  conversationEndTime?: Date;
954
954
  utterance?: string;
@@ -959,7 +959,7 @@ export interface UtteranceSpecification {
959
959
  outputType?: string;
960
960
  associatedIntentName?: string;
961
961
  associatedSlotName?: string;
962
- intentState?: IntentState | string;
962
+ intentState?: IntentState;
963
963
  dialogActionType?: string;
964
964
  botResponseAudioVoiceId?: string;
965
965
  slotsFilledInSession?: string;
@@ -998,7 +998,7 @@ export interface SearchAssociatedTranscriptsRequest {
998
998
  botVersion: string | undefined;
999
999
  localeId: string | undefined;
1000
1000
  botRecommendationId: string | undefined;
1001
- searchOrder?: SearchOrder | string;
1001
+ searchOrder?: SearchOrder;
1002
1002
  filters: AssociatedTranscriptFilter[] | undefined;
1003
1003
  maxResults?: number;
1004
1004
  nextIndex?: number;
@@ -1023,7 +1023,7 @@ export interface StartBotRecommendationResponse {
1023
1023
  botId?: string;
1024
1024
  botVersion?: string;
1025
1025
  localeId?: string;
1026
- botRecommendationStatus?: BotRecommendationStatus | string;
1026
+ botRecommendationStatus?: BotRecommendationStatus;
1027
1027
  botRecommendationId?: string;
1028
1028
  creationDateTime?: Date;
1029
1029
  transcriptSourceSetting?: TranscriptSourceSetting;
@@ -1032,29 +1032,29 @@ export interface StartBotRecommendationResponse {
1032
1032
  export interface StartImportRequest {
1033
1033
  importId: string | undefined;
1034
1034
  resourceSpecification: ImportResourceSpecification | undefined;
1035
- mergeStrategy: MergeStrategy | string | undefined;
1035
+ mergeStrategy: MergeStrategy | undefined;
1036
1036
  filePassword?: string;
1037
1037
  }
1038
1038
  export interface StartImportResponse {
1039
1039
  importId?: string;
1040
1040
  resourceSpecification?: ImportResourceSpecification;
1041
- mergeStrategy?: MergeStrategy | string;
1042
- importStatus?: ImportStatus | string;
1041
+ mergeStrategy?: MergeStrategy;
1042
+ importStatus?: ImportStatus;
1043
1043
  creationDateTime?: Date;
1044
1044
  }
1045
1045
  export interface StartTestExecutionRequest {
1046
1046
  testSetId: string | undefined;
1047
1047
  target: TestExecutionTarget | undefined;
1048
- apiMode: TestExecutionApiMode | string | undefined;
1049
- testExecutionModality?: TestExecutionModality | string;
1048
+ apiMode: TestExecutionApiMode | undefined;
1049
+ testExecutionModality?: TestExecutionModality;
1050
1050
  }
1051
1051
  export interface StartTestExecutionResponse {
1052
1052
  testExecutionId?: string;
1053
1053
  creationDateTime?: Date;
1054
1054
  testSetId?: string;
1055
1055
  target?: TestExecutionTarget;
1056
- apiMode?: TestExecutionApiMode | string;
1057
- testExecutionModality?: TestExecutionModality | string;
1056
+ apiMode?: TestExecutionApiMode;
1057
+ testExecutionModality?: TestExecutionModality;
1058
1058
  }
1059
1059
  export interface StartTestSetGenerationRequest {
1060
1060
  testSetName: string | undefined;
@@ -1067,7 +1067,7 @@ export interface StartTestSetGenerationRequest {
1067
1067
  export interface StartTestSetGenerationResponse {
1068
1068
  testSetGenerationId?: string;
1069
1069
  creationDateTime?: Date;
1070
- testSetGenerationStatus?: TestSetGenerationStatus | string;
1070
+ testSetGenerationStatus?: TestSetGenerationStatus;
1071
1071
  testSetName?: string;
1072
1072
  description?: string;
1073
1073
  storageLocation?: TestSetStorageLocation;
@@ -1085,7 +1085,7 @@ export interface StopBotRecommendationResponse {
1085
1085
  botId?: string;
1086
1086
  botVersion?: string;
1087
1087
  localeId?: string;
1088
- botRecommendationStatus?: BotRecommendationStatus | string;
1088
+ botRecommendationStatus?: BotRecommendationStatus;
1089
1089
  botRecommendationId?: string;
1090
1090
  }
1091
1091
  export interface TagResourceRequest {
@@ -1105,7 +1105,7 @@ export interface UpdateBotRequest {
1105
1105
  roleArn: string | undefined;
1106
1106
  dataPrivacy: DataPrivacy | undefined;
1107
1107
  idleSessionTTLInSeconds: number | undefined;
1108
- botType?: BotType | string;
1108
+ botType?: BotType;
1109
1109
  botMembers?: BotMember[];
1110
1110
  }
1111
1111
  export interface UpdateBotResponse {
@@ -1115,10 +1115,10 @@ export interface UpdateBotResponse {
1115
1115
  roleArn?: string;
1116
1116
  dataPrivacy?: DataPrivacy;
1117
1117
  idleSessionTTLInSeconds?: number;
1118
- botStatus?: BotStatus | string;
1118
+ botStatus?: BotStatus;
1119
1119
  creationDateTime?: Date;
1120
1120
  lastUpdatedDateTime?: Date;
1121
- botType?: BotType | string;
1121
+ botType?: BotType;
1122
1122
  botMembers?: BotMember[];
1123
1123
  }
1124
1124
  export interface UpdateBotAliasRequest {
@@ -1139,7 +1139,7 @@ export interface UpdateBotAliasResponse {
1139
1139
  botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings>;
1140
1140
  conversationLogSettings?: ConversationLogSettings;
1141
1141
  sentimentAnalysisSettings?: SentimentAnalysisSettings;
1142
- botAliasStatus?: BotAliasStatus | string;
1142
+ botAliasStatus?: BotAliasStatus;
1143
1143
  botId?: string;
1144
1144
  creationDateTime?: Date;
1145
1145
  lastUpdatedDateTime?: Date;
@@ -1160,7 +1160,7 @@ export interface UpdateBotLocaleResponse {
1160
1160
  description?: string;
1161
1161
  nluIntentConfidenceThreshold?: number;
1162
1162
  voiceSettings?: VoiceSettings;
1163
- botLocaleStatus?: BotLocaleStatus | string;
1163
+ botLocaleStatus?: BotLocaleStatus;
1164
1164
  failureReasons?: string[];
1165
1165
  creationDateTime?: Date;
1166
1166
  lastUpdatedDateTime?: Date;
@@ -1177,7 +1177,7 @@ export interface UpdateBotRecommendationResponse {
1177
1177
  botId?: string;
1178
1178
  botVersion?: string;
1179
1179
  localeId?: string;
1180
- botRecommendationStatus?: BotRecommendationStatus | string;
1180
+ botRecommendationStatus?: BotRecommendationStatus;
1181
1181
  botRecommendationId?: string;
1182
1182
  creationDateTime?: Date;
1183
1183
  lastUpdatedDateTime?: Date;
@@ -1191,8 +1191,8 @@ export interface UpdateExportRequest {
1191
1191
  export interface UpdateExportResponse {
1192
1192
  exportId?: string;
1193
1193
  resourceSpecification?: ExportResourceSpecification;
1194
- fileFormat?: ImportExportFileFormat | string;
1195
- exportStatus?: ExportStatus | string;
1194
+ fileFormat?: ImportExportFileFormat;
1195
+ exportStatus?: ExportStatus;
1196
1196
  creationDateTime?: Date;
1197
1197
  lastUpdatedDateTime?: Date;
1198
1198
  }
@@ -1242,8 +1242,8 @@ export interface UpdateTestSetResponse {
1242
1242
  testSetId?: string;
1243
1243
  testSetName?: string;
1244
1244
  description?: string;
1245
- modality?: TestSetModality | string;
1246
- status?: TestSetStatus | string;
1245
+ modality?: TestSetModality;
1246
+ status?: TestSetStatus;
1247
1247
  roleArn?: string;
1248
1248
  numTurns?: number;
1249
1249
  storageLocation?: TestSetStorageLocation;
@@ -1255,7 +1255,7 @@ export interface RuntimeHintDetails {
1255
1255
  subSlotHints?: Record<string, RuntimeHintDetails>;
1256
1256
  }
1257
1257
  export interface SlotValueOverride {
1258
- shape?: SlotShape | string;
1258
+ shape?: SlotShape;
1259
1259
  value?: SlotValue;
1260
1260
  values?: SlotValueOverride[];
1261
1261
  }
@@ -1335,10 +1335,10 @@ export interface UserTurnResult {
1335
1335
  expectedOutput: UserTurnOutputSpecification | undefined;
1336
1336
  actualOutput?: UserTurnOutputSpecification;
1337
1337
  errorDetails?: ExecutionErrorDetails;
1338
- endToEndResult?: TestResultMatchStatus | string;
1339
- intentMatchResult?: TestResultMatchStatus | string;
1340
- slotMatchResult?: TestResultMatchStatus | string;
1341
- speechTranscriptionResult?: TestResultMatchStatus | string;
1338
+ endToEndResult?: TestResultMatchStatus;
1339
+ intentMatchResult?: TestResultMatchStatus;
1340
+ slotMatchResult?: TestResultMatchStatus;
1341
+ speechTranscriptionResult?: TestResultMatchStatus;
1342
1342
  conversationLevelResult?: ConversationLevelResultDetail;
1343
1343
  }
1344
1344
  export interface ListTestSetRecordsResponse {
@@ -1422,7 +1422,7 @@ export interface SlotCaptureSetting {
1422
1422
  }
1423
1423
  export interface SlotValueElicitationSetting {
1424
1424
  defaultValueSpecification?: SlotDefaultValueSpecification;
1425
- slotConstraint: SlotConstraint | string | undefined;
1425
+ slotConstraint: SlotConstraint | undefined;
1426
1426
  promptSpecification?: PromptSpecification;
1427
1427
  sampleUtterances?: SampleUtterance[];
1428
1428
  waitAndContinueSpecification?: WaitAndContinueSpecification;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lex-models-v2",
3
3
  "description": "AWS SDK for JavaScript Lex Models V2 Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "@smithy/util-waiter": "^2.0.11",