@aws-sdk/client-lex-models-v2 3.445.0 → 3.446.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.
@@ -59,6 +59,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
59
59
  * logPrefix: "STRING_VALUE", // required
60
60
  * },
61
61
  * },
62
+ * selectiveLoggingEnabled: true || false,
62
63
  * },
63
64
  * ],
64
65
  * audioLogSettings: [ // AudioLogSettingsList
@@ -71,6 +72,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
71
72
  * logPrefix: "STRING_VALUE", // required
72
73
  * },
73
74
  * },
75
+ * selectiveLoggingEnabled: true || false,
74
76
  * },
75
77
  * ],
76
78
  * },
@@ -110,6 +112,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
110
112
  * // logPrefix: "STRING_VALUE", // required
111
113
  * // },
112
114
  * // },
115
+ * // selectiveLoggingEnabled: true || false,
113
116
  * // },
114
117
  * // ],
115
118
  * // audioLogSettings: [ // AudioLogSettingsList
@@ -122,6 +125,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
122
125
  * // logPrefix: "STRING_VALUE", // required
123
126
  * // },
124
127
  * // },
128
+ * // selectiveLoggingEnabled: true || false,
125
129
  * // },
126
130
  * // ],
127
131
  * // },
@@ -62,6 +62,7 @@ export interface DescribeBotAliasCommandOutput extends DescribeBotAliasResponse,
62
62
  * // logPrefix: "STRING_VALUE", // required
63
63
  * // },
64
64
  * // },
65
+ * // selectiveLoggingEnabled: true || false,
65
66
  * // },
66
67
  * // ],
67
68
  * // audioLogSettings: [ // AudioLogSettingsList
@@ -74,6 +75,7 @@ export interface DescribeBotAliasCommandOutput extends DescribeBotAliasResponse,
74
75
  * // logPrefix: "STRING_VALUE", // required
75
76
  * // },
76
77
  * // },
78
+ * // selectiveLoggingEnabled: true || false,
77
79
  * // },
78
80
  * // ],
79
81
  * // },
@@ -56,6 +56,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
56
56
  * logPrefix: "STRING_VALUE", // required
57
57
  * },
58
58
  * },
59
+ * selectiveLoggingEnabled: true || false,
59
60
  * },
60
61
  * ],
61
62
  * audioLogSettings: [ // AudioLogSettingsList
@@ -68,6 +69,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
68
69
  * logPrefix: "STRING_VALUE", // required
69
70
  * },
70
71
  * },
72
+ * selectiveLoggingEnabled: true || false,
71
73
  * },
72
74
  * ],
73
75
  * },
@@ -104,6 +106,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
104
106
  * // logPrefix: "STRING_VALUE", // required
105
107
  * // },
106
108
  * // },
109
+ * // selectiveLoggingEnabled: true || false,
107
110
  * // },
108
111
  * // ],
109
112
  * // audioLogSettings: [ // AudioLogSettingsList
@@ -116,6 +119,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
116
119
  * // logPrefix: "STRING_VALUE", // required
117
120
  * // },
118
121
  * // },
122
+ * // selectiveLoggingEnabled: true || false,
119
123
  * // },
120
124
  * // ],
121
125
  * // },
@@ -2290,6 +2290,11 @@ export interface AudioLogSetting {
2290
2290
  * is enabled for a bot.</p>
2291
2291
  */
2292
2292
  destination: AudioLogDestination | undefined;
2293
+ /**
2294
+ * @public
2295
+ * <p>The option to enable selective conversation log capture for audio.</p>
2296
+ */
2297
+ selectiveLoggingEnabled?: boolean;
2293
2298
  }
2294
2299
  /**
2295
2300
  * @public
@@ -4259,6 +4264,11 @@ export interface TextLogSetting {
4259
4264
  * conversation text logs.</p>
4260
4265
  */
4261
4266
  destination: TextLogDestination | undefined;
4267
+ /**
4268
+ * @public
4269
+ * <p>The option to enable selective conversation log capture for text.</p>
4270
+ */
4271
+ selectiveLoggingEnabled?: boolean;
4262
4272
  }
4263
4273
  /**
4264
4274
  * @public
@@ -430,6 +430,7 @@ export interface AudioLogDestination {
430
430
  export interface AudioLogSetting {
431
431
  enabled: boolean | undefined;
432
432
  destination: AudioLogDestination | undefined;
433
+ selectiveLoggingEnabled?: boolean;
433
434
  }
434
435
  export interface NewCustomVocabularyItem {
435
436
  phrase: string | undefined;
@@ -957,6 +958,7 @@ export interface TextLogDestination {
957
958
  export interface TextLogSetting {
958
959
  enabled: boolean | undefined;
959
960
  destination: TextLogDestination | undefined;
961
+ selectiveLoggingEnabled?: boolean;
960
962
  }
961
963
  export interface ConversationLogSettings {
962
964
  textLogSettings?: TextLogSetting[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lex-models-v2",
3
3
  "description": "AWS SDK for JavaScript Lex Models V2 Client for Node.js, Browser and React Native",
4
- "version": "3.445.0",
4
+ "version": "3.446.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",