@aws-sdk/client-wisdom 3.687.0 → 3.692.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 +200 -200
- package/dist-types/ts3.4/models/models_0.d.ts +212 -200
- package/package.json +35 -35
|
@@ -85,7 +85,7 @@ export interface AppIntegrationsConfiguration {
|
|
|
85
85
|
* recommendations. </p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
objectFields?: string[];
|
|
88
|
+
objectFields?: string[] | undefined;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
@@ -170,12 +170,12 @@ export interface CreateAssistantAssociationRequest {
|
|
|
170
170
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
171
171
|
* @public
|
|
172
172
|
*/
|
|
173
|
-
clientToken?: string;
|
|
173
|
+
clientToken?: string | undefined;
|
|
174
174
|
/**
|
|
175
175
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
176
176
|
* @public
|
|
177
177
|
*/
|
|
178
|
-
tags?: Record<string, string
|
|
178
|
+
tags?: Record<string, string> | undefined;
|
|
179
179
|
}
|
|
180
180
|
/**
|
|
181
181
|
* <p>Association information about the knowledge base.</p>
|
|
@@ -187,12 +187,12 @@ export interface KnowledgeBaseAssociationData {
|
|
|
187
187
|
* base if you're storing Wisdom Content resource to it.</p>
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
knowledgeBaseId?: string;
|
|
190
|
+
knowledgeBaseId?: string | undefined;
|
|
191
191
|
/**
|
|
192
192
|
* <p>The Amazon Resource Name (ARN) of the knowledge base.</p>
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
knowledgeBaseArn?: string;
|
|
195
|
+
knowledgeBaseArn?: string | undefined;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
198
|
* <p>The data that is output as a result of the assistant association.</p>
|
|
@@ -263,7 +263,7 @@ export interface AssistantAssociationData {
|
|
|
263
263
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
264
264
|
* @public
|
|
265
265
|
*/
|
|
266
|
-
tags?: Record<string, string
|
|
266
|
+
tags?: Record<string, string> | undefined;
|
|
267
267
|
}
|
|
268
268
|
/**
|
|
269
269
|
* @public
|
|
@@ -273,7 +273,7 @@ export interface CreateAssistantAssociationResponse {
|
|
|
273
273
|
* <p>The assistant association.</p>
|
|
274
274
|
* @public
|
|
275
275
|
*/
|
|
276
|
-
assistantAssociation?: AssistantAssociationData;
|
|
276
|
+
assistantAssociation?: AssistantAssociationData | undefined;
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
279
279
|
* <p>The specified resource does not exist.</p>
|
|
@@ -286,7 +286,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
286
286
|
* <p>The specified resource name.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
resourceName?: string;
|
|
289
|
+
resourceName?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* @internal
|
|
292
292
|
*/
|
|
@@ -360,7 +360,7 @@ export interface GetAssistantAssociationResponse {
|
|
|
360
360
|
* <p>The assistant association.</p>
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
assistantAssociation?: AssistantAssociationData;
|
|
363
|
+
assistantAssociation?: AssistantAssociationData | undefined;
|
|
364
364
|
}
|
|
365
365
|
/**
|
|
366
366
|
* @public
|
|
@@ -371,12 +371,12 @@ export interface ListAssistantAssociationsRequest {
|
|
|
371
371
|
* response in the next request to retrieve the next set of results.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
nextToken?: string;
|
|
374
|
+
nextToken?: string | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>The maximum number of results to return per page.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
maxResults?: number;
|
|
379
|
+
maxResults?: number | undefined;
|
|
380
380
|
/**
|
|
381
381
|
* <p>The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
382
382
|
* @public
|
|
@@ -422,7 +422,7 @@ export interface AssistantAssociationSummary {
|
|
|
422
422
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
423
423
|
* @public
|
|
424
424
|
*/
|
|
425
|
-
tags?: Record<string, string
|
|
425
|
+
tags?: Record<string, string> | undefined;
|
|
426
426
|
}
|
|
427
427
|
/**
|
|
428
428
|
* @public
|
|
@@ -437,7 +437,7 @@ export interface ListAssistantAssociationsResponse {
|
|
|
437
437
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
nextToken?: string;
|
|
440
|
+
nextToken?: string | undefined;
|
|
441
441
|
}
|
|
442
442
|
/**
|
|
443
443
|
* <p>The configuration information for the customer managed key used for encryption.</p>
|
|
@@ -450,7 +450,7 @@ export interface ServerSideEncryptionConfiguration {
|
|
|
450
450
|
* instance</a>. For information about valid ID values, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id">Key identifiers (KeyId)</a>.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
kmsKeyId?: string;
|
|
453
|
+
kmsKeyId?: string | undefined;
|
|
454
454
|
}
|
|
455
455
|
/**
|
|
456
456
|
* @public
|
|
@@ -474,7 +474,7 @@ export interface CreateAssistantRequest {
|
|
|
474
474
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
475
475
|
* @public
|
|
476
476
|
*/
|
|
477
|
-
clientToken?: string;
|
|
477
|
+
clientToken?: string | undefined;
|
|
478
478
|
/**
|
|
479
479
|
* <p>The name of the assistant.</p>
|
|
480
480
|
* @public
|
|
@@ -489,12 +489,12 @@ export interface CreateAssistantRequest {
|
|
|
489
489
|
* <p>The description of the assistant.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
description?: string;
|
|
492
|
+
description?: string | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
tags?: Record<string, string
|
|
497
|
+
tags?: Record<string, string> | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>The configuration information for the customer managed key used for encryption. </p>
|
|
500
500
|
* <p>The customer managed key must have a policy that allows <code>kms:CreateGrant</code>,
|
|
@@ -507,7 +507,7 @@ export interface CreateAssistantRequest {
|
|
|
507
507
|
* for your instance</a>.</p>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
510
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
511
511
|
}
|
|
512
512
|
/**
|
|
513
513
|
* <p>The configuration information for the Wisdom assistant integration.</p>
|
|
@@ -518,7 +518,7 @@ export interface AssistantIntegrationConfiguration {
|
|
|
518
518
|
* <p>The Amazon Resource Name (ARN) of the integrated Amazon SNS topic used for streaming chat messages.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
topicIntegrationArn?: string;
|
|
521
|
+
topicIntegrationArn?: string | undefined;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* @public
|
|
@@ -570,12 +570,12 @@ export interface AssistantData {
|
|
|
570
570
|
* <p>The description.</p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
description?: string;
|
|
573
|
+
description?: string | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
tags?: Record<string, string
|
|
578
|
+
tags?: Record<string, string> | undefined;
|
|
579
579
|
/**
|
|
580
580
|
* <p>The configuration information for the customer managed key used for encryption. </p>
|
|
581
581
|
* <p>This KMS key must have a policy that allows <code>kms:CreateGrant</code>,
|
|
@@ -588,12 +588,12 @@ export interface AssistantData {
|
|
|
588
588
|
* for your instance</a>.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
591
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>The configuration information for the Wisdom assistant integration.</p>
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
integrationConfiguration?: AssistantIntegrationConfiguration;
|
|
596
|
+
integrationConfiguration?: AssistantIntegrationConfiguration | undefined;
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
599
|
* @public
|
|
@@ -603,7 +603,7 @@ export interface CreateAssistantResponse {
|
|
|
603
603
|
* <p>Information about the assistant.</p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
assistant?: AssistantData;
|
|
606
|
+
assistant?: AssistantData | undefined;
|
|
607
607
|
}
|
|
608
608
|
/**
|
|
609
609
|
* @public
|
|
@@ -638,7 +638,7 @@ export interface GetAssistantResponse {
|
|
|
638
638
|
* <p>Information about the assistant.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
assistant?: AssistantData;
|
|
641
|
+
assistant?: AssistantData | undefined;
|
|
642
642
|
}
|
|
643
643
|
/**
|
|
644
644
|
* @public
|
|
@@ -658,7 +658,7 @@ export interface GetRecommendationsRequest {
|
|
|
658
658
|
* <p>The maximum number of results to return per page.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
maxResults?: number;
|
|
661
|
+
maxResults?: number | undefined;
|
|
662
662
|
/**
|
|
663
663
|
* <p>The duration (in seconds) for which the call waits for a recommendation to be made
|
|
664
664
|
* available before returning. If a recommendation is available, the call returns sooner than
|
|
@@ -666,7 +666,7 @@ export interface GetRecommendationsRequest {
|
|
|
666
666
|
* call returns successfully with an empty list.</p>
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
waitTimeSeconds?: number;
|
|
669
|
+
waitTimeSeconds?: number | undefined;
|
|
670
670
|
}
|
|
671
671
|
/**
|
|
672
672
|
* <p>Reference information about the content.</p>
|
|
@@ -677,23 +677,23 @@ export interface ContentReference {
|
|
|
677
677
|
* <p>The Amazon Resource Name (ARN) of the knowledge base.</p>
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
knowledgeBaseArn?: string;
|
|
680
|
+
knowledgeBaseArn?: string | undefined;
|
|
681
681
|
/**
|
|
682
682
|
* <p>The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge
|
|
683
683
|
* base if you're storing Wisdom Content resource to it.</p>
|
|
684
684
|
* @public
|
|
685
685
|
*/
|
|
686
|
-
knowledgeBaseId?: string;
|
|
686
|
+
knowledgeBaseId?: string | undefined;
|
|
687
687
|
/**
|
|
688
688
|
* <p>The Amazon Resource Name (ARN) of the content.</p>
|
|
689
689
|
* @public
|
|
690
690
|
*/
|
|
691
|
-
contentArn?: string;
|
|
691
|
+
contentArn?: string | undefined;
|
|
692
692
|
/**
|
|
693
693
|
* <p>The identifier of the content.</p>
|
|
694
694
|
* @public
|
|
695
695
|
*/
|
|
696
|
-
contentId?: string;
|
|
696
|
+
contentId?: string | undefined;
|
|
697
697
|
}
|
|
698
698
|
/**
|
|
699
699
|
* <p>Offset specification to describe highlighting of document excerpts for rendering search
|
|
@@ -705,12 +705,12 @@ export interface Highlight {
|
|
|
705
705
|
* <p>The offset for the start of the highlight.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
beginOffsetInclusive?: number;
|
|
708
|
+
beginOffsetInclusive?: number | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p>The offset for the end of the highlight.</p>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
endOffsetExclusive?: number;
|
|
713
|
+
endOffsetExclusive?: number | undefined;
|
|
714
714
|
}
|
|
715
715
|
/**
|
|
716
716
|
* <p>The text of the document.</p>
|
|
@@ -721,12 +721,12 @@ export interface DocumentText {
|
|
|
721
721
|
* <p>Text in the document.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
text?: string;
|
|
724
|
+
text?: string | undefined;
|
|
725
725
|
/**
|
|
726
726
|
* <p>Highlights in the document text.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
highlights?: Highlight[];
|
|
729
|
+
highlights?: Highlight[] | undefined;
|
|
730
730
|
}
|
|
731
731
|
/**
|
|
732
732
|
* <p>The document.</p>
|
|
@@ -742,12 +742,12 @@ export interface Document {
|
|
|
742
742
|
* <p>The title of the document.</p>
|
|
743
743
|
* @public
|
|
744
744
|
*/
|
|
745
|
-
title?: DocumentText;
|
|
745
|
+
title?: DocumentText | undefined;
|
|
746
746
|
/**
|
|
747
747
|
* <p>The excerpt from the document.</p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
excerpt?: DocumentText;
|
|
750
|
+
excerpt?: DocumentText | undefined;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
753
753
|
* @public
|
|
@@ -792,17 +792,17 @@ export interface RecommendationData {
|
|
|
792
792
|
* <p>The relevance score of the recommendation.</p>
|
|
793
793
|
* @public
|
|
794
794
|
*/
|
|
795
|
-
relevanceScore?: number;
|
|
795
|
+
relevanceScore?: number | undefined;
|
|
796
796
|
/**
|
|
797
797
|
* <p>The relevance level of the recommendation.</p>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
relevanceLevel?: RelevanceLevel;
|
|
800
|
+
relevanceLevel?: RelevanceLevel | undefined;
|
|
801
801
|
/**
|
|
802
802
|
* <p>The type of recommendation.</p>
|
|
803
803
|
* @public
|
|
804
804
|
*/
|
|
805
|
-
type?: RecommendationType;
|
|
805
|
+
type?: RecommendationType | undefined;
|
|
806
806
|
}
|
|
807
807
|
/**
|
|
808
808
|
* <p>Data associated with the QUERY RecommendationTriggerType.</p>
|
|
@@ -813,7 +813,7 @@ export interface QueryRecommendationTriggerData {
|
|
|
813
813
|
* <p>The text associated with the recommendation trigger.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
text?: string;
|
|
816
|
+
text?: string | undefined;
|
|
817
817
|
}
|
|
818
818
|
/**
|
|
819
819
|
* <p>A union type containing information related to the trigger.</p>
|
|
@@ -925,7 +925,7 @@ export interface GetRecommendationsResponse {
|
|
|
925
925
|
* <p>The triggers corresponding to recommendations.</p>
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
triggers?: RecommendationTrigger[];
|
|
928
|
+
triggers?: RecommendationTrigger[] | undefined;
|
|
929
929
|
}
|
|
930
930
|
/**
|
|
931
931
|
* @public
|
|
@@ -936,12 +936,12 @@ export interface ListAssistantsRequest {
|
|
|
936
936
|
* response in the next request to retrieve the next set of results.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
|
-
nextToken?: string;
|
|
939
|
+
nextToken?: string | undefined;
|
|
940
940
|
/**
|
|
941
941
|
* <p>The maximum number of results to return per page.</p>
|
|
942
942
|
* @public
|
|
943
943
|
*/
|
|
944
|
-
maxResults?: number;
|
|
944
|
+
maxResults?: number | undefined;
|
|
945
945
|
}
|
|
946
946
|
/**
|
|
947
947
|
* <p>Summary information about the assistant.</p>
|
|
@@ -977,12 +977,12 @@ export interface AssistantSummary {
|
|
|
977
977
|
* <p>The description of the assistant.</p>
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
description?: string;
|
|
980
|
+
description?: string | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
983
983
|
* @public
|
|
984
984
|
*/
|
|
985
|
-
tags?: Record<string, string
|
|
985
|
+
tags?: Record<string, string> | undefined;
|
|
986
986
|
/**
|
|
987
987
|
* <p>The configuration information for the customer managed key used for encryption. </p>
|
|
988
988
|
* <p>This KMS key must have a policy that allows <code>kms:CreateGrant</code>,
|
|
@@ -995,12 +995,12 @@ export interface AssistantSummary {
|
|
|
995
995
|
* for your instance</a>.</p>
|
|
996
996
|
* @public
|
|
997
997
|
*/
|
|
998
|
-
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
998
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* <p>The configuration information for the Wisdom assistant integration.</p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
integrationConfiguration?: AssistantIntegrationConfiguration;
|
|
1003
|
+
integrationConfiguration?: AssistantIntegrationConfiguration | undefined;
|
|
1004
1004
|
}
|
|
1005
1005
|
/**
|
|
1006
1006
|
* @public
|
|
@@ -1015,7 +1015,7 @@ export interface ListAssistantsResponse {
|
|
|
1015
1015
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
nextToken?: string;
|
|
1018
|
+
nextToken?: string | undefined;
|
|
1019
1019
|
}
|
|
1020
1020
|
/**
|
|
1021
1021
|
* @public
|
|
@@ -1046,12 +1046,12 @@ export interface NotifyRecommendationsReceivedError {
|
|
|
1046
1046
|
* <p>The identifier of the recommendation that is in error.</p>
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
recommendationId?: string;
|
|
1049
|
+
recommendationId?: string | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <p>A recommendation is causing an error.</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
message?: string;
|
|
1054
|
+
message?: string | undefined;
|
|
1055
1055
|
}
|
|
1056
1056
|
/**
|
|
1057
1057
|
* @public
|
|
@@ -1061,12 +1061,12 @@ export interface NotifyRecommendationsReceivedResponse {
|
|
|
1061
1061
|
* <p>The identifiers of the recommendations.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
recommendationIds?: string[];
|
|
1064
|
+
recommendationIds?: string[] | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>The identifiers of recommendations that are causing errors.</p>
|
|
1067
1067
|
* @public
|
|
1068
1068
|
*/
|
|
1069
|
-
errors?: NotifyRecommendationsReceivedError[];
|
|
1069
|
+
errors?: NotifyRecommendationsReceivedError[] | undefined;
|
|
1070
1070
|
}
|
|
1071
1071
|
/**
|
|
1072
1072
|
* @public
|
|
@@ -1087,12 +1087,12 @@ export interface QueryAssistantRequest {
|
|
|
1087
1087
|
* response in the next request to retrieve the next set of results.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
nextToken?: string;
|
|
1090
|
+
nextToken?: string | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>The maximum number of results to return per page.</p>
|
|
1093
1093
|
* @public
|
|
1094
1094
|
*/
|
|
1095
|
-
maxResults?: number;
|
|
1095
|
+
maxResults?: number | undefined;
|
|
1096
1096
|
}
|
|
1097
1097
|
/**
|
|
1098
1098
|
* <p>Information about the result.</p>
|
|
@@ -1113,7 +1113,7 @@ export interface ResultData {
|
|
|
1113
1113
|
* <p>The relevance score of the results.</p>
|
|
1114
1114
|
* @public
|
|
1115
1115
|
*/
|
|
1116
|
-
relevanceScore?: number;
|
|
1116
|
+
relevanceScore?: number | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
/**
|
|
1119
1119
|
* @public
|
|
@@ -1128,7 +1128,7 @@ export interface QueryAssistantResponse {
|
|
|
1128
1128
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
nextToken?: string;
|
|
1131
|
+
nextToken?: string | undefined;
|
|
1132
1132
|
}
|
|
1133
1133
|
/**
|
|
1134
1134
|
* <p>The request reached the service more than 15 minutes after the date stamp on the request
|
|
@@ -1208,12 +1208,12 @@ export interface SearchSessionsRequest {
|
|
|
1208
1208
|
* response in the next request to retrieve the next set of results.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
nextToken?: string;
|
|
1211
|
+
nextToken?: string | undefined;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>The maximum number of results to return per page.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
maxResults?: number;
|
|
1216
|
+
maxResults?: number | undefined;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* <p>The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
1219
1219
|
* @public
|
|
@@ -1264,7 +1264,7 @@ export interface SearchSessionsResponse {
|
|
|
1264
1264
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
1265
1265
|
* @public
|
|
1266
1266
|
*/
|
|
1267
|
-
nextToken?: string;
|
|
1267
|
+
nextToken?: string | undefined;
|
|
1268
1268
|
}
|
|
1269
1269
|
/**
|
|
1270
1270
|
* @public
|
|
@@ -1277,7 +1277,7 @@ export interface CreateSessionRequest {
|
|
|
1277
1277
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
clientToken?: string;
|
|
1280
|
+
clientToken?: string | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* <p>The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
1283
1283
|
* @public
|
|
@@ -1292,12 +1292,12 @@ export interface CreateSessionRequest {
|
|
|
1292
1292
|
* <p>The description.</p>
|
|
1293
1293
|
* @public
|
|
1294
1294
|
*/
|
|
1295
|
-
description?: string;
|
|
1295
|
+
description?: string | undefined;
|
|
1296
1296
|
/**
|
|
1297
1297
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
tags?: Record<string, string
|
|
1300
|
+
tags?: Record<string, string> | undefined;
|
|
1301
1301
|
}
|
|
1302
1302
|
/**
|
|
1303
1303
|
* <p>The configuration information for the session integration.</p>
|
|
@@ -1308,7 +1308,7 @@ export interface SessionIntegrationConfiguration {
|
|
|
1308
1308
|
* <p>The Amazon Resource Name (ARN) of the integrated Amazon SNS topic used for streaming chat messages.</p>
|
|
1309
1309
|
* @public
|
|
1310
1310
|
*/
|
|
1311
|
-
topicIntegrationArn?: string;
|
|
1311
|
+
topicIntegrationArn?: string | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
/**
|
|
1314
1314
|
* <p>Information about the session.</p>
|
|
@@ -1334,17 +1334,17 @@ export interface SessionData {
|
|
|
1334
1334
|
* <p>The description of the session.</p>
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
description?: string;
|
|
1337
|
+
description?: string | undefined;
|
|
1338
1338
|
/**
|
|
1339
1339
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1340
1340
|
* @public
|
|
1341
1341
|
*/
|
|
1342
|
-
tags?: Record<string, string
|
|
1342
|
+
tags?: Record<string, string> | undefined;
|
|
1343
1343
|
/**
|
|
1344
1344
|
* <p>The configuration information for the session integration.</p>
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
integrationConfiguration?: SessionIntegrationConfiguration;
|
|
1347
|
+
integrationConfiguration?: SessionIntegrationConfiguration | undefined;
|
|
1348
1348
|
}
|
|
1349
1349
|
/**
|
|
1350
1350
|
* @public
|
|
@@ -1354,7 +1354,7 @@ export interface CreateSessionResponse {
|
|
|
1354
1354
|
* <p>The session.</p>
|
|
1355
1355
|
* @public
|
|
1356
1356
|
*/
|
|
1357
|
-
session?: SessionData;
|
|
1357
|
+
session?: SessionData | undefined;
|
|
1358
1358
|
}
|
|
1359
1359
|
/**
|
|
1360
1360
|
* @public
|
|
@@ -1379,7 +1379,7 @@ export interface GetSessionResponse {
|
|
|
1379
1379
|
* <p>The session.</p>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
session?: SessionData;
|
|
1382
|
+
session?: SessionData | undefined;
|
|
1383
1383
|
}
|
|
1384
1384
|
/**
|
|
1385
1385
|
* <p>The configuration information of the Amazon Connect data source.</p>
|
|
@@ -1390,7 +1390,7 @@ export interface ConnectConfiguration {
|
|
|
1390
1390
|
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
1391
1391
|
* @public
|
|
1392
1392
|
*/
|
|
1393
|
-
instanceId?: string;
|
|
1393
|
+
instanceId?: string | undefined;
|
|
1394
1394
|
}
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>The configuration information of the external data source.</p>
|
|
@@ -1443,19 +1443,19 @@ export interface CreateContentRequest {
|
|
|
1443
1443
|
* <p>The title of the content. If not set, the title is equal to the name.</p>
|
|
1444
1444
|
* @public
|
|
1445
1445
|
*/
|
|
1446
|
-
title?: string;
|
|
1446
|
+
title?: string | undefined;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* <p>The URI you want to use for the article. If the knowledge base has a templateUri, setting
|
|
1449
1449
|
* this argument overrides it for this piece of content.</p>
|
|
1450
1450
|
* @public
|
|
1451
1451
|
*/
|
|
1452
|
-
overrideLinkOutUri?: string;
|
|
1452
|
+
overrideLinkOutUri?: string | undefined;
|
|
1453
1453
|
/**
|
|
1454
1454
|
* <p>A key/value map to store attributes without affecting tagging or recommendations.
|
|
1455
1455
|
* For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.</p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
metadata?: Record<string, string
|
|
1458
|
+
metadata?: Record<string, string> | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>A pointer to the uploaded asset. This value is returned by <a href="https://docs.aws.amazon.com/wisdom/latest/APIReference/API_StartContentUpload.html">StartContentUpload</a>.</p>
|
|
1461
1461
|
* @public
|
|
@@ -1468,12 +1468,12 @@ export interface CreateContentRequest {
|
|
|
1468
1468
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
1469
1469
|
* @public
|
|
1470
1470
|
*/
|
|
1471
|
-
clientToken?: string;
|
|
1471
|
+
clientToken?: string | undefined;
|
|
1472
1472
|
/**
|
|
1473
1473
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
tags?: Record<string, string
|
|
1476
|
+
tags?: Record<string, string> | undefined;
|
|
1477
1477
|
}
|
|
1478
1478
|
/**
|
|
1479
1479
|
* @public
|
|
@@ -1553,12 +1553,12 @@ export interface ContentData {
|
|
|
1553
1553
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
tags?: Record<string, string
|
|
1556
|
+
tags?: Record<string, string> | undefined;
|
|
1557
1557
|
/**
|
|
1558
1558
|
* <p>The URI of the content.</p>
|
|
1559
1559
|
* @public
|
|
1560
1560
|
*/
|
|
1561
|
-
linkOutUri?: string;
|
|
1561
|
+
linkOutUri?: string | undefined;
|
|
1562
1562
|
/**
|
|
1563
1563
|
* <p>The URL of the content.</p>
|
|
1564
1564
|
* @public
|
|
@@ -1578,7 +1578,7 @@ export interface CreateContentResponse {
|
|
|
1578
1578
|
* <p>The content.</p>
|
|
1579
1579
|
* @public
|
|
1580
1580
|
*/
|
|
1581
|
-
content?: ContentData;
|
|
1581
|
+
content?: ContentData | undefined;
|
|
1582
1582
|
}
|
|
1583
1583
|
/**
|
|
1584
1584
|
* @public
|
|
@@ -1625,7 +1625,7 @@ export interface GetContentResponse {
|
|
|
1625
1625
|
* <p>The content.</p>
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
content?: ContentData;
|
|
1628
|
+
content?: ContentData | undefined;
|
|
1629
1629
|
}
|
|
1630
1630
|
/**
|
|
1631
1631
|
* @public
|
|
@@ -1704,7 +1704,7 @@ export interface ContentSummary {
|
|
|
1704
1704
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
tags?: Record<string, string
|
|
1707
|
+
tags?: Record<string, string> | undefined;
|
|
1708
1708
|
}
|
|
1709
1709
|
/**
|
|
1710
1710
|
* @public
|
|
@@ -1714,7 +1714,7 @@ export interface GetContentSummaryResponse {
|
|
|
1714
1714
|
* <p>The content summary.</p>
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
contentSummary?: ContentSummary;
|
|
1717
|
+
contentSummary?: ContentSummary | undefined;
|
|
1718
1718
|
}
|
|
1719
1719
|
/**
|
|
1720
1720
|
* @public
|
|
@@ -1725,12 +1725,12 @@ export interface ListContentsRequest {
|
|
|
1725
1725
|
* response in the next request to retrieve the next set of results.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
nextToken?: string;
|
|
1728
|
+
nextToken?: string | undefined;
|
|
1729
1729
|
/**
|
|
1730
1730
|
* <p>The maximum number of results to return per page.</p>
|
|
1731
1731
|
* @public
|
|
1732
1732
|
*/
|
|
1733
|
-
maxResults?: number;
|
|
1733
|
+
maxResults?: number | undefined;
|
|
1734
1734
|
/**
|
|
1735
1735
|
* <p>The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge
|
|
1736
1736
|
* base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
@@ -1751,7 +1751,7 @@ export interface ListContentsResponse {
|
|
|
1751
1751
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
|
-
nextToken?: string;
|
|
1754
|
+
nextToken?: string | undefined;
|
|
1755
1755
|
}
|
|
1756
1756
|
/**
|
|
1757
1757
|
* <p>The provided <code>revisionId</code> does not match, indicating the content has been
|
|
@@ -1789,37 +1789,37 @@ export interface UpdateContentRequest {
|
|
|
1789
1789
|
* <code>PreconditionFailedException</code>.</p>
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
revisionId?: string;
|
|
1792
|
+
revisionId?: string | undefined;
|
|
1793
1793
|
/**
|
|
1794
1794
|
* <p>The title of the content.</p>
|
|
1795
1795
|
* @public
|
|
1796
1796
|
*/
|
|
1797
|
-
title?: string;
|
|
1797
|
+
title?: string | undefined;
|
|
1798
1798
|
/**
|
|
1799
1799
|
* <p>The URI for the article. If the knowledge base has a templateUri, setting this argument
|
|
1800
1800
|
* overrides it for this piece of content. To remove an existing <code>overrideLinkOurUri</code>,
|
|
1801
1801
|
* exclude this argument and set <code>removeOverrideLinkOutUri</code> to true.</p>
|
|
1802
1802
|
* @public
|
|
1803
1803
|
*/
|
|
1804
|
-
overrideLinkOutUri?: string;
|
|
1804
|
+
overrideLinkOutUri?: string | undefined;
|
|
1805
1805
|
/**
|
|
1806
1806
|
* <p>Unset the existing <code>overrideLinkOutUri</code> if it exists.</p>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
removeOverrideLinkOutUri?: boolean;
|
|
1809
|
+
removeOverrideLinkOutUri?: boolean | undefined;
|
|
1810
1810
|
/**
|
|
1811
1811
|
* <p>A key/value map to store attributes without affecting tagging or recommendations. For
|
|
1812
1812
|
* example, when synchronizing data between an external system and Wisdom, you can store an
|
|
1813
1813
|
* external version identifier as metadata to utilize for determining drift.</p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
metadata?: Record<string, string
|
|
1816
|
+
metadata?: Record<string, string> | undefined;
|
|
1817
1817
|
/**
|
|
1818
1818
|
* <p>A pointer to the uploaded asset. This value is returned by <a href="https://docs.aws.amazon.com/wisdom/latest/APIReference/API_StartContentUpload.html">StartContentUpload</a>.
|
|
1819
1819
|
* </p>
|
|
1820
1820
|
* @public
|
|
1821
1821
|
*/
|
|
1822
|
-
uploadId?: string;
|
|
1822
|
+
uploadId?: string | undefined;
|
|
1823
1823
|
}
|
|
1824
1824
|
/**
|
|
1825
1825
|
* @public
|
|
@@ -1829,7 +1829,7 @@ export interface UpdateContentResponse {
|
|
|
1829
1829
|
* <p>The content.</p>
|
|
1830
1830
|
* @public
|
|
1831
1831
|
*/
|
|
1832
|
-
content?: ContentData;
|
|
1832
|
+
content?: ContentData | undefined;
|
|
1833
1833
|
}
|
|
1834
1834
|
/**
|
|
1835
1835
|
* @public
|
|
@@ -1873,7 +1873,7 @@ export interface RenderingConfiguration {
|
|
|
1873
1873
|
* <p>The variable is replaced with the actual value for a piece of content when calling <a href="https://docs.aws.amazon.com/wisdom/latest/APIReference/API_GetContent.html">GetContent</a>. </p>
|
|
1874
1874
|
* @public
|
|
1875
1875
|
*/
|
|
1876
|
-
templateUri?: string;
|
|
1876
|
+
templateUri?: string | undefined;
|
|
1877
1877
|
}
|
|
1878
1878
|
/**
|
|
1879
1879
|
* <p>Configuration information about the external data source.</p>
|
|
@@ -1916,7 +1916,7 @@ export interface CreateKnowledgeBaseRequest {
|
|
|
1916
1916
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
1917
1917
|
* @public
|
|
1918
1918
|
*/
|
|
1919
|
-
clientToken?: string;
|
|
1919
|
+
clientToken?: string | undefined;
|
|
1920
1920
|
/**
|
|
1921
1921
|
* <p>The name of the knowledge base.</p>
|
|
1922
1922
|
* @public
|
|
@@ -1934,12 +1934,12 @@ export interface CreateKnowledgeBaseRequest {
|
|
|
1934
1934
|
* bases.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
sourceConfiguration?: SourceConfiguration;
|
|
1937
|
+
sourceConfiguration?: SourceConfiguration | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* <p>Information about how to render the content.</p>
|
|
1940
1940
|
* @public
|
|
1941
1941
|
*/
|
|
1942
|
-
renderingConfiguration?: RenderingConfiguration;
|
|
1942
|
+
renderingConfiguration?: RenderingConfiguration | undefined;
|
|
1943
1943
|
/**
|
|
1944
1944
|
* <p>The configuration information for the customer managed key used for encryption. </p>
|
|
1945
1945
|
* <p>This KMS key must have a policy that allows <code>kms:CreateGrant</code>,
|
|
@@ -1949,17 +1949,17 @@ export interface CreateKnowledgeBaseRequest {
|
|
|
1949
1949
|
* for your instance</a>.</p>
|
|
1950
1950
|
* @public
|
|
1951
1951
|
*/
|
|
1952
|
-
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
1952
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
1953
1953
|
/**
|
|
1954
1954
|
* <p>The description.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
description?: string;
|
|
1957
|
+
description?: string | undefined;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1960
1960
|
* @public
|
|
1961
1961
|
*/
|
|
1962
|
-
tags?: Record<string, string
|
|
1962
|
+
tags?: Record<string, string> | undefined;
|
|
1963
1963
|
}
|
|
1964
1964
|
/**
|
|
1965
1965
|
* @public
|
|
@@ -2013,17 +2013,17 @@ export interface KnowledgeBaseData {
|
|
|
2013
2013
|
* base. If no content exists in a knowledge base, this value is unset.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
lastContentModificationTime?: Date;
|
|
2016
|
+
lastContentModificationTime?: Date | undefined;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* <p>Source configuration information about the knowledge base.</p>
|
|
2019
2019
|
* @public
|
|
2020
2020
|
*/
|
|
2021
|
-
sourceConfiguration?: SourceConfiguration;
|
|
2021
|
+
sourceConfiguration?: SourceConfiguration | undefined;
|
|
2022
2022
|
/**
|
|
2023
2023
|
* <p>Information about how to render the content.</p>
|
|
2024
2024
|
* @public
|
|
2025
2025
|
*/
|
|
2026
|
-
renderingConfiguration?: RenderingConfiguration;
|
|
2026
|
+
renderingConfiguration?: RenderingConfiguration | undefined;
|
|
2027
2027
|
/**
|
|
2028
2028
|
* <p>The configuration information for the customer managed key used for encryption. </p>
|
|
2029
2029
|
* <p>This KMS key must have a policy that allows <code>kms:CreateGrant</code>,
|
|
@@ -2033,17 +2033,17 @@ export interface KnowledgeBaseData {
|
|
|
2033
2033
|
* for your instance</a>.</p>
|
|
2034
2034
|
* @public
|
|
2035
2035
|
*/
|
|
2036
|
-
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
2036
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
2037
2037
|
/**
|
|
2038
2038
|
* <p>The description.</p>
|
|
2039
2039
|
* @public
|
|
2040
2040
|
*/
|
|
2041
|
-
description?: string;
|
|
2041
|
+
description?: string | undefined;
|
|
2042
2042
|
/**
|
|
2043
2043
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2044
2044
|
* @public
|
|
2045
2045
|
*/
|
|
2046
|
-
tags?: Record<string, string
|
|
2046
|
+
tags?: Record<string, string> | undefined;
|
|
2047
2047
|
}
|
|
2048
2048
|
/**
|
|
2049
2049
|
* @public
|
|
@@ -2053,7 +2053,7 @@ export interface CreateKnowledgeBaseResponse {
|
|
|
2053
2053
|
* <p>The knowledge base.</p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
knowledgeBase?: KnowledgeBaseData;
|
|
2056
|
+
knowledgeBase?: KnowledgeBaseData | undefined;
|
|
2057
2057
|
}
|
|
2058
2058
|
/**
|
|
2059
2059
|
* <p>The container of quick response data.</p>
|
|
@@ -2102,7 +2102,7 @@ export interface GroupingConfiguration {
|
|
|
2102
2102
|
* </ul>
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
criteria?: string;
|
|
2105
|
+
criteria?: string | undefined;
|
|
2106
2106
|
/**
|
|
2107
2107
|
* <p>The list of values that define different groups of Wisdom users.</p>
|
|
2108
2108
|
* <ul>
|
|
@@ -2113,7 +2113,7 @@ export interface GroupingConfiguration {
|
|
|
2113
2113
|
* </ul>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
values?: string[];
|
|
2116
|
+
values?: string[] | undefined;
|
|
2117
2117
|
}
|
|
2118
2118
|
/**
|
|
2119
2119
|
* @public
|
|
@@ -2147,34 +2147,34 @@ export interface CreateQuickResponseRequest {
|
|
|
2147
2147
|
* </ul>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
contentType?: string;
|
|
2150
|
+
contentType?: string | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The configuration information of the user groups that the quick response is accessible to.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
groupingConfiguration?: GroupingConfiguration;
|
|
2155
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The description of the quick response.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
description?: string;
|
|
2160
|
+
description?: string | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>The shortcut key of the quick response. The value should be unique across the
|
|
2163
2163
|
* knowledge base.
|
|
2164
2164
|
* </p>
|
|
2165
2165
|
* @public
|
|
2166
2166
|
*/
|
|
2167
|
-
shortcutKey?: string;
|
|
2167
|
+
shortcutKey?: string | undefined;
|
|
2168
2168
|
/**
|
|
2169
2169
|
* <p>Whether the quick response is active.</p>
|
|
2170
2170
|
* @public
|
|
2171
2171
|
*/
|
|
2172
|
-
isActive?: boolean;
|
|
2172
|
+
isActive?: boolean | undefined;
|
|
2173
2173
|
/**
|
|
2174
2174
|
* <p>The Amazon Connect channels this quick response applies to.</p>
|
|
2175
2175
|
* @public
|
|
2176
2176
|
*/
|
|
2177
|
-
channels?: string[];
|
|
2177
|
+
channels?: string[] | undefined;
|
|
2178
2178
|
/**
|
|
2179
2179
|
* <p>The language code value for the language in which the quick response is written. The supported language codes include <code>de_DE</code>, <code>en_US</code>, <code>es_ES</code>,
|
|
2180
2180
|
* <code>fr_FR</code>, <code>id_ID</code>, <code>it_IT</code>, <code>ja_JP</code>, <code>ko_KR</code>, <code>pt_BR</code>,
|
|
@@ -2182,7 +2182,7 @@ export interface CreateQuickResponseRequest {
|
|
|
2182
2182
|
* </p>
|
|
2183
2183
|
* @public
|
|
2184
2184
|
*/
|
|
2185
|
-
language?: string;
|
|
2185
|
+
language?: string | undefined;
|
|
2186
2186
|
/**
|
|
2187
2187
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2188
2188
|
* request. If not provided, the Amazon Web Services
|
|
@@ -2190,12 +2190,12 @@ export interface CreateQuickResponseRequest {
|
|
|
2190
2190
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
clientToken?: string;
|
|
2193
|
+
clientToken?: string | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
tags?: Record<string, string
|
|
2198
|
+
tags?: Record<string, string> | undefined;
|
|
2199
2199
|
}
|
|
2200
2200
|
/**
|
|
2201
2201
|
* <p>The container quick response content.</p>
|
|
@@ -2236,12 +2236,12 @@ export interface QuickResponseContents {
|
|
|
2236
2236
|
* <p>The container quick response content.</p>
|
|
2237
2237
|
* @public
|
|
2238
2238
|
*/
|
|
2239
|
-
plainText?: QuickResponseContentProvider;
|
|
2239
|
+
plainText?: QuickResponseContentProvider | undefined;
|
|
2240
2240
|
/**
|
|
2241
2241
|
* <p>The container quick response content.</p>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
markdown?: QuickResponseContentProvider;
|
|
2244
|
+
markdown?: QuickResponseContentProvider | undefined;
|
|
2245
2245
|
}
|
|
2246
2246
|
/**
|
|
2247
2247
|
* @public
|
|
@@ -2324,48 +2324,48 @@ export interface QuickResponseData {
|
|
|
2324
2324
|
* <p>The contents of the quick response.</p>
|
|
2325
2325
|
* @public
|
|
2326
2326
|
*/
|
|
2327
|
-
contents?: QuickResponseContents;
|
|
2327
|
+
contents?: QuickResponseContents | undefined;
|
|
2328
2328
|
/**
|
|
2329
2329
|
* <p>The description of the quick response.</p>
|
|
2330
2330
|
* @public
|
|
2331
2331
|
*/
|
|
2332
|
-
description?: string;
|
|
2332
|
+
description?: string | undefined;
|
|
2333
2333
|
/**
|
|
2334
2334
|
* <p>The configuration information of the user groups that the quick response is accessible to.</p>
|
|
2335
2335
|
* @public
|
|
2336
2336
|
*/
|
|
2337
|
-
groupingConfiguration?: GroupingConfiguration;
|
|
2337
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
2338
2338
|
/**
|
|
2339
2339
|
* <p>The shortcut key of the quick response. The value should be unique across the
|
|
2340
2340
|
* knowledge base.</p>
|
|
2341
2341
|
* @public
|
|
2342
2342
|
*/
|
|
2343
|
-
shortcutKey?: string;
|
|
2343
|
+
shortcutKey?: string | undefined;
|
|
2344
2344
|
/**
|
|
2345
2345
|
* <p>The Amazon Resource Name (ARN) of the user who last updated the quick response data.</p>
|
|
2346
2346
|
* @public
|
|
2347
2347
|
*/
|
|
2348
|
-
lastModifiedBy?: string;
|
|
2348
|
+
lastModifiedBy?: string | undefined;
|
|
2349
2349
|
/**
|
|
2350
2350
|
* <p>Whether the quick response is active.</p>
|
|
2351
2351
|
* @public
|
|
2352
2352
|
*/
|
|
2353
|
-
isActive?: boolean;
|
|
2353
|
+
isActive?: boolean | undefined;
|
|
2354
2354
|
/**
|
|
2355
2355
|
* <p>The Amazon Connect contact channels this quick response applies to. The supported contact channel types include <code>Chat</code>.</p>
|
|
2356
2356
|
* @public
|
|
2357
2357
|
*/
|
|
2358
|
-
channels?: string[];
|
|
2358
|
+
channels?: string[] | undefined;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* <p>The language code value for the language in which the quick response is written.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
language?: string;
|
|
2363
|
+
language?: string | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
tags?: Record<string, string
|
|
2368
|
+
tags?: Record<string, string> | undefined;
|
|
2369
2369
|
}
|
|
2370
2370
|
/**
|
|
2371
2371
|
* @public
|
|
@@ -2375,7 +2375,7 @@ export interface CreateQuickResponseResponse {
|
|
|
2375
2375
|
* <p>The quick response.</p>
|
|
2376
2376
|
* @public
|
|
2377
2377
|
*/
|
|
2378
|
-
quickResponse?: QuickResponseData;
|
|
2378
|
+
quickResponse?: QuickResponseData | undefined;
|
|
2379
2379
|
}
|
|
2380
2380
|
/**
|
|
2381
2381
|
* @public
|
|
@@ -2548,7 +2548,7 @@ export interface ImportJobData {
|
|
|
2548
2548
|
* <p>The link to donwload the information of resource data that failed to be imported.</p>
|
|
2549
2549
|
* @public
|
|
2550
2550
|
*/
|
|
2551
|
-
failedRecordReport?: string;
|
|
2551
|
+
failedRecordReport?: string | undefined;
|
|
2552
2552
|
/**
|
|
2553
2553
|
* <p>The expiration time of the URL as an epoch timestamp.</p>
|
|
2554
2554
|
* @public
|
|
@@ -2568,12 +2568,12 @@ export interface ImportJobData {
|
|
|
2568
2568
|
* <p>The metadata fields of the imported Wisdom resources.</p>
|
|
2569
2569
|
* @public
|
|
2570
2570
|
*/
|
|
2571
|
-
metadata?: Record<string, string
|
|
2571
|
+
metadata?: Record<string, string> | undefined;
|
|
2572
2572
|
/**
|
|
2573
2573
|
* <p>The configuration information of the external data source.</p>
|
|
2574
2574
|
* @public
|
|
2575
2575
|
*/
|
|
2576
|
-
externalSourceConfiguration?: ExternalSourceConfiguration;
|
|
2576
|
+
externalSourceConfiguration?: ExternalSourceConfiguration | undefined;
|
|
2577
2577
|
}
|
|
2578
2578
|
/**
|
|
2579
2579
|
* @public
|
|
@@ -2583,7 +2583,7 @@ export interface GetImportJobResponse {
|
|
|
2583
2583
|
* <p>The import job.</p>
|
|
2584
2584
|
* @public
|
|
2585
2585
|
*/
|
|
2586
|
-
importJob?: ImportJobData;
|
|
2586
|
+
importJob?: ImportJobData | undefined;
|
|
2587
2587
|
}
|
|
2588
2588
|
/**
|
|
2589
2589
|
* @public
|
|
@@ -2604,7 +2604,7 @@ export interface GetKnowledgeBaseResponse {
|
|
|
2604
2604
|
* <p>The knowledge base.</p>
|
|
2605
2605
|
* @public
|
|
2606
2606
|
*/
|
|
2607
|
-
knowledgeBase?: KnowledgeBaseData;
|
|
2607
|
+
knowledgeBase?: KnowledgeBaseData | undefined;
|
|
2608
2608
|
}
|
|
2609
2609
|
/**
|
|
2610
2610
|
* @public
|
|
@@ -2629,7 +2629,7 @@ export interface GetQuickResponseResponse {
|
|
|
2629
2629
|
* <p>The quick response.</p>
|
|
2630
2630
|
* @public
|
|
2631
2631
|
*/
|
|
2632
|
-
quickResponse?: QuickResponseData;
|
|
2632
|
+
quickResponse?: QuickResponseData | undefined;
|
|
2633
2633
|
}
|
|
2634
2634
|
/**
|
|
2635
2635
|
* <p>Summary information about the import job.</p>
|
|
@@ -2681,12 +2681,12 @@ export interface ImportJobSummary {
|
|
|
2681
2681
|
* <p>The metadata fields of the imported Wisdom resources.</p>
|
|
2682
2682
|
* @public
|
|
2683
2683
|
*/
|
|
2684
|
-
metadata?: Record<string, string
|
|
2684
|
+
metadata?: Record<string, string> | undefined;
|
|
2685
2685
|
/**
|
|
2686
2686
|
* <p>The configuration information of the external source that the resource data are imported from.</p>
|
|
2687
2687
|
* @public
|
|
2688
2688
|
*/
|
|
2689
|
-
externalSourceConfiguration?: ExternalSourceConfiguration;
|
|
2689
|
+
externalSourceConfiguration?: ExternalSourceConfiguration | undefined;
|
|
2690
2690
|
}
|
|
2691
2691
|
/**
|
|
2692
2692
|
* @public
|
|
@@ -2697,12 +2697,12 @@ export interface ListImportJobsRequest {
|
|
|
2697
2697
|
* response in the next request to retrieve the next set of results.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
nextToken?: string;
|
|
2700
|
+
nextToken?: string | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>The maximum number of results to return per page.</p>
|
|
2703
2703
|
* @public
|
|
2704
2704
|
*/
|
|
2705
|
-
maxResults?: number;
|
|
2705
|
+
maxResults?: number | undefined;
|
|
2706
2706
|
/**
|
|
2707
2707
|
* <p>The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge
|
|
2708
2708
|
* base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
@@ -2724,7 +2724,7 @@ export interface ListImportJobsResponse {
|
|
|
2724
2724
|
* response in the next request to retrieve the next set of results.</p>
|
|
2725
2725
|
* @public
|
|
2726
2726
|
*/
|
|
2727
|
-
nextToken?: string;
|
|
2727
|
+
nextToken?: string | undefined;
|
|
2728
2728
|
}
|
|
2729
2729
|
/**
|
|
2730
2730
|
* @public
|
|
@@ -2735,12 +2735,12 @@ export interface ListKnowledgeBasesRequest {
|
|
|
2735
2735
|
* response in the next request to retrieve the next set of results.</p>
|
|
2736
2736
|
* @public
|
|
2737
2737
|
*/
|
|
2738
|
-
nextToken?: string;
|
|
2738
|
+
nextToken?: string | undefined;
|
|
2739
2739
|
/**
|
|
2740
2740
|
* <p>The maximum number of results to return per page.</p>
|
|
2741
2741
|
* @public
|
|
2742
2742
|
*/
|
|
2743
|
-
maxResults?: number;
|
|
2743
|
+
maxResults?: number | undefined;
|
|
2744
2744
|
}
|
|
2745
2745
|
/**
|
|
2746
2746
|
* <p>Summary information about the knowledge base.</p>
|
|
@@ -2777,12 +2777,12 @@ export interface KnowledgeBaseSummary {
|
|
|
2777
2777
|
* <p>Configuration information about the external data source.</p>
|
|
2778
2778
|
* @public
|
|
2779
2779
|
*/
|
|
2780
|
-
sourceConfiguration?: SourceConfiguration;
|
|
2780
|
+
sourceConfiguration?: SourceConfiguration | undefined;
|
|
2781
2781
|
/**
|
|
2782
2782
|
* <p>Information about how to render the content.</p>
|
|
2783
2783
|
* @public
|
|
2784
2784
|
*/
|
|
2785
|
-
renderingConfiguration?: RenderingConfiguration;
|
|
2785
|
+
renderingConfiguration?: RenderingConfiguration | undefined;
|
|
2786
2786
|
/**
|
|
2787
2787
|
* <p>The configuration information for the customer managed key used for encryption. </p>
|
|
2788
2788
|
* <p>This KMS key must have a policy that allows <code>kms:CreateGrant</code>,
|
|
@@ -2792,17 +2792,17 @@ export interface KnowledgeBaseSummary {
|
|
|
2792
2792
|
* for your instance</a>.</p>
|
|
2793
2793
|
* @public
|
|
2794
2794
|
*/
|
|
2795
|
-
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
2795
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
2796
2796
|
/**
|
|
2797
2797
|
* <p>The description of the knowledge base.</p>
|
|
2798
2798
|
* @public
|
|
2799
2799
|
*/
|
|
2800
|
-
description?: string;
|
|
2800
|
+
description?: string | undefined;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2803
2803
|
* @public
|
|
2804
2804
|
*/
|
|
2805
|
-
tags?: Record<string, string
|
|
2805
|
+
tags?: Record<string, string> | undefined;
|
|
2806
2806
|
}
|
|
2807
2807
|
/**
|
|
2808
2808
|
* @public
|
|
@@ -2817,7 +2817,7 @@ export interface ListKnowledgeBasesResponse {
|
|
|
2817
2817
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
2818
2818
|
* @public
|
|
2819
2819
|
*/
|
|
2820
|
-
nextToken?: string;
|
|
2820
|
+
nextToken?: string | undefined;
|
|
2821
2821
|
}
|
|
2822
2822
|
/**
|
|
2823
2823
|
* @public
|
|
@@ -2828,12 +2828,12 @@ export interface ListQuickResponsesRequest {
|
|
|
2828
2828
|
* response in the next request to retrieve the next set of results.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
nextToken?: string;
|
|
2831
|
+
nextToken?: string | undefined;
|
|
2832
2832
|
/**
|
|
2833
2833
|
* <p>The maximum number of results to return per page.</p>
|
|
2834
2834
|
* @public
|
|
2835
2835
|
*/
|
|
2836
|
-
maxResults?: number;
|
|
2836
|
+
maxResults?: number | undefined;
|
|
2837
2837
|
/**
|
|
2838
2838
|
* <p>The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge
|
|
2839
2839
|
* base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
@@ -2904,27 +2904,27 @@ export interface QuickResponseSummary {
|
|
|
2904
2904
|
* <p>The description of the quick response.</p>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
description?: string;
|
|
2907
|
+
description?: string | undefined;
|
|
2908
2908
|
/**
|
|
2909
2909
|
* <p>The Amazon Resource Name (ARN) of the user who last updated the quick response data.</p>
|
|
2910
2910
|
* @public
|
|
2911
2911
|
*/
|
|
2912
|
-
lastModifiedBy?: string;
|
|
2912
|
+
lastModifiedBy?: string | undefined;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* <p>Whether the quick response is active.</p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
isActive?: boolean;
|
|
2917
|
+
isActive?: boolean | undefined;
|
|
2918
2918
|
/**
|
|
2919
2919
|
* <p>The Amazon Connect contact channels this quick response applies to. The supported contact channel types include <code>Chat</code>.</p>
|
|
2920
2920
|
* @public
|
|
2921
2921
|
*/
|
|
2922
|
-
channels?: string[];
|
|
2922
|
+
channels?: string[] | undefined;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2925
2925
|
* @public
|
|
2926
2926
|
*/
|
|
2927
|
-
tags?: Record<string, string
|
|
2927
|
+
tags?: Record<string, string> | undefined;
|
|
2928
2928
|
}
|
|
2929
2929
|
/**
|
|
2930
2930
|
* @public
|
|
@@ -2940,7 +2940,7 @@ export interface ListQuickResponsesResponse {
|
|
|
2940
2940
|
* response in the next request to retrieve the next set of results.</p>
|
|
2941
2941
|
* @public
|
|
2942
2942
|
*/
|
|
2943
|
-
nextToken?: string;
|
|
2943
|
+
nextToken?: string | undefined;
|
|
2944
2944
|
}
|
|
2945
2945
|
/**
|
|
2946
2946
|
* @public
|
|
@@ -2961,12 +2961,12 @@ export interface UpdateQuickResponseRequest {
|
|
|
2961
2961
|
* <p>The name of the quick response.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
name?: string;
|
|
2964
|
+
name?: string | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The updated content of the quick response.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
content?: QuickResponseDataProvider;
|
|
2969
|
+
content?: QuickResponseDataProvider | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>The media type of the quick response content.</p>
|
|
2972
2972
|
* <ul>
|
|
@@ -2979,48 +2979,48 @@ export interface UpdateQuickResponseRequest {
|
|
|
2979
2979
|
* </ul>
|
|
2980
2980
|
* @public
|
|
2981
2981
|
*/
|
|
2982
|
-
contentType?: string;
|
|
2982
|
+
contentType?: string | undefined;
|
|
2983
2983
|
/**
|
|
2984
2984
|
* <p>The updated grouping configuration of the quick response.</p>
|
|
2985
2985
|
* @public
|
|
2986
2986
|
*/
|
|
2987
|
-
groupingConfiguration?: GroupingConfiguration;
|
|
2987
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
2988
2988
|
/**
|
|
2989
2989
|
* <p>Whether to remove the grouping configuration of the quick response.</p>
|
|
2990
2990
|
* @public
|
|
2991
2991
|
*/
|
|
2992
|
-
removeGroupingConfiguration?: boolean;
|
|
2992
|
+
removeGroupingConfiguration?: boolean | undefined;
|
|
2993
2993
|
/**
|
|
2994
2994
|
* <p>The updated description of the quick response.</p>
|
|
2995
2995
|
* @public
|
|
2996
2996
|
*/
|
|
2997
|
-
description?: string;
|
|
2997
|
+
description?: string | undefined;
|
|
2998
2998
|
/**
|
|
2999
2999
|
* <p>Whether to remove the description from the quick response.</p>
|
|
3000
3000
|
* @public
|
|
3001
3001
|
*/
|
|
3002
|
-
removeDescription?: boolean;
|
|
3002
|
+
removeDescription?: boolean | undefined;
|
|
3003
3003
|
/**
|
|
3004
3004
|
* <p>The shortcut key of the quick response. The value should be unique across the
|
|
3005
3005
|
* knowledge base.</p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
shortcutKey?: string;
|
|
3008
|
+
shortcutKey?: string | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p>Whether to remove the shortcut key of the quick response.</p>
|
|
3011
3011
|
* @public
|
|
3012
3012
|
*/
|
|
3013
|
-
removeShortcutKey?: boolean;
|
|
3013
|
+
removeShortcutKey?: boolean | undefined;
|
|
3014
3014
|
/**
|
|
3015
3015
|
* <p>Whether the quick response is active. </p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
isActive?: boolean;
|
|
3018
|
+
isActive?: boolean | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p>The Amazon Connect contact channels this quick response applies to. The supported contact channel types include <code>Chat</code>.</p>
|
|
3021
3021
|
* @public
|
|
3022
3022
|
*/
|
|
3023
|
-
channels?: string[];
|
|
3023
|
+
channels?: string[] | undefined;
|
|
3024
3024
|
/**
|
|
3025
3025
|
* <p>The language code value for the language in which the quick response is written. The supported language codes include <code>de_DE</code>, <code>en_US</code>, <code>es_ES</code>,
|
|
3026
3026
|
* <code>fr_FR</code>, <code>id_ID</code>, <code>it_IT</code>, <code>ja_JP</code>, <code>ko_KR</code>, <code>pt_BR</code>,
|
|
@@ -3028,7 +3028,7 @@ export interface UpdateQuickResponseRequest {
|
|
|
3028
3028
|
* </p>
|
|
3029
3029
|
* @public
|
|
3030
3030
|
*/
|
|
3031
|
-
language?: string;
|
|
3031
|
+
language?: string | undefined;
|
|
3032
3032
|
}
|
|
3033
3033
|
/**
|
|
3034
3034
|
* @public
|
|
@@ -3038,7 +3038,7 @@ export interface UpdateQuickResponseResponse {
|
|
|
3038
3038
|
* <p>The quick response.</p>
|
|
3039
3039
|
* @public
|
|
3040
3040
|
*/
|
|
3041
|
-
quickResponse?: QuickResponseData;
|
|
3041
|
+
quickResponse?: QuickResponseData | undefined;
|
|
3042
3042
|
}
|
|
3043
3043
|
/**
|
|
3044
3044
|
* @public
|
|
@@ -3065,12 +3065,12 @@ export interface SearchContentRequest {
|
|
|
3065
3065
|
* response in the next request to retrieve the next set of results.</p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
nextToken?: string;
|
|
3068
|
+
nextToken?: string | undefined;
|
|
3069
3069
|
/**
|
|
3070
3070
|
* <p>The maximum number of results to return per page.</p>
|
|
3071
3071
|
* @public
|
|
3072
3072
|
*/
|
|
3073
|
-
maxResults?: number;
|
|
3073
|
+
maxResults?: number | undefined;
|
|
3074
3074
|
/**
|
|
3075
3075
|
* <p>The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge
|
|
3076
3076
|
* base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.</p>
|
|
@@ -3096,7 +3096,7 @@ export interface SearchContentResponse {
|
|
|
3096
3096
|
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
3097
3097
|
* @public
|
|
3098
3098
|
*/
|
|
3099
|
-
nextToken?: string;
|
|
3099
|
+
nextToken?: string | undefined;
|
|
3100
3100
|
}
|
|
3101
3101
|
/**
|
|
3102
3102
|
* @public
|
|
@@ -3163,7 +3163,7 @@ export interface QuickResponseFilterField {
|
|
|
3163
3163
|
* <p>The values of attribute field to filter the quick response by.</p>
|
|
3164
3164
|
* @public
|
|
3165
3165
|
*/
|
|
3166
|
-
values?: string[];
|
|
3166
|
+
values?: string[] | undefined;
|
|
3167
3167
|
/**
|
|
3168
3168
|
* <p>The operator to use for filtering.</p>
|
|
3169
3169
|
* @public
|
|
@@ -3173,7 +3173,7 @@ export interface QuickResponseFilterField {
|
|
|
3173
3173
|
* <p>Whether to treat null value as a match for the attribute field.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
includeNoExistence?: boolean;
|
|
3176
|
+
includeNoExistence?: boolean | undefined;
|
|
3177
3177
|
}
|
|
3178
3178
|
/**
|
|
3179
3179
|
* @public
|
|
@@ -3240,7 +3240,7 @@ export interface QuickResponseOrderField {
|
|
|
3240
3240
|
* <p>The order at which the quick responses are sorted by.</p>
|
|
3241
3241
|
* @public
|
|
3242
3242
|
*/
|
|
3243
|
-
order?: Order;
|
|
3243
|
+
order?: Order | undefined;
|
|
3244
3244
|
}
|
|
3245
3245
|
/**
|
|
3246
3246
|
* @public
|
|
@@ -3306,13 +3306,13 @@ export interface QuickResponseQueryField {
|
|
|
3306
3306
|
* <p>Whether the query expects only exact matches on the attribute field values. The results of the query will only include exact matches if this parameter is set to false.</p>
|
|
3307
3307
|
* @public
|
|
3308
3308
|
*/
|
|
3309
|
-
allowFuzziness?: boolean;
|
|
3309
|
+
allowFuzziness?: boolean | undefined;
|
|
3310
3310
|
/**
|
|
3311
3311
|
* <p>The importance of the attribute field when calculating query result relevancy scores.
|
|
3312
3312
|
* The value set for this parameter affects the ordering of search results.</p>
|
|
3313
3313
|
* @public
|
|
3314
3314
|
*/
|
|
3315
|
-
priority?: Priority;
|
|
3315
|
+
priority?: Priority | undefined;
|
|
3316
3316
|
}
|
|
3317
3317
|
/**
|
|
3318
3318
|
* <p>Information about the import job.</p>
|
|
@@ -3323,17 +3323,17 @@ export interface QuickResponseSearchExpression {
|
|
|
3323
3323
|
* <p>The quick response query expressions.</p>
|
|
3324
3324
|
* @public
|
|
3325
3325
|
*/
|
|
3326
|
-
queries?: QuickResponseQueryField[];
|
|
3326
|
+
queries?: QuickResponseQueryField[] | undefined;
|
|
3327
3327
|
/**
|
|
3328
3328
|
* <p>The configuration of filtering rules applied to quick response query results.</p>
|
|
3329
3329
|
* @public
|
|
3330
3330
|
*/
|
|
3331
|
-
filters?: QuickResponseFilterField[];
|
|
3331
|
+
filters?: QuickResponseFilterField[] | undefined;
|
|
3332
3332
|
/**
|
|
3333
3333
|
* <p>The quick response attribute fields on which the query results are ordered.</p>
|
|
3334
3334
|
* @public
|
|
3335
3335
|
*/
|
|
3336
|
-
orderOnField?: QuickResponseOrderField;
|
|
3336
|
+
orderOnField?: QuickResponseOrderField | undefined;
|
|
3337
3337
|
}
|
|
3338
3338
|
/**
|
|
3339
3339
|
* @public
|
|
@@ -3354,17 +3354,17 @@ export interface SearchQuickResponsesRequest {
|
|
|
3354
3354
|
* response in the next request to retrieve the next set of results.</p>
|
|
3355
3355
|
* @public
|
|
3356
3356
|
*/
|
|
3357
|
-
nextToken?: string;
|
|
3357
|
+
nextToken?: string | undefined;
|
|
3358
3358
|
/**
|
|
3359
3359
|
* <p>The maximum number of results to return per page.</p>
|
|
3360
3360
|
* @public
|
|
3361
3361
|
*/
|
|
3362
|
-
maxResults?: number;
|
|
3362
|
+
maxResults?: number | undefined;
|
|
3363
3363
|
/**
|
|
3364
3364
|
* <p>The <a href="https://docs.aws.amazon.com/connect/latest/adminguide/connect-attrib-list.html#user-defined-attributes">user-defined Amazon Connect contact attributes</a> to be resolved when search results are returned.</p>
|
|
3365
3365
|
* @public
|
|
3366
3366
|
*/
|
|
3367
|
-
attributes?: Record<string, string
|
|
3367
|
+
attributes?: Record<string, string> | undefined;
|
|
3368
3368
|
}
|
|
3369
3369
|
/**
|
|
3370
3370
|
* <p>The result of quick response search.</p>
|
|
@@ -3439,48 +3439,48 @@ export interface QuickResponseSearchResultData {
|
|
|
3439
3439
|
* <p>The description of the quick response.</p>
|
|
3440
3440
|
* @public
|
|
3441
3441
|
*/
|
|
3442
|
-
description?: string;
|
|
3442
|
+
description?: string | undefined;
|
|
3443
3443
|
/**
|
|
3444
3444
|
* <p>The configuration information of the user groups that the quick response is accessible to.</p>
|
|
3445
3445
|
* @public
|
|
3446
3446
|
*/
|
|
3447
|
-
groupingConfiguration?: GroupingConfiguration;
|
|
3447
|
+
groupingConfiguration?: GroupingConfiguration | undefined;
|
|
3448
3448
|
/**
|
|
3449
3449
|
* <p>The shortcut key of the quick response. The value should be unique across the
|
|
3450
3450
|
* knowledge base.</p>
|
|
3451
3451
|
* @public
|
|
3452
3452
|
*/
|
|
3453
|
-
shortcutKey?: string;
|
|
3453
|
+
shortcutKey?: string | undefined;
|
|
3454
3454
|
/**
|
|
3455
3455
|
* <p>The Amazon Resource Name (ARN) of the user who last updated the quick response search result data.</p>
|
|
3456
3456
|
* @public
|
|
3457
3457
|
*/
|
|
3458
|
-
lastModifiedBy?: string;
|
|
3458
|
+
lastModifiedBy?: string | undefined;
|
|
3459
3459
|
/**
|
|
3460
3460
|
* <p>The Amazon Connect contact channels this quick response applies to. The supported contact channel types include <code>Chat</code>.</p>
|
|
3461
3461
|
* @public
|
|
3462
3462
|
*/
|
|
3463
|
-
channels?: string[];
|
|
3463
|
+
channels?: string[] | undefined;
|
|
3464
3464
|
/**
|
|
3465
3465
|
* <p>The language code value for the language in which the quick response is written.</p>
|
|
3466
3466
|
* @public
|
|
3467
3467
|
*/
|
|
3468
|
-
language?: string;
|
|
3468
|
+
language?: string | undefined;
|
|
3469
3469
|
/**
|
|
3470
3470
|
* <p>The user defined contact attributes that are not resolved when the search result is returned.</p>
|
|
3471
3471
|
* @public
|
|
3472
3472
|
*/
|
|
3473
|
-
attributesNotInterpolated?: string[];
|
|
3473
|
+
attributesNotInterpolated?: string[] | undefined;
|
|
3474
3474
|
/**
|
|
3475
3475
|
* <p>The user defined contact attributes that are resolved when the search result is returned.</p>
|
|
3476
3476
|
* @public
|
|
3477
3477
|
*/
|
|
3478
|
-
attributesInterpolated?: string[];
|
|
3478
|
+
attributesInterpolated?: string[] | undefined;
|
|
3479
3479
|
/**
|
|
3480
3480
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
tags?: Record<string, string
|
|
3483
|
+
tags?: Record<string, string> | undefined;
|
|
3484
3484
|
}
|
|
3485
3485
|
/**
|
|
3486
3486
|
* @public
|
|
@@ -3496,7 +3496,7 @@ export interface SearchQuickResponsesResponse {
|
|
|
3496
3496
|
* response in the next request to retrieve the next set of results.</p>
|
|
3497
3497
|
* @public
|
|
3498
3498
|
*/
|
|
3499
|
-
nextToken?: string;
|
|
3499
|
+
nextToken?: string | undefined;
|
|
3500
3500
|
}
|
|
3501
3501
|
/**
|
|
3502
3502
|
* @public
|
|
@@ -3517,7 +3517,7 @@ export interface StartContentUploadRequest {
|
|
|
3517
3517
|
* <p>The expected expiration time of the generated presigned URL, specified in minutes.</p>
|
|
3518
3518
|
* @public
|
|
3519
3519
|
*/
|
|
3520
|
-
presignedUrlTimeToLive?: number;
|
|
3520
|
+
presignedUrlTimeToLive?: number | undefined;
|
|
3521
3521
|
}
|
|
3522
3522
|
/**
|
|
3523
3523
|
* @public
|
|
@@ -3578,17 +3578,17 @@ export interface StartImportJobRequest {
|
|
|
3578
3578
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
3579
3579
|
* @public
|
|
3580
3580
|
*/
|
|
3581
|
-
clientToken?: string;
|
|
3581
|
+
clientToken?: string | undefined;
|
|
3582
3582
|
/**
|
|
3583
3583
|
* <p>The metadata fields of the imported Wisdom resources.</p>
|
|
3584
3584
|
* @public
|
|
3585
3585
|
*/
|
|
3586
|
-
metadata?: Record<string, string
|
|
3586
|
+
metadata?: Record<string, string> | undefined;
|
|
3587
3587
|
/**
|
|
3588
3588
|
* <p>The configuration information of the external source that the resource data are imported from.</p>
|
|
3589
3589
|
* @public
|
|
3590
3590
|
*/
|
|
3591
|
-
externalSourceConfiguration?: ExternalSourceConfiguration;
|
|
3591
|
+
externalSourceConfiguration?: ExternalSourceConfiguration | undefined;
|
|
3592
3592
|
}
|
|
3593
3593
|
/**
|
|
3594
3594
|
* @public
|
|
@@ -3598,7 +3598,7 @@ export interface StartImportJobResponse {
|
|
|
3598
3598
|
* <p>The import job.</p>
|
|
3599
3599
|
* @public
|
|
3600
3600
|
*/
|
|
3601
|
-
importJob?: ImportJobData;
|
|
3601
|
+
importJob?: ImportJobData | undefined;
|
|
3602
3602
|
}
|
|
3603
3603
|
/**
|
|
3604
3604
|
* @public
|
|
@@ -3624,7 +3624,7 @@ export interface UpdateKnowledgeBaseTemplateUriResponse {
|
|
|
3624
3624
|
* <p>The knowledge base to update.</p>
|
|
3625
3625
|
* @public
|
|
3626
3626
|
*/
|
|
3627
|
-
knowledgeBase?: KnowledgeBaseData;
|
|
3627
|
+
knowledgeBase?: KnowledgeBaseData | undefined;
|
|
3628
3628
|
}
|
|
3629
3629
|
/**
|
|
3630
3630
|
* @public
|
|
@@ -3644,7 +3644,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3644
3644
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
3645
3645
|
* @public
|
|
3646
3646
|
*/
|
|
3647
|
-
tags?: Record<string, string
|
|
3647
|
+
tags?: Record<string, string> | undefined;
|
|
3648
3648
|
}
|
|
3649
3649
|
/**
|
|
3650
3650
|
* @public
|
|
@@ -3677,7 +3677,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
3677
3677
|
* <p>The specified resource name.</p>
|
|
3678
3678
|
* @public
|
|
3679
3679
|
*/
|
|
3680
|
-
resourceName?: string;
|
|
3680
|
+
resourceName?: string | undefined;
|
|
3681
3681
|
/**
|
|
3682
3682
|
* @internal
|
|
3683
3683
|
*/
|