@aws-sdk/client-qapps 3.863.0 → 3.868.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/README.md +1 -13
- package/dist-types/QApps.d.ts +1 -13
- package/dist-types/QAppsClient.d.ts +1 -13
- package/dist-types/commands/AssociateLibraryItemReviewCommand.d.ts +4 -8
- package/dist-types/commands/AssociateQAppWithUserCommand.d.ts +3 -8
- package/dist-types/commands/BatchCreateCategoryCommand.d.ts +3 -7
- package/dist-types/commands/BatchDeleteCategoryCommand.d.ts +3 -7
- package/dist-types/commands/BatchUpdateCategoryCommand.d.ts +3 -7
- package/dist-types/commands/CreateLibraryItemCommand.d.ts +3 -6
- package/dist-types/commands/CreatePresignedUrlCommand.d.ts +2 -6
- package/dist-types/commands/CreateQAppCommand.d.ts +5 -11
- package/dist-types/commands/DeleteLibraryItemCommand.d.ts +3 -6
- package/dist-types/commands/DeleteQAppCommand.d.ts +2 -4
- package/dist-types/commands/DescribeQAppPermissionsCommand.d.ts +1 -2
- package/dist-types/commands/DisassociateLibraryItemReviewCommand.d.ts +3 -6
- package/dist-types/commands/DisassociateQAppFromUserCommand.d.ts +1 -2
- package/dist-types/commands/ExportQAppSessionDataCommand.d.ts +3 -6
- package/dist-types/commands/GetLibraryItemCommand.d.ts +2 -4
- package/dist-types/commands/GetQAppCommand.d.ts +2 -4
- package/dist-types/commands/GetQAppSessionCommand.d.ts +2 -4
- package/dist-types/commands/GetQAppSessionMetadataCommand.d.ts +2 -4
- package/dist-types/commands/ImportDocumentCommand.d.ts +4 -10
- package/dist-types/commands/ListCategoriesCommand.d.ts +2 -4
- package/dist-types/commands/ListLibraryItemsCommand.d.ts +2 -4
- package/dist-types/commands/ListQAppSessionDataCommand.d.ts +2 -4
- package/dist-types/commands/ListQAppsCommand.d.ts +2 -5
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
- package/dist-types/commands/PredictQAppCommand.d.ts +2 -5
- package/dist-types/commands/StartQAppSessionCommand.d.ts +3 -10
- package/dist-types/commands/StopQAppSessionCommand.d.ts +3 -7
- package/dist-types/commands/TagResourceCommand.d.ts +2 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
- package/dist-types/commands/UpdateLibraryItemCommand.d.ts +2 -4
- package/dist-types/commands/UpdateLibraryItemMetadataCommand.d.ts +2 -4
- package/dist-types/commands/UpdateQAppCommand.d.ts +3 -6
- package/dist-types/commands/UpdateQAppPermissionsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateQAppSessionCommand.d.ts +3 -9
- package/dist-types/commands/UpdateQAppSessionMetadataCommand.d.ts +3 -6
- package/dist-types/index.d.ts +1 -13
- package/dist-types/models/models_0.d.ts +38 -91
- package/package.json +5 -5
|
@@ -135,11 +135,7 @@ export interface FormInputCard {
|
|
|
135
135
|
*/
|
|
136
136
|
metadata: FormInputCardMetadata | undefined;
|
|
137
137
|
/**
|
|
138
|
-
* <p>The compute mode of the form input card. This property determines whether individual
|
|
139
|
-
* participants of a data collection session can submit multiple response or one response. A
|
|
140
|
-
* compute mode of <code>append</code> shall allow participants to submit the same form multiple
|
|
141
|
-
* times with different values. A compute mode of <code>replace</code>code> shall overwrite the
|
|
142
|
-
* current value for each participant.</p>
|
|
138
|
+
* <p>The compute mode of the form input card. This property determines whether individual participants of a data collection session can submit multiple response or one response. A compute mode of <code>append</code> shall allow participants to submit the same form multiple times with different values. A compute mode of <code>replace</code>code> shall overwrite the current value for each participant.</p>
|
|
143
139
|
* @public
|
|
144
140
|
*/
|
|
145
141
|
computeMode?: InputCardComputeMode | undefined;
|
|
@@ -217,8 +213,7 @@ export interface QPluginCard {
|
|
|
217
213
|
actionIdentifier?: string | undefined;
|
|
218
214
|
}
|
|
219
215
|
/**
|
|
220
|
-
* <p>The value of a document attribute. You can only provide one value for a document
|
|
221
|
-
* attribute.</p>
|
|
216
|
+
* <p>The value of a document attribute. You can only provide one value for a document attribute.</p>
|
|
222
217
|
* @public
|
|
223
218
|
*/
|
|
224
219
|
export type DocumentAttributeValue = DocumentAttributeValue.DateValueMember | DocumentAttributeValue.LongValueMember | DocumentAttributeValue.StringListValueMember | DocumentAttributeValue.StringValueMember | DocumentAttributeValue.$UnknownMember;
|
|
@@ -260,11 +255,7 @@ export declare namespace DocumentAttributeValue {
|
|
|
260
255
|
$unknown?: never;
|
|
261
256
|
}
|
|
262
257
|
/**
|
|
263
|
-
* <p>A date expressed as an ISO 8601 string.</p>
|
|
264
|
-
* <p>It's important for the time zone to be included in the <i>ISO 8601
|
|
265
|
-
* date-time</i> format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601
|
|
266
|
-
* date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
|
|
267
|
-
* </p>
|
|
258
|
+
* <p>A date expressed as an ISO 8601 string.</p> <p>It's important for the time zone to be included in the <i>ISO 8601 date-time</i> format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time. </p>
|
|
268
259
|
* @public
|
|
269
260
|
*/
|
|
270
261
|
interface DateValueMember {
|
|
@@ -358,9 +349,7 @@ export interface TextInputCard {
|
|
|
358
349
|
defaultValue?: string | undefined;
|
|
359
350
|
}
|
|
360
351
|
/**
|
|
361
|
-
* <p>Represents a file upload card. It can optionally receive a <code>filename</code> and
|
|
362
|
-
* <code>fileId</code> to set a default file. If not received, the user must provide the file
|
|
363
|
-
* when the Q App runs.</p>
|
|
352
|
+
* <p>Represents a file upload card. It can optionally receive a <code>filename</code> and <code>fileId</code> to set a default file. If not received, the user must provide the file when the Q App runs.</p>
|
|
364
353
|
* @public
|
|
365
354
|
*/
|
|
366
355
|
export interface FileUploadCardInput {
|
|
@@ -421,11 +410,7 @@ export interface FormInputCardInput {
|
|
|
421
410
|
*/
|
|
422
411
|
metadata: FormInputCardMetadata | undefined;
|
|
423
412
|
/**
|
|
424
|
-
* <p>The compute mode of the form input card. This property determines whether individual
|
|
425
|
-
* participants of a data collection session can submit multiple response or one response. A
|
|
426
|
-
* compute mode of <code>append</code> shall allow participants to submit the same form multiple
|
|
427
|
-
* times with different values. A compute mode of <code>replace</code>code> shall overwrite the
|
|
428
|
-
* current value for each participant.</p>
|
|
413
|
+
* <p>The compute mode of the form input card. This property determines whether individual participants of a data collection session can submit multiple response or one response. A compute mode of <code>append</code> shall allow participants to submit the same form multiple times with different values. A compute mode of <code>replace</code>code> shall overwrite the current value for each participant.</p>
|
|
429
414
|
* @public
|
|
430
415
|
*/
|
|
431
416
|
computeMode?: InputCardComputeMode | undefined;
|
|
@@ -540,8 +525,7 @@ export interface AssociateLibraryItemReviewInput {
|
|
|
540
525
|
libraryItemId: string | undefined;
|
|
541
526
|
}
|
|
542
527
|
/**
|
|
543
|
-
* <p>The requested operation could not be completed due to a conflict with the current state of
|
|
544
|
-
* the resource.</p>
|
|
528
|
+
* <p>The requested operation could not be completed due to a conflict with the current state of the resource.</p>
|
|
545
529
|
* @public
|
|
546
530
|
*/
|
|
547
531
|
export declare class ConflictException extends __BaseException {
|
|
@@ -603,8 +587,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
603
587
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
604
588
|
}
|
|
605
589
|
/**
|
|
606
|
-
* <p>The requested operation could not be completed because it would exceed the service's quota
|
|
607
|
-
* or limit.</p>
|
|
590
|
+
* <p>The requested operation could not be completed because it would exceed the service's quota or limit.</p>
|
|
608
591
|
* @public
|
|
609
592
|
*/
|
|
610
593
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -636,8 +619,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
636
619
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
637
620
|
}
|
|
638
621
|
/**
|
|
639
|
-
* <p>The requested operation could not be completed because too many requests were sent at
|
|
640
|
-
* once. Wait a bit and try again later.</p>
|
|
622
|
+
* <p>The requested operation could not be completed because too many requests were sent at once. Wait a bit and try again later.</p>
|
|
641
623
|
* @public
|
|
642
624
|
*/
|
|
643
625
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -711,8 +693,7 @@ export interface AssociateQAppWithUserInput {
|
|
|
711
693
|
*/
|
|
712
694
|
export interface BatchCreateCategoryInputCategory {
|
|
713
695
|
/**
|
|
714
|
-
* <p>The unique identifier to be associated with a category. If you don't include a value, the
|
|
715
|
-
* category is automatically assigned a unique identifier.</p>
|
|
696
|
+
* <p>The unique identifier to be associated with a category. If you don't include a value, the category is automatically assigned a unique identifier.</p>
|
|
716
697
|
* @public
|
|
717
698
|
*/
|
|
718
699
|
id?: string | undefined;
|
|
@@ -722,8 +703,7 @@ export interface BatchCreateCategoryInputCategory {
|
|
|
722
703
|
*/
|
|
723
704
|
title: string | undefined;
|
|
724
705
|
/**
|
|
725
|
-
* <p>The color to be associated with a category. The color must be a hexadecimal value of
|
|
726
|
-
* either 3 or 6 digits.</p>
|
|
706
|
+
* <p>The color to be associated with a category. The color must be a hexadecimal value of either 3 or 6 digits.</p>
|
|
727
707
|
* @public
|
|
728
708
|
*/
|
|
729
709
|
color?: string | undefined;
|
|
@@ -759,8 +739,7 @@ export interface BatchDeleteCategoryInput {
|
|
|
759
739
|
categories: string[] | undefined;
|
|
760
740
|
}
|
|
761
741
|
/**
|
|
762
|
-
* <p>A label that web experience users associate with a library item. Web experience users use
|
|
763
|
-
* Categories to tag and filter library items.</p>
|
|
742
|
+
* <p>A label that web experience users associate with a library item. Web experience users use Categories to tag and filter library items.</p>
|
|
764
743
|
* @public
|
|
765
744
|
*/
|
|
766
745
|
export interface CategoryInput {
|
|
@@ -775,8 +754,7 @@ export interface CategoryInput {
|
|
|
775
754
|
*/
|
|
776
755
|
title: string | undefined;
|
|
777
756
|
/**
|
|
778
|
-
* <p>The color of the category, represented as a hexadecimal value of either 3 or 6
|
|
779
|
-
* digits.</p>
|
|
757
|
+
* <p>The color of the category, represented as a hexadecimal value of either 3 or 6 digits.</p>
|
|
780
758
|
* @public
|
|
781
759
|
*/
|
|
782
760
|
color?: string | undefined;
|
|
@@ -897,8 +875,7 @@ export interface CardValue {
|
|
|
897
875
|
*/
|
|
898
876
|
value: string | undefined;
|
|
899
877
|
/**
|
|
900
|
-
* <p>The structure that describes how the current form card value is mutated. Only applies for
|
|
901
|
-
* form cards when multiple responses are allowed.</p>
|
|
878
|
+
* <p>The structure that describes how the current form card value is mutated. Only applies for form cards when multiple responses are allowed.</p>
|
|
902
879
|
* @public
|
|
903
880
|
*/
|
|
904
881
|
submissionMutation?: SubmissionMutation | undefined;
|
|
@@ -930,8 +907,7 @@ export interface Category {
|
|
|
930
907
|
appCount?: number | undefined;
|
|
931
908
|
}
|
|
932
909
|
/**
|
|
933
|
-
* <p>The requested operation could not be completed because the content exceeds the maximum
|
|
934
|
-
* allowed size.</p>
|
|
910
|
+
* <p>The requested operation could not be completed because the content exceeds the maximum allowed size.</p>
|
|
935
911
|
* @public
|
|
936
912
|
*/
|
|
937
913
|
export declare class ContentTooLargeException extends __BaseException {
|
|
@@ -1092,14 +1068,12 @@ export interface CreatePresignedUrlInput {
|
|
|
1092
1068
|
*/
|
|
1093
1069
|
fileName: string | undefined;
|
|
1094
1070
|
/**
|
|
1095
|
-
* <p>Whether the file is associated with a Q App definition or a specific Q App
|
|
1096
|
-
* session.</p>
|
|
1071
|
+
* <p>Whether the file is associated with a Q App definition or a specific Q App session.</p>
|
|
1097
1072
|
* @public
|
|
1098
1073
|
*/
|
|
1099
1074
|
scope: DocumentScope | undefined;
|
|
1100
1075
|
/**
|
|
1101
|
-
* <p>The unique identifier of the Q App session the file is associated with, if
|
|
1102
|
-
* applicable.</p>
|
|
1076
|
+
* <p>The unique identifier of the Q App session the file is associated with, if applicable.</p>
|
|
1103
1077
|
* @public
|
|
1104
1078
|
*/
|
|
1105
1079
|
sessionId?: string | undefined;
|
|
@@ -1119,8 +1093,7 @@ export interface CreatePresignedUrlOutput {
|
|
|
1119
1093
|
*/
|
|
1120
1094
|
presignedUrl: string | undefined;
|
|
1121
1095
|
/**
|
|
1122
|
-
* <p>The form fields to include in the presigned S3 POST operation used to upload a
|
|
1123
|
-
* file.</p>
|
|
1096
|
+
* <p>The form fields to include in the presigned S3 POST operation used to upload a file.</p>
|
|
1124
1097
|
* @public
|
|
1125
1098
|
*/
|
|
1126
1099
|
presignedUrlFields: Record<string, string> | undefined;
|
|
@@ -1190,8 +1163,7 @@ export interface CreateQAppOutput {
|
|
|
1190
1163
|
*/
|
|
1191
1164
|
updatedBy: string | undefined;
|
|
1192
1165
|
/**
|
|
1193
|
-
* <p>The capabilities required to run the Q App, such as file upload or third-party
|
|
1194
|
-
* integrations.</p>
|
|
1166
|
+
* <p>The capabilities required to run the Q App, such as file upload or third-party integrations.</p>
|
|
1195
1167
|
* @public
|
|
1196
1168
|
*/
|
|
1197
1169
|
requiredCapabilities?: AppRequiredCapability[] | undefined;
|
|
@@ -1295,8 +1267,7 @@ export interface PermissionOutput {
|
|
|
1295
1267
|
*/
|
|
1296
1268
|
export interface DescribeQAppPermissionsOutput {
|
|
1297
1269
|
/**
|
|
1298
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions are
|
|
1299
|
-
* returned.</p>
|
|
1270
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions are returned.</p>
|
|
1300
1271
|
* @public
|
|
1301
1272
|
*/
|
|
1302
1273
|
resourceArn?: string | undefined;
|
|
@@ -1541,8 +1512,7 @@ export interface GetQAppSessionOutput {
|
|
|
1541
1512
|
*/
|
|
1542
1513
|
cardStatus: Record<string, CardStatus> | undefined;
|
|
1543
1514
|
/**
|
|
1544
|
-
* <p>Indicates whether the current user is the owner of the Q App data collection
|
|
1545
|
-
* session.</p>
|
|
1515
|
+
* <p>Indicates whether the current user is the owner of the Q App data collection session.</p>
|
|
1546
1516
|
* @public
|
|
1547
1517
|
*/
|
|
1548
1518
|
userIsHost?: boolean | undefined;
|
|
@@ -1578,8 +1548,7 @@ export interface SessionSharingConfiguration {
|
|
|
1578
1548
|
*/
|
|
1579
1549
|
acceptResponses?: boolean | undefined;
|
|
1580
1550
|
/**
|
|
1581
|
-
* <p>Indicates whether collected responses for an Q App session are revealed for all
|
|
1582
|
-
* users.</p>
|
|
1551
|
+
* <p>Indicates whether collected responses for an Q App session are revealed for all users.</p>
|
|
1583
1552
|
* @public
|
|
1584
1553
|
*/
|
|
1585
1554
|
revealCards?: boolean | undefined;
|
|
@@ -1644,14 +1613,12 @@ export interface ImportDocumentInput {
|
|
|
1644
1613
|
*/
|
|
1645
1614
|
fileName: string | undefined;
|
|
1646
1615
|
/**
|
|
1647
|
-
* <p>Whether the file is associated with a Q App definition or a specific Q App
|
|
1648
|
-
* session.</p>
|
|
1616
|
+
* <p>Whether the file is associated with a Q App definition or a specific Q App session.</p>
|
|
1649
1617
|
* @public
|
|
1650
1618
|
*/
|
|
1651
1619
|
scope: DocumentScope | undefined;
|
|
1652
1620
|
/**
|
|
1653
|
-
* <p>The unique identifier of the Q App session the file is associated with, if
|
|
1654
|
-
* applicable.</p>
|
|
1621
|
+
* <p>The unique identifier of the Q App session the file is associated with, if applicable.</p>
|
|
1655
1622
|
* @public
|
|
1656
1623
|
*/
|
|
1657
1624
|
sessionId?: string | undefined;
|
|
@@ -1667,8 +1634,7 @@ export interface ImportDocumentOutput {
|
|
|
1667
1634
|
fileId?: string | undefined;
|
|
1668
1635
|
}
|
|
1669
1636
|
/**
|
|
1670
|
-
* <p>A library item is a snapshot of an Amazon Q App that can be published so the users in their
|
|
1671
|
-
* Amazon Q Apps library can discover it, clone it, and run it.</p>
|
|
1637
|
+
* <p>A library item is a snapshot of an Amazon Q App that can be published so the users in their Amazon Q Apps library can discover it, clone it, and run it.</p>
|
|
1672
1638
|
* @public
|
|
1673
1639
|
*/
|
|
1674
1640
|
export interface LibraryItemMember {
|
|
@@ -1918,8 +1884,7 @@ export interface User {
|
|
|
1918
1884
|
userId?: string | undefined;
|
|
1919
1885
|
}
|
|
1920
1886
|
/**
|
|
1921
|
-
* <p>The response collected for a Amazon Q App session. This container represents a single
|
|
1922
|
-
* response to a Q App session.</p>
|
|
1887
|
+
* <p>The response collected for a Amazon Q App session. This container represents a single response to a Q App session.</p>
|
|
1923
1888
|
* @public
|
|
1924
1889
|
*/
|
|
1925
1890
|
export interface QAppSessionData {
|
|
@@ -2062,8 +2027,7 @@ export interface PredictQAppInput {
|
|
|
2062
2027
|
*/
|
|
2063
2028
|
instanceId: string | undefined;
|
|
2064
2029
|
/**
|
|
2065
|
-
* <p>The input to generate the Q App definition from, either a conversation or problem
|
|
2066
|
-
* statement.</p>
|
|
2030
|
+
* <p>The input to generate the Q App definition from, either a conversation or problem statement.</p>
|
|
2067
2031
|
* @public
|
|
2068
2032
|
*/
|
|
2069
2033
|
options?: PredictQAppInputOptions | undefined;
|
|
@@ -2383,8 +2347,7 @@ export interface UpdateQAppPermissionsInput {
|
|
|
2383
2347
|
*/
|
|
2384
2348
|
export interface UpdateQAppPermissionsOutput {
|
|
2385
2349
|
/**
|
|
2386
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions were
|
|
2387
|
-
* updated.</p>
|
|
2350
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Q App for which permissions were updated.</p>
|
|
2388
2351
|
* @public
|
|
2389
2352
|
*/
|
|
2390
2353
|
resourceArn?: string | undefined;
|
|
@@ -2485,8 +2448,7 @@ export interface UpdateQAppSessionMetadataOutput {
|
|
|
2485
2448
|
sharingConfiguration: SessionSharingConfiguration | undefined;
|
|
2486
2449
|
}
|
|
2487
2450
|
/**
|
|
2488
|
-
* <p>The filter criteria used on responses based on document attributes or metadata
|
|
2489
|
-
* fields.</p>
|
|
2451
|
+
* <p>The filter criteria used on responses based on document attributes or metadata fields.</p>
|
|
2490
2452
|
* @public
|
|
2491
2453
|
*/
|
|
2492
2454
|
export interface AttributeFilter {
|
|
@@ -2506,49 +2468,37 @@ export interface AttributeFilter {
|
|
|
2506
2468
|
*/
|
|
2507
2469
|
notFilter?: AttributeFilter | undefined;
|
|
2508
2470
|
/**
|
|
2509
|
-
* <p>Performs an <i>equals</i> operation on two document attributes or metadata
|
|
2510
|
-
* fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>, <code>longValue</code>,
|
|
2511
|
-
* <code>stringListValue</code> and <code>stringValue</code>.</p>
|
|
2471
|
+
* <p>Performs an <i>equals</i> operation on two document attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code>, <code>longValue</code>, <code>stringListValue</code> and <code>stringValue</code>.</p>
|
|
2512
2472
|
* @public
|
|
2513
2473
|
*/
|
|
2514
2474
|
equalsTo?: DocumentAttribute | undefined;
|
|
2515
2475
|
/**
|
|
2516
|
-
* <p>Returns <code>true</code> when a document contains all the specified document attributes
|
|
2517
|
-
* or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>stringListValue</code>.</p>
|
|
2476
|
+
* <p>Returns <code>true</code> when a document contains all the specified document attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>stringListValue</code>.</p>
|
|
2518
2477
|
* @public
|
|
2519
2478
|
*/
|
|
2520
2479
|
containsAll?: DocumentAttribute | undefined;
|
|
2521
2480
|
/**
|
|
2522
|
-
* <p>Returns <code>true</code> when a document contains any of the specified document
|
|
2523
|
-
* attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>stringListValue</code>.</p>
|
|
2481
|
+
* <p>Returns <code>true</code> when a document contains any of the specified document attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>stringListValue</code>.</p>
|
|
2524
2482
|
* @public
|
|
2525
2483
|
*/
|
|
2526
2484
|
containsAny?: DocumentAttribute | undefined;
|
|
2527
2485
|
/**
|
|
2528
|
-
* <p>Performs a <i>greater than</i> operation on two document attributes or
|
|
2529
|
-
* metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and
|
|
2530
|
-
* <code>longValue</code>.</p>
|
|
2486
|
+
* <p>Performs a <i>greater than</i> operation on two document attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and <code>longValue</code>.</p>
|
|
2531
2487
|
* @public
|
|
2532
2488
|
*/
|
|
2533
2489
|
greaterThan?: DocumentAttribute | undefined;
|
|
2534
2490
|
/**
|
|
2535
|
-
* <p>Performs a <i>greater than or equals</i> operation on two document
|
|
2536
|
-
* attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and <code>longValue</code>.
|
|
2537
|
-
* </p>
|
|
2491
|
+
* <p>Performs a <i>greater than or equals</i> operation on two document attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and <code>longValue</code>. </p>
|
|
2538
2492
|
* @public
|
|
2539
2493
|
*/
|
|
2540
2494
|
greaterThanOrEquals?: DocumentAttribute | undefined;
|
|
2541
2495
|
/**
|
|
2542
|
-
* <p>Performs a <i>less than</i> operation on two document attributes or metadata
|
|
2543
|
-
* fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and
|
|
2544
|
-
* <code>longValue</code>.</p>
|
|
2496
|
+
* <p>Performs a <i>less than</i> operation on two document attributes or metadata fields. Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value types</a>: <code>dateValue</code> and <code>longValue</code>.</p>
|
|
2545
2497
|
* @public
|
|
2546
2498
|
*/
|
|
2547
2499
|
lessThan?: DocumentAttribute | undefined;
|
|
2548
2500
|
/**
|
|
2549
|
-
* <p>Performs a <i>less than or equals</i> operation on two document attributes
|
|
2550
|
-
* or metadata fields.Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value type</a>: <code>dateValue</code> and <code>longValue</code>.
|
|
2551
|
-
* </p>
|
|
2501
|
+
* <p>Performs a <i>less than or equals</i> operation on two document attributes or metadata fields.Supported for the following <a href="https://docs.aws.amazon.com/amazonq/latest/api-reference/API_DocumentAttributeValue.html">document attribute value type</a>: <code>dateValue</code> and <code>longValue</code>. </p>
|
|
2552
2502
|
* @public
|
|
2553
2503
|
*/
|
|
2554
2504
|
lessThanOrEquals?: DocumentAttribute | undefined;
|
|
@@ -2594,8 +2544,7 @@ export interface QQueryCard {
|
|
|
2594
2544
|
*/
|
|
2595
2545
|
attributeFilter?: AttributeFilter | undefined;
|
|
2596
2546
|
/**
|
|
2597
|
-
* <p>Any dependencies for the query card, where the dependencies are references to the
|
|
2598
|
-
* collected responses.</p>
|
|
2547
|
+
* <p>Any dependencies for the query card, where the dependencies are references to the collected responses.</p>
|
|
2599
2548
|
* @public
|
|
2600
2549
|
*/
|
|
2601
2550
|
memoryReferences?: string[] | undefined;
|
|
@@ -2943,8 +2892,7 @@ export interface GetQAppOutput {
|
|
|
2943
2892
|
*/
|
|
2944
2893
|
updatedBy: string | undefined;
|
|
2945
2894
|
/**
|
|
2946
|
-
* <p>The capabilities required to run the Q App, such as file upload or third-party
|
|
2947
|
-
* integrations.</p>
|
|
2895
|
+
* <p>The capabilities required to run the Q App, such as file upload or third-party integrations.</p>
|
|
2948
2896
|
* @public
|
|
2949
2897
|
*/
|
|
2950
2898
|
requiredCapabilities?: AppRequiredCapability[] | undefined;
|
|
@@ -2955,8 +2903,7 @@ export interface GetQAppOutput {
|
|
|
2955
2903
|
appDefinition: AppDefinition | undefined;
|
|
2956
2904
|
}
|
|
2957
2905
|
/**
|
|
2958
|
-
* <p>The definition of an Amazon Q App generated based on input such as a conversation or problem
|
|
2959
|
-
* statement.</p>
|
|
2906
|
+
* <p>The definition of an Amazon Q App generated based on input such as a conversation or problem statement.</p>
|
|
2960
2907
|
* @public
|
|
2961
2908
|
*/
|
|
2962
2909
|
export interface PredictAppDefinition {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-qapps",
|
|
3
3
|
"description": "AWS SDK for JavaScript Qapps Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.868.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",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.864.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.864.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.862.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.862.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.862.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.864.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.862.0",
|
|
30
30
|
"@aws-sdk/types": "3.862.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.862.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.862.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.864.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.5",
|
|
35
35
|
"@smithy/core": "^3.8.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.1",
|