@aws-sdk/client-cleanrooms 3.935.0 → 3.939.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-cjs/index.js +113 -0
- package/dist-es/models/enums.js +97 -0
- package/dist-es/models/models_0.js +1 -82
- package/dist-es/models/models_1.js +1 -15
- package/dist-types/models/enums.d.ts +225 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +294 -187
- package/dist-types/models/models_1.d.ts +2 -334
- package/dist-types/ts3.4/models/enums.d.ts +125 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +143 -104
- package/dist-types/ts3.4/models/models_1.d.ts +8 -157
- package/package.json +12 -12
|
@@ -24,6 +24,17 @@ export declare const AccessBudgetType: {
|
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
26
|
export type AccessBudgetType = (typeof AccessBudgetType)[keyof typeof AccessBudgetType];
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* @enum
|
|
30
|
+
*/
|
|
31
|
+
export declare const AccessDeniedExceptionReason: {
|
|
32
|
+
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
27
38
|
/**
|
|
28
39
|
* @public
|
|
29
40
|
* @enum
|
|
@@ -37,6 +48,32 @@ export declare const AdditionalAnalyses: {
|
|
|
37
48
|
* @public
|
|
38
49
|
*/
|
|
39
50
|
export type AdditionalAnalyses = (typeof AdditionalAnalyses)[keyof typeof AdditionalAnalyses];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const AggregateFunctionName: {
|
|
56
|
+
readonly AVG: "AVG";
|
|
57
|
+
readonly COUNT: "COUNT";
|
|
58
|
+
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
59
|
+
readonly SUM: "SUM";
|
|
60
|
+
readonly SUM_DISTINCT: "SUM_DISTINCT";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type AggregateFunctionName = (typeof AggregateFunctionName)[keyof typeof AggregateFunctionName];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @enum
|
|
69
|
+
*/
|
|
70
|
+
export declare const AggregationType: {
|
|
71
|
+
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export type AggregationType = (typeof AggregationType)[keyof typeof AggregationType];
|
|
40
77
|
/**
|
|
41
78
|
* @public
|
|
42
79
|
* @enum
|
|
@@ -143,6 +180,63 @@ export declare const ParameterType: {
|
|
|
143
180
|
* @public
|
|
144
181
|
*/
|
|
145
182
|
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* @enum
|
|
186
|
+
*/
|
|
187
|
+
export declare const JoinOperator: {
|
|
188
|
+
readonly AND: "AND";
|
|
189
|
+
readonly OR: "OR";
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export type JoinOperator = (typeof JoinOperator)[keyof typeof JoinOperator];
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
* @enum
|
|
198
|
+
*/
|
|
199
|
+
export declare const JoinRequiredOption: {
|
|
200
|
+
readonly QUERY_RUNNER: "QUERY_RUNNER";
|
|
201
|
+
};
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
export type JoinRequiredOption = (typeof JoinRequiredOption)[keyof typeof JoinRequiredOption];
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
* @enum
|
|
209
|
+
*/
|
|
210
|
+
export declare const ScalarFunctions: {
|
|
211
|
+
readonly ABS: "ABS";
|
|
212
|
+
readonly CAST: "CAST";
|
|
213
|
+
readonly CEILING: "CEILING";
|
|
214
|
+
readonly COALESCE: "COALESCE";
|
|
215
|
+
readonly CONVERT: "CONVERT";
|
|
216
|
+
readonly CURRENT_DATE: "CURRENT_DATE";
|
|
217
|
+
readonly DATEADD: "DATEADD";
|
|
218
|
+
readonly EXTRACT: "EXTRACT";
|
|
219
|
+
readonly FLOOR: "FLOOR";
|
|
220
|
+
readonly GETDATE: "GETDATE";
|
|
221
|
+
readonly LN: "LN";
|
|
222
|
+
readonly LOG: "LOG";
|
|
223
|
+
readonly LOWER: "LOWER";
|
|
224
|
+
readonly ROUND: "ROUND";
|
|
225
|
+
readonly RTRIM: "RTRIM";
|
|
226
|
+
readonly SQRT: "SQRT";
|
|
227
|
+
readonly SUBSTRING: "SUBSTRING";
|
|
228
|
+
readonly TO_CHAR: "TO_CHAR";
|
|
229
|
+
readonly TO_DATE: "TO_DATE";
|
|
230
|
+
readonly TO_NUMBER: "TO_NUMBER";
|
|
231
|
+
readonly TO_TIMESTAMP: "TO_TIMESTAMP";
|
|
232
|
+
readonly TRIM: "TRIM";
|
|
233
|
+
readonly TRUNC: "TRUNC";
|
|
234
|
+
readonly UPPER: "UPPER";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type ScalarFunctions = (typeof ScalarFunctions)[keyof typeof ScalarFunctions];
|
|
146
240
|
/**
|
|
147
241
|
* @public
|
|
148
242
|
* @enum
|
|
@@ -192,6 +286,47 @@ export declare const AnalysisTemplateValidationType: {
|
|
|
192
286
|
* @public
|
|
193
287
|
*/
|
|
194
288
|
export type AnalysisTemplateValidationType = (typeof AnalysisTemplateValidationType)[keyof typeof AnalysisTemplateValidationType];
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
* @enum
|
|
292
|
+
*/
|
|
293
|
+
export declare const ConflictExceptionReason: {
|
|
294
|
+
readonly ALREADY_EXISTS: "ALREADY_EXISTS";
|
|
295
|
+
readonly INVALID_STATE: "INVALID_STATE";
|
|
296
|
+
readonly SUBRESOURCES_EXIST: "SUBRESOURCES_EXIST";
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
301
|
+
export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
* @enum
|
|
305
|
+
*/
|
|
306
|
+
export declare const ResourceType: {
|
|
307
|
+
readonly COLLABORATION: "COLLABORATION";
|
|
308
|
+
readonly CONFIGURED_TABLE: "CONFIGURED_TABLE";
|
|
309
|
+
readonly CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION";
|
|
310
|
+
readonly MEMBERSHIP: "MEMBERSHIP";
|
|
311
|
+
};
|
|
312
|
+
/**
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
316
|
+
/**
|
|
317
|
+
* @public
|
|
318
|
+
* @enum
|
|
319
|
+
*/
|
|
320
|
+
export declare const ValidationExceptionReason: {
|
|
321
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
322
|
+
readonly IAM_SYNCHRONIZATION_DELAY: "IAM_SYNCHRONIZATION_DELAY";
|
|
323
|
+
readonly INVALID_CONFIGURATION: "INVALID_CONFIGURATION";
|
|
324
|
+
readonly INVALID_QUERY: "INVALID_QUERY";
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
329
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
195
330
|
/**
|
|
196
331
|
* @public
|
|
197
332
|
* @enum
|
|
@@ -399,6 +534,20 @@ export declare const CollaborationQueryLogStatus: {
|
|
|
399
534
|
* @public
|
|
400
535
|
*/
|
|
401
536
|
export type CollaborationQueryLogStatus = (typeof CollaborationQueryLogStatus)[keyof typeof CollaborationQueryLogStatus];
|
|
537
|
+
/**
|
|
538
|
+
* @public
|
|
539
|
+
* @enum
|
|
540
|
+
*/
|
|
541
|
+
export declare const MemberStatus: {
|
|
542
|
+
readonly ACTIVE: "ACTIVE";
|
|
543
|
+
readonly INVITED: "INVITED";
|
|
544
|
+
readonly LEFT: "LEFT";
|
|
545
|
+
readonly REMOVED: "REMOVED";
|
|
546
|
+
};
|
|
547
|
+
/**
|
|
548
|
+
* @public
|
|
549
|
+
*/
|
|
550
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
402
551
|
/**
|
|
403
552
|
* @public
|
|
404
553
|
* @enum
|
|
@@ -475,6 +624,18 @@ export declare const DifferentialPrivacyAggregationType: {
|
|
|
475
624
|
* @public
|
|
476
625
|
*/
|
|
477
626
|
export type DifferentialPrivacyAggregationType = (typeof DifferentialPrivacyAggregationType)[keyof typeof DifferentialPrivacyAggregationType];
|
|
627
|
+
/**
|
|
628
|
+
* @public
|
|
629
|
+
* @enum
|
|
630
|
+
*/
|
|
631
|
+
export declare const FilterableMemberStatus: {
|
|
632
|
+
readonly ACTIVE: "ACTIVE";
|
|
633
|
+
readonly INVITED: "INVITED";
|
|
634
|
+
};
|
|
635
|
+
/**
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
638
|
+
export type FilterableMemberStatus = (typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus];
|
|
478
639
|
/**
|
|
479
640
|
* @public
|
|
480
641
|
* @enum
|
|
@@ -514,6 +675,18 @@ export declare const JobType: {
|
|
|
514
675
|
* @public
|
|
515
676
|
*/
|
|
516
677
|
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
678
|
+
/**
|
|
679
|
+
* @public
|
|
680
|
+
* @enum
|
|
681
|
+
*/
|
|
682
|
+
export declare const ResultFormat: {
|
|
683
|
+
readonly CSV: "CSV";
|
|
684
|
+
readonly PARQUET: "PARQUET";
|
|
685
|
+
};
|
|
686
|
+
/**
|
|
687
|
+
* @public
|
|
688
|
+
*/
|
|
689
|
+
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
517
690
|
/**
|
|
518
691
|
* @public
|
|
519
692
|
* @enum
|
|
@@ -538,6 +711,19 @@ export declare const MembershipQueryLogStatus: {
|
|
|
538
711
|
* @public
|
|
539
712
|
*/
|
|
540
713
|
export type MembershipQueryLogStatus = (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
|
|
714
|
+
/**
|
|
715
|
+
* @public
|
|
716
|
+
* @enum
|
|
717
|
+
*/
|
|
718
|
+
export declare const MembershipStatus: {
|
|
719
|
+
readonly ACTIVE: "ACTIVE";
|
|
720
|
+
readonly COLLABORATION_DELETED: "COLLABORATION_DELETED";
|
|
721
|
+
readonly REMOVED: "REMOVED";
|
|
722
|
+
};
|
|
723
|
+
/**
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
export type MembershipStatus = (typeof MembershipStatus)[keyof typeof MembershipStatus];
|
|
541
727
|
/**
|
|
542
728
|
* @public
|
|
543
729
|
* @enum
|
|
@@ -578,6 +764,23 @@ export declare const WorkerComputeType: {
|
|
|
578
764
|
* @public
|
|
579
765
|
*/
|
|
580
766
|
export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
767
|
+
/**
|
|
768
|
+
* @public
|
|
769
|
+
* @enum
|
|
770
|
+
*/
|
|
771
|
+
export declare const ProtectedQueryStatus: {
|
|
772
|
+
readonly CANCELLED: "CANCELLED";
|
|
773
|
+
readonly CANCELLING: "CANCELLING";
|
|
774
|
+
readonly FAILED: "FAILED";
|
|
775
|
+
readonly STARTED: "STARTED";
|
|
776
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
777
|
+
readonly SUCCESS: "SUCCESS";
|
|
778
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
779
|
+
};
|
|
780
|
+
/**
|
|
781
|
+
* @public
|
|
782
|
+
*/
|
|
783
|
+
export type ProtectedQueryStatus = (typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus];
|
|
581
784
|
/**
|
|
582
785
|
* @public
|
|
583
786
|
* @enum
|
|
@@ -600,6 +803,17 @@ export declare const ProtectedJobType: {
|
|
|
600
803
|
* @public
|
|
601
804
|
*/
|
|
602
805
|
export type ProtectedJobType = (typeof ProtectedJobType)[keyof typeof ProtectedJobType];
|
|
806
|
+
/**
|
|
807
|
+
* @public
|
|
808
|
+
* @enum
|
|
809
|
+
*/
|
|
810
|
+
export declare const ProtectedQueryType: {
|
|
811
|
+
readonly SQL: "SQL";
|
|
812
|
+
};
|
|
813
|
+
/**
|
|
814
|
+
* @public
|
|
815
|
+
*/
|
|
816
|
+
export type ProtectedQueryType = (typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
|
|
603
817
|
/**
|
|
604
818
|
* @public
|
|
605
819
|
* @enum
|
|
@@ -611,3 +825,14 @@ export declare const TargetProtectedJobStatus: {
|
|
|
611
825
|
* @public
|
|
612
826
|
*/
|
|
613
827
|
export type TargetProtectedJobStatus = (typeof TargetProtectedJobStatus)[keyof typeof TargetProtectedJobStatus];
|
|
828
|
+
/**
|
|
829
|
+
* @public
|
|
830
|
+
* @enum
|
|
831
|
+
*/
|
|
832
|
+
export declare const TargetProtectedQueryStatus: {
|
|
833
|
+
readonly CANCELLED: "CANCELLED";
|
|
834
|
+
};
|
|
835
|
+
/**
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
838
|
+
export type TargetProtectedQueryStatus = (typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
|
|
3
|
-
import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceType,
|
|
3
|
+
import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceType, ValidationExceptionReason } from "./enums";
|
|
4
|
+
import { ValidationExceptionField } from "./models_0";
|
|
4
5
|
/**
|
|
5
6
|
* <p>Caller does not have sufficient access to perform this action.</p>
|
|
6
7
|
* @public
|