@aws-sdk/client-lex-models-v2 3.686.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.
- package/dist-types/models/models_0.d.ts +388 -388
- package/dist-types/models/models_1.d.ts +873 -873
- package/dist-types/ts3.4/models/models_0.d.ts +400 -390
- package/dist-types/ts3.4/models/models_1.d.ts +889 -879
- package/package.json +7 -7
|
@@ -31,7 +31,7 @@ export interface AdvancedRecognitionSetting {
|
|
|
31
31
|
* <p>Enables using the slot values as a custom vocabulary for recognizing user utterances.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
audioRecognitionStrategy?: AudioRecognitionStrategy;
|
|
34
|
+
audioRecognitionStrategy?: AudioRecognitionStrategy | undefined;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* <p>Details about an error in an execution of a test set.</p>
|
|
@@ -63,22 +63,22 @@ export interface AgentTurnResult {
|
|
|
63
63
|
* <p>The actual agent prompt for the agent turn in a test set execution.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
actualAgentPrompt?: string;
|
|
66
|
+
actualAgentPrompt?: string | undefined;
|
|
67
67
|
/**
|
|
68
68
|
* <p>Details about an error in an execution of a test set.</p>
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
|
-
errorDetails?: ExecutionErrorDetails;
|
|
71
|
+
errorDetails?: ExecutionErrorDetails | undefined;
|
|
72
72
|
/**
|
|
73
73
|
* <p>The actual elicited slot for the agent turn in a test set execution.</p>
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
|
-
actualElicitedSlot?: string;
|
|
76
|
+
actualElicitedSlot?: string | undefined;
|
|
77
77
|
/**
|
|
78
78
|
* <p>The actual intent for the agent turn in a test set execution.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
actualIntent?: string;
|
|
81
|
+
actualIntent?: string | undefined;
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
84
|
* <p>The specification of an agent turn.</p>
|
|
@@ -195,20 +195,20 @@ export interface AggregatedUtterancesSummary {
|
|
|
195
195
|
* transcription of the audio utterance.</p>
|
|
196
196
|
* @public
|
|
197
197
|
*/
|
|
198
|
-
utterance?: string;
|
|
198
|
+
utterance?: string | undefined;
|
|
199
199
|
/**
|
|
200
200
|
* <p>The number of times that the utterance was detected by Amazon Lex during
|
|
201
201
|
* the time period. When an utterance is detected, it activates an intent
|
|
202
202
|
* or a slot.</p>
|
|
203
203
|
* @public
|
|
204
204
|
*/
|
|
205
|
-
hitCount?: number;
|
|
205
|
+
hitCount?: number | undefined;
|
|
206
206
|
/**
|
|
207
207
|
* <p>The number of times that the utterance was missed by Amazon Lex An
|
|
208
208
|
* utterance is missed when it doesn't activate an intent or slot.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
missedCount?: number;
|
|
211
|
+
missedCount?: number | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* <p>The date and time that the utterance was first recorded in the time
|
|
214
214
|
* window for aggregation. An utterance may have been sent to Amazon Lex before
|
|
@@ -216,21 +216,21 @@ export interface AggregatedUtterancesSummary {
|
|
|
216
216
|
* counted.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
utteranceFirstRecordedInAggregationDuration?: Date;
|
|
219
|
+
utteranceFirstRecordedInAggregationDuration?: Date | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>The last date and time that an utterance was recorded in the time
|
|
222
222
|
* window for aggregation. An utterance may be sent to Amazon Lex after that
|
|
223
223
|
* time, but only utterances within the time window are counted.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
utteranceLastRecordedInAggregationDuration?: Date;
|
|
226
|
+
utteranceLastRecordedInAggregationDuration?: Date | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>Aggregated utterance data may contain utterances from versions of
|
|
229
229
|
* your bot that have since been deleted. When the aggregated contains
|
|
230
230
|
* this kind of data, this field is set to true.</p>
|
|
231
231
|
* @public
|
|
232
232
|
*/
|
|
233
|
-
containsDataFromDeletedResources?: boolean;
|
|
233
|
+
containsDataFromDeletedResources?: boolean | undefined;
|
|
234
234
|
}
|
|
235
235
|
/**
|
|
236
236
|
* <p>Specifies the allowed input types.</p>
|
|
@@ -303,7 +303,7 @@ export interface AnalyticsBinBySpecification {
|
|
|
303
303
|
* <p>Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
order?: AnalyticsSortOrder;
|
|
306
|
+
order?: AnalyticsSortOrder | undefined;
|
|
307
307
|
}
|
|
308
308
|
/**
|
|
309
309
|
* <p>An object containing the criterion by which to bin the results and the value that defines that bin.</p>
|
|
@@ -314,12 +314,12 @@ export interface AnalyticsBinKey {
|
|
|
314
314
|
* <p>The criterion by which to bin the results.</p>
|
|
315
315
|
* @public
|
|
316
316
|
*/
|
|
317
|
-
name?: AnalyticsBinByName;
|
|
317
|
+
name?: AnalyticsBinByName | undefined;
|
|
318
318
|
/**
|
|
319
319
|
* <p>The value of the criterion that defines the bin.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
value?: number;
|
|
322
|
+
value?: number | undefined;
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
325
325
|
* @public
|
|
@@ -557,12 +557,12 @@ export interface AnalyticsIntentGroupByKey {
|
|
|
557
557
|
* <p>A category by which the intent analytics were grouped.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
name?: AnalyticsIntentField;
|
|
560
|
+
name?: AnalyticsIntentField | undefined;
|
|
561
561
|
/**
|
|
562
562
|
* <p>A member of the category by which the intent analytics were grouped.</p>
|
|
563
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
value?: string;
|
|
565
|
+
value?: string | undefined;
|
|
566
566
|
}
|
|
567
567
|
/**
|
|
568
568
|
* <p>Contains the category by which to group the intents.</p>
|
|
@@ -658,7 +658,7 @@ export interface AnalyticsIntentMetric {
|
|
|
658
658
|
* <p>Specifies whether to sort the results in ascending or descending order.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
order?: AnalyticsSortOrder;
|
|
661
|
+
order?: AnalyticsSortOrder | undefined;
|
|
662
662
|
}
|
|
663
663
|
/**
|
|
664
664
|
* <p>An object containing the results for the intent metric you requested.</p>
|
|
@@ -691,7 +691,7 @@ export interface AnalyticsIntentMetricResult {
|
|
|
691
691
|
* </ul>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
name?: AnalyticsIntentMetricName;
|
|
694
|
+
name?: AnalyticsIntentMetricName | undefined;
|
|
695
695
|
/**
|
|
696
696
|
* <p>The statistic that you requested to calculate.</p>
|
|
697
697
|
* <ul>
|
|
@@ -710,12 +710,12 @@ export interface AnalyticsIntentMetricResult {
|
|
|
710
710
|
* </ul>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
statistic?: AnalyticsMetricStatistic;
|
|
713
|
+
statistic?: AnalyticsMetricStatistic | undefined;
|
|
714
714
|
/**
|
|
715
715
|
* <p>The value of the summary statistic for the metric that you requested.</p>
|
|
716
716
|
* @public
|
|
717
717
|
*/
|
|
718
|
-
value?: number;
|
|
718
|
+
value?: number | undefined;
|
|
719
719
|
}
|
|
720
720
|
/**
|
|
721
721
|
* @public
|
|
@@ -738,27 +738,27 @@ export interface AnalyticsIntentNodeSummary {
|
|
|
738
738
|
* <p>The name of the intent at the end of the requested path.</p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
intentName?: string;
|
|
741
|
+
intentName?: string | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* <p>The path.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
intentPath?: string;
|
|
746
|
+
intentPath?: string | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>The total number of sessions that follow the given path to the given intent.</p>
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
intentCount?: number;
|
|
751
|
+
intentCount?: number | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* <p>The number of intents up to and including the requested path.</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
intentLevel?: number;
|
|
756
|
+
intentLevel?: number | undefined;
|
|
757
757
|
/**
|
|
758
758
|
* <p>Specifies whether the node is the end of a path (<code>Exit</code>) or not (<code>Inner</code>).</p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
nodeType?: AnalyticsNodeType;
|
|
761
|
+
nodeType?: AnalyticsNodeType | undefined;
|
|
762
762
|
}
|
|
763
763
|
/**
|
|
764
764
|
* <p>An object containing the results for the intent metrics you requested and the bin and/or group(s) they refer to, if applicable.</p>
|
|
@@ -769,17 +769,17 @@ export interface AnalyticsIntentResult {
|
|
|
769
769
|
* <p>A list of objects containing the criteria you requested for binning results and the values of the bins.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
binKeys?: AnalyticsBinKey[];
|
|
772
|
+
binKeys?: AnalyticsBinKey[] | undefined;
|
|
773
773
|
/**
|
|
774
774
|
* <p>A list of objects containing the criteria you requested for grouping results and the values of the groups.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
groupByKeys?: AnalyticsIntentGroupByKey[];
|
|
777
|
+
groupByKeys?: AnalyticsIntentGroupByKey[] | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.</p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
metricsResults?: AnalyticsIntentMetricResult[];
|
|
782
|
+
metricsResults?: AnalyticsIntentMetricResult[] | undefined;
|
|
783
783
|
}
|
|
784
784
|
/**
|
|
785
785
|
* @public
|
|
@@ -988,12 +988,12 @@ export interface AnalyticsIntentStageGroupByKey {
|
|
|
988
988
|
* <p>A category by which the intent stage analytics were grouped.</p>
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
name?: AnalyticsIntentStageField;
|
|
991
|
+
name?: AnalyticsIntentStageField | undefined;
|
|
992
992
|
/**
|
|
993
993
|
* <p>A member of the category by which the intent stage analytics were grouped.</p>
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
value?: string;
|
|
996
|
+
value?: string | undefined;
|
|
997
997
|
}
|
|
998
998
|
/**
|
|
999
999
|
* <p>Contains the category by which to group the intent stages.</p>
|
|
@@ -1076,7 +1076,7 @@ export interface AnalyticsIntentStageMetric {
|
|
|
1076
1076
|
* <p>Specifies whether to sort the results in ascending or descending order of the summary statistic (<code>value</code> in the response).</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
order?: AnalyticsSortOrder;
|
|
1079
|
+
order?: AnalyticsSortOrder | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
/**
|
|
1082
1082
|
* <p>An object containing the results for an intent stage metric you requested.</p>
|
|
@@ -1109,7 +1109,7 @@ export interface AnalyticsIntentStageMetricResult {
|
|
|
1109
1109
|
* </ul>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
name?: AnalyticsIntentStageMetricName;
|
|
1112
|
+
name?: AnalyticsIntentStageMetricName | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>The summary statistic that you requested to calculate.</p>
|
|
1115
1115
|
* <ul>
|
|
@@ -1128,12 +1128,12 @@ export interface AnalyticsIntentStageMetricResult {
|
|
|
1128
1128
|
* </ul>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
statistic?: AnalyticsMetricStatistic;
|
|
1131
|
+
statistic?: AnalyticsMetricStatistic | undefined;
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p>The value of the summary statistic for the metric that you requested.</p>
|
|
1134
1134
|
* @public
|
|
1135
1135
|
*/
|
|
1136
|
-
value?: number;
|
|
1136
|
+
value?: number | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>An object containing the results for the intent stage metrics you requested and the bin and/or group they refer to, if applicable.</p>
|
|
@@ -1144,17 +1144,17 @@ export interface AnalyticsIntentStageResult {
|
|
|
1144
1144
|
* <p>A list of objects containing the criteria you requested for binning results and the values of the bins.</p>
|
|
1145
1145
|
* @public
|
|
1146
1146
|
*/
|
|
1147
|
-
binKeys?: AnalyticsBinKey[];
|
|
1147
|
+
binKeys?: AnalyticsBinKey[] | undefined;
|
|
1148
1148
|
/**
|
|
1149
1149
|
* <p>A list of objects containing the criteria you requested for grouping results and the values of the bins.</p>
|
|
1150
1150
|
* @public
|
|
1151
1151
|
*/
|
|
1152
|
-
groupByKeys?: AnalyticsIntentStageGroupByKey[];
|
|
1152
|
+
groupByKeys?: AnalyticsIntentStageGroupByKey[] | undefined;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* <p>A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.</p>
|
|
1155
1155
|
* @public
|
|
1156
1156
|
*/
|
|
1157
|
-
metricsResults?: AnalyticsIntentStageMetricResult[];
|
|
1157
|
+
metricsResults?: AnalyticsIntentStageMetricResult[] | undefined;
|
|
1158
1158
|
}
|
|
1159
1159
|
/**
|
|
1160
1160
|
* @public
|
|
@@ -1509,12 +1509,12 @@ export interface AnalyticsSessionGroupByKey {
|
|
|
1509
1509
|
* <p>The category by which the session analytics were grouped.</p>
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
name?: AnalyticsSessionField;
|
|
1512
|
+
name?: AnalyticsSessionField | undefined;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* <p>A member of the category by which the session analytics were grouped.</p>
|
|
1515
1515
|
* @public
|
|
1516
1516
|
*/
|
|
1517
|
-
value?: string;
|
|
1517
|
+
value?: string | undefined;
|
|
1518
1518
|
}
|
|
1519
1519
|
/**
|
|
1520
1520
|
* <p>Contains the category by which to group the sessions.</p>
|
|
@@ -1607,7 +1607,7 @@ export interface AnalyticsSessionMetric {
|
|
|
1607
1607
|
* <p>Specifies whether to sort the results in ascending or descending order.</p>
|
|
1608
1608
|
* @public
|
|
1609
1609
|
*/
|
|
1610
|
-
order?: AnalyticsSortOrder;
|
|
1610
|
+
order?: AnalyticsSortOrder | undefined;
|
|
1611
1611
|
}
|
|
1612
1612
|
/**
|
|
1613
1613
|
* <p>An object containing the results for a session metric you requested.</p>
|
|
@@ -1648,7 +1648,7 @@ export interface AnalyticsSessionMetricResult {
|
|
|
1648
1648
|
* </ul>
|
|
1649
1649
|
* @public
|
|
1650
1650
|
*/
|
|
1651
|
-
name?: AnalyticsSessionMetricName;
|
|
1651
|
+
name?: AnalyticsSessionMetricName | undefined;
|
|
1652
1652
|
/**
|
|
1653
1653
|
* <p>The summary statistic that you requested to calculate.</p>
|
|
1654
1654
|
* <ul>
|
|
@@ -1667,12 +1667,12 @@ export interface AnalyticsSessionMetricResult {
|
|
|
1667
1667
|
* </ul>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
statistic?: AnalyticsMetricStatistic;
|
|
1670
|
+
statistic?: AnalyticsMetricStatistic | undefined;
|
|
1671
1671
|
/**
|
|
1672
1672
|
* <p>The value of the summary statistic for the metric that you requested.</p>
|
|
1673
1673
|
* @public
|
|
1674
1674
|
*/
|
|
1675
|
-
value?: number;
|
|
1675
|
+
value?: number | undefined;
|
|
1676
1676
|
}
|
|
1677
1677
|
/**
|
|
1678
1678
|
* <p>An object containing the results for the session metrics you requested and the bin and/or group(s) they refer to, if applicable.</p>
|
|
@@ -1683,17 +1683,17 @@ export interface AnalyticsSessionResult {
|
|
|
1683
1683
|
* <p>A list of objects containing the criteria you requested for binning results and the values of the bins.</p>
|
|
1684
1684
|
* @public
|
|
1685
1685
|
*/
|
|
1686
|
-
binKeys?: AnalyticsBinKey[];
|
|
1686
|
+
binKeys?: AnalyticsBinKey[] | undefined;
|
|
1687
1687
|
/**
|
|
1688
1688
|
* <p>A list of objects containing the criteria you requested for grouping results and the values of the bins.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
groupByKeys?: AnalyticsSessionGroupByKey[];
|
|
1691
|
+
groupByKeys?: AnalyticsSessionGroupByKey[] | undefined;
|
|
1692
1692
|
/**
|
|
1693
1693
|
* <p>A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.</p>
|
|
1694
1694
|
* @public
|
|
1695
1695
|
*/
|
|
1696
|
-
metricsResults?: AnalyticsSessionMetricResult[];
|
|
1696
|
+
metricsResults?: AnalyticsSessionMetricResult[] | undefined;
|
|
1697
1697
|
}
|
|
1698
1698
|
/**
|
|
1699
1699
|
* @public
|
|
@@ -1739,7 +1739,7 @@ export interface AnalyticsUtteranceAttributeResult {
|
|
|
1739
1739
|
* <p>The intent that the bot mapped the utterance to.</p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
lastUsedIntent?: string;
|
|
1742
|
+
lastUsedIntent?: string | undefined;
|
|
1743
1743
|
}
|
|
1744
1744
|
/**
|
|
1745
1745
|
* @public
|
|
@@ -1948,12 +1948,12 @@ export interface AnalyticsUtteranceGroupByKey {
|
|
|
1948
1948
|
* <p>The category by which the utterance analytics were grouped.</p>
|
|
1949
1949
|
* @public
|
|
1950
1950
|
*/
|
|
1951
|
-
name?: AnalyticsUtteranceField;
|
|
1951
|
+
name?: AnalyticsUtteranceField | undefined;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* <p>A member of the category by which the utterance analytics were grouped.</p>
|
|
1954
1954
|
* @public
|
|
1955
1955
|
*/
|
|
1956
|
-
value?: string;
|
|
1956
|
+
value?: string | undefined;
|
|
1957
1957
|
}
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>Contains the category by which to group the utterances.</p>
|
|
@@ -2031,7 +2031,7 @@ export interface AnalyticsUtteranceMetric {
|
|
|
2031
2031
|
* <p>Specifies whether to sort the results in ascending or descending order.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
order?: AnalyticsSortOrder;
|
|
2034
|
+
order?: AnalyticsSortOrder | undefined;
|
|
2035
2035
|
}
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>An object containing the results for the utterance metric you requested.</p>
|
|
@@ -2060,7 +2060,7 @@ export interface AnalyticsUtteranceMetricResult {
|
|
|
2060
2060
|
* </ul>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
name?: AnalyticsUtteranceMetricName;
|
|
2063
|
+
name?: AnalyticsUtteranceMetricName | undefined;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* <p>The summary statistic that you requested to calculate.</p>
|
|
2066
2066
|
* <ul>
|
|
@@ -2079,12 +2079,12 @@ export interface AnalyticsUtteranceMetricResult {
|
|
|
2079
2079
|
* </ul>
|
|
2080
2080
|
* @public
|
|
2081
2081
|
*/
|
|
2082
|
-
statistic?: AnalyticsMetricStatistic;
|
|
2082
|
+
statistic?: AnalyticsMetricStatistic | undefined;
|
|
2083
2083
|
/**
|
|
2084
2084
|
* <p>The value of the summary statistic for the metric that you requested.</p>
|
|
2085
2085
|
* @public
|
|
2086
2086
|
*/
|
|
2087
|
-
value?: number;
|
|
2087
|
+
value?: number | undefined;
|
|
2088
2088
|
}
|
|
2089
2089
|
/**
|
|
2090
2090
|
* <p>An object containing the results for the utterance metrics you requested and the bin and/or group(s) they refer to, if applicable.</p>
|
|
@@ -2095,22 +2095,22 @@ export interface AnalyticsUtteranceResult {
|
|
|
2095
2095
|
* <p>A list of objects containing the criteria you requested for binning results and the values of the bins.</p>
|
|
2096
2096
|
* @public
|
|
2097
2097
|
*/
|
|
2098
|
-
binKeys?: AnalyticsBinKey[];
|
|
2098
|
+
binKeys?: AnalyticsBinKey[] | undefined;
|
|
2099
2099
|
/**
|
|
2100
2100
|
* <p>A list of objects containing the criteria you requested for grouping results and the values of the bins.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
groupByKeys?: AnalyticsUtteranceGroupByKey[];
|
|
2103
|
+
groupByKeys?: AnalyticsUtteranceGroupByKey[] | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.</p>
|
|
2106
2106
|
* @public
|
|
2107
2107
|
*/
|
|
2108
|
-
metricsResults?: AnalyticsUtteranceMetricResult[];
|
|
2108
|
+
metricsResults?: AnalyticsUtteranceMetricResult[] | undefined;
|
|
2109
2109
|
/**
|
|
2110
2110
|
* <p>A list of objects containing information about the last used intent at the time of an utterance.</p>
|
|
2111
2111
|
* @public
|
|
2112
2112
|
*/
|
|
2113
|
-
attributeResults?: AnalyticsUtteranceAttributeResult[];
|
|
2113
|
+
attributeResults?: AnalyticsUtteranceAttributeResult[] | undefined;
|
|
2114
2114
|
}
|
|
2115
2115
|
/**
|
|
2116
2116
|
* @public
|
|
@@ -2135,7 +2135,7 @@ export interface AssociatedTranscript {
|
|
|
2135
2135
|
* format</a>.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
transcript?: string;
|
|
2138
|
+
transcript?: string | undefined;
|
|
2139
2139
|
}
|
|
2140
2140
|
/**
|
|
2141
2141
|
* @public
|
|
@@ -2228,12 +2228,12 @@ export interface AudioAndDTMFInputSpecification {
|
|
|
2228
2228
|
* <p>Specifies the settings on audio input.</p>
|
|
2229
2229
|
* @public
|
|
2230
2230
|
*/
|
|
2231
|
-
audioSpecification?: AudioSpecification;
|
|
2231
|
+
audioSpecification?: AudioSpecification | undefined;
|
|
2232
2232
|
/**
|
|
2233
2233
|
* <p>Specifies the settings on DTMF input.</p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
dtmfSpecification?: DTMFSpecification;
|
|
2236
|
+
dtmfSpecification?: DTMFSpecification | undefined;
|
|
2237
2237
|
}
|
|
2238
2238
|
/**
|
|
2239
2239
|
* <p>Specifies an Amazon S3 bucket for logging audio conversations</p>
|
|
@@ -2245,7 +2245,7 @@ export interface S3BucketLogDestination {
|
|
|
2245
2245
|
* (KMS) key for encrypting audio log files stored in an S3 bucket.</p>
|
|
2246
2246
|
* @public
|
|
2247
2247
|
*/
|
|
2248
|
-
kmsKeyArn?: string;
|
|
2248
|
+
kmsKeyArn?: string | undefined;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* <p>The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio
|
|
2251
2251
|
* log files are stored.</p>
|
|
@@ -2294,7 +2294,7 @@ export interface AudioLogSetting {
|
|
|
2294
2294
|
* <p>The option to enable selective conversation log capture for audio.</p>
|
|
2295
2295
|
* @public
|
|
2296
2296
|
*/
|
|
2297
|
-
selectiveLoggingEnabled?: boolean;
|
|
2297
|
+
selectiveLoggingEnabled?: boolean | undefined;
|
|
2298
2298
|
}
|
|
2299
2299
|
/**
|
|
2300
2300
|
* <p>The new custom vocabulary item from the custom
|
|
@@ -2313,13 +2313,13 @@ export interface NewCustomVocabularyItem {
|
|
|
2313
2313
|
* vocabulary list.</p>
|
|
2314
2314
|
* @public
|
|
2315
2315
|
*/
|
|
2316
|
-
weight?: number;
|
|
2316
|
+
weight?: number | undefined;
|
|
2317
2317
|
/**
|
|
2318
2318
|
* <p>The display as value assigned to the new custom vocabulary item from the custom
|
|
2319
2319
|
* vocabulary list.</p>
|
|
2320
2320
|
* @public
|
|
2321
2321
|
*/
|
|
2322
|
-
displayAs?: string;
|
|
2322
|
+
displayAs?: string | undefined;
|
|
2323
2323
|
}
|
|
2324
2324
|
/**
|
|
2325
2325
|
* @public
|
|
@@ -2375,19 +2375,19 @@ export interface FailedCustomVocabularyItem {
|
|
|
2375
2375
|
* from the custom vocabulary list.</p>
|
|
2376
2376
|
* @public
|
|
2377
2377
|
*/
|
|
2378
|
-
itemId?: string;
|
|
2378
|
+
itemId?: string | undefined;
|
|
2379
2379
|
/**
|
|
2380
2380
|
* <p>The error message for the failed custom vocabulary item
|
|
2381
2381
|
* from the custom vocabulary list.</p>
|
|
2382
2382
|
* @public
|
|
2383
2383
|
*/
|
|
2384
|
-
errorMessage?: string;
|
|
2384
|
+
errorMessage?: string | undefined;
|
|
2385
2385
|
/**
|
|
2386
2386
|
* <p>The unique error code for the failed custom vocabulary item
|
|
2387
2387
|
* from the custom vocabulary list.</p>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
errorCode?: ErrorCode;
|
|
2390
|
+
errorCode?: ErrorCode | undefined;
|
|
2391
2391
|
}
|
|
2392
2392
|
/**
|
|
2393
2393
|
* <p>The unique custom vocabulary item from the custom
|
|
@@ -2412,13 +2412,13 @@ export interface CustomVocabularyItem {
|
|
|
2412
2412
|
* from the custom vocabulary list.</p>
|
|
2413
2413
|
* @public
|
|
2414
2414
|
*/
|
|
2415
|
-
weight?: number;
|
|
2415
|
+
weight?: number | undefined;
|
|
2416
2416
|
/**
|
|
2417
2417
|
* <p>The DisplayAs value for the custom vocabulary item
|
|
2418
2418
|
* from the custom vocabulary list.</p>
|
|
2419
2419
|
* @public
|
|
2420
2420
|
*/
|
|
2421
|
-
displayAs?: string;
|
|
2421
|
+
displayAs?: string | undefined;
|
|
2422
2422
|
}
|
|
2423
2423
|
/**
|
|
2424
2424
|
* @public
|
|
@@ -2428,32 +2428,32 @@ export interface BatchCreateCustomVocabularyItemResponse {
|
|
|
2428
2428
|
* <p>The identifier of the bot associated with this custom vocabulary.</p>
|
|
2429
2429
|
* @public
|
|
2430
2430
|
*/
|
|
2431
|
-
botId?: string;
|
|
2431
|
+
botId?: string | undefined;
|
|
2432
2432
|
/**
|
|
2433
2433
|
* <p>The identifier of the version of the bot associated with this
|
|
2434
2434
|
* custom vocabulary.</p>
|
|
2435
2435
|
* @public
|
|
2436
2436
|
*/
|
|
2437
|
-
botVersion?: string;
|
|
2437
|
+
botVersion?: string | undefined;
|
|
2438
2438
|
/**
|
|
2439
2439
|
* <p>The identifier of the language and locale where this custom vocabulary is used.
|
|
2440
2440
|
* The string must match one of the supported locales.
|
|
2441
2441
|
* For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html"> Supported Languages </a>.</p>
|
|
2442
2442
|
* @public
|
|
2443
2443
|
*/
|
|
2444
|
-
localeId?: string;
|
|
2444
|
+
localeId?: string | undefined;
|
|
2445
2445
|
/**
|
|
2446
2446
|
* <p>A list of custom vocabulary items that failed to create during the operation.
|
|
2447
2447
|
* The reason for the error is contained within each error object.</p>
|
|
2448
2448
|
* @public
|
|
2449
2449
|
*/
|
|
2450
|
-
errors?: FailedCustomVocabularyItem[];
|
|
2450
|
+
errors?: FailedCustomVocabularyItem[] | undefined;
|
|
2451
2451
|
/**
|
|
2452
2452
|
* <p>A list of custom vocabulary items that were
|
|
2453
2453
|
* successfully created during the operation.</p>
|
|
2454
2454
|
* @public
|
|
2455
2455
|
*/
|
|
2456
|
-
resources?: CustomVocabularyItem[];
|
|
2456
|
+
resources?: CustomVocabularyItem[] | undefined;
|
|
2457
2457
|
}
|
|
2458
2458
|
/**
|
|
2459
2459
|
* <p>The service encountered an unexpected condition. Try your request
|
|
@@ -2505,7 +2505,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
2505
2505
|
* <p>The number of seconds after which the user can invoke the API again.</p>
|
|
2506
2506
|
* @public
|
|
2507
2507
|
*/
|
|
2508
|
-
retryAfterSeconds?: number;
|
|
2508
|
+
retryAfterSeconds?: number | undefined;
|
|
2509
2509
|
/**
|
|
2510
2510
|
* @internal
|
|
2511
2511
|
*/
|
|
@@ -2574,13 +2574,13 @@ export interface BatchDeleteCustomVocabularyItemResponse {
|
|
|
2574
2574
|
* <p>The identifier of the bot associated with this custom vocabulary.</p>
|
|
2575
2575
|
* @public
|
|
2576
2576
|
*/
|
|
2577
|
-
botId?: string;
|
|
2577
|
+
botId?: string | undefined;
|
|
2578
2578
|
/**
|
|
2579
2579
|
* <p>The identifier of the version of the bot associated with this custom
|
|
2580
2580
|
* vocabulary.</p>
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
botVersion?: string;
|
|
2583
|
+
botVersion?: string | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* <p>The identifier of the language and locale where this custom vocabulary is
|
|
2586
2586
|
* used. The string must match one of the supported locales.
|
|
@@ -2588,19 +2588,19 @@ export interface BatchDeleteCustomVocabularyItemResponse {
|
|
|
2588
2588
|
* languages (https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html).</p>
|
|
2589
2589
|
* @public
|
|
2590
2590
|
*/
|
|
2591
|
-
localeId?: string;
|
|
2591
|
+
localeId?: string | undefined;
|
|
2592
2592
|
/**
|
|
2593
2593
|
* <p>A list of custom vocabulary items that failed to delete during the operation.
|
|
2594
2594
|
* The reason for the error is contained within each error object.</p>
|
|
2595
2595
|
* @public
|
|
2596
2596
|
*/
|
|
2597
|
-
errors?: FailedCustomVocabularyItem[];
|
|
2597
|
+
errors?: FailedCustomVocabularyItem[] | undefined;
|
|
2598
2598
|
/**
|
|
2599
2599
|
* <p>A list of custom vocabulary items that were
|
|
2600
2600
|
* successfully deleted during the operation.</p>
|
|
2601
2601
|
* @public
|
|
2602
2602
|
*/
|
|
2603
|
-
resources?: CustomVocabularyItem[];
|
|
2603
|
+
resources?: CustomVocabularyItem[] | undefined;
|
|
2604
2604
|
}
|
|
2605
2605
|
/**
|
|
2606
2606
|
* @public
|
|
@@ -2639,32 +2639,32 @@ export interface BatchUpdateCustomVocabularyItemResponse {
|
|
|
2639
2639
|
* <p>The identifier of the bot associated with this custom vocabulary.</p>
|
|
2640
2640
|
* @public
|
|
2641
2641
|
*/
|
|
2642
|
-
botId?: string;
|
|
2642
|
+
botId?: string | undefined;
|
|
2643
2643
|
/**
|
|
2644
2644
|
* <p>The identifier of the version of the bot associated with this custom
|
|
2645
2645
|
* vocabulary.</p>
|
|
2646
2646
|
* @public
|
|
2647
2647
|
*/
|
|
2648
|
-
botVersion?: string;
|
|
2648
|
+
botVersion?: string | undefined;
|
|
2649
2649
|
/**
|
|
2650
2650
|
* <p>The identifier of the language and locale where this custom vocabulary
|
|
2651
2651
|
* is used. The string must match one of the supported locales. For more
|
|
2652
2652
|
* information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html"> Supported Languages </a>.</p>
|
|
2653
2653
|
* @public
|
|
2654
2654
|
*/
|
|
2655
|
-
localeId?: string;
|
|
2655
|
+
localeId?: string | undefined;
|
|
2656
2656
|
/**
|
|
2657
2657
|
* <p>A list of custom vocabulary items that failed to update during the operation.
|
|
2658
2658
|
* The reason for the error is contained within each error object.</p>
|
|
2659
2659
|
* @public
|
|
2660
2660
|
*/
|
|
2661
|
-
errors?: FailedCustomVocabularyItem[];
|
|
2661
|
+
errors?: FailedCustomVocabularyItem[] | undefined;
|
|
2662
2662
|
/**
|
|
2663
2663
|
* <p>A list of custom vocabulary items that were
|
|
2664
2664
|
* successfully updated during the operation.</p>
|
|
2665
2665
|
* @public
|
|
2666
2666
|
*/
|
|
2667
|
-
resources?: CustomVocabularyItem[];
|
|
2667
|
+
resources?: CustomVocabularyItem[] | undefined;
|
|
2668
2668
|
}
|
|
2669
2669
|
/**
|
|
2670
2670
|
* <p>The details on the Bedrock guardrail configuration.</p>
|
|
@@ -2691,7 +2691,7 @@ export interface BedrockKnowledgeStoreExactResponseFields {
|
|
|
2691
2691
|
* <p>The answer field used for an exact response from Bedrock Knowledge Store.</p>
|
|
2692
2692
|
* @public
|
|
2693
2693
|
*/
|
|
2694
|
-
answerField?: string;
|
|
2694
|
+
answerField?: string | undefined;
|
|
2695
2695
|
}
|
|
2696
2696
|
/**
|
|
2697
2697
|
* <p>Contains details about the configuration of a Amazon Bedrock knowledge base.</p>
|
|
@@ -2707,12 +2707,12 @@ export interface BedrockKnowledgeStoreConfiguration {
|
|
|
2707
2707
|
* <p>Specifies whether to return an exact response, or to return an answer generated by the model, using the fields you specify from the database.</p>
|
|
2708
2708
|
* @public
|
|
2709
2709
|
*/
|
|
2710
|
-
exactResponse?: boolean;
|
|
2710
|
+
exactResponse?: boolean | undefined;
|
|
2711
2711
|
/**
|
|
2712
2712
|
* <p>Contains the names of the fields used for an exact response to the user.</p>
|
|
2713
2713
|
* @public
|
|
2714
2714
|
*/
|
|
2715
|
-
exactResponseFields?: BedrockKnowledgeStoreExactResponseFields;
|
|
2715
|
+
exactResponseFields?: BedrockKnowledgeStoreExactResponseFields | undefined;
|
|
2716
2716
|
}
|
|
2717
2717
|
/**
|
|
2718
2718
|
* @public
|
|
@@ -2740,17 +2740,17 @@ export interface BedrockModelSpecification {
|
|
|
2740
2740
|
* <p>The guardrail configuration in the Bedrock model specification details.</p>
|
|
2741
2741
|
* @public
|
|
2742
2742
|
*/
|
|
2743
|
-
guardrail?: BedrockGuardrailConfiguration;
|
|
2743
|
+
guardrail?: BedrockGuardrailConfiguration | undefined;
|
|
2744
2744
|
/**
|
|
2745
2745
|
* <p>The Bedrock trace status in the Bedrock model specification details.</p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
traceStatus?: BedrockTraceStatus;
|
|
2748
|
+
traceStatus?: BedrockTraceStatus | undefined;
|
|
2749
2749
|
/**
|
|
2750
2750
|
* <p>The custom prompt used in the Bedrock model specification details.</p>
|
|
2751
2751
|
* @public
|
|
2752
2752
|
*/
|
|
2753
|
-
customPrompt?: string;
|
|
2753
|
+
customPrompt?: string | undefined;
|
|
2754
2754
|
}
|
|
2755
2755
|
/**
|
|
2756
2756
|
* <p>Provides a record of an event that affects a bot alias. For example,
|
|
@@ -2762,17 +2762,17 @@ export interface BotAliasHistoryEvent {
|
|
|
2762
2762
|
* <p>The version of the bot that was used in the event. </p>
|
|
2763
2763
|
* @public
|
|
2764
2764
|
*/
|
|
2765
|
-
botVersion?: string;
|
|
2765
|
+
botVersion?: string | undefined;
|
|
2766
2766
|
/**
|
|
2767
2767
|
* <p>The date and time that the event started.</p>
|
|
2768
2768
|
* @public
|
|
2769
2769
|
*/
|
|
2770
|
-
startDate?: Date;
|
|
2770
|
+
startDate?: Date | undefined;
|
|
2771
2771
|
/**
|
|
2772
2772
|
* <p>The date and time that the event ended.</p>
|
|
2773
2773
|
* @public
|
|
2774
2774
|
*/
|
|
2775
|
-
endDate?: Date;
|
|
2775
|
+
endDate?: Date | undefined;
|
|
2776
2776
|
}
|
|
2777
2777
|
/**
|
|
2778
2778
|
* <p>Specifies a Lambda function that verifies requests to a bot or
|
|
@@ -2822,7 +2822,7 @@ export interface BotAliasLocaleSettings {
|
|
|
2822
2822
|
* locale.</p>
|
|
2823
2823
|
* @public
|
|
2824
2824
|
*/
|
|
2825
|
-
codeHookSpecification?: CodeHookSpecification;
|
|
2825
|
+
codeHookSpecification?: CodeHookSpecification | undefined;
|
|
2826
2826
|
}
|
|
2827
2827
|
/**
|
|
2828
2828
|
* @public
|
|
@@ -2848,32 +2848,32 @@ export interface BotAliasReplicaSummary {
|
|
|
2848
2848
|
* <p>The bot alias ID for all the alias bot replications.</p>
|
|
2849
2849
|
* @public
|
|
2850
2850
|
*/
|
|
2851
|
-
botAliasId?: string;
|
|
2851
|
+
botAliasId?: string | undefined;
|
|
2852
2852
|
/**
|
|
2853
2853
|
* <p>The replication statuses for all the alias bot replications.</p>
|
|
2854
2854
|
* @public
|
|
2855
2855
|
*/
|
|
2856
|
-
botAliasReplicationStatus?: BotAliasReplicationStatus;
|
|
2856
|
+
botAliasReplicationStatus?: BotAliasReplicationStatus | undefined;
|
|
2857
2857
|
/**
|
|
2858
2858
|
* <p>The bot version for all the alias bot replications.</p>
|
|
2859
2859
|
* @public
|
|
2860
2860
|
*/
|
|
2861
|
-
botVersion?: string;
|
|
2861
|
+
botVersion?: string | undefined;
|
|
2862
2862
|
/**
|
|
2863
2863
|
* <p>The creation time and date for all the alias bot replications.</p>
|
|
2864
2864
|
* @public
|
|
2865
2865
|
*/
|
|
2866
|
-
creationDateTime?: Date;
|
|
2866
|
+
creationDateTime?: Date | undefined;
|
|
2867
2867
|
/**
|
|
2868
2868
|
* <p>The last time and date updated for all the alias bot replications.</p>
|
|
2869
2869
|
* @public
|
|
2870
2870
|
*/
|
|
2871
|
-
lastUpdatedDateTime?: Date;
|
|
2871
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* <p>The reasons for failure for the aliases bot replications.</p>
|
|
2874
2874
|
* @public
|
|
2875
2875
|
*/
|
|
2876
|
-
failureReasons?: string[];
|
|
2876
|
+
failureReasons?: string[] | undefined;
|
|
2877
2877
|
}
|
|
2878
2878
|
/**
|
|
2879
2879
|
* @public
|
|
@@ -2899,40 +2899,40 @@ export interface BotAliasSummary {
|
|
|
2899
2899
|
* to get detailed information about the alias using the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeBotAlias.html">DescribeBotAlias</a> operation.</p>
|
|
2900
2900
|
* @public
|
|
2901
2901
|
*/
|
|
2902
|
-
botAliasId?: string;
|
|
2902
|
+
botAliasId?: string | undefined;
|
|
2903
2903
|
/**
|
|
2904
2904
|
* <p>The name of the bot alias.</p>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
botAliasName?: string;
|
|
2907
|
+
botAliasName?: string | undefined;
|
|
2908
2908
|
/**
|
|
2909
2909
|
* <p>The description of the bot alias.</p>
|
|
2910
2910
|
* @public
|
|
2911
2911
|
*/
|
|
2912
|
-
description?: string;
|
|
2912
|
+
description?: string | undefined;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* <p>The version of the bot that the bot alias references.</p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
botVersion?: string;
|
|
2917
|
+
botVersion?: string | undefined;
|
|
2918
2918
|
/**
|
|
2919
2919
|
* <p>The current state of the bot alias. If the status is
|
|
2920
2920
|
* <code>Available</code>, the alias is ready for use.</p>
|
|
2921
2921
|
* @public
|
|
2922
2922
|
*/
|
|
2923
|
-
botAliasStatus?: BotAliasStatus;
|
|
2923
|
+
botAliasStatus?: BotAliasStatus | undefined;
|
|
2924
2924
|
/**
|
|
2925
2925
|
* <p>A timestamp of the date and time that the bot alias was
|
|
2926
2926
|
* created.</p>
|
|
2927
2927
|
* @public
|
|
2928
2928
|
*/
|
|
2929
|
-
creationDateTime?: Date;
|
|
2929
|
+
creationDateTime?: Date | undefined;
|
|
2930
2930
|
/**
|
|
2931
2931
|
* <p>A timestamp of the date and time that the bot alias was last
|
|
2932
2932
|
* updated.</p>
|
|
2933
2933
|
* @public
|
|
2934
2934
|
*/
|
|
2935
|
-
lastUpdatedDateTime?: Date;
|
|
2935
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
2936
2936
|
}
|
|
2937
2937
|
/**
|
|
2938
2938
|
* <p>The target Amazon S3 location for the test set execution using a bot alias.</p>
|
|
@@ -3096,7 +3096,7 @@ export interface BotImportSpecification {
|
|
|
3096
3096
|
* seconds.</p>
|
|
3097
3097
|
* @public
|
|
3098
3098
|
*/
|
|
3099
|
-
idleSessionTTLInSeconds?: number;
|
|
3099
|
+
idleSessionTTLInSeconds?: number | undefined;
|
|
3100
3100
|
/**
|
|
3101
3101
|
* <p>A list of tags to add to the bot. You can only add tags when you
|
|
3102
3102
|
* import a bot. You can't use the <code>UpdateBot</code> operation to
|
|
@@ -3104,7 +3104,7 @@ export interface BotImportSpecification {
|
|
|
3104
3104
|
* operation.</p>
|
|
3105
3105
|
* @public
|
|
3106
3106
|
*/
|
|
3107
|
-
botTags?: Record<string, string
|
|
3107
|
+
botTags?: Record<string, string> | undefined;
|
|
3108
3108
|
/**
|
|
3109
3109
|
* <p>A list of tags to add to the test alias for a bot. You can only add
|
|
3110
3110
|
* tags when you import a bot. You can't use the <code>UpdateAlias</code>
|
|
@@ -3112,7 +3112,7 @@ export interface BotImportSpecification {
|
|
|
3112
3112
|
* <code>TagResource</code> operation.</p>
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
testBotAliasTags?: Record<string, string
|
|
3115
|
+
testBotAliasTags?: Record<string, string> | undefined;
|
|
3116
3116
|
}
|
|
3117
3117
|
/**
|
|
3118
3118
|
* <p>Provides the bot locale parameters required for exporting a bot
|
|
@@ -3257,7 +3257,7 @@ export interface VoiceSettings {
|
|
|
3257
3257
|
* <p>If you do not specify a value, the default is <code>standard</code>.</p>
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
|
-
engine?: VoiceEngine;
|
|
3260
|
+
engine?: VoiceEngine | undefined;
|
|
3261
3261
|
}
|
|
3262
3262
|
/**
|
|
3263
3263
|
* <p>Provides the bot locale parameters required for importing a bot
|
|
@@ -3321,7 +3321,7 @@ export interface BotLocaleImportSpecification {
|
|
|
3321
3321
|
* </ul>
|
|
3322
3322
|
* @public
|
|
3323
3323
|
*/
|
|
3324
|
-
nluIntentConfidenceThreshold?: number;
|
|
3324
|
+
nluIntentConfidenceThreshold?: number | undefined;
|
|
3325
3325
|
/**
|
|
3326
3326
|
* <p>Defines settings for using an Amazon Polly voice to communicate with a
|
|
3327
3327
|
* user.</p>
|
|
@@ -3350,7 +3350,7 @@ export interface BotLocaleImportSpecification {
|
|
|
3350
3350
|
* </ul>
|
|
3351
3351
|
* @public
|
|
3352
3352
|
*/
|
|
3353
|
-
voiceSettings?: VoiceSettings;
|
|
3353
|
+
voiceSettings?: VoiceSettings | undefined;
|
|
3354
3354
|
}
|
|
3355
3355
|
/**
|
|
3356
3356
|
* @public
|
|
@@ -3408,35 +3408,35 @@ export interface BotLocaleSummary {
|
|
|
3408
3408
|
* <p>The language and locale of the bot locale.</p>
|
|
3409
3409
|
* @public
|
|
3410
3410
|
*/
|
|
3411
|
-
localeId?: string;
|
|
3411
|
+
localeId?: string | undefined;
|
|
3412
3412
|
/**
|
|
3413
3413
|
* <p>The name of the bot locale.</p>
|
|
3414
3414
|
* @public
|
|
3415
3415
|
*/
|
|
3416
|
-
localeName?: string;
|
|
3416
|
+
localeName?: string | undefined;
|
|
3417
3417
|
/**
|
|
3418
3418
|
* <p>The description of the bot locale.</p>
|
|
3419
3419
|
* @public
|
|
3420
3420
|
*/
|
|
3421
|
-
description?: string;
|
|
3421
|
+
description?: string | undefined;
|
|
3422
3422
|
/**
|
|
3423
3423
|
* <p>The current status of the bot locale. When the status is
|
|
3424
3424
|
* <code>Built</code> the locale is ready for use.</p>
|
|
3425
3425
|
* @public
|
|
3426
3426
|
*/
|
|
3427
|
-
botLocaleStatus?: BotLocaleStatus;
|
|
3427
|
+
botLocaleStatus?: BotLocaleStatus | undefined;
|
|
3428
3428
|
/**
|
|
3429
3429
|
* <p>A timestamp of the date and time that the bot locale was last
|
|
3430
3430
|
* updated.</p>
|
|
3431
3431
|
* @public
|
|
3432
3432
|
*/
|
|
3433
|
-
lastUpdatedDateTime?: Date;
|
|
3433
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
3434
3434
|
/**
|
|
3435
3435
|
* <p>A timestamp of the date and time that the bot locale was last
|
|
3436
3436
|
* built.</p>
|
|
3437
3437
|
* @public
|
|
3438
3438
|
*/
|
|
3439
|
-
lastBuildSubmittedDateTime?: Date;
|
|
3439
|
+
lastBuildSubmittedDateTime?: Date | undefined;
|
|
3440
3440
|
}
|
|
3441
3441
|
/**
|
|
3442
3442
|
* <p>A bot that is a member of a network of bots.</p>
|
|
@@ -3480,7 +3480,7 @@ export interface IntentStatistics {
|
|
|
3480
3480
|
* recommendation.</p>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
discoveredIntentCount?: number;
|
|
3483
|
+
discoveredIntentCount?: number | undefined;
|
|
3484
3484
|
}
|
|
3485
3485
|
/**
|
|
3486
3486
|
* <p>The object that contains the statistical summary of the recommended
|
|
@@ -3493,7 +3493,7 @@ export interface SlotTypeStatistics {
|
|
|
3493
3493
|
* recommendation.</p>
|
|
3494
3494
|
* @public
|
|
3495
3495
|
*/
|
|
3496
|
-
discoveredSlotTypeCount?: number;
|
|
3496
|
+
discoveredSlotTypeCount?: number | undefined;
|
|
3497
3497
|
}
|
|
3498
3498
|
/**
|
|
3499
3499
|
* <p>A statistical summary of the bot recommendation results.</p>
|
|
@@ -3505,13 +3505,13 @@ export interface BotRecommendationResultStatistics {
|
|
|
3505
3505
|
* bot recommendation results.</p>
|
|
3506
3506
|
* @public
|
|
3507
3507
|
*/
|
|
3508
|
-
intents?: IntentStatistics;
|
|
3508
|
+
intents?: IntentStatistics | undefined;
|
|
3509
3509
|
/**
|
|
3510
3510
|
* <p>Statistical information about the slot types associated with the bot
|
|
3511
3511
|
* recommendation results.</p>
|
|
3512
3512
|
* @public
|
|
3513
3513
|
*/
|
|
3514
|
-
slotTypes?: SlotTypeStatistics;
|
|
3514
|
+
slotTypes?: SlotTypeStatistics | undefined;
|
|
3515
3515
|
}
|
|
3516
3516
|
/**
|
|
3517
3517
|
* <p>The object representing the URL of the bot definition, the URL of
|
|
@@ -3524,17 +3524,17 @@ export interface BotRecommendationResults {
|
|
|
3524
3524
|
* <p>The presigned URL link of the recommended bot definition.</p>
|
|
3525
3525
|
* @public
|
|
3526
3526
|
*/
|
|
3527
|
-
botLocaleExportUrl?: string;
|
|
3527
|
+
botLocaleExportUrl?: string | undefined;
|
|
3528
3528
|
/**
|
|
3529
3529
|
* <p>The presigned url link of the associated transcript.</p>
|
|
3530
3530
|
* @public
|
|
3531
3531
|
*/
|
|
3532
|
-
associatedTranscriptsUrl?: string;
|
|
3532
|
+
associatedTranscriptsUrl?: string | undefined;
|
|
3533
3533
|
/**
|
|
3534
3534
|
* <p>The statistical summary of the bot recommendation results.</p>
|
|
3535
3535
|
* @public
|
|
3536
3536
|
*/
|
|
3537
|
-
statistics?: BotRecommendationResultStatistics;
|
|
3537
|
+
statistics?: BotRecommendationResultStatistics | undefined;
|
|
3538
3538
|
}
|
|
3539
3539
|
/**
|
|
3540
3540
|
* @public
|
|
@@ -3578,13 +3578,13 @@ export interface BotRecommendationSummary {
|
|
|
3578
3578
|
* created.</p>
|
|
3579
3579
|
* @public
|
|
3580
3580
|
*/
|
|
3581
|
-
creationDateTime?: Date;
|
|
3581
|
+
creationDateTime?: Date | undefined;
|
|
3582
3582
|
/**
|
|
3583
3583
|
* <p>A timestamp of the date and time that the bot recommendation was
|
|
3584
3584
|
* last updated.</p>
|
|
3585
3585
|
* @public
|
|
3586
3586
|
*/
|
|
3587
|
-
lastUpdatedDateTime?: Date;
|
|
3587
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
3588
3588
|
}
|
|
3589
3589
|
/**
|
|
3590
3590
|
* @public
|
|
@@ -3609,22 +3609,22 @@ export interface BotReplicaSummary {
|
|
|
3609
3609
|
* <p>The replica region used in the replication statuses summary.</p>
|
|
3610
3610
|
* @public
|
|
3611
3611
|
*/
|
|
3612
|
-
replicaRegion?: string;
|
|
3612
|
+
replicaRegion?: string | undefined;
|
|
3613
3613
|
/**
|
|
3614
3614
|
* <p>The creation time and date for the replicated bots.</p>
|
|
3615
3615
|
* @public
|
|
3616
3616
|
*/
|
|
3617
|
-
creationDateTime?: Date;
|
|
3617
|
+
creationDateTime?: Date | undefined;
|
|
3618
3618
|
/**
|
|
3619
3619
|
* <p>The operation status for the replicated bot applicable.</p>
|
|
3620
3620
|
* @public
|
|
3621
3621
|
*/
|
|
3622
|
-
botReplicaStatus?: BotReplicaStatus;
|
|
3622
|
+
botReplicaStatus?: BotReplicaStatus | undefined;
|
|
3623
3623
|
/**
|
|
3624
3624
|
* <p>The reasons for the failure for the replicated bot.</p>
|
|
3625
3625
|
* @public
|
|
3626
3626
|
*/
|
|
3627
|
-
failureReasons?: string[];
|
|
3627
|
+
failureReasons?: string[] | undefined;
|
|
3628
3628
|
}
|
|
3629
3629
|
/**
|
|
3630
3630
|
* @public
|
|
@@ -3694,38 +3694,38 @@ export interface BotSummary {
|
|
|
3694
3694
|
* detailed information about the bot with the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeBot.html">DescribeBot</a> operation.</p>
|
|
3695
3695
|
* @public
|
|
3696
3696
|
*/
|
|
3697
|
-
botId?: string;
|
|
3697
|
+
botId?: string | undefined;
|
|
3698
3698
|
/**
|
|
3699
3699
|
* <p>The name of the bot.</p>
|
|
3700
3700
|
* @public
|
|
3701
3701
|
*/
|
|
3702
|
-
botName?: string;
|
|
3702
|
+
botName?: string | undefined;
|
|
3703
3703
|
/**
|
|
3704
3704
|
* <p>The description of the bot.</p>
|
|
3705
3705
|
* @public
|
|
3706
3706
|
*/
|
|
3707
|
-
description?: string;
|
|
3707
|
+
description?: string | undefined;
|
|
3708
3708
|
/**
|
|
3709
3709
|
* <p>The current status of the bot. When the status is
|
|
3710
3710
|
* <code>Available</code> the bot is ready for use.</p>
|
|
3711
3711
|
* @public
|
|
3712
3712
|
*/
|
|
3713
|
-
botStatus?: BotStatus;
|
|
3713
|
+
botStatus?: BotStatus | undefined;
|
|
3714
3714
|
/**
|
|
3715
3715
|
* <p>The latest numerical version in use for the bot.</p>
|
|
3716
3716
|
* @public
|
|
3717
3717
|
*/
|
|
3718
|
-
latestBotVersion?: string;
|
|
3718
|
+
latestBotVersion?: string | undefined;
|
|
3719
3719
|
/**
|
|
3720
3720
|
* <p>The date and time that the bot was last updated.</p>
|
|
3721
3721
|
* @public
|
|
3722
3722
|
*/
|
|
3723
|
-
lastUpdatedDateTime?: Date;
|
|
3723
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
3724
3724
|
/**
|
|
3725
3725
|
* <p>The type of the bot.</p>
|
|
3726
3726
|
* @public
|
|
3727
3727
|
*/
|
|
3728
|
-
botType?: BotType;
|
|
3728
|
+
botType?: BotType | undefined;
|
|
3729
3729
|
}
|
|
3730
3730
|
/**
|
|
3731
3731
|
* <p>The version of a bot used for a bot locale.</p>
|
|
@@ -3788,22 +3788,22 @@ export interface BotVersionReplicaSummary {
|
|
|
3788
3788
|
* <p>The bot version for the summary information for all the version replication statuses.</p>
|
|
3789
3789
|
* @public
|
|
3790
3790
|
*/
|
|
3791
|
-
botVersion?: string;
|
|
3791
|
+
botVersion?: string | undefined;
|
|
3792
3792
|
/**
|
|
3793
3793
|
* <p>The version replication status for all the replicated bots.</p>
|
|
3794
3794
|
* @public
|
|
3795
3795
|
*/
|
|
3796
|
-
botVersionReplicationStatus?: BotVersionReplicationStatus;
|
|
3796
|
+
botVersionReplicationStatus?: BotVersionReplicationStatus | undefined;
|
|
3797
3797
|
/**
|
|
3798
3798
|
* <p>The creation date and time of the replication status for all the replicated bots.</p>
|
|
3799
3799
|
* @public
|
|
3800
3800
|
*/
|
|
3801
|
-
creationDateTime?: Date;
|
|
3801
|
+
creationDateTime?: Date | undefined;
|
|
3802
3802
|
/**
|
|
3803
3803
|
* <p>The reasons for replication failure for all the replicated bots.</p>
|
|
3804
3804
|
* @public
|
|
3805
3805
|
*/
|
|
3806
|
-
failureReasons?: string[];
|
|
3806
|
+
failureReasons?: string[] | undefined;
|
|
3807
3807
|
}
|
|
3808
3808
|
/**
|
|
3809
3809
|
* @public
|
|
@@ -3842,30 +3842,30 @@ export interface BotVersionSummary {
|
|
|
3842
3842
|
* <p>The name of the bot associated with the version.</p>
|
|
3843
3843
|
* @public
|
|
3844
3844
|
*/
|
|
3845
|
-
botName?: string;
|
|
3845
|
+
botName?: string | undefined;
|
|
3846
3846
|
/**
|
|
3847
3847
|
* <p>The numeric version of the bot, or <code>DRAFT</code> to indicate
|
|
3848
3848
|
* that this is the version of the bot that can be updated..</p>
|
|
3849
3849
|
* @public
|
|
3850
3850
|
*/
|
|
3851
|
-
botVersion?: string;
|
|
3851
|
+
botVersion?: string | undefined;
|
|
3852
3852
|
/**
|
|
3853
3853
|
* <p>The description of the version.</p>
|
|
3854
3854
|
* @public
|
|
3855
3855
|
*/
|
|
3856
|
-
description?: string;
|
|
3856
|
+
description?: string | undefined;
|
|
3857
3857
|
/**
|
|
3858
3858
|
* <p>The status of the bot. When the status is available, the version of
|
|
3859
3859
|
* the bot is ready for use.</p>
|
|
3860
3860
|
* @public
|
|
3861
3861
|
*/
|
|
3862
|
-
botStatus?: BotStatus;
|
|
3862
|
+
botStatus?: BotStatus | undefined;
|
|
3863
3863
|
/**
|
|
3864
3864
|
* <p>A timestamp of the date and time that the version was
|
|
3865
3865
|
* created.</p>
|
|
3866
3866
|
* @public
|
|
3867
3867
|
*/
|
|
3868
|
-
creationDateTime?: Date;
|
|
3868
|
+
creationDateTime?: Date | undefined;
|
|
3869
3869
|
}
|
|
3870
3870
|
/**
|
|
3871
3871
|
* @public
|
|
@@ -3900,19 +3900,19 @@ export interface BuildBotLocaleResponse {
|
|
|
3900
3900
|
* <p>The identifier of the specified bot.</p>
|
|
3901
3901
|
* @public
|
|
3902
3902
|
*/
|
|
3903
|
-
botId?: string;
|
|
3903
|
+
botId?: string | undefined;
|
|
3904
3904
|
/**
|
|
3905
3905
|
* <p>The version of the bot that was built. This is only the draft
|
|
3906
3906
|
* version of the bot.</p>
|
|
3907
3907
|
* @public
|
|
3908
3908
|
*/
|
|
3909
|
-
botVersion?: string;
|
|
3909
|
+
botVersion?: string | undefined;
|
|
3910
3910
|
/**
|
|
3911
3911
|
* <p>The language and locale specified of where the bot can be
|
|
3912
3912
|
* used.</p>
|
|
3913
3913
|
* @public
|
|
3914
3914
|
*/
|
|
3915
|
-
localeId?: string;
|
|
3915
|
+
localeId?: string | undefined;
|
|
3916
3916
|
/**
|
|
3917
3917
|
* <p>The bot's build status. When the status is
|
|
3918
3918
|
* <code>ReadyExpressTesting</code> you can test the bot using the
|
|
@@ -3921,13 +3921,13 @@ export interface BuildBotLocaleResponse {
|
|
|
3921
3921
|
* any utterance.</p>
|
|
3922
3922
|
* @public
|
|
3923
3923
|
*/
|
|
3924
|
-
botLocaleStatus?: BotLocaleStatus;
|
|
3924
|
+
botLocaleStatus?: BotLocaleStatus | undefined;
|
|
3925
3925
|
/**
|
|
3926
3926
|
* <p>A timestamp indicating the date and time that the bot was last built
|
|
3927
3927
|
* for this locale.</p>
|
|
3928
3928
|
* @public
|
|
3929
3929
|
*/
|
|
3930
|
-
lastBuildSubmittedDateTime?: Date;
|
|
3930
|
+
lastBuildSubmittedDateTime?: Date | undefined;
|
|
3931
3931
|
}
|
|
3932
3932
|
/**
|
|
3933
3933
|
* <p>The action that you tried to perform couldn't be completed because
|
|
@@ -3971,7 +3971,7 @@ export interface DescriptiveBotBuilderSpecification {
|
|
|
3971
3971
|
* <p>An object containing information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.</p>
|
|
3972
3972
|
* @public
|
|
3973
3973
|
*/
|
|
3974
|
-
bedrockModelSpecification?: BedrockModelSpecification;
|
|
3974
|
+
bedrockModelSpecification?: BedrockModelSpecification | undefined;
|
|
3975
3975
|
}
|
|
3976
3976
|
/**
|
|
3977
3977
|
* <p>Contains specifications for the sample utterance generation feature.</p>
|
|
@@ -3987,7 +3987,7 @@ export interface SampleUtteranceGenerationSpecification {
|
|
|
3987
3987
|
* <p>Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.</p>
|
|
3988
3988
|
* @public
|
|
3989
3989
|
*/
|
|
3990
|
-
bedrockModelSpecification?: BedrockModelSpecification;
|
|
3990
|
+
bedrockModelSpecification?: BedrockModelSpecification | undefined;
|
|
3991
3991
|
}
|
|
3992
3992
|
/**
|
|
3993
3993
|
* <p>Contains specifications about the Amazon Lex build time generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
@@ -3998,12 +3998,12 @@ export interface BuildtimeSettings {
|
|
|
3998
3998
|
* <p>An object containing specifications for the descriptive bot building feature.</p>
|
|
3999
3999
|
* @public
|
|
4000
4000
|
*/
|
|
4001
|
-
descriptiveBotBuilder?: DescriptiveBotBuilderSpecification;
|
|
4001
|
+
descriptiveBotBuilder?: DescriptiveBotBuilderSpecification | undefined;
|
|
4002
4002
|
/**
|
|
4003
4003
|
* <p>Contains specifications for the sample utterance generation feature.</p>
|
|
4004
4004
|
* @public
|
|
4005
4005
|
*/
|
|
4006
|
-
sampleUtteranceGeneration?: SampleUtteranceGenerationSpecification;
|
|
4006
|
+
sampleUtteranceGeneration?: SampleUtteranceGenerationSpecification | undefined;
|
|
4007
4007
|
}
|
|
4008
4008
|
/**
|
|
4009
4009
|
* @public
|
|
@@ -4043,12 +4043,12 @@ export interface BuiltInIntentSummary {
|
|
|
4043
4043
|
* intent of a derived intent.</p>
|
|
4044
4044
|
* @public
|
|
4045
4045
|
*/
|
|
4046
|
-
intentSignature?: string;
|
|
4046
|
+
intentSignature?: string | undefined;
|
|
4047
4047
|
/**
|
|
4048
4048
|
* <p>The description of the intent.</p>
|
|
4049
4049
|
* @public
|
|
4050
4050
|
*/
|
|
4051
|
-
description?: string;
|
|
4051
|
+
description?: string | undefined;
|
|
4052
4052
|
}
|
|
4053
4053
|
/**
|
|
4054
4054
|
* @public
|
|
@@ -4091,12 +4091,12 @@ export interface BuiltInSlotTypeSummary {
|
|
|
4091
4091
|
* parent slot type of a derived slot type.</p>
|
|
4092
4092
|
* @public
|
|
4093
4093
|
*/
|
|
4094
|
-
slotTypeSignature?: string;
|
|
4094
|
+
slotTypeSignature?: string | undefined;
|
|
4095
4095
|
/**
|
|
4096
4096
|
* <p>The description of the built-in slot type.</p>
|
|
4097
4097
|
* @public
|
|
4098
4098
|
*/
|
|
4099
|
-
description?: string;
|
|
4099
|
+
description?: string | undefined;
|
|
4100
4100
|
}
|
|
4101
4101
|
/**
|
|
4102
4102
|
* <p>Describes a button to use on a response card used to gather slot
|
|
@@ -4163,7 +4163,7 @@ export interface CompositeSlotTypeSetting {
|
|
|
4163
4163
|
* <p>Subslots in the composite slot.</p>
|
|
4164
4164
|
* @public
|
|
4165
4165
|
*/
|
|
4166
|
-
subSlots?: SubSlotTypeComposition[];
|
|
4166
|
+
subSlots?: SubSlotTypeComposition[] | undefined;
|
|
4167
4167
|
}
|
|
4168
4168
|
/**
|
|
4169
4169
|
* <p>Provides an expression that evaluates to true or false. </p>
|
|
@@ -4211,12 +4211,12 @@ export interface DialogAction {
|
|
|
4211
4211
|
* elicit from the user.</p>
|
|
4212
4212
|
* @public
|
|
4213
4213
|
*/
|
|
4214
|
-
slotToElicit?: string;
|
|
4214
|
+
slotToElicit?: string | undefined;
|
|
4215
4215
|
/**
|
|
4216
4216
|
* <p>When true the next message for the intent is not used.</p>
|
|
4217
4217
|
* @public
|
|
4218
4218
|
*/
|
|
4219
|
-
suppressNextMessage?: boolean;
|
|
4219
|
+
suppressNextMessage?: boolean | undefined;
|
|
4220
4220
|
}
|
|
4221
4221
|
/**
|
|
4222
4222
|
* @public
|
|
@@ -4243,7 +4243,7 @@ export interface SlotValue {
|
|
|
4243
4243
|
* <code>resolvedValues</code> list.</p>
|
|
4244
4244
|
* @public
|
|
4245
4245
|
*/
|
|
4246
|
-
interpretedValue?: string;
|
|
4246
|
+
interpretedValue?: string | undefined;
|
|
4247
4247
|
}
|
|
4248
4248
|
/**
|
|
4249
4249
|
* <p>A custom response string that Amazon Lex sends to your application. You
|
|
@@ -4277,21 +4277,21 @@ export interface ImageResponseCard {
|
|
|
4277
4277
|
* card.</p>
|
|
4278
4278
|
* @public
|
|
4279
4279
|
*/
|
|
4280
|
-
subtitle?: string;
|
|
4280
|
+
subtitle?: string | undefined;
|
|
4281
4281
|
/**
|
|
4282
4282
|
* <p>The URL of an image to display on the response card. The image URL
|
|
4283
4283
|
* must be publicly available so that the platform displaying the response
|
|
4284
4284
|
* card has access to the image.</p>
|
|
4285
4285
|
* @public
|
|
4286
4286
|
*/
|
|
4287
|
-
imageUrl?: string;
|
|
4287
|
+
imageUrl?: string | undefined;
|
|
4288
4288
|
/**
|
|
4289
4289
|
* <p>A list of buttons that should be displayed on the response card. The
|
|
4290
4290
|
* arrangement of the buttons is determined by the platform that displays
|
|
4291
4291
|
* the button.</p>
|
|
4292
4292
|
* @public
|
|
4293
4293
|
*/
|
|
4294
|
-
buttons?: Button[];
|
|
4294
|
+
buttons?: Button[] | undefined;
|
|
4295
4295
|
}
|
|
4296
4296
|
/**
|
|
4297
4297
|
* <p>Defines an ASCII text message to send to the user.</p>
|
|
@@ -4324,24 +4324,24 @@ export interface Message {
|
|
|
4324
4324
|
* <p>A message in plain text format.</p>
|
|
4325
4325
|
* @public
|
|
4326
4326
|
*/
|
|
4327
|
-
plainTextMessage?: PlainTextMessage;
|
|
4327
|
+
plainTextMessage?: PlainTextMessage | undefined;
|
|
4328
4328
|
/**
|
|
4329
4329
|
* <p>A message in a custom format defined by the client
|
|
4330
4330
|
* application.</p>
|
|
4331
4331
|
* @public
|
|
4332
4332
|
*/
|
|
4333
|
-
customPayload?: CustomPayload;
|
|
4333
|
+
customPayload?: CustomPayload | undefined;
|
|
4334
4334
|
/**
|
|
4335
4335
|
* <p>A message in Speech Synthesis Markup Language (SSML).</p>
|
|
4336
4336
|
* @public
|
|
4337
4337
|
*/
|
|
4338
|
-
ssmlMessage?: SSMLMessage;
|
|
4338
|
+
ssmlMessage?: SSMLMessage | undefined;
|
|
4339
4339
|
/**
|
|
4340
4340
|
* <p>A message that defines a response card that the client application
|
|
4341
4341
|
* can show to the user.</p>
|
|
4342
4342
|
* @public
|
|
4343
4343
|
*/
|
|
4344
|
-
imageResponseCard?: ImageResponseCard;
|
|
4344
|
+
imageResponseCard?: ImageResponseCard | undefined;
|
|
4345
4345
|
}
|
|
4346
4346
|
/**
|
|
4347
4347
|
* <p>Provides one or more messages that Amazon Lex should send to the
|
|
@@ -4360,7 +4360,7 @@ export interface MessageGroup {
|
|
|
4360
4360
|
* the user.</p>
|
|
4361
4361
|
* @public
|
|
4362
4362
|
*/
|
|
4363
|
-
variations?: Message[];
|
|
4363
|
+
variations?: Message[] | undefined;
|
|
4364
4364
|
}
|
|
4365
4365
|
/**
|
|
4366
4366
|
* <p>Specifies a list of message groups that Amazon Lex uses to respond the
|
|
@@ -4379,7 +4379,7 @@ export interface ResponseSpecification {
|
|
|
4379
4379
|
* Amazon Lex.</p>
|
|
4380
4380
|
* @public
|
|
4381
4381
|
*/
|
|
4382
|
-
allowInterrupt?: boolean;
|
|
4382
|
+
allowInterrupt?: boolean | undefined;
|
|
4383
4383
|
}
|
|
4384
4384
|
/**
|
|
4385
4385
|
* @public
|
|
@@ -4438,7 +4438,7 @@ export interface ConversationLevelResultDetail {
|
|
|
4438
4438
|
* <p>The speech transcription success or failure details of the conversation.</p>
|
|
4439
4439
|
* @public
|
|
4440
4440
|
*/
|
|
4441
|
-
speechTranscriptionResult?: TestResultMatchStatus;
|
|
4441
|
+
speechTranscriptionResult?: TestResultMatchStatus | undefined;
|
|
4442
4442
|
}
|
|
4443
4443
|
/**
|
|
4444
4444
|
* <p>The slots used for the slot resolution in the conversation.</p>
|
|
@@ -4480,7 +4480,7 @@ export interface ConversationLevelTestResultItem {
|
|
|
4480
4480
|
* <p>The speech transcription success or failure of the test result evaluation item.</p>
|
|
4481
4481
|
* @public
|
|
4482
4482
|
*/
|
|
4483
|
-
speechTranscriptionResult?: TestResultMatchStatus;
|
|
4483
|
+
speechTranscriptionResult?: TestResultMatchStatus | undefined;
|
|
4484
4484
|
/**
|
|
4485
4485
|
* <p>The intent classification of the test result evaluation item.</p>
|
|
4486
4486
|
* @public
|
|
@@ -4513,7 +4513,7 @@ export interface ConversationLevelTestResultsFilterBy {
|
|
|
4513
4513
|
* at the conversation level.</p>
|
|
4514
4514
|
* @public
|
|
4515
4515
|
*/
|
|
4516
|
-
endToEndResult?: TestResultMatchStatus;
|
|
4516
|
+
endToEndResult?: TestResultMatchStatus | undefined;
|
|
4517
4517
|
}
|
|
4518
4518
|
/**
|
|
4519
4519
|
* @public
|
|
@@ -4608,7 +4608,7 @@ export interface TextLogSetting {
|
|
|
4608
4608
|
* <p>The option to enable selective conversation log capture for text.</p>
|
|
4609
4609
|
* @public
|
|
4610
4610
|
*/
|
|
4611
|
-
selectiveLoggingEnabled?: boolean;
|
|
4611
|
+
selectiveLoggingEnabled?: boolean | undefined;
|
|
4612
4612
|
}
|
|
4613
4613
|
/**
|
|
4614
4614
|
* <p>Configures conversation logging that saves audio, text, and metadata
|
|
@@ -4620,12 +4620,12 @@ export interface ConversationLogSettings {
|
|
|
4620
4620
|
* <p>The Amazon CloudWatch Logs settings for logging text and metadata.</p>
|
|
4621
4621
|
* @public
|
|
4622
4622
|
*/
|
|
4623
|
-
textLogSettings?: TextLogSetting[];
|
|
4623
|
+
textLogSettings?: TextLogSetting[] | undefined;
|
|
4624
4624
|
/**
|
|
4625
4625
|
* <p>The Amazon S3 settings for logging audio to an S3 bucket.</p>
|
|
4626
4626
|
* @public
|
|
4627
4627
|
*/
|
|
4628
|
-
audioLogSettings?: AudioLogSetting[];
|
|
4628
|
+
audioLogSettings?: AudioLogSetting[] | undefined;
|
|
4629
4629
|
}
|
|
4630
4630
|
/**
|
|
4631
4631
|
* @public
|
|
@@ -4642,7 +4642,7 @@ export interface CreateBotRequest {
|
|
|
4642
4642
|
* particular bot.</p>
|
|
4643
4643
|
* @public
|
|
4644
4644
|
*/
|
|
4645
|
-
description?: string;
|
|
4645
|
+
description?: string | undefined;
|
|
4646
4646
|
/**
|
|
4647
4647
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permission to
|
|
4648
4648
|
* access the bot.</p>
|
|
@@ -4673,7 +4673,7 @@ export interface CreateBotRequest {
|
|
|
4673
4673
|
* operation.</p>
|
|
4674
4674
|
* @public
|
|
4675
4675
|
*/
|
|
4676
|
-
botTags?: Record<string, string
|
|
4676
|
+
botTags?: Record<string, string> | undefined;
|
|
4677
4677
|
/**
|
|
4678
4678
|
* <p>A list of tags to add to the test alias for a bot. You can only add
|
|
4679
4679
|
* tags when you create a bot. You can't use the <code>UpdateAlias</code>
|
|
@@ -4681,17 +4681,17 @@ export interface CreateBotRequest {
|
|
|
4681
4681
|
* <code>TagResource</code> operation.</p>
|
|
4682
4682
|
* @public
|
|
4683
4683
|
*/
|
|
4684
|
-
testBotAliasTags?: Record<string, string
|
|
4684
|
+
testBotAliasTags?: Record<string, string> | undefined;
|
|
4685
4685
|
/**
|
|
4686
4686
|
* <p>The type of a bot to create.</p>
|
|
4687
4687
|
* @public
|
|
4688
4688
|
*/
|
|
4689
|
-
botType?: BotType;
|
|
4689
|
+
botType?: BotType | undefined;
|
|
4690
4690
|
/**
|
|
4691
4691
|
* <p>The list of bot members in a network to be created.</p>
|
|
4692
4692
|
* @public
|
|
4693
4693
|
*/
|
|
4694
|
-
botMembers?: BotMember[];
|
|
4694
|
+
botMembers?: BotMember[] | undefined;
|
|
4695
4695
|
}
|
|
4696
4696
|
/**
|
|
4697
4697
|
* @public
|
|
@@ -4702,32 +4702,32 @@ export interface CreateBotResponse {
|
|
|
4702
4702
|
* the bot when you call other Amazon Lex API operations.</p>
|
|
4703
4703
|
* @public
|
|
4704
4704
|
*/
|
|
4705
|
-
botId?: string;
|
|
4705
|
+
botId?: string | undefined;
|
|
4706
4706
|
/**
|
|
4707
4707
|
* <p>The name specified for the bot.</p>
|
|
4708
4708
|
* @public
|
|
4709
4709
|
*/
|
|
4710
|
-
botName?: string;
|
|
4710
|
+
botName?: string | undefined;
|
|
4711
4711
|
/**
|
|
4712
4712
|
* <p>The description specified for the bot.</p>
|
|
4713
4713
|
* @public
|
|
4714
4714
|
*/
|
|
4715
|
-
description?: string;
|
|
4715
|
+
description?: string | undefined;
|
|
4716
4716
|
/**
|
|
4717
4717
|
* <p>The IAM role specified for the bot.</p>
|
|
4718
4718
|
* @public
|
|
4719
4719
|
*/
|
|
4720
|
-
roleArn?: string;
|
|
4720
|
+
roleArn?: string | undefined;
|
|
4721
4721
|
/**
|
|
4722
4722
|
* <p>The data privacy settings specified for the bot.</p>
|
|
4723
4723
|
* @public
|
|
4724
4724
|
*/
|
|
4725
|
-
dataPrivacy?: DataPrivacy;
|
|
4725
|
+
dataPrivacy?: DataPrivacy | undefined;
|
|
4726
4726
|
/**
|
|
4727
4727
|
* <p>The session idle time specified for the bot.</p>
|
|
4728
4728
|
* @public
|
|
4729
4729
|
*/
|
|
4730
|
-
idleSessionTTLInSeconds?: number;
|
|
4730
|
+
idleSessionTTLInSeconds?: number | undefined;
|
|
4731
4731
|
/**
|
|
4732
4732
|
* <p>Shows the current status of the bot. The bot is first in the
|
|
4733
4733
|
* <code>Creating</code> status. Once the bot is read for use, it
|
|
@@ -4735,33 +4735,33 @@ export interface CreateBotResponse {
|
|
|
4735
4735
|
* you can use the <code>DRAFT</code> version of the bot.</p>
|
|
4736
4736
|
* @public
|
|
4737
4737
|
*/
|
|
4738
|
-
botStatus?: BotStatus;
|
|
4738
|
+
botStatus?: BotStatus | undefined;
|
|
4739
4739
|
/**
|
|
4740
4740
|
* <p>A timestamp indicating the date and time that the bot was
|
|
4741
4741
|
* created.</p>
|
|
4742
4742
|
* @public
|
|
4743
4743
|
*/
|
|
4744
|
-
creationDateTime?: Date;
|
|
4744
|
+
creationDateTime?: Date | undefined;
|
|
4745
4745
|
/**
|
|
4746
4746
|
* <p>A list of tags associated with the bot.</p>
|
|
4747
4747
|
* @public
|
|
4748
4748
|
*/
|
|
4749
|
-
botTags?: Record<string, string
|
|
4749
|
+
botTags?: Record<string, string> | undefined;
|
|
4750
4750
|
/**
|
|
4751
4751
|
* <p>A list of tags associated with the test alias for the bot.</p>
|
|
4752
4752
|
* @public
|
|
4753
4753
|
*/
|
|
4754
|
-
testBotAliasTags?: Record<string, string
|
|
4754
|
+
testBotAliasTags?: Record<string, string> | undefined;
|
|
4755
4755
|
/**
|
|
4756
4756
|
* <p>The type of a bot that was created.</p>
|
|
4757
4757
|
* @public
|
|
4758
4758
|
*/
|
|
4759
|
-
botType?: BotType;
|
|
4759
|
+
botType?: BotType | undefined;
|
|
4760
4760
|
/**
|
|
4761
4761
|
* <p>The list of bots in a network that was created.</p>
|
|
4762
4762
|
* @public
|
|
4763
4763
|
*/
|
|
4764
|
-
botMembers?: BotMember[];
|
|
4764
|
+
botMembers?: BotMember[] | undefined;
|
|
4765
4765
|
}
|
|
4766
4766
|
/**
|
|
4767
4767
|
* <p>Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of
|
|
@@ -4790,21 +4790,21 @@ export interface CreateBotAliasRequest {
|
|
|
4790
4790
|
* the alias.</p>
|
|
4791
4791
|
* @public
|
|
4792
4792
|
*/
|
|
4793
|
-
description?: string;
|
|
4793
|
+
description?: string | undefined;
|
|
4794
4794
|
/**
|
|
4795
4795
|
* <p>The version of the bot that this alias points to. You can use the
|
|
4796
4796
|
* <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_UpdateBotAlias.html">UpdateBotAlias</a> operation to change the
|
|
4797
4797
|
* bot version associated with the alias.</p>
|
|
4798
4798
|
* @public
|
|
4799
4799
|
*/
|
|
4800
|
-
botVersion?: string;
|
|
4800
|
+
botVersion?: string | undefined;
|
|
4801
4801
|
/**
|
|
4802
4802
|
* <p>Maps configuration information to a specific locale. You can use
|
|
4803
4803
|
* this parameter to specify a specific Lambda function to run different
|
|
4804
4804
|
* functions in different locales.</p>
|
|
4805
4805
|
* @public
|
|
4806
4806
|
*/
|
|
4807
|
-
botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings
|
|
4807
|
+
botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings> | undefined;
|
|
4808
4808
|
/**
|
|
4809
4809
|
* <p>Specifies whether Amazon Lex logs text and audio for a conversation with
|
|
4810
4810
|
* the bot. When you enable conversation logs, text logs store text input,
|
|
@@ -4812,13 +4812,13 @@ export interface CreateBotAliasRequest {
|
|
|
4812
4812
|
* logs store audio input in Amazon S3.</p>
|
|
4813
4813
|
* @public
|
|
4814
4814
|
*/
|
|
4815
|
-
conversationLogSettings?: ConversationLogSettings;
|
|
4815
|
+
conversationLogSettings?: ConversationLogSettings | undefined;
|
|
4816
4816
|
/**
|
|
4817
4817
|
* <p>Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of
|
|
4818
4818
|
* user utterances.</p>
|
|
4819
4819
|
* @public
|
|
4820
4820
|
*/
|
|
4821
|
-
sentimentAnalysisSettings?: SentimentAnalysisSettings;
|
|
4821
|
+
sentimentAnalysisSettings?: SentimentAnalysisSettings | undefined;
|
|
4822
4822
|
/**
|
|
4823
4823
|
* <p>The unique identifier of the bot that the alias applies to.</p>
|
|
4824
4824
|
* @public
|
|
@@ -4831,7 +4831,7 @@ export interface CreateBotAliasRequest {
|
|
|
4831
4831
|
* <code>TagResource</code> operation.</p>
|
|
4832
4832
|
* @public
|
|
4833
4833
|
*/
|
|
4834
|
-
tags?: Record<string, string
|
|
4834
|
+
tags?: Record<string, string> | undefined;
|
|
4835
4835
|
}
|
|
4836
4836
|
/**
|
|
4837
4837
|
* @public
|
|
@@ -4841,38 +4841,38 @@ export interface CreateBotAliasResponse {
|
|
|
4841
4841
|
* <p>The unique identifier of the bot alias.</p>
|
|
4842
4842
|
* @public
|
|
4843
4843
|
*/
|
|
4844
|
-
botAliasId?: string;
|
|
4844
|
+
botAliasId?: string | undefined;
|
|
4845
4845
|
/**
|
|
4846
4846
|
* <p>The name specified for the bot alias.</p>
|
|
4847
4847
|
* @public
|
|
4848
4848
|
*/
|
|
4849
|
-
botAliasName?: string;
|
|
4849
|
+
botAliasName?: string | undefined;
|
|
4850
4850
|
/**
|
|
4851
4851
|
* <p>The description specified for the bot alias.</p>
|
|
4852
4852
|
* @public
|
|
4853
4853
|
*/
|
|
4854
|
-
description?: string;
|
|
4854
|
+
description?: string | undefined;
|
|
4855
4855
|
/**
|
|
4856
4856
|
* <p>The version of the bot associated with this alias.</p>
|
|
4857
4857
|
* @public
|
|
4858
4858
|
*/
|
|
4859
|
-
botVersion?: string;
|
|
4859
|
+
botVersion?: string | undefined;
|
|
4860
4860
|
/**
|
|
4861
4861
|
* <p>Configuration information for a specific locale.</p>
|
|
4862
4862
|
* @public
|
|
4863
4863
|
*/
|
|
4864
|
-
botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings
|
|
4864
|
+
botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings> | undefined;
|
|
4865
4865
|
/**
|
|
4866
4866
|
* <p>The conversation log settings specified for the alias.</p>
|
|
4867
4867
|
* @public
|
|
4868
4868
|
*/
|
|
4869
|
-
conversationLogSettings?: ConversationLogSettings;
|
|
4869
|
+
conversationLogSettings?: ConversationLogSettings | undefined;
|
|
4870
4870
|
/**
|
|
4871
4871
|
* <p>Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of
|
|
4872
4872
|
* user utterances.</p>
|
|
4873
4873
|
* @public
|
|
4874
4874
|
*/
|
|
4875
|
-
sentimentAnalysisSettings?: SentimentAnalysisSettings;
|
|
4875
|
+
sentimentAnalysisSettings?: SentimentAnalysisSettings | undefined;
|
|
4876
4876
|
/**
|
|
4877
4877
|
* <p>The current status of the alias. The alias is first put into the
|
|
4878
4878
|
* <code>Creating</code> state. When the alias is ready to be used, it
|
|
@@ -4881,23 +4881,23 @@ export interface CreateBotAliasResponse {
|
|
|
4881
4881
|
* an alias.</p>
|
|
4882
4882
|
* @public
|
|
4883
4883
|
*/
|
|
4884
|
-
botAliasStatus?: BotAliasStatus;
|
|
4884
|
+
botAliasStatus?: BotAliasStatus | undefined;
|
|
4885
4885
|
/**
|
|
4886
4886
|
* <p>The unique identifier of the bot that this alias applies to.</p>
|
|
4887
4887
|
* @public
|
|
4888
4888
|
*/
|
|
4889
|
-
botId?: string;
|
|
4889
|
+
botId?: string | undefined;
|
|
4890
4890
|
/**
|
|
4891
4891
|
* <p>A Unix timestamp indicating the date and time that the bot alias was
|
|
4892
4892
|
* created.</p>
|
|
4893
4893
|
* @public
|
|
4894
4894
|
*/
|
|
4895
|
-
creationDateTime?: Date;
|
|
4895
|
+
creationDateTime?: Date | undefined;
|
|
4896
4896
|
/**
|
|
4897
4897
|
* <p>A list of tags associated with the bot alias.</p>
|
|
4898
4898
|
* @public
|
|
4899
4899
|
*/
|
|
4900
|
-
tags?: Record<string, string
|
|
4900
|
+
tags?: Record<string, string> | undefined;
|
|
4901
4901
|
}
|
|
4902
4902
|
/**
|
|
4903
4903
|
* <p>Contains specifications for the assisted slot resolution feature.</p>
|
|
@@ -4913,7 +4913,7 @@ export interface SlotResolutionImprovementSpecification {
|
|
|
4913
4913
|
* <p>An object containing information about the Amazon Bedrock model used to assist slot resolution.</p>
|
|
4914
4914
|
* @public
|
|
4915
4915
|
*/
|
|
4916
|
-
bedrockModelSpecification?: BedrockModelSpecification;
|
|
4916
|
+
bedrockModelSpecification?: BedrockModelSpecification | undefined;
|
|
4917
4917
|
}
|
|
4918
4918
|
/**
|
|
4919
4919
|
* <p>Contains specifications about the Amazon Lex runtime generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
@@ -4924,7 +4924,7 @@ export interface RuntimeSettings {
|
|
|
4924
4924
|
* <p>An object containing specifications for the assisted slot resolution feature.</p>
|
|
4925
4925
|
* @public
|
|
4926
4926
|
*/
|
|
4927
|
-
slotResolutionImprovement?: SlotResolutionImprovementSpecification;
|
|
4927
|
+
slotResolutionImprovement?: SlotResolutionImprovementSpecification | undefined;
|
|
4928
4928
|
}
|
|
4929
4929
|
/**
|
|
4930
4930
|
* <p>Contains specifications about the generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
@@ -4935,12 +4935,12 @@ export interface GenerativeAISettings {
|
|
|
4935
4935
|
* <p>Contains specifications about the Amazon Lex runtime generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
4936
4936
|
* @public
|
|
4937
4937
|
*/
|
|
4938
|
-
runtimeSettings?: RuntimeSettings;
|
|
4938
|
+
runtimeSettings?: RuntimeSettings | undefined;
|
|
4939
4939
|
/**
|
|
4940
4940
|
* <p>Contains specifications about the Amazon Lex build time generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
4941
4941
|
* @public
|
|
4942
4942
|
*/
|
|
4943
|
-
buildtimeSettings?: BuildtimeSettings;
|
|
4943
|
+
buildtimeSettings?: BuildtimeSettings | undefined;
|
|
4944
4944
|
}
|
|
4945
4945
|
/**
|
|
4946
4946
|
* @public
|
|
@@ -4970,7 +4970,7 @@ export interface CreateBotLocaleRequest {
|
|
|
4970
4970
|
* locale in lists.</p>
|
|
4971
4971
|
* @public
|
|
4972
4972
|
*/
|
|
4973
|
-
description?: string;
|
|
4973
|
+
description?: string | undefined;
|
|
4974
4974
|
/**
|
|
4975
4975
|
* <p>Determines the threshold where Amazon Lex will insert the
|
|
4976
4976
|
* <code>AMAZON.FallbackIntent</code>,
|
|
@@ -5005,12 +5005,12 @@ export interface CreateBotLocaleRequest {
|
|
|
5005
5005
|
* user.</p>
|
|
5006
5006
|
* @public
|
|
5007
5007
|
*/
|
|
5008
|
-
voiceSettings?: VoiceSettings;
|
|
5008
|
+
voiceSettings?: VoiceSettings | undefined;
|
|
5009
5009
|
/**
|
|
5010
5010
|
* <p>Contains specifications about the generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
5011
5011
|
* @public
|
|
5012
5012
|
*/
|
|
5013
|
-
generativeAISettings?: GenerativeAISettings;
|
|
5013
|
+
generativeAISettings?: GenerativeAISettings | undefined;
|
|
5014
5014
|
}
|
|
5015
5015
|
/**
|
|
5016
5016
|
* @public
|
|
@@ -5020,40 +5020,40 @@ export interface CreateBotLocaleResponse {
|
|
|
5020
5020
|
* <p>The specified bot identifier.</p>
|
|
5021
5021
|
* @public
|
|
5022
5022
|
*/
|
|
5023
|
-
botId?: string;
|
|
5023
|
+
botId?: string | undefined;
|
|
5024
5024
|
/**
|
|
5025
5025
|
* <p>The specified bot version.</p>
|
|
5026
5026
|
* @public
|
|
5027
5027
|
*/
|
|
5028
|
-
botVersion?: string;
|
|
5028
|
+
botVersion?: string | undefined;
|
|
5029
5029
|
/**
|
|
5030
5030
|
* <p>The specified locale name.</p>
|
|
5031
5031
|
* @public
|
|
5032
5032
|
*/
|
|
5033
|
-
localeName?: string;
|
|
5033
|
+
localeName?: string | undefined;
|
|
5034
5034
|
/**
|
|
5035
5035
|
* <p>The specified locale identifier.</p>
|
|
5036
5036
|
* @public
|
|
5037
5037
|
*/
|
|
5038
|
-
localeId?: string;
|
|
5038
|
+
localeId?: string | undefined;
|
|
5039
5039
|
/**
|
|
5040
5040
|
* <p>The specified description of the bot locale.</p>
|
|
5041
5041
|
* @public
|
|
5042
5042
|
*/
|
|
5043
|
-
description?: string;
|
|
5043
|
+
description?: string | undefined;
|
|
5044
5044
|
/**
|
|
5045
5045
|
* <p>The specified confidence threshold for inserting the
|
|
5046
5046
|
* <code>AMAZON.FallbackIntent</code> and
|
|
5047
5047
|
* <code>AMAZON.KendraSearchIntent</code> intents.</p>
|
|
5048
5048
|
* @public
|
|
5049
5049
|
*/
|
|
5050
|
-
nluIntentConfidenceThreshold?: number;
|
|
5050
|
+
nluIntentConfidenceThreshold?: number | undefined;
|
|
5051
5051
|
/**
|
|
5052
5052
|
* <p>The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the
|
|
5053
5053
|
* user.</p>
|
|
5054
5054
|
* @public
|
|
5055
5055
|
*/
|
|
5056
|
-
voiceSettings?: VoiceSettings;
|
|
5056
|
+
voiceSettings?: VoiceSettings | undefined;
|
|
5057
5057
|
/**
|
|
5058
5058
|
* <p>The status of the bot.</p>
|
|
5059
5059
|
* <p>When the status is <code>Creating</code> the bot locale is being
|
|
@@ -5068,18 +5068,18 @@ export interface CreateBotLocaleResponse {
|
|
|
5068
5068
|
* is <code>NotBuilt</code>.</p>
|
|
5069
5069
|
* @public
|
|
5070
5070
|
*/
|
|
5071
|
-
botLocaleStatus?: BotLocaleStatus;
|
|
5071
|
+
botLocaleStatus?: BotLocaleStatus | undefined;
|
|
5072
5072
|
/**
|
|
5073
5073
|
* <p>A timestamp specifying the date and time that the bot locale was
|
|
5074
5074
|
* created.</p>
|
|
5075
5075
|
* @public
|
|
5076
5076
|
*/
|
|
5077
|
-
creationDateTime?: Date;
|
|
5077
|
+
creationDateTime?: Date | undefined;
|
|
5078
5078
|
/**
|
|
5079
5079
|
* <p>Contains specifications about the generative AI capabilities from Amazon Bedrock that you can turn on for your bot.</p>
|
|
5080
5080
|
* @public
|
|
5081
5081
|
*/
|
|
5082
|
-
generativeAISettings?: GenerativeAISettings;
|
|
5082
|
+
generativeAISettings?: GenerativeAISettings | undefined;
|
|
5083
5083
|
}
|
|
5084
5084
|
/**
|
|
5085
5085
|
* @public
|
|
@@ -5104,27 +5104,27 @@ export interface CreateBotReplicaResponse {
|
|
|
5104
5104
|
* <p>The unique bot ID of the replicated bot generated.</p>
|
|
5105
5105
|
* @public
|
|
5106
5106
|
*/
|
|
5107
|
-
botId?: string;
|
|
5107
|
+
botId?: string | undefined;
|
|
5108
5108
|
/**
|
|
5109
5109
|
* <p>The region of the replicated bot generated.</p>
|
|
5110
5110
|
* @public
|
|
5111
5111
|
*/
|
|
5112
|
-
replicaRegion?: string;
|
|
5112
|
+
replicaRegion?: string | undefined;
|
|
5113
5113
|
/**
|
|
5114
5114
|
* <p>The source region for the source bot used for the replicated bot generated.</p>
|
|
5115
5115
|
* @public
|
|
5116
5116
|
*/
|
|
5117
|
-
sourceRegion?: string;
|
|
5117
|
+
sourceRegion?: string | undefined;
|
|
5118
5118
|
/**
|
|
5119
5119
|
* <p>The creation date and time of the replicated bot generated.</p>
|
|
5120
5120
|
* @public
|
|
5121
5121
|
*/
|
|
5122
|
-
creationDateTime?: Date;
|
|
5122
|
+
creationDateTime?: Date | undefined;
|
|
5123
5123
|
/**
|
|
5124
5124
|
* <p>The operational status of the replicated bot generated.</p>
|
|
5125
5125
|
* @public
|
|
5126
5126
|
*/
|
|
5127
|
-
botReplicaStatus?: BotReplicaStatus;
|
|
5127
|
+
botReplicaStatus?: BotReplicaStatus | undefined;
|
|
5128
5128
|
}
|
|
5129
5129
|
/**
|
|
5130
5130
|
* @public
|
|
@@ -5140,7 +5140,7 @@ export interface CreateBotVersionRequest {
|
|
|
5140
5140
|
* the version in lists.</p>
|
|
5141
5141
|
* @public
|
|
5142
5142
|
*/
|
|
5143
|
-
description?: string;
|
|
5143
|
+
description?: string | undefined;
|
|
5144
5144
|
/**
|
|
5145
5145
|
* <p>Specifies the locales that Amazon Lex adds to this version. You can
|
|
5146
5146
|
* choose the <code>Draft</code> version or any other previously published
|
|
@@ -5158,22 +5158,22 @@ export interface CreateBotVersionResponse {
|
|
|
5158
5158
|
* <p>The bot identifier specified in the request.</p>
|
|
5159
5159
|
* @public
|
|
5160
5160
|
*/
|
|
5161
|
-
botId?: string;
|
|
5161
|
+
botId?: string | undefined;
|
|
5162
5162
|
/**
|
|
5163
5163
|
* <p>The description of the version specified in the request.</p>
|
|
5164
5164
|
* @public
|
|
5165
5165
|
*/
|
|
5166
|
-
description?: string;
|
|
5166
|
+
description?: string | undefined;
|
|
5167
5167
|
/**
|
|
5168
5168
|
* <p>The version number assigned to the version.</p>
|
|
5169
5169
|
* @public
|
|
5170
5170
|
*/
|
|
5171
|
-
botVersion?: string;
|
|
5171
|
+
botVersion?: string | undefined;
|
|
5172
5172
|
/**
|
|
5173
5173
|
* <p>The source versions used for each locale in the new version.</p>
|
|
5174
5174
|
* @public
|
|
5175
5175
|
*/
|
|
5176
|
-
botVersionLocaleSpecification?: Record<string, BotVersionLocaleDetails
|
|
5176
|
+
botVersionLocaleSpecification?: Record<string, BotVersionLocaleDetails> | undefined;
|
|
5177
5177
|
/**
|
|
5178
5178
|
* <p>When you send a request to create or update a bot, Amazon Lex sets the
|
|
5179
5179
|
* status response element to <code>Creating</code>. After Amazon Lex builds
|
|
@@ -5181,13 +5181,13 @@ export interface CreateBotVersionResponse {
|
|
|
5181
5181
|
* the bot, it sets status to <code>Failed</code>.</p>
|
|
5182
5182
|
* @public
|
|
5183
5183
|
*/
|
|
5184
|
-
botStatus?: BotStatus;
|
|
5184
|
+
botStatus?: BotStatus | undefined;
|
|
5185
5185
|
/**
|
|
5186
5186
|
* <p>A timestamp of the date and time that the version was
|
|
5187
5187
|
* created.</p>
|
|
5188
5188
|
* @public
|
|
5189
5189
|
*/
|
|
5190
|
-
creationDateTime?: Date;
|
|
5190
|
+
creationDateTime?: Date | undefined;
|
|
5191
5191
|
}
|
|
5192
5192
|
/**
|
|
5193
5193
|
* @public
|
|
@@ -5245,22 +5245,22 @@ export interface ExportResourceSpecification {
|
|
|
5245
5245
|
* <p>Parameters for exporting a bot.</p>
|
|
5246
5246
|
* @public
|
|
5247
5247
|
*/
|
|
5248
|
-
botExportSpecification?: BotExportSpecification;
|
|
5248
|
+
botExportSpecification?: BotExportSpecification | undefined;
|
|
5249
5249
|
/**
|
|
5250
5250
|
* <p>Parameters for exporting a bot locale.</p>
|
|
5251
5251
|
* @public
|
|
5252
5252
|
*/
|
|
5253
|
-
botLocaleExportSpecification?: BotLocaleExportSpecification;
|
|
5253
|
+
botLocaleExportSpecification?: BotLocaleExportSpecification | undefined;
|
|
5254
5254
|
/**
|
|
5255
5255
|
* <p>The parameters required to export a custom vocabulary.</p>
|
|
5256
5256
|
* @public
|
|
5257
5257
|
*/
|
|
5258
|
-
customVocabularyExportSpecification?: CustomVocabularyExportSpecification;
|
|
5258
|
+
customVocabularyExportSpecification?: CustomVocabularyExportSpecification | undefined;
|
|
5259
5259
|
/**
|
|
5260
5260
|
* <p>Specifications for the test set that is exported as a resource.</p>
|
|
5261
5261
|
* @public
|
|
5262
5262
|
*/
|
|
5263
|
-
testSetExportSpecification?: TestSetExportSpecification;
|
|
5263
|
+
testSetExportSpecification?: TestSetExportSpecification | undefined;
|
|
5264
5264
|
}
|
|
5265
5265
|
/**
|
|
5266
5266
|
* @public
|
|
@@ -5283,7 +5283,7 @@ export interface CreateExportRequest {
|
|
|
5283
5283
|
* transit between Amazon Lex and your local computer.</p>
|
|
5284
5284
|
* @public
|
|
5285
5285
|
*/
|
|
5286
|
-
filePassword?: string;
|
|
5286
|
+
filePassword?: string | undefined;
|
|
5287
5287
|
}
|
|
5288
5288
|
/**
|
|
5289
5289
|
* @public
|
|
@@ -5307,32 +5307,32 @@ export interface CreateExportResponse {
|
|
|
5307
5307
|
* <p>An identifier for a specific request to create an export.</p>
|
|
5308
5308
|
* @public
|
|
5309
5309
|
*/
|
|
5310
|
-
exportId?: string;
|
|
5310
|
+
exportId?: string | undefined;
|
|
5311
5311
|
/**
|
|
5312
5312
|
* <p>A description of the type of resource that was exported, either a
|
|
5313
5313
|
* bot or a bot locale.</p>
|
|
5314
5314
|
* @public
|
|
5315
5315
|
*/
|
|
5316
|
-
resourceSpecification?: ExportResourceSpecification;
|
|
5316
|
+
resourceSpecification?: ExportResourceSpecification | undefined;
|
|
5317
5317
|
/**
|
|
5318
5318
|
* <p>The file format used for the bot or bot locale definition
|
|
5319
5319
|
* files.</p>
|
|
5320
5320
|
* @public
|
|
5321
5321
|
*/
|
|
5322
|
-
fileFormat?: ImportExportFileFormat;
|
|
5322
|
+
fileFormat?: ImportExportFileFormat | undefined;
|
|
5323
5323
|
/**
|
|
5324
5324
|
* <p>The status of the export. When the status is <code>Completed</code>,
|
|
5325
5325
|
* you can use the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeExport.html">DescribeExport</a> operation to get the
|
|
5326
5326
|
* pre-signed S3 URL link to your exported bot or bot locale.</p>
|
|
5327
5327
|
* @public
|
|
5328
5328
|
*/
|
|
5329
|
-
exportStatus?: ExportStatus;
|
|
5329
|
+
exportStatus?: ExportStatus | undefined;
|
|
5330
5330
|
/**
|
|
5331
5331
|
* <p>The date and time that the request to export a bot was
|
|
5332
5332
|
* created.</p>
|
|
5333
5333
|
* @public
|
|
5334
5334
|
*/
|
|
5335
|
-
creationDateTime?: Date;
|
|
5335
|
+
creationDateTime?: Date | undefined;
|
|
5336
5336
|
}
|
|
5337
5337
|
/**
|
|
5338
5338
|
* <p>Settings that determine the Lambda function that Amazon Lex uses for
|
|
@@ -5371,7 +5371,7 @@ export interface FulfillmentStartResponseSpecification {
|
|
|
5371
5371
|
* is playing.</p>
|
|
5372
5372
|
* @public
|
|
5373
5373
|
*/
|
|
5374
|
-
allowInterrupt?: boolean;
|
|
5374
|
+
allowInterrupt?: boolean | undefined;
|
|
5375
5375
|
}
|
|
5376
5376
|
/**
|
|
5377
5377
|
* <p>Provides settings for a message that is sent periodically to the
|
|
@@ -5398,7 +5398,7 @@ export interface FulfillmentUpdateResponseSpecification {
|
|
|
5398
5398
|
* is playing.</p>
|
|
5399
5399
|
* @public
|
|
5400
5400
|
*/
|
|
5401
|
-
allowInterrupt?: boolean;
|
|
5401
|
+
allowInterrupt?: boolean | undefined;
|
|
5402
5402
|
}
|
|
5403
5403
|
/**
|
|
5404
5404
|
* <p>Provides information for updating the user on the progress of
|
|
@@ -5420,19 +5420,19 @@ export interface FulfillmentUpdatesSpecification {
|
|
|
5420
5420
|
* when the fulfillment Lambda functions starts running.</p>
|
|
5421
5421
|
* @public
|
|
5422
5422
|
*/
|
|
5423
|
-
startResponse?: FulfillmentStartResponseSpecification;
|
|
5423
|
+
startResponse?: FulfillmentStartResponseSpecification | undefined;
|
|
5424
5424
|
/**
|
|
5425
5425
|
* <p>Provides configuration information for messages sent periodically to
|
|
5426
5426
|
* the user while the fulfillment Lambda function is running.</p>
|
|
5427
5427
|
* @public
|
|
5428
5428
|
*/
|
|
5429
|
-
updateResponse?: FulfillmentUpdateResponseSpecification;
|
|
5429
|
+
updateResponse?: FulfillmentUpdateResponseSpecification | undefined;
|
|
5430
5430
|
/**
|
|
5431
5431
|
* <p>The length of time that the fulfillment Lambda function should run
|
|
5432
5432
|
* before it times out.</p>
|
|
5433
5433
|
* @public
|
|
5434
5434
|
*/
|
|
5435
|
-
timeoutInSeconds?: number;
|
|
5435
|
+
timeoutInSeconds?: number | undefined;
|
|
5436
5436
|
}
|
|
5437
5437
|
/**
|
|
5438
5438
|
* <p>A context that must be active for an intent to be
|
|
@@ -5462,7 +5462,7 @@ export interface ElicitationCodeHookInvocationSetting {
|
|
|
5462
5462
|
* hook is happening.</p>
|
|
5463
5463
|
* @public
|
|
5464
5464
|
*/
|
|
5465
|
-
invocationLabel?: string;
|
|
5465
|
+
invocationLabel?: string | undefined;
|
|
5466
5466
|
}
|
|
5467
5467
|
/**
|
|
5468
5468
|
* @public
|
|
@@ -5512,7 +5512,7 @@ export interface PromptAttemptSpecification {
|
|
|
5512
5512
|
* <p>Indicates whether the user can interrupt a speech prompt attempt from the bot.</p>
|
|
5513
5513
|
* @public
|
|
5514
5514
|
*/
|
|
5515
|
-
allowInterrupt?: boolean;
|
|
5515
|
+
allowInterrupt?: boolean | undefined;
|
|
5516
5516
|
/**
|
|
5517
5517
|
* <p>Indicates the allowed input types of the prompt attempt.</p>
|
|
5518
5518
|
* @public
|
|
@@ -5522,12 +5522,12 @@ export interface PromptAttemptSpecification {
|
|
|
5522
5522
|
* <p>Specifies the settings on audio and DTMF input.</p>
|
|
5523
5523
|
* @public
|
|
5524
5524
|
*/
|
|
5525
|
-
audioAndDTMFInputSpecification?: AudioAndDTMFInputSpecification;
|
|
5525
|
+
audioAndDTMFInputSpecification?: AudioAndDTMFInputSpecification | undefined;
|
|
5526
5526
|
/**
|
|
5527
5527
|
* <p>Specifies the settings on text input.</p>
|
|
5528
5528
|
* @public
|
|
5529
5529
|
*/
|
|
5530
|
-
textInputSpecification?: TextInputSpecification;
|
|
5530
|
+
textInputSpecification?: TextInputSpecification | undefined;
|
|
5531
5531
|
}
|
|
5532
5532
|
/**
|
|
5533
5533
|
* <p>Specifies a list of message groups that Amazon Lex sends to a user to
|
|
@@ -5552,17 +5552,17 @@ export interface PromptSpecification {
|
|
|
5552
5552
|
* bot.</p>
|
|
5553
5553
|
* @public
|
|
5554
5554
|
*/
|
|
5555
|
-
allowInterrupt?: boolean;
|
|
5555
|
+
allowInterrupt?: boolean | undefined;
|
|
5556
5556
|
/**
|
|
5557
5557
|
* <p>Indicates how a message is selected from a message group among retries.</p>
|
|
5558
5558
|
* @public
|
|
5559
5559
|
*/
|
|
5560
|
-
messageSelectionStrategy?: MessageSelectionStrategy;
|
|
5560
|
+
messageSelectionStrategy?: MessageSelectionStrategy | undefined;
|
|
5561
5561
|
/**
|
|
5562
5562
|
* <p>Specifies the advanced settings on each attempt of the prompt.</p>
|
|
5563
5563
|
* @public
|
|
5564
5564
|
*/
|
|
5565
|
-
promptAttemptsSpecification?: Partial<Record<PromptAttempt, PromptAttemptSpecification
|
|
5565
|
+
promptAttemptsSpecification?: Partial<Record<PromptAttempt, PromptAttemptSpecification>> | undefined;
|
|
5566
5566
|
}
|
|
5567
5567
|
/**
|
|
5568
5568
|
* <p>Provides configuration information for the <code>AMAZON.KendraSearchIntent</code>
|
|
@@ -5584,7 +5584,7 @@ export interface KendraConfiguration {
|
|
|
5584
5584
|
* custom query string to query the Amazon Kendra index.</p>
|
|
5585
5585
|
* @public
|
|
5586
5586
|
*/
|
|
5587
|
-
queryFilterStringEnabled?: boolean;
|
|
5587
|
+
queryFilterStringEnabled?: boolean | undefined;
|
|
5588
5588
|
/**
|
|
5589
5589
|
* <p>A query filter that Amazon Lex sends to Amazon Kendra to filter the response from
|
|
5590
5590
|
* a query. The filter is in the format defined by Amazon Kendra. For more
|
|
@@ -5592,7 +5592,7 @@ export interface KendraConfiguration {
|
|
|
5592
5592
|
* queries</a>.</p>
|
|
5593
5593
|
* @public
|
|
5594
5594
|
*/
|
|
5595
|
-
queryFilterString?: string;
|
|
5595
|
+
queryFilterString?: string | undefined;
|
|
5596
5596
|
}
|
|
5597
5597
|
/**
|
|
5598
5598
|
* <p>Describes a session context that is activated when an intent is
|
|
@@ -5634,17 +5634,17 @@ export interface QnAKendraConfiguration {
|
|
|
5634
5634
|
* <p>Specifies whether to enable an Amazon Kendra filter string or not.</p>
|
|
5635
5635
|
* @public
|
|
5636
5636
|
*/
|
|
5637
|
-
queryFilterStringEnabled?: boolean;
|
|
5637
|
+
queryFilterStringEnabled?: boolean | undefined;
|
|
5638
5638
|
/**
|
|
5639
5639
|
* <p>Contains the Amazon Kendra filter string to use if enabled. For more information on the Amazon Kendra search filter JSON format, see <a href="https://docs.aws.amazon.com/kendra/latest/dg/filtering.html#search-filtering">Using document attributes to filter search results</a>.</p>
|
|
5640
5640
|
* @public
|
|
5641
5641
|
*/
|
|
5642
|
-
queryFilterString?: string;
|
|
5642
|
+
queryFilterString?: string | undefined;
|
|
5643
5643
|
/**
|
|
5644
5644
|
* <p>Specifies whether to return an exact response from the Amazon Kendra index or to let the Amazon Bedrock model you select generate a response based on the results. To use this feature, you must first add FAQ questions to your index by following the steps at <a href="https://docs.aws.amazon.com/kendra/latest/dg/in-creating-faq.html">Adding frequently asked questions (FAQs) to an index</a>.</p>
|
|
5645
5645
|
* @public
|
|
5646
5646
|
*/
|
|
5647
|
-
exactResponse?: boolean;
|
|
5647
|
+
exactResponse?: boolean | undefined;
|
|
5648
5648
|
}
|
|
5649
5649
|
/**
|
|
5650
5650
|
* <p>Contains the names of the fields used for an exact response to the user.</p>
|
|
@@ -5681,17 +5681,17 @@ export interface OpensearchConfiguration {
|
|
|
5681
5681
|
* <p>Specifies whether to return an exact response or to return an answer generated by the model using the fields you specify from the database.</p>
|
|
5682
5682
|
* @public
|
|
5683
5683
|
*/
|
|
5684
|
-
exactResponse?: boolean;
|
|
5684
|
+
exactResponse?: boolean | undefined;
|
|
5685
5685
|
/**
|
|
5686
5686
|
* <p>Contains the names of the fields used for an exact response to the user.</p>
|
|
5687
5687
|
* @public
|
|
5688
5688
|
*/
|
|
5689
|
-
exactResponseFields?: ExactResponseFields;
|
|
5689
|
+
exactResponseFields?: ExactResponseFields | undefined;
|
|
5690
5690
|
/**
|
|
5691
5691
|
* <p>Contains a list of fields from the Amazon OpenSearch Service that the model can use to generate the answer to the query.</p>
|
|
5692
5692
|
* @public
|
|
5693
5693
|
*/
|
|
5694
|
-
includeFields?: string[];
|
|
5694
|
+
includeFields?: string[] | undefined;
|
|
5695
5695
|
}
|
|
5696
5696
|
/**
|
|
5697
5697
|
* <p>Contains details about the configuration of the knowledge store used for the <code>AMAZON.QnAIntent</code>. You must have already created the knowledge store and indexed the documents within it.</p>
|
|
@@ -5702,17 +5702,17 @@ export interface DataSourceConfiguration {
|
|
|
5702
5702
|
* <p>Contains details about the configuration of the Amazon OpenSearch Service database used for the <code>AMAZON.QnAIntent</code>. To create a domain, follow the steps at <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html">Creating and managing Amazon OpenSearch Service domains</a>.</p>
|
|
5703
5703
|
* @public
|
|
5704
5704
|
*/
|
|
5705
|
-
opensearchConfiguration?: OpensearchConfiguration;
|
|
5705
|
+
opensearchConfiguration?: OpensearchConfiguration | undefined;
|
|
5706
5706
|
/**
|
|
5707
5707
|
* <p>Contains details about the configuration of the Amazon Kendra index used for the <code>AMAZON.QnAIntent</code>. To create a Amazon Kendra index, follow the steps at <a href="https://docs.aws.amazon.com/kendra/latest/dg/create-index.html">Creating an index</a>.</p>
|
|
5708
5708
|
* @public
|
|
5709
5709
|
*/
|
|
5710
|
-
kendraConfiguration?: QnAKendraConfiguration;
|
|
5710
|
+
kendraConfiguration?: QnAKendraConfiguration | undefined;
|
|
5711
5711
|
/**
|
|
5712
5712
|
* <p>Contains details about the configuration of the Amazon Bedrock knowledge base used for the <code>AMAZON.QnAIntent</code>. To set up a knowledge base, follow the steps at <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base.html">Building a knowledge base</a>.</p>
|
|
5713
5713
|
* @public
|
|
5714
5714
|
*/
|
|
5715
|
-
bedrockKnowledgeStoreConfiguration?: BedrockKnowledgeStoreConfiguration;
|
|
5715
|
+
bedrockKnowledgeStoreConfiguration?: BedrockKnowledgeStoreConfiguration | undefined;
|
|
5716
5716
|
}
|
|
5717
5717
|
/**
|
|
5718
5718
|
* <p>Details about the the configuration of the built-in <code>Amazon.QnAIntent</code>.</p>
|
|
@@ -5723,12 +5723,12 @@ export interface QnAIntentConfiguration {
|
|
|
5723
5723
|
* <p>Contains details about the configuration of the data source used for the <code>AMAZON.QnAIntent</code>.</p>
|
|
5724
5724
|
* @public
|
|
5725
5725
|
*/
|
|
5726
|
-
dataSourceConfiguration?: DataSourceConfiguration;
|
|
5726
|
+
dataSourceConfiguration?: DataSourceConfiguration | undefined;
|
|
5727
5727
|
/**
|
|
5728
5728
|
* <p>Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.</p>
|
|
5729
5729
|
* @public
|
|
5730
5730
|
*/
|
|
5731
|
-
bedrockModelConfiguration?: BedrockModelSpecification;
|
|
5731
|
+
bedrockModelConfiguration?: BedrockModelSpecification | undefined;
|
|
5732
5732
|
}
|
|
5733
5733
|
/**
|
|
5734
5734
|
* <p>A sample utterance that invokes an intent or respond to a slot
|
|
@@ -5774,7 +5774,7 @@ export interface CreateResourcePolicyResponse {
|
|
|
5774
5774
|
* resource policy was attached to.</p>
|
|
5775
5775
|
* @public
|
|
5776
5776
|
*/
|
|
5777
|
-
resourceArn?: string;
|
|
5777
|
+
resourceArn?: string | undefined;
|
|
5778
5778
|
/**
|
|
5779
5779
|
* <p>The current revision of the resource policy. Use the revision ID to
|
|
5780
5780
|
* make sure that you are updating the most current version of a resource
|
|
@@ -5782,7 +5782,7 @@ export interface CreateResourcePolicyResponse {
|
|
|
5782
5782
|
* resource, or update a resource.</p>
|
|
5783
5783
|
* @public
|
|
5784
5784
|
*/
|
|
5785
|
-
revisionId?: string;
|
|
5785
|
+
revisionId?: string | undefined;
|
|
5786
5786
|
}
|
|
5787
5787
|
/**
|
|
5788
5788
|
* @public
|
|
@@ -5808,12 +5808,12 @@ export interface Principal {
|
|
|
5808
5808
|
* an Amazon Lex action.</p>
|
|
5809
5809
|
* @public
|
|
5810
5810
|
*/
|
|
5811
|
-
service?: string;
|
|
5811
|
+
service?: string | undefined;
|
|
5812
5812
|
/**
|
|
5813
5813
|
* <p>The Amazon Resource Name (ARN) of the principal.</p>
|
|
5814
5814
|
* @public
|
|
5815
5815
|
*/
|
|
5816
|
-
arn?: string;
|
|
5816
|
+
arn?: string | undefined;
|
|
5817
5817
|
}
|
|
5818
5818
|
/**
|
|
5819
5819
|
* @public
|
|
@@ -5863,7 +5863,7 @@ export interface CreateResourcePolicyStatementRequest {
|
|
|
5863
5863
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition.html">IAM JSON policy elements: Condition </a>.</p>
|
|
5864
5864
|
* @public
|
|
5865
5865
|
*/
|
|
5866
|
-
condition?: Record<string, Record<string, string
|
|
5866
|
+
condition?: Record<string, Record<string, string>> | undefined;
|
|
5867
5867
|
/**
|
|
5868
5868
|
* <p>The identifier of the revision of the policy to edit. If this
|
|
5869
5869
|
* revision ID doesn't match the current revision ID, Amazon Lex throws an
|
|
@@ -5872,7 +5872,7 @@ export interface CreateResourcePolicyStatementRequest {
|
|
|
5872
5872
|
* the policy with the new values.</p>
|
|
5873
5873
|
* @public
|
|
5874
5874
|
*/
|
|
5875
|
-
expectedRevisionId?: string;
|
|
5875
|
+
expectedRevisionId?: string | undefined;
|
|
5876
5876
|
}
|
|
5877
5877
|
/**
|
|
5878
5878
|
* @public
|
|
@@ -5883,7 +5883,7 @@ export interface CreateResourcePolicyStatementResponse {
|
|
|
5883
5883
|
* resource policy is attached to.</p>
|
|
5884
5884
|
* @public
|
|
5885
5885
|
*/
|
|
5886
|
-
resourceArn?: string;
|
|
5886
|
+
resourceArn?: string | undefined;
|
|
5887
5887
|
/**
|
|
5888
5888
|
* <p>The current revision of the resource policy. Use the revision ID to
|
|
5889
5889
|
* make sure that you are updating the most current version of a resource
|
|
@@ -5891,7 +5891,7 @@ export interface CreateResourcePolicyStatementResponse {
|
|
|
5891
5891
|
* resource, or update a resource.</p>
|
|
5892
5892
|
* @public
|
|
5893
5893
|
*/
|
|
5894
|
-
revisionId?: string;
|
|
5894
|
+
revisionId?: string | undefined;
|
|
5895
5895
|
}
|
|
5896
5896
|
/**
|
|
5897
5897
|
* <p>Indicates whether a slot can return multiple values.</p>
|
|
@@ -5910,7 +5910,7 @@ export interface MultipleValuesSetting {
|
|
|
5910
5910
|
* value is <code>false</code>.</p>
|
|
5911
5911
|
* @public
|
|
5912
5912
|
*/
|
|
5913
|
-
allowMultipleValues?: boolean;
|
|
5913
|
+
allowMultipleValues?: boolean | undefined;
|
|
5914
5914
|
}
|
|
5915
5915
|
/**
|
|
5916
5916
|
* @public
|
|
@@ -5992,7 +5992,7 @@ export interface StillWaitingResponseSpecification {
|
|
|
5992
5992
|
* the message is being played.</p>
|
|
5993
5993
|
* @public
|
|
5994
5994
|
*/
|
|
5995
|
-
allowInterrupt?: boolean;
|
|
5995
|
+
allowInterrupt?: boolean | undefined;
|
|
5996
5996
|
}
|
|
5997
5997
|
/**
|
|
5998
5998
|
* <p>Specifies the prompts that Amazon Lex uses while a bot is waiting for
|
|
@@ -6017,7 +6017,7 @@ export interface WaitAndContinueSpecification {
|
|
|
6017
6017
|
* that the bot is still waiting for input from the user.</p>
|
|
6018
6018
|
* @public
|
|
6019
6019
|
*/
|
|
6020
|
-
stillWaitingResponse?: StillWaitingResponseSpecification;
|
|
6020
|
+
stillWaitingResponse?: StillWaitingResponseSpecification | undefined;
|
|
6021
6021
|
/**
|
|
6022
6022
|
* <p>Specifies whether the bot will wait for a user to respond. When this
|
|
6023
6023
|
* field is false, wait and continue responses for a slot aren't used. If
|
|
@@ -6025,7 +6025,7 @@ export interface WaitAndContinueSpecification {
|
|
|
6025
6025
|
* true.</p>
|
|
6026
6026
|
* @public
|
|
6027
6027
|
*/
|
|
6028
|
-
active?: boolean;
|
|
6028
|
+
active?: boolean | undefined;
|
|
6029
6029
|
}
|
|
6030
6030
|
/**
|
|
6031
6031
|
* <p>Subslot elicitation settings.</p>
|
|
@@ -6044,7 +6044,7 @@ export interface SubSlotValueElicitationSetting {
|
|
|
6044
6044
|
* for a slot.</p>
|
|
6045
6045
|
* @public
|
|
6046
6046
|
*/
|
|
6047
|
-
defaultValueSpecification?: SlotDefaultValueSpecification;
|
|
6047
|
+
defaultValueSpecification?: SlotDefaultValueSpecification | undefined;
|
|
6048
6048
|
/**
|
|
6049
6049
|
* <p>Specifies a list of message groups that Amazon Lex sends to a user to
|
|
6050
6050
|
* elicit a response.</p>
|
|
@@ -6057,13 +6057,13 @@ export interface SubSlotValueElicitationSetting {
|
|
|
6057
6057
|
* of understanding user utterances. This is similar to <code>SampleUtterances</code> for slots.</p>
|
|
6058
6058
|
* @public
|
|
6059
6059
|
*/
|
|
6060
|
-
sampleUtterances?: SampleUtterance[];
|
|
6060
|
+
sampleUtterances?: SampleUtterance[] | undefined;
|
|
6061
6061
|
/**
|
|
6062
6062
|
* <p>Specifies the prompts that Amazon Lex uses while a bot is waiting for
|
|
6063
6063
|
* customer input. </p>
|
|
6064
6064
|
* @public
|
|
6065
6065
|
*/
|
|
6066
|
-
waitAndContinueSpecification?: WaitAndContinueSpecification;
|
|
6066
|
+
waitAndContinueSpecification?: WaitAndContinueSpecification | undefined;
|
|
6067
6067
|
}
|
|
6068
6068
|
/**
|
|
6069
6069
|
* <p>Subslot specifications.</p>
|
|
@@ -6091,12 +6091,12 @@ export interface SubSlotSetting {
|
|
|
6091
6091
|
* <p>The expression text for defining the constituent sub slots in the composite slot using logical AND and OR operators.</p>
|
|
6092
6092
|
* @public
|
|
6093
6093
|
*/
|
|
6094
|
-
expression?: string;
|
|
6094
|
+
expression?: string | undefined;
|
|
6095
6095
|
/**
|
|
6096
6096
|
* <p>Specifications for the constituent sub slots of a composite slot.</p>
|
|
6097
6097
|
* @public
|
|
6098
6098
|
*/
|
|
6099
|
-
slotSpecifications?: Record<string, Specifications
|
|
6099
|
+
slotSpecifications?: Record<string, Specifications> | undefined;
|
|
6100
6100
|
}
|
|
6101
6101
|
/**
|
|
6102
6102
|
* @public
|
|
@@ -6153,7 +6153,7 @@ export interface GrammarSlotTypeSource {
|
|
|
6153
6153
|
* <p>The KMS key required to decrypt the contents of the grammar, if any.</p>
|
|
6154
6154
|
* @public
|
|
6155
6155
|
*/
|
|
6156
|
-
kmsKeyArn?: string;
|
|
6156
|
+
kmsKeyArn?: string | undefined;
|
|
6157
6157
|
}
|
|
6158
6158
|
/**
|
|
6159
6159
|
* <p>Settings requried for a slot type based on a grammar that you provide.</p>
|
|
@@ -6164,7 +6164,7 @@ export interface GrammarSlotTypeSetting {
|
|
|
6164
6164
|
* <p>The source of the grammar used to create the slot type.</p>
|
|
6165
6165
|
* @public
|
|
6166
6166
|
*/
|
|
6167
|
-
source?: GrammarSlotTypeSource;
|
|
6167
|
+
source?: GrammarSlotTypeSource | undefined;
|
|
6168
6168
|
}
|
|
6169
6169
|
/**
|
|
6170
6170
|
* <p>Provides information about the external source of the slot type's definition.</p>
|
|
@@ -6175,7 +6175,7 @@ export interface ExternalSourceSetting {
|
|
|
6175
6175
|
* <p>Settings required for a slot type based on a grammar that you provide.</p>
|
|
6176
6176
|
* @public
|
|
6177
6177
|
*/
|
|
6178
|
-
grammarSlotTypeSetting?: GrammarSlotTypeSetting;
|
|
6178
|
+
grammarSlotTypeSetting?: GrammarSlotTypeSetting | undefined;
|
|
6179
6179
|
}
|
|
6180
6180
|
/**
|
|
6181
6181
|
* <p>Defines one of the values for a slot type.</p>
|
|
@@ -6199,12 +6199,12 @@ export interface SlotTypeValue {
|
|
|
6199
6199
|
* <p>The value of the slot type entry.</p>
|
|
6200
6200
|
* @public
|
|
6201
6201
|
*/
|
|
6202
|
-
sampleValue?: SampleValue;
|
|
6202
|
+
sampleValue?: SampleValue | undefined;
|
|
6203
6203
|
/**
|
|
6204
6204
|
* <p>Additional values related to the slot type entry.</p>
|
|
6205
6205
|
* @public
|
|
6206
6206
|
*/
|
|
6207
|
-
synonyms?: SampleValue[];
|
|
6207
|
+
synonyms?: SampleValue[] | undefined;
|
|
6208
6208
|
}
|
|
6209
6209
|
/**
|
|
6210
6210
|
* <p>Provides a regular expression used to validate the value of a
|
|
@@ -6286,14 +6286,14 @@ export interface SlotValueSelectionSetting {
|
|
|
6286
6286
|
* <p>A regular expression used to validate the value of a slot.</p>
|
|
6287
6287
|
* @public
|
|
6288
6288
|
*/
|
|
6289
|
-
regexFilter?: SlotValueRegexFilter;
|
|
6289
|
+
regexFilter?: SlotValueRegexFilter | undefined;
|
|
6290
6290
|
/**
|
|
6291
6291
|
* <p>Provides settings that enable advanced recognition settings for slot
|
|
6292
6292
|
* values. You can use this to enable using slot values as a custom
|
|
6293
6293
|
* vocabulary for recognizing user utterances.</p>
|
|
6294
6294
|
* @public
|
|
6295
6295
|
*/
|
|
6296
|
-
advancedRecognitionSetting?: AdvancedRecognitionSetting;
|
|
6296
|
+
advancedRecognitionSetting?: AdvancedRecognitionSetting | undefined;
|
|
6297
6297
|
}
|
|
6298
6298
|
/**
|
|
6299
6299
|
* @public
|
|
@@ -6310,7 +6310,7 @@ export interface CreateSlotTypeRequest {
|
|
|
6310
6310
|
* the slot type in lists.</p>
|
|
6311
6311
|
* @public
|
|
6312
6312
|
*/
|
|
6313
|
-
description?: string;
|
|
6313
|
+
description?: string | undefined;
|
|
6314
6314
|
/**
|
|
6315
6315
|
* <p>A list of <code>SlotTypeValue</code> objects that defines the values
|
|
6316
6316
|
* that the slot type can take. Each value can have a list of synonyms,
|
|
@@ -6318,7 +6318,7 @@ export interface CreateSlotTypeRequest {
|
|
|
6318
6318
|
* values that it resolves for a slot.</p>
|
|
6319
6319
|
* @public
|
|
6320
6320
|
*/
|
|
6321
|
-
slotTypeValues?: SlotTypeValue[];
|
|
6321
|
+
slotTypeValues?: SlotTypeValue[] | undefined;
|
|
6322
6322
|
/**
|
|
6323
6323
|
* <p>Determines the strategy that Amazon Lex uses to select a value from the
|
|
6324
6324
|
* list of possible values. The field can be set to one of the following
|
|
@@ -6340,7 +6340,7 @@ export interface CreateSlotTypeRequest {
|
|
|
6340
6340
|
* parameter, the default is <code>ORIGINAL_VALUE</code>.</p>
|
|
6341
6341
|
* @public
|
|
6342
6342
|
*/
|
|
6343
|
-
valueSelectionSetting?: SlotValueSelectionSetting;
|
|
6343
|
+
valueSelectionSetting?: SlotValueSelectionSetting | undefined;
|
|
6344
6344
|
/**
|
|
6345
6345
|
* <p>The built-in slot type used as a parent of this slot type. When you
|
|
6346
6346
|
* define a parent slot type, the new slot type has the configuration of
|
|
@@ -6348,7 +6348,7 @@ export interface CreateSlotTypeRequest {
|
|
|
6348
6348
|
* <p>Only <code>AMAZON.AlphaNumeric</code> is supported.</p>
|
|
6349
6349
|
* @public
|
|
6350
6350
|
*/
|
|
6351
|
-
parentSlotTypeSignature?: string;
|
|
6351
|
+
parentSlotTypeSignature?: string | undefined;
|
|
6352
6352
|
/**
|
|
6353
6353
|
* <p>The identifier of the bot associated with this slot type.</p>
|
|
6354
6354
|
* @public
|
|
@@ -6373,12 +6373,12 @@ export interface CreateSlotTypeRequest {
|
|
|
6373
6373
|
* type.</p>
|
|
6374
6374
|
* @public
|
|
6375
6375
|
*/
|
|
6376
|
-
externalSourceSetting?: ExternalSourceSetting;
|
|
6376
|
+
externalSourceSetting?: ExternalSourceSetting | undefined;
|
|
6377
6377
|
/**
|
|
6378
6378
|
* <p>Specifications for a composite slot type.</p>
|
|
6379
6379
|
* @public
|
|
6380
6380
|
*/
|
|
6381
|
-
compositeSlotTypeSetting?: CompositeSlotTypeSetting;
|
|
6381
|
+
compositeSlotTypeSetting?: CompositeSlotTypeSetting | undefined;
|
|
6382
6382
|
}
|
|
6383
6383
|
/**
|
|
6384
6384
|
* @public
|
|
@@ -6390,66 +6390,66 @@ export interface CreateSlotTypeResponse {
|
|
|
6390
6390
|
* <code>DeleteSlotType</code> operations.</p>
|
|
6391
6391
|
* @public
|
|
6392
6392
|
*/
|
|
6393
|
-
slotTypeId?: string;
|
|
6393
|
+
slotTypeId?: string | undefined;
|
|
6394
6394
|
/**
|
|
6395
6395
|
* <p>The name specified for the slot type.</p>
|
|
6396
6396
|
* @public
|
|
6397
6397
|
*/
|
|
6398
|
-
slotTypeName?: string;
|
|
6398
|
+
slotTypeName?: string | undefined;
|
|
6399
6399
|
/**
|
|
6400
6400
|
* <p>The description specified for the slot type.</p>
|
|
6401
6401
|
* @public
|
|
6402
6402
|
*/
|
|
6403
|
-
description?: string;
|
|
6403
|
+
description?: string | undefined;
|
|
6404
6404
|
/**
|
|
6405
6405
|
* <p>The list of values that the slot type can assume.</p>
|
|
6406
6406
|
* @public
|
|
6407
6407
|
*/
|
|
6408
|
-
slotTypeValues?: SlotTypeValue[];
|
|
6408
|
+
slotTypeValues?: SlotTypeValue[] | undefined;
|
|
6409
6409
|
/**
|
|
6410
6410
|
* <p>The strategy that Amazon Lex uses to select a value from the list of
|
|
6411
6411
|
* possible values.</p>
|
|
6412
6412
|
* @public
|
|
6413
6413
|
*/
|
|
6414
|
-
valueSelectionSetting?: SlotValueSelectionSetting;
|
|
6414
|
+
valueSelectionSetting?: SlotValueSelectionSetting | undefined;
|
|
6415
6415
|
/**
|
|
6416
6416
|
* <p>The signature of the base slot type specified for the slot
|
|
6417
6417
|
* type.</p>
|
|
6418
6418
|
* @public
|
|
6419
6419
|
*/
|
|
6420
|
-
parentSlotTypeSignature?: string;
|
|
6420
|
+
parentSlotTypeSignature?: string | undefined;
|
|
6421
6421
|
/**
|
|
6422
6422
|
* <p>The identifier for the bot associated with the slot type.</p>
|
|
6423
6423
|
* @public
|
|
6424
6424
|
*/
|
|
6425
|
-
botId?: string;
|
|
6425
|
+
botId?: string | undefined;
|
|
6426
6426
|
/**
|
|
6427
6427
|
* <p>The version of the bot associated with the slot type.</p>
|
|
6428
6428
|
* @public
|
|
6429
6429
|
*/
|
|
6430
|
-
botVersion?: string;
|
|
6430
|
+
botVersion?: string | undefined;
|
|
6431
6431
|
/**
|
|
6432
6432
|
* <p>The specified language and local specified for the slot type.</p>
|
|
6433
6433
|
* @public
|
|
6434
6434
|
*/
|
|
6435
|
-
localeId?: string;
|
|
6435
|
+
localeId?: string | undefined;
|
|
6436
6436
|
/**
|
|
6437
6437
|
* <p>A timestamp of the date and time that the slot type was
|
|
6438
6438
|
* created.</p>
|
|
6439
6439
|
* @public
|
|
6440
6440
|
*/
|
|
6441
|
-
creationDateTime?: Date;
|
|
6441
|
+
creationDateTime?: Date | undefined;
|
|
6442
6442
|
/**
|
|
6443
6443
|
* <p>The type of external information used to create the slot
|
|
6444
6444
|
* type.</p>
|
|
6445
6445
|
* @public
|
|
6446
6446
|
*/
|
|
6447
|
-
externalSourceSetting?: ExternalSourceSetting;
|
|
6447
|
+
externalSourceSetting?: ExternalSourceSetting | undefined;
|
|
6448
6448
|
/**
|
|
6449
6449
|
* <p>Specifications for a composite slot type.</p>
|
|
6450
6450
|
* @public
|
|
6451
6451
|
*/
|
|
6452
|
-
compositeSlotTypeSetting?: CompositeSlotTypeSetting;
|
|
6452
|
+
compositeSlotTypeSetting?: CompositeSlotTypeSetting | undefined;
|
|
6453
6453
|
}
|
|
6454
6454
|
/**
|
|
6455
6455
|
* <p>Contains information about the bot alias used for the
|
|
@@ -6484,7 +6484,7 @@ export interface TestSetDiscrepancyReportResourceTarget {
|
|
|
6484
6484
|
* test set discrepancy report.</p>
|
|
6485
6485
|
* @public
|
|
6486
6486
|
*/
|
|
6487
|
-
botAliasTarget?: TestSetDiscrepancyReportBotAliasTarget;
|
|
6487
|
+
botAliasTarget?: TestSetDiscrepancyReportBotAliasTarget | undefined;
|
|
6488
6488
|
}
|
|
6489
6489
|
/**
|
|
6490
6490
|
* @public
|
|
@@ -6509,22 +6509,22 @@ export interface CreateTestSetDiscrepancyReportResponse {
|
|
|
6509
6509
|
* <p>The unique identifier of the test set discrepancy report to describe.</p>
|
|
6510
6510
|
* @public
|
|
6511
6511
|
*/
|
|
6512
|
-
testSetDiscrepancyReportId?: string;
|
|
6512
|
+
testSetDiscrepancyReportId?: string | undefined;
|
|
6513
6513
|
/**
|
|
6514
6514
|
* <p>The creation date and time for the test set discrepancy report.</p>
|
|
6515
6515
|
* @public
|
|
6516
6516
|
*/
|
|
6517
|
-
creationDateTime?: Date;
|
|
6517
|
+
creationDateTime?: Date | undefined;
|
|
6518
6518
|
/**
|
|
6519
6519
|
* <p>The test set Id for the test set discrepancy report.</p>
|
|
6520
6520
|
* @public
|
|
6521
6521
|
*/
|
|
6522
|
-
testSetId?: string;
|
|
6522
|
+
testSetId?: string | undefined;
|
|
6523
6523
|
/**
|
|
6524
6524
|
* <p>The target bot for the test set discrepancy report.</p>
|
|
6525
6525
|
* @public
|
|
6526
6526
|
*/
|
|
6527
|
-
target?: TestSetDiscrepancyReportResourceTarget;
|
|
6527
|
+
target?: TestSetDiscrepancyReportResourceTarget | undefined;
|
|
6528
6528
|
}
|
|
6529
6529
|
/**
|
|
6530
6530
|
* @public
|
|
@@ -6540,13 +6540,13 @@ export interface CreateUploadUrlResponse {
|
|
|
6540
6540
|
* <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_StartImport.html">StartImport</a> operation.</p>
|
|
6541
6541
|
* @public
|
|
6542
6542
|
*/
|
|
6543
|
-
importId?: string;
|
|
6543
|
+
importId?: string | undefined;
|
|
6544
6544
|
/**
|
|
6545
6545
|
* <p>A pre-signed S3 write URL. Upload the zip archive file that contains
|
|
6546
6546
|
* the definition of your bot or bot locale.</p>
|
|
6547
6547
|
* @public
|
|
6548
6548
|
*/
|
|
6549
|
-
uploadUrl?: string;
|
|
6549
|
+
uploadUrl?: string | undefined;
|
|
6550
6550
|
}
|
|
6551
6551
|
/**
|
|
6552
6552
|
* <p>Provides the parameters required for importing a custom vocabulary.</p>
|
|
@@ -6622,7 +6622,7 @@ export interface DeleteBotRequest {
|
|
|
6622
6622
|
* another resource.</p>
|
|
6623
6623
|
* @public
|
|
6624
6624
|
*/
|
|
6625
|
-
skipResourceInUseCheck?: boolean;
|
|
6625
|
+
skipResourceInUseCheck?: boolean | undefined;
|
|
6626
6626
|
}
|
|
6627
6627
|
/**
|
|
6628
6628
|
* @public
|
|
@@ -6632,13 +6632,13 @@ export interface DeleteBotResponse {
|
|
|
6632
6632
|
* <p>The unique identifier of the bot that Amazon Lex is deleting.</p>
|
|
6633
6633
|
* @public
|
|
6634
6634
|
*/
|
|
6635
|
-
botId?: string;
|
|
6635
|
+
botId?: string | undefined;
|
|
6636
6636
|
/**
|
|
6637
6637
|
* <p>The current status of the bot. The status is <code>Deleting</code>
|
|
6638
6638
|
* while the bot and its associated resources are being deleted.</p>
|
|
6639
6639
|
* @public
|
|
6640
6640
|
*/
|
|
6641
|
-
botStatus?: BotStatus;
|
|
6641
|
+
botStatus?: BotStatus | undefined;
|
|
6642
6642
|
}
|
|
6643
6643
|
/**
|
|
6644
6644
|
* @public
|
|
@@ -6664,7 +6664,7 @@ export interface DeleteBotAliasRequest {
|
|
|
6664
6664
|
* another resource.</p>
|
|
6665
6665
|
* @public
|
|
6666
6666
|
*/
|
|
6667
|
-
skipResourceInUseCheck?: boolean;
|
|
6667
|
+
skipResourceInUseCheck?: boolean | undefined;
|
|
6668
6668
|
}
|
|
6669
6669
|
/**
|
|
6670
6670
|
* @public
|
|
@@ -6674,13 +6674,13 @@ export interface DeleteBotAliasResponse {
|
|
|
6674
6674
|
* <p>The unique identifier of the bot alias to delete.</p>
|
|
6675
6675
|
* @public
|
|
6676
6676
|
*/
|
|
6677
|
-
botAliasId?: string;
|
|
6677
|
+
botAliasId?: string | undefined;
|
|
6678
6678
|
/**
|
|
6679
6679
|
* <p>The unique identifier of the bot that contains the alias to
|
|
6680
6680
|
* delete.</p>
|
|
6681
6681
|
* @public
|
|
6682
6682
|
*/
|
|
6683
|
-
botId?: string;
|
|
6683
|
+
botId?: string | undefined;
|
|
6684
6684
|
/**
|
|
6685
6685
|
* <p>The current status of the alias. The status is <code>Deleting</code>
|
|
6686
6686
|
* while the alias is in the process of being deleted. Once the alias is
|
|
@@ -6688,7 +6688,7 @@ export interface DeleteBotAliasResponse {
|
|
|
6688
6688
|
* the <code>ListBotAliases</code> operation.</p>
|
|
6689
6689
|
* @public
|
|
6690
6690
|
*/
|
|
6691
|
-
botAliasStatus?: BotAliasStatus;
|
|
6691
|
+
botAliasStatus?: BotAliasStatus | undefined;
|
|
6692
6692
|
}
|
|
6693
6693
|
/**
|
|
6694
6694
|
* @public
|
|
@@ -6720,24 +6720,24 @@ export interface DeleteBotLocaleResponse {
|
|
|
6720
6720
|
* <p>The identifier of the bot that contained the deleted locale.</p>
|
|
6721
6721
|
* @public
|
|
6722
6722
|
*/
|
|
6723
|
-
botId?: string;
|
|
6723
|
+
botId?: string | undefined;
|
|
6724
6724
|
/**
|
|
6725
6725
|
* <p>The version of the bot that contained the deleted locale.</p>
|
|
6726
6726
|
* @public
|
|
6727
6727
|
*/
|
|
6728
|
-
botVersion?: string;
|
|
6728
|
+
botVersion?: string | undefined;
|
|
6729
6729
|
/**
|
|
6730
6730
|
* <p>The language and locale of the deleted locale.</p>
|
|
6731
6731
|
* @public
|
|
6732
6732
|
*/
|
|
6733
|
-
localeId?: string;
|
|
6733
|
+
localeId?: string | undefined;
|
|
6734
6734
|
/**
|
|
6735
6735
|
* <p>The status of deleting the bot locale. The locale first enters the
|
|
6736
6736
|
* <code>Deleting</code> status. Once the locale is deleted it no
|
|
6737
6737
|
* longer appears in the list of locales for the bot.</p>
|
|
6738
6738
|
* @public
|
|
6739
6739
|
*/
|
|
6740
|
-
botLocaleStatus?: BotLocaleStatus;
|
|
6740
|
+
botLocaleStatus?: BotLocaleStatus | undefined;
|
|
6741
6741
|
}
|
|
6742
6742
|
/**
|
|
6743
6743
|
* @public
|
|
@@ -6762,17 +6762,17 @@ export interface DeleteBotReplicaResponse {
|
|
|
6762
6762
|
* <p>The unique bot ID of the replicated bot generated.</p>
|
|
6763
6763
|
* @public
|
|
6764
6764
|
*/
|
|
6765
|
-
botId?: string;
|
|
6765
|
+
botId?: string | undefined;
|
|
6766
6766
|
/**
|
|
6767
6767
|
* <p>The region of the replicated bot generated.</p>
|
|
6768
6768
|
* @public
|
|
6769
6769
|
*/
|
|
6770
|
-
replicaRegion?: string;
|
|
6770
|
+
replicaRegion?: string | undefined;
|
|
6771
6771
|
/**
|
|
6772
6772
|
* <p>The operational status of the replicated bot generated.</p>
|
|
6773
6773
|
* @public
|
|
6774
6774
|
*/
|
|
6775
|
-
botReplicaStatus?: BotReplicaStatus;
|
|
6775
|
+
botReplicaStatus?: BotReplicaStatus | undefined;
|
|
6776
6776
|
}
|
|
6777
6777
|
/**
|
|
6778
6778
|
* @public
|
|
@@ -6797,7 +6797,7 @@ export interface DeleteBotVersionRequest {
|
|
|
6797
6797
|
* another resource.</p>
|
|
6798
6798
|
* @public
|
|
6799
6799
|
*/
|
|
6800
|
-
skipResourceInUseCheck?: boolean;
|
|
6800
|
+
skipResourceInUseCheck?: boolean | undefined;
|
|
6801
6801
|
}
|
|
6802
6802
|
/**
|
|
6803
6803
|
* @public
|
|
@@ -6807,17 +6807,17 @@ export interface DeleteBotVersionResponse {
|
|
|
6807
6807
|
* <p>The identifier of the bot that is being deleted.</p>
|
|
6808
6808
|
* @public
|
|
6809
6809
|
*/
|
|
6810
|
-
botId?: string;
|
|
6810
|
+
botId?: string | undefined;
|
|
6811
6811
|
/**
|
|
6812
6812
|
* <p>The version of the bot that is being deleted.</p>
|
|
6813
6813
|
* @public
|
|
6814
6814
|
*/
|
|
6815
|
-
botVersion?: string;
|
|
6815
|
+
botVersion?: string | undefined;
|
|
6816
6816
|
/**
|
|
6817
6817
|
* <p>The current status of the bot. </p>
|
|
6818
6818
|
* @public
|
|
6819
6819
|
*/
|
|
6820
|
-
botStatus?: BotStatus;
|
|
6820
|
+
botStatus?: BotStatus | undefined;
|
|
6821
6821
|
}
|
|
6822
6822
|
/**
|
|
6823
6823
|
* @public
|
|
@@ -6851,24 +6851,24 @@ export interface DeleteCustomVocabularyResponse {
|
|
|
6851
6851
|
* was removed from.</p>
|
|
6852
6852
|
* @public
|
|
6853
6853
|
*/
|
|
6854
|
-
botId?: string;
|
|
6854
|
+
botId?: string | undefined;
|
|
6855
6855
|
/**
|
|
6856
6856
|
* <p>The version of the bot that the custom vocabulary
|
|
6857
6857
|
* was removed from.</p>
|
|
6858
6858
|
* @public
|
|
6859
6859
|
*/
|
|
6860
|
-
botVersion?: string;
|
|
6860
|
+
botVersion?: string | undefined;
|
|
6861
6861
|
/**
|
|
6862
6862
|
* <p>The locale identifier for the locale that the
|
|
6863
6863
|
* custom vocabulary was removed from.</p>
|
|
6864
6864
|
* @public
|
|
6865
6865
|
*/
|
|
6866
|
-
localeId?: string;
|
|
6866
|
+
localeId?: string | undefined;
|
|
6867
6867
|
/**
|
|
6868
6868
|
* <p>The status of removing the custom vocabulary.</p>
|
|
6869
6869
|
* @public
|
|
6870
6870
|
*/
|
|
6871
|
-
customVocabularyStatus?: CustomVocabularyStatus;
|
|
6871
|
+
customVocabularyStatus?: CustomVocabularyStatus | undefined;
|
|
6872
6872
|
}
|
|
6873
6873
|
/**
|
|
6874
6874
|
* @public
|
|
@@ -6888,7 +6888,7 @@ export interface DeleteExportResponse {
|
|
|
6888
6888
|
* <p>The unique identifier of the deleted export.</p>
|
|
6889
6889
|
* @public
|
|
6890
6890
|
*/
|
|
6891
|
-
exportId?: string;
|
|
6891
|
+
exportId?: string | undefined;
|
|
6892
6892
|
/**
|
|
6893
6893
|
* <p>The current status of the deletion. When the deletion is complete,
|
|
6894
6894
|
* the export will no longer be returned by the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListExports.html">ListExports</a> operation and calls to the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeExport.html">
|
|
@@ -6896,7 +6896,7 @@ export interface DeleteExportResponse {
|
|
|
6896
6896
|
* fail.</p>
|
|
6897
6897
|
* @public
|
|
6898
6898
|
*/
|
|
6899
|
-
exportStatus?: ExportStatus;
|
|
6899
|
+
exportStatus?: ExportStatus | undefined;
|
|
6900
6900
|
}
|
|
6901
6901
|
/**
|
|
6902
6902
|
* @public
|
|
@@ -6930,14 +6930,14 @@ export interface DeleteImportResponse {
|
|
|
6930
6930
|
* <p>The unique identifier of the deleted import.</p>
|
|
6931
6931
|
* @public
|
|
6932
6932
|
*/
|
|
6933
|
-
importId?: string;
|
|
6933
|
+
importId?: string | undefined;
|
|
6934
6934
|
/**
|
|
6935
6935
|
* <p>The current status of the deletion. When the deletion is complete,
|
|
6936
6936
|
* the import will no longer be returned by the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_ListImports.html">ListImports</a> operation and calls to the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeImport.html">DescribeImport</a> operation with the import identifier will
|
|
6937
6937
|
* fail.</p>
|
|
6938
6938
|
* @public
|
|
6939
6939
|
*/
|
|
6940
|
-
importStatus?: ImportStatus;
|
|
6940
|
+
importStatus?: ImportStatus | undefined;
|
|
6941
6941
|
}
|
|
6942
6942
|
/**
|
|
6943
6943
|
* @public
|
|
@@ -6983,7 +6983,7 @@ export interface DeleteResourcePolicyRequest {
|
|
|
6983
6983
|
* policy.</p>
|
|
6984
6984
|
* @public
|
|
6985
6985
|
*/
|
|
6986
|
-
expectedRevisionId?: string;
|
|
6986
|
+
expectedRevisionId?: string | undefined;
|
|
6987
6987
|
}
|
|
6988
6988
|
/**
|
|
6989
6989
|
* @public
|
|
@@ -6994,7 +6994,7 @@ export interface DeleteResourcePolicyResponse {
|
|
|
6994
6994
|
* resource policy was deleted from.</p>
|
|
6995
6995
|
* @public
|
|
6996
6996
|
*/
|
|
6997
|
-
resourceArn?: string;
|
|
6997
|
+
resourceArn?: string | undefined;
|
|
6998
6998
|
/**
|
|
6999
6999
|
* <p>The current revision of the resource policy. Use the revision ID to
|
|
7000
7000
|
* make sure that you are updating the most current version of a resource
|
|
@@ -7002,7 +7002,7 @@ export interface DeleteResourcePolicyResponse {
|
|
|
7002
7002
|
* resource, or update a resource.</p>
|
|
7003
7003
|
* @public
|
|
7004
7004
|
*/
|
|
7005
|
-
revisionId?: string;
|
|
7005
|
+
revisionId?: string | undefined;
|
|
7006
7006
|
}
|
|
7007
7007
|
/**
|
|
7008
7008
|
* @public
|
|
@@ -7027,7 +7027,7 @@ export interface DeleteResourcePolicyStatementRequest {
|
|
|
7027
7027
|
* of the statement. </p>
|
|
7028
7028
|
* @public
|
|
7029
7029
|
*/
|
|
7030
|
-
expectedRevisionId?: string;
|
|
7030
|
+
expectedRevisionId?: string | undefined;
|
|
7031
7031
|
}
|
|
7032
7032
|
/**
|
|
7033
7033
|
* @public
|
|
@@ -7038,7 +7038,7 @@ export interface DeleteResourcePolicyStatementResponse {
|
|
|
7038
7038
|
* resource policy statement was removed from.</p>
|
|
7039
7039
|
* @public
|
|
7040
7040
|
*/
|
|
7041
|
-
resourceArn?: string;
|
|
7041
|
+
resourceArn?: string | undefined;
|
|
7042
7042
|
/**
|
|
7043
7043
|
* <p>The current revision of the resource policy. Use the revision ID to
|
|
7044
7044
|
* make sure that you are updating the most current version of a resource
|
|
@@ -7046,7 +7046,7 @@ export interface DeleteResourcePolicyStatementResponse {
|
|
|
7046
7046
|
* resource, or update a resource.</p>
|
|
7047
7047
|
* @public
|
|
7048
7048
|
*/
|
|
7049
|
-
revisionId?: string;
|
|
7049
|
+
revisionId?: string | undefined;
|
|
7050
7050
|
}
|
|
7051
7051
|
/**
|
|
7052
7052
|
* @public
|
|
@@ -7114,7 +7114,7 @@ export interface DeleteSlotTypeRequest {
|
|
|
7114
7114
|
* type even if a slot uses it.</p>
|
|
7115
7115
|
* @public
|
|
7116
7116
|
*/
|
|
7117
|
-
skipResourceInUseCheck?: boolean;
|
|
7117
|
+
skipResourceInUseCheck?: boolean | undefined;
|
|
7118
7118
|
}
|
|
7119
7119
|
/**
|
|
7120
7120
|
* @public
|
|
@@ -7143,13 +7143,13 @@ export interface DeleteUtterancesRequest {
|
|
|
7143
7143
|
* languages</a>.</p>
|
|
7144
7144
|
* @public
|
|
7145
7145
|
*/
|
|
7146
|
-
localeId?: string;
|
|
7146
|
+
localeId?: string | undefined;
|
|
7147
7147
|
/**
|
|
7148
7148
|
* <p>The unique identifier of the session with the user. The ID is
|
|
7149
7149
|
* returned in the response from the <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_runtime_RecognizeText.html">RecognizeText</a> and <a href="https://docs.aws.amazon.com/lexv2/latest/APIReference/API_runtime_RecognizeUtterance.html">RecognizeUtterance</a> operations.</p>
|
|
7150
7150
|
* @public
|
|
7151
7151
|
*/
|
|
7152
|
-
sessionId?: string;
|
|
7152
|
+
sessionId?: string | undefined;
|
|
7153
7153
|
}
|
|
7154
7154
|
/**
|
|
7155
7155
|
* @public
|
|
@@ -7174,69 +7174,69 @@ export interface DescribeBotResponse {
|
|
|
7174
7174
|
* <p>The unique identifier of the bot.</p>
|
|
7175
7175
|
* @public
|
|
7176
7176
|
*/
|
|
7177
|
-
botId?: string;
|
|
7177
|
+
botId?: string | undefined;
|
|
7178
7178
|
/**
|
|
7179
7179
|
* <p>The name of the bot.</p>
|
|
7180
7180
|
* @public
|
|
7181
7181
|
*/
|
|
7182
|
-
botName?: string;
|
|
7182
|
+
botName?: string | undefined;
|
|
7183
7183
|
/**
|
|
7184
7184
|
* <p>The description of the bot. </p>
|
|
7185
7185
|
* @public
|
|
7186
7186
|
*/
|
|
7187
|
-
description?: string;
|
|
7187
|
+
description?: string | undefined;
|
|
7188
7188
|
/**
|
|
7189
7189
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permission to
|
|
7190
7190
|
* access the bot.</p>
|
|
7191
7191
|
* @public
|
|
7192
7192
|
*/
|
|
7193
|
-
roleArn?: string;
|
|
7193
|
+
roleArn?: string | undefined;
|
|
7194
7194
|
/**
|
|
7195
7195
|
* <p>Settings for managing data privacy of the bot and its conversations
|
|
7196
7196
|
* with users.</p>
|
|
7197
7197
|
* @public
|
|
7198
7198
|
*/
|
|
7199
|
-
dataPrivacy?: DataPrivacy;
|
|
7199
|
+
dataPrivacy?: DataPrivacy | undefined;
|
|
7200
7200
|
/**
|
|
7201
7201
|
* <p>The maximum time in seconds that Amazon Lex retains the data gathered in
|
|
7202
7202
|
* a conversation.</p>
|
|
7203
7203
|
* @public
|
|
7204
7204
|
*/
|
|
7205
|
-
idleSessionTTLInSeconds?: number;
|
|
7205
|
+
idleSessionTTLInSeconds?: number | undefined;
|
|
7206
7206
|
/**
|
|
7207
7207
|
* <p>The current status of the bot. When the status is
|
|
7208
7208
|
* <code>Available</code> the bot is ready to be used in conversations
|
|
7209
7209
|
* with users.</p>
|
|
7210
7210
|
* @public
|
|
7211
7211
|
*/
|
|
7212
|
-
botStatus?: BotStatus;
|
|
7212
|
+
botStatus?: BotStatus | undefined;
|
|
7213
7213
|
/**
|
|
7214
7214
|
* <p>A timestamp of the date and time that the bot was created.</p>
|
|
7215
7215
|
* @public
|
|
7216
7216
|
*/
|
|
7217
|
-
creationDateTime?: Date;
|
|
7217
|
+
creationDateTime?: Date | undefined;
|
|
7218
7218
|
/**
|
|
7219
7219
|
* <p>A timestamp of the date and time that the bot was last
|
|
7220
7220
|
* updated.</p>
|
|
7221
7221
|
* @public
|
|
7222
7222
|
*/
|
|
7223
|
-
lastUpdatedDateTime?: Date;
|
|
7223
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
7224
7224
|
/**
|
|
7225
7225
|
* <p>The type of the bot that was described.</p>
|
|
7226
7226
|
* @public
|
|
7227
7227
|
*/
|
|
7228
|
-
botType?: BotType;
|
|
7228
|
+
botType?: BotType | undefined;
|
|
7229
7229
|
/**
|
|
7230
7230
|
* <p>The list of bots in the network that was described.</p>
|
|
7231
7231
|
* @public
|
|
7232
7232
|
*/
|
|
7233
|
-
botMembers?: BotMember[];
|
|
7233
|
+
botMembers?: BotMember[] | undefined;
|
|
7234
7234
|
/**
|
|
7235
7235
|
* <p>If the <code>botStatus</code> is <code>Failed</code>, this contains
|
|
7236
7236
|
* a list of reasons that the bot couldn't be built.</p>
|
|
7237
7237
|
* @public
|
|
7238
7238
|
*/
|
|
7239
|
-
failureReasons?: string[];
|
|
7239
|
+
failureReasons?: string[] | undefined;
|
|
7240
7240
|
}
|
|
7241
7241
|
/**
|
|
7242
7242
|
* @public
|
|
@@ -7278,73 +7278,73 @@ export interface DescribeBotAliasResponse {
|
|
|
7278
7278
|
* <p>The identifier of the bot alias.</p>
|
|
7279
7279
|
* @public
|
|
7280
7280
|
*/
|
|
7281
|
-
botAliasId?: string;
|
|
7281
|
+
botAliasId?: string | undefined;
|
|
7282
7282
|
/**
|
|
7283
7283
|
* <p>The name of the bot alias.</p>
|
|
7284
7284
|
* @public
|
|
7285
7285
|
*/
|
|
7286
|
-
botAliasName?: string;
|
|
7286
|
+
botAliasName?: string | undefined;
|
|
7287
7287
|
/**
|
|
7288
7288
|
* <p>The description of the bot alias.</p>
|
|
7289
7289
|
* @public
|
|
7290
7290
|
*/
|
|
7291
|
-
description?: string;
|
|
7291
|
+
description?: string | undefined;
|
|
7292
7292
|
/**
|
|
7293
7293
|
* <p>The version of the bot associated with the bot alias.</p>
|
|
7294
7294
|
* @public
|
|
7295
7295
|
*/
|
|
7296
|
-
botVersion?: string;
|
|
7296
|
+
botVersion?: string | undefined;
|
|
7297
7297
|
/**
|
|
7298
7298
|
* <p>The locale settings that are unique to the alias.</p>
|
|
7299
7299
|
* @public
|
|
7300
7300
|
*/
|
|
7301
|
-
botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings
|
|
7301
|
+
botAliasLocaleSettings?: Record<string, BotAliasLocaleSettings> | undefined;
|
|
7302
7302
|
/**
|
|
7303
7303
|
* <p>Specifics of how Amazon Lex logs text and audio conversations with the
|
|
7304
7304
|
* bot associated with the alias.</p>
|
|
7305
7305
|
* @public
|
|
7306
7306
|
*/
|
|
7307
|
-
conversationLogSettings?: ConversationLogSettings;
|
|
7307
|
+
conversationLogSettings?: ConversationLogSettings | undefined;
|
|
7308
7308
|
/**
|
|
7309
7309
|
* <p>Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of
|
|
7310
7310
|
* user utterances.</p>
|
|
7311
7311
|
* @public
|
|
7312
7312
|
*/
|
|
7313
|
-
sentimentAnalysisSettings?: SentimentAnalysisSettings;
|
|
7313
|
+
sentimentAnalysisSettings?: SentimentAnalysisSettings | undefined;
|
|
7314
7314
|
/**
|
|
7315
7315
|
* <p>A list of events that affect a bot alias. For example, an event is
|
|
7316
7316
|
* recorded when the version that the alias points to changes.</p>
|
|
7317
7317
|
* @public
|
|
7318
7318
|
*/
|
|
7319
|
-
botAliasHistoryEvents?: BotAliasHistoryEvent[];
|
|
7319
|
+
botAliasHistoryEvents?: BotAliasHistoryEvent[] | undefined;
|
|
7320
7320
|
/**
|
|
7321
7321
|
* <p>The current status of the alias. When the alias is
|
|
7322
7322
|
* <code>Available</code>, the alias is ready for use with your
|
|
7323
7323
|
* bot.</p>
|
|
7324
7324
|
* @public
|
|
7325
7325
|
*/
|
|
7326
|
-
botAliasStatus?: BotAliasStatus;
|
|
7326
|
+
botAliasStatus?: BotAliasStatus | undefined;
|
|
7327
7327
|
/**
|
|
7328
7328
|
* <p>The identifier of the bot associated with the bot alias.</p>
|
|
7329
7329
|
* @public
|
|
7330
7330
|
*/
|
|
7331
|
-
botId?: string;
|
|
7331
|
+
botId?: string | undefined;
|
|
7332
7332
|
/**
|
|
7333
7333
|
* <p>A timestamp of the date and time that the alias was created.</p>
|
|
7334
7334
|
* @public
|
|
7335
7335
|
*/
|
|
7336
|
-
creationDateTime?: Date;
|
|
7336
|
+
creationDateTime?: Date | undefined;
|
|
7337
7337
|
/**
|
|
7338
7338
|
* <p>A timestamp of the date and time that the alias was last
|
|
7339
7339
|
* updated.</p>
|
|
7340
7340
|
* @public
|
|
7341
7341
|
*/
|
|
7342
|
-
lastUpdatedDateTime?: Date;
|
|
7342
|
+
lastUpdatedDateTime?: Date | undefined;
|
|
7343
7343
|
/**
|
|
7344
7344
|
* <p>A list of the networks to which the bot alias you described belongs.</p>
|
|
7345
7345
|
* @public
|
|
7346
7346
|
*/
|
|
7347
|
-
parentBotNetworks?: ParentBotNetwork[];
|
|
7347
|
+
parentBotNetworks?: ParentBotNetwork[] | undefined;
|
|
7348
7348
|
}
|
|
7349
7349
|
/**
|
|
7350
7350
|
* @public
|