@@ -39,6 +39,11 @@ import {
39
39
CreateApplicationCommandInput ,
40
40
CreateApplicationCommandOutput ,
41
41
} from "./commands/CreateApplicationCommand" ;
42
+ import {
43
+ CreateChatResponseConfigurationCommand ,
44
+ CreateChatResponseConfigurationCommandInput ,
45
+ CreateChatResponseConfigurationCommandOutput ,
46
+ } from "./commands/CreateChatResponseConfigurationCommand" ;
42
47
import {
43
48
CreateDataAccessorCommand ,
44
49
CreateDataAccessorCommandInput ,
@@ -86,6 +91,11 @@ import {
86
91
DeleteChatControlsConfigurationCommandInput ,
87
92
DeleteChatControlsConfigurationCommandOutput ,
88
93
} from "./commands/DeleteChatControlsConfigurationCommand" ;
94
+ import {
95
+ DeleteChatResponseConfigurationCommand ,
96
+ DeleteChatResponseConfigurationCommandInput ,
97
+ DeleteChatResponseConfigurationCommandOutput ,
98
+ } from "./commands/DeleteChatResponseConfigurationCommand" ;
89
99
import {
90
100
DeleteConversationCommand ,
91
101
DeleteConversationCommandInput ,
@@ -134,6 +144,11 @@ import {
134
144
GetChatControlsConfigurationCommandInput ,
135
145
GetChatControlsConfigurationCommandOutput ,
136
146
} from "./commands/GetChatControlsConfigurationCommand" ;
147
+ import {
148
+ GetChatResponseConfigurationCommand ,
149
+ GetChatResponseConfigurationCommandInput ,
150
+ GetChatResponseConfigurationCommandOutput ,
151
+ } from "./commands/GetChatResponseConfigurationCommand" ;
137
152
import {
138
153
GetDataAccessorCommand ,
139
154
GetDataAccessorCommandInput ,
@@ -170,6 +185,11 @@ import {
170
185
ListAttachmentsCommandInput ,
171
186
ListAttachmentsCommandOutput ,
172
187
} from "./commands/ListAttachmentsCommand" ;
188
+ import {
189
+ ListChatResponseConfigurationsCommand ,
190
+ ListChatResponseConfigurationsCommandInput ,
191
+ ListChatResponseConfigurationsCommandOutput ,
192
+ } from "./commands/ListChatResponseConfigurationsCommand" ;
173
193
import {
174
194
ListConversationsCommand ,
175
195
ListConversationsCommandInput ,
@@ -271,6 +291,11 @@ import {
271
291
UpdateChatControlsConfigurationCommandInput ,
272
292
UpdateChatControlsConfigurationCommandOutput ,
273
293
} from "./commands/UpdateChatControlsConfigurationCommand" ;
294
+ import {
295
+ UpdateChatResponseConfigurationCommand ,
296
+ UpdateChatResponseConfigurationCommandInput ,
297
+ UpdateChatResponseConfigurationCommandOutput ,
298
+ } from "./commands/UpdateChatResponseConfigurationCommand" ;
274
299
import {
275
300
UpdateDataAccessorCommand ,
276
301
UpdateDataAccessorCommandInput ,
@@ -315,6 +340,7 @@ const commands = {
315
340
CheckDocumentAccessCommand,
316
341
CreateAnonymousWebExperienceUrlCommand,
317
342
CreateApplicationCommand,
343
+ CreateChatResponseConfigurationCommand,
318
344
CreateDataAccessorCommand,
319
345
CreateDataSourceCommand,
320
346
CreateIndexCommand,
@@ -326,6 +352,7 @@ const commands = {
326
352
DeleteApplicationCommand,
327
353
DeleteAttachmentCommand,
328
354
DeleteChatControlsConfigurationCommand,
355
+ DeleteChatResponseConfigurationCommand,
329
356
DeleteConversationCommand,
330
357
DeleteDataAccessorCommand,
331
358
DeleteDataSourceCommand,
@@ -338,6 +365,7 @@ const commands = {
338
365
DisassociatePermissionCommand,
339
366
GetApplicationCommand,
340
367
GetChatControlsConfigurationCommand,
368
+ GetChatResponseConfigurationCommand,
341
369
GetDataAccessorCommand,
342
370
GetDataSourceCommand,
343
371
GetGroupCommand,
@@ -350,6 +378,7 @@ const commands = {
350
378
GetWebExperienceCommand,
351
379
ListApplicationsCommand,
352
380
ListAttachmentsCommand,
381
+ ListChatResponseConfigurationsCommand,
353
382
ListConversationsCommand,
354
383
ListDataAccessorsCommand,
355
384
ListDataSourcesCommand,
@@ -375,6 +404,7 @@ const commands = {
375
404
UntagResourceCommand,
376
405
UpdateApplicationCommand,
377
406
UpdateChatControlsConfigurationCommand,
407
+ UpdateChatResponseConfigurationCommand,
378
408
UpdateDataAccessorCommand,
379
409
UpdateDataSourceCommand,
380
410
UpdateIndexCommand,
@@ -523,6 +553,23 @@ export interface QBusiness {
523
553
cb : ( err : any , data ?: CreateApplicationCommandOutput ) => void
524
554
) : void ;
525
555
556
+ /**
557
+ * @see {@link CreateChatResponseConfigurationCommand }
558
+ */
559
+ createChatResponseConfiguration (
560
+ args : CreateChatResponseConfigurationCommandInput ,
561
+ options ?: __HttpHandlerOptions
562
+ ) : Promise < CreateChatResponseConfigurationCommandOutput > ;
563
+ createChatResponseConfiguration (
564
+ args : CreateChatResponseConfigurationCommandInput ,
565
+ cb : ( err : any , data ?: CreateChatResponseConfigurationCommandOutput ) => void
566
+ ) : void ;
567
+ createChatResponseConfiguration (
568
+ args : CreateChatResponseConfigurationCommandInput ,
569
+ options : __HttpHandlerOptions ,
570
+ cb : ( err : any , data ?: CreateChatResponseConfigurationCommandOutput ) => void
571
+ ) : void ;
572
+
526
573
/**
527
574
* @see {@link CreateDataAccessorCommand }
528
575
*/
@@ -689,6 +736,23 @@ export interface QBusiness {
689
736
cb : ( err : any , data ?: DeleteChatControlsConfigurationCommandOutput ) => void
690
737
) : void ;
691
738
739
+ /**
740
+ * @see {@link DeleteChatResponseConfigurationCommand }
741
+ */
742
+ deleteChatResponseConfiguration (
743
+ args : DeleteChatResponseConfigurationCommandInput ,
744
+ options ?: __HttpHandlerOptions
745
+ ) : Promise < DeleteChatResponseConfigurationCommandOutput > ;
746
+ deleteChatResponseConfiguration (
747
+ args : DeleteChatResponseConfigurationCommandInput ,
748
+ cb : ( err : any , data ?: DeleteChatResponseConfigurationCommandOutput ) => void
749
+ ) : void ;
750
+ deleteChatResponseConfiguration (
751
+ args : DeleteChatResponseConfigurationCommandInput ,
752
+ options : __HttpHandlerOptions ,
753
+ cb : ( err : any , data ?: DeleteChatResponseConfigurationCommandOutput ) => void
754
+ ) : void ;
755
+
692
756
/**
693
757
* @see {@link DeleteConversationCommand }
694
758
*/
@@ -863,6 +927,23 @@ export interface QBusiness {
863
927
cb : ( err : any , data ?: GetChatControlsConfigurationCommandOutput ) => void
864
928
) : void ;
865
929
930
+ /**
931
+ * @see {@link GetChatResponseConfigurationCommand }
932
+ */
933
+ getChatResponseConfiguration (
934
+ args : GetChatResponseConfigurationCommandInput ,
935
+ options ?: __HttpHandlerOptions
936
+ ) : Promise < GetChatResponseConfigurationCommandOutput > ;
937
+ getChatResponseConfiguration (
938
+ args : GetChatResponseConfigurationCommandInput ,
939
+ cb : ( err : any , data ?: GetChatResponseConfigurationCommandOutput ) => void
940
+ ) : void ;
941
+ getChatResponseConfiguration (
942
+ args : GetChatResponseConfigurationCommandInput ,
943
+ options : __HttpHandlerOptions ,
944
+ cb : ( err : any , data ?: GetChatResponseConfigurationCommandOutput ) => void
945
+ ) : void ;
946
+
866
947
/**
867
948
* @see {@link GetDataAccessorCommand }
868
949
*/
@@ -1014,6 +1095,23 @@ export interface QBusiness {
1014
1095
cb : ( err : any , data ?: ListAttachmentsCommandOutput ) => void
1015
1096
) : void ;
1016
1097
1098
+ /**
1099
+ * @see {@link ListChatResponseConfigurationsCommand }
1100
+ */
1101
+ listChatResponseConfigurations (
1102
+ args : ListChatResponseConfigurationsCommandInput ,
1103
+ options ?: __HttpHandlerOptions
1104
+ ) : Promise < ListChatResponseConfigurationsCommandOutput > ;
1105
+ listChatResponseConfigurations (
1106
+ args : ListChatResponseConfigurationsCommandInput ,
1107
+ cb : ( err : any , data ?: ListChatResponseConfigurationsCommandOutput ) => void
1108
+ ) : void ;
1109
+ listChatResponseConfigurations (
1110
+ args : ListChatResponseConfigurationsCommandInput ,
1111
+ options : __HttpHandlerOptions ,
1112
+ cb : ( err : any , data ?: ListChatResponseConfigurationsCommandOutput ) => void
1113
+ ) : void ;
1114
+
1017
1115
/**
1018
1116
* @see {@link ListConversationsCommand }
1019
1117
*/
@@ -1380,6 +1478,23 @@ export interface QBusiness {
1380
1478
cb : ( err : any , data ?: UpdateChatControlsConfigurationCommandOutput ) => void
1381
1479
) : void ;
1382
1480
1481
+ /**
1482
+ * @see {@link UpdateChatResponseConfigurationCommand }
1483
+ */
1484
+ updateChatResponseConfiguration (
1485
+ args : UpdateChatResponseConfigurationCommandInput ,
1486
+ options ?: __HttpHandlerOptions
1487
+ ) : Promise < UpdateChatResponseConfigurationCommandOutput > ;
1488
+ updateChatResponseConfiguration (
1489
+ args : UpdateChatResponseConfigurationCommandInput ,
1490
+ cb : ( err : any , data ?: UpdateChatResponseConfigurationCommandOutput ) => void
1491
+ ) : void ;
1492
+ updateChatResponseConfiguration (
1493
+ args : UpdateChatResponseConfigurationCommandInput ,
1494
+ options : __HttpHandlerOptions ,
1495
+ cb : ( err : any , data ?: UpdateChatResponseConfigurationCommandOutput ) => void
1496
+ ) : void ;
1497
+
1383
1498
/**
1384
1499
* @see {@link UpdateDataAccessorCommand }
1385
1500
*/
0 commit comments