@aws-sdk/client-cleanrooms 3.936.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.
@@ -1,315 +1,5 @@
1
- import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobAnalysisType, ProtectedJobStatus, ProtectedJobType, TargetProtectedJobStatus } from "./enums";
2
- import { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, ComputeConfiguration, DifferentialPrivacyParameters, Membership, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MembershipStatus, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateParametersOutput, ProtectedJob, ProtectedJobComputeConfiguration, ProtectedJobParameters, ProtectedQueryError, ProtectedQueryS3OutputConfiguration } from "./models_0";
3
- /**
4
- * <p>Details about the member who received the query result.</p>
5
- * @public
6
- */
7
- export interface ProtectedQuerySingleMemberOutput {
8
- /**
9
- * <p>The Amazon Web Services account ID of the member in the collaboration who can receive results for the query.</p>
10
- * @public
11
- */
12
- accountId: string | undefined;
13
- }
14
- /**
15
- * <p>Contains output information for protected queries with an S3 output type.</p>
16
- * @public
17
- */
18
- export interface ProtectedQueryS3Output {
19
- /**
20
- * <p>The S3 location of the result.</p>
21
- * @public
22
- */
23
- location: string | undefined;
24
- }
25
- /**
26
- * <p> Contains the output information for a protected query with a distribute output configuration.</p> <p> This output type allows query results to be distributed to multiple receivers, including S3 and collaboration members. It is only available for queries using the Spark analytics engine.</p>
27
- * @public
28
- */
29
- export interface ProtectedQueryDistributeOutput {
30
- /**
31
- * <p>Contains output information for protected queries with an S3 output type.</p>
32
- * @public
33
- */
34
- s3?: ProtectedQueryS3Output | undefined;
35
- /**
36
- * <p> Contains the output results for each member location specified in the distribute output configuration. Each entry provides details about the result distribution to a specific collaboration member. </p>
37
- * @public
38
- */
39
- memberList?: ProtectedQuerySingleMemberOutput[] | undefined;
40
- }
41
- /**
42
- * <p>Contains details about the protected query output.</p>
43
- * @public
44
- */
45
- export type ProtectedQueryOutput = ProtectedQueryOutput.DistributeMember | ProtectedQueryOutput.MemberListMember | ProtectedQueryOutput.S3Member | ProtectedQueryOutput.$UnknownMember;
46
- /**
47
- * @public
48
- */
49
- export declare namespace ProtectedQueryOutput {
50
- /**
51
- * <p>If present, the output for a protected query with an <code>S3</code> output type.</p>
52
- * @public
53
- */
54
- interface S3Member {
55
- s3: ProtectedQueryS3Output;
56
- memberList?: never;
57
- distribute?: never;
58
- $unknown?: never;
59
- }
60
- /**
61
- * <p>The list of member Amazon Web Services account(s) that received the results of the query. </p>
62
- * @public
63
- */
64
- interface MemberListMember {
65
- s3?: never;
66
- memberList: ProtectedQuerySingleMemberOutput[];
67
- distribute?: never;
68
- $unknown?: never;
69
- }
70
- /**
71
- * <p>Contains output information for protected queries that use a <code>distribute</code> output type. This output type lets you send query results to multiple locations - either to S3 or to collaboration members. </p> <note> <p> You can only use the <code>distribute</code> output type with the Spark analytics engine. </p> </note>
72
- * @public
73
- */
74
- interface DistributeMember {
75
- s3?: never;
76
- memberList?: never;
77
- distribute: ProtectedQueryDistributeOutput;
78
- $unknown?: never;
79
- }
80
- /**
81
- * @public
82
- */
83
- interface $UnknownMember {
84
- s3?: never;
85
- memberList?: never;
86
- distribute?: never;
87
- $unknown: [string, any];
88
- }
89
- /**
90
- * @deprecated unused in schema-serde mode.
91
- *
92
- */
93
- interface Visitor<T> {
94
- s3: (value: ProtectedQueryS3Output) => T;
95
- memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
96
- distribute: (value: ProtectedQueryDistributeOutput) => T;
97
- _: (name: string, value: any) => T;
98
- }
99
- }
100
- /**
101
- * <p>Details about the query results.</p>
102
- * @public
103
- */
104
- export interface ProtectedQueryResult {
105
- /**
106
- * <p>The output of the protected query.</p>
107
- * @public
108
- */
109
- output: ProtectedQueryOutput | undefined;
110
- }
111
- /**
112
- * <p> Contains configuration details for the protected query member output.</p>
113
- * @public
114
- */
115
- export interface ProtectedQueryMemberOutputConfiguration {
116
- /**
117
- * <p>The unique identifier for the account.</p>
118
- * @public
119
- */
120
- accountId: string | undefined;
121
- }
122
- /**
123
- * <p> Specifies where you'll distribute the results of your protected query. You must configure either an S3 destination or a collaboration member destination.</p>
124
- * @public
125
- */
126
- export type ProtectedQueryDistributeOutputConfigurationLocation = ProtectedQueryDistributeOutputConfigurationLocation.MemberMember | ProtectedQueryDistributeOutputConfigurationLocation.S3Member | ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
127
- /**
128
- * @public
129
- */
130
- export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
131
- /**
132
- * <p>Contains the configuration to write the query results to S3.</p>
133
- * @public
134
- */
135
- interface S3Member {
136
- s3: ProtectedQueryS3OutputConfiguration;
137
- member?: never;
138
- $unknown?: never;
139
- }
140
- /**
141
- * <p> Contains configuration details for the protected query member output.</p>
142
- * @public
143
- */
144
- interface MemberMember {
145
- s3?: never;
146
- member: ProtectedQueryMemberOutputConfiguration;
147
- $unknown?: never;
148
- }
149
- /**
150
- * @public
151
- */
152
- interface $UnknownMember {
153
- s3?: never;
154
- member?: never;
155
- $unknown: [string, any];
156
- }
157
- /**
158
- * @deprecated unused in schema-serde mode.
159
- *
160
- */
161
- interface Visitor<T> {
162
- s3: (value: ProtectedQueryS3OutputConfiguration) => T;
163
- member: (value: ProtectedQueryMemberOutputConfiguration) => T;
164
- _: (name: string, value: any) => T;
165
- }
166
- }
167
- /**
168
- * <p> Specifies the configuration for distributing protected query results to multiple receivers, including S3 and collaboration members.</p>
169
- * @public
170
- */
171
- export interface ProtectedQueryDistributeOutputConfiguration {
172
- /**
173
- * <p> A list of locations where you want to distribute the protected query results. Each location must specify either an S3 destination or a collaboration member destination.</p> <important> <p>You can't specify more than one S3 location.</p> <p>You can't specify the query runner's account as a member location.</p> <p>You must include either an S3 or member output configuration for each location, but not both.</p> </important>
174
- * @public
175
- */
176
- locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
177
- }
178
- /**
179
- * <p>Contains configuration details for protected query output.</p>
180
- * @public
181
- */
182
- export type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguration.DistributeMember | ProtectedQueryOutputConfiguration.MemberMember | ProtectedQueryOutputConfiguration.S3Member | ProtectedQueryOutputConfiguration.$UnknownMember;
183
- /**
184
- * @public
185
- */
186
- export declare namespace ProtectedQueryOutputConfiguration {
187
- /**
188
- * <p>Required configuration for a protected query with an <code>s3</code> output type.</p>
189
- * @public
190
- */
191
- interface S3Member {
192
- s3: ProtectedQueryS3OutputConfiguration;
193
- member?: never;
194
- distribute?: never;
195
- $unknown?: never;
196
- }
197
- /**
198
- * <p> Required configuration for a protected query with a <code>member</code> output type.</p>
199
- * @public
200
- */
201
- interface MemberMember {
202
- s3?: never;
203
- member: ProtectedQueryMemberOutputConfiguration;
204
- distribute?: never;
205
- $unknown?: never;
206
- }
207
- /**
208
- * <p> Required configuration for a protected query with a <code>distribute</code> output type.</p>
209
- * @public
210
- */
211
- interface DistributeMember {
212
- s3?: never;
213
- member?: never;
214
- distribute: ProtectedQueryDistributeOutputConfiguration;
215
- $unknown?: never;
216
- }
217
- /**
218
- * @public
219
- */
220
- interface $UnknownMember {
221
- s3?: never;
222
- member?: never;
223
- distribute?: never;
224
- $unknown: [string, any];
225
- }
226
- /**
227
- * @deprecated unused in schema-serde mode.
228
- *
229
- */
230
- interface Visitor<T> {
231
- s3: (value: ProtectedQueryS3OutputConfiguration) => T;
232
- member: (value: ProtectedQueryMemberOutputConfiguration) => T;
233
- distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
234
- _: (name: string, value: any) => T;
235
- }
236
- }
237
- /**
238
- * <p>Contains configurations for protected query results.</p>
239
- * @public
240
- */
241
- export interface ProtectedQueryResultConfiguration {
242
- /**
243
- * <p>Configuration for protected query results.</p>
244
- * @public
245
- */
246
- outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
247
- }
248
- /**
249
- * <p>The parameters for the SQL type Protected Query.</p>
250
- * @public
251
- */
252
- export interface ProtectedQuerySQLParameters {
253
- /**
254
- * <p>The query string to be submitted.</p>
255
- * @public
256
- */
257
- queryString?: string | undefined;
258
- /**
259
- * <p>The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.</p>
260
- * @public
261
- */
262
- analysisTemplateArn?: string | undefined;
263
- /**
264
- * <p>The protected query SQL parameters.</p>
265
- * @public
266
- */
267
- parameters?: Record<string, string> | undefined;
268
- }
269
- /**
270
- * <p> Information related to the utilization of resources that have been billed or charged for in a given context, such as a protected query.</p>
271
- * @public
272
- */
273
- export interface BilledResourceUtilization {
274
- /**
275
- * <p> The number of Clean Rooms Processing Unit (CRPU) hours that have been billed.</p>
276
- * @public
277
- */
278
- units: number | undefined;
279
- }
280
- /**
281
- * <p>Contains statistics about the execution of the protected query.</p>
282
- * @public
283
- */
284
- export interface ProtectedQueryStatistics {
285
- /**
286
- * <p>The duration of the protected query, from creation until query completion, in milliseconds.</p>
287
- * @public
288
- */
289
- totalDurationInMillis?: number | undefined;
290
- /**
291
- * <p> The billed resource utilization.</p>
292
- * @public
293
- */
294
- billedResourceUtilization?: BilledResourceUtilization | undefined;
295
- }
296
- /**
297
- * @public
298
- * @enum
299
- */
300
- export declare const ProtectedQueryStatus: {
301
- readonly CANCELLED: "CANCELLED";
302
- readonly CANCELLING: "CANCELLING";
303
- readonly FAILED: "FAILED";
304
- readonly STARTED: "STARTED";
305
- readonly SUBMITTED: "SUBMITTED";
306
- readonly SUCCESS: "SUCCESS";
307
- readonly TIMED_OUT: "TIMED_OUT";
308
- };
309
- /**
310
- * @public
311
- */
312
- export type ProtectedQueryStatus = (typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus];
1
+ import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, MembershipStatus, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobAnalysisType, ProtectedJobStatus, ProtectedJobType, ProtectedQueryStatus, ProtectedQueryType, TargetProtectedJobStatus, TargetProtectedQueryStatus } from "./enums";
2
+ import { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, ComputeConfiguration, DifferentialPrivacyParameters, Membership, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateParametersOutput, ProtectedJob, ProtectedJobComputeConfiguration, ProtectedJobParameters, ProtectedQueryError, ProtectedQueryResult, ProtectedQueryResultConfiguration, ProtectedQuerySQLParameters, ProtectedQueryStatistics } from "./models_0";
313
3
  /**
314
4
  * <p>The parameters for an Clean Rooms protected query.</p>
315
5
  * @public
@@ -1099,17 +789,6 @@ export interface StartProtectedJobOutput {
1099
789
  */
1100
790
  protectedJob: ProtectedJob | undefined;
1101
791
  }
1102
- /**
1103
- * @public
1104
- * @enum
1105
- */
1106
- export declare const ProtectedQueryType: {
1107
- readonly SQL: "SQL";
1108
- };
1109
- /**
1110
- * @public
1111
- */
1112
- export type ProtectedQueryType = (typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
1113
792
  /**
1114
793
  * @public
1115
794
  */
@@ -1220,17 +899,6 @@ export interface UpdateProtectedJobOutput {
1220
899
  */
1221
900
  protectedJob: ProtectedJob | undefined;
1222
901
  }
1223
- /**
1224
- * @public
1225
- * @enum
1226
- */
1227
- export declare const TargetProtectedQueryStatus: {
1228
- readonly CANCELLED: "CANCELLED";
1229
- };
1230
- /**
1231
- * @public
1232
- */
1233
- export type TargetProtectedQueryStatus = (typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];
1234
902
  /**
1235
903
  * @public
1236
904
  */
@@ -12,6 +12,11 @@ export declare const AccessBudgetType: {
12
12
  };
13
13
  export type AccessBudgetType =
14
14
  (typeof AccessBudgetType)[keyof typeof AccessBudgetType];
15
+ export declare const AccessDeniedExceptionReason: {
16
+ readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
17
+ };
18
+ export type AccessDeniedExceptionReason =
19
+ (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
15
20
  export declare const AdditionalAnalyses: {
16
21
  readonly ALLOWED: "ALLOWED";
17
22
  readonly NOT_ALLOWED: "NOT_ALLOWED";
@@ -19,6 +24,20 @@ export declare const AdditionalAnalyses: {
19
24
  };
20
25
  export type AdditionalAnalyses =
21
26
  (typeof AdditionalAnalyses)[keyof typeof AdditionalAnalyses];
27
+ export declare const AggregateFunctionName: {
28
+ readonly AVG: "AVG";
29
+ readonly COUNT: "COUNT";
30
+ readonly COUNT_DISTINCT: "COUNT_DISTINCT";
31
+ readonly SUM: "SUM";
32
+ readonly SUM_DISTINCT: "SUM_DISTINCT";
33
+ };
34
+ export type AggregateFunctionName =
35
+ (typeof AggregateFunctionName)[keyof typeof AggregateFunctionName];
36
+ export declare const AggregationType: {
37
+ readonly COUNT_DISTINCT: "COUNT_DISTINCT";
38
+ };
39
+ export type AggregationType =
40
+ (typeof AggregationType)[keyof typeof AggregationType];
22
41
  export declare const SupportedS3Region: {
23
42
  readonly AF_SOUTH_1: "af-south-1";
24
43
  readonly AP_EAST_1: "ap-east-1";
@@ -100,6 +119,44 @@ export declare const ParameterType: {
100
119
  readonly VARCHAR: "VARCHAR";
101
120
  };
102
121
  export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
122
+ export declare const JoinOperator: {
123
+ readonly AND: "AND";
124
+ readonly OR: "OR";
125
+ };
126
+ export type JoinOperator = (typeof JoinOperator)[keyof typeof JoinOperator];
127
+ export declare const JoinRequiredOption: {
128
+ readonly QUERY_RUNNER: "QUERY_RUNNER";
129
+ };
130
+ export type JoinRequiredOption =
131
+ (typeof JoinRequiredOption)[keyof typeof JoinRequiredOption];
132
+ export declare const ScalarFunctions: {
133
+ readonly ABS: "ABS";
134
+ readonly CAST: "CAST";
135
+ readonly CEILING: "CEILING";
136
+ readonly COALESCE: "COALESCE";
137
+ readonly CONVERT: "CONVERT";
138
+ readonly CURRENT_DATE: "CURRENT_DATE";
139
+ readonly DATEADD: "DATEADD";
140
+ readonly EXTRACT: "EXTRACT";
141
+ readonly FLOOR: "FLOOR";
142
+ readonly GETDATE: "GETDATE";
143
+ readonly LN: "LN";
144
+ readonly LOG: "LOG";
145
+ readonly LOWER: "LOWER";
146
+ readonly ROUND: "ROUND";
147
+ readonly RTRIM: "RTRIM";
148
+ readonly SQRT: "SQRT";
149
+ readonly SUBSTRING: "SUBSTRING";
150
+ readonly TO_CHAR: "TO_CHAR";
151
+ readonly TO_DATE: "TO_DATE";
152
+ readonly TO_NUMBER: "TO_NUMBER";
153
+ readonly TO_TIMESTAMP: "TO_TIMESTAMP";
154
+ readonly TRIM: "TRIM";
155
+ readonly TRUNC: "TRUNC";
156
+ readonly UPPER: "UPPER";
157
+ };
158
+ export type ScalarFunctions =
159
+ (typeof ScalarFunctions)[keyof typeof ScalarFunctions];
103
160
  export declare const AnalysisRuleType: {
104
161
  readonly AGGREGATION: "AGGREGATION";
105
162
  readonly CUSTOM: "CUSTOM";
@@ -125,6 +182,28 @@ export declare const AnalysisTemplateValidationType: {
125
182
  };
126
183
  export type AnalysisTemplateValidationType =
127
184
  (typeof AnalysisTemplateValidationType)[keyof typeof AnalysisTemplateValidationType];
185
+ export declare const ConflictExceptionReason: {
186
+ readonly ALREADY_EXISTS: "ALREADY_EXISTS";
187
+ readonly INVALID_STATE: "INVALID_STATE";
188
+ readonly SUBRESOURCES_EXIST: "SUBRESOURCES_EXIST";
189
+ };
190
+ export type ConflictExceptionReason =
191
+ (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
192
+ export declare const ResourceType: {
193
+ readonly COLLABORATION: "COLLABORATION";
194
+ readonly CONFIGURED_TABLE: "CONFIGURED_TABLE";
195
+ readonly CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION";
196
+ readonly MEMBERSHIP: "MEMBERSHIP";
197
+ };
198
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
199
+ export declare const ValidationExceptionReason: {
200
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
201
+ readonly IAM_SYNCHRONIZATION_DELAY: "IAM_SYNCHRONIZATION_DELAY";
202
+ readonly INVALID_CONFIGURATION: "INVALID_CONFIGURATION";
203
+ readonly INVALID_QUERY: "INVALID_QUERY";
204
+ };
205
+ export type ValidationExceptionReason =
206
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
128
207
  export declare const AnalysisType: {
129
208
  readonly ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS";
130
209
  readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS";
@@ -244,6 +323,13 @@ export declare const CollaborationQueryLogStatus: {
244
323
  };
245
324
  export type CollaborationQueryLogStatus =
246
325
  (typeof CollaborationQueryLogStatus)[keyof typeof CollaborationQueryLogStatus];
326
+ export declare const MemberStatus: {
327
+ readonly ACTIVE: "ACTIVE";
328
+ readonly INVITED: "INVITED";
329
+ readonly LEFT: "LEFT";
330
+ readonly REMOVED: "REMOVED";
331
+ };
332
+ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
247
333
  export declare const ChangeSpecificationType: {
248
334
  readonly MEMBER: "MEMBER";
249
335
  };
@@ -283,6 +369,12 @@ export declare const DifferentialPrivacyAggregationType: {
283
369
  };
284
370
  export type DifferentialPrivacyAggregationType =
285
371
  (typeof DifferentialPrivacyAggregationType)[keyof typeof DifferentialPrivacyAggregationType];
372
+ export declare const FilterableMemberStatus: {
373
+ readonly ACTIVE: "ACTIVE";
374
+ readonly INVITED: "INVITED";
375
+ };
376
+ export type FilterableMemberStatus =
377
+ (typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus];
286
378
  export declare const ConfiguredTableAssociationAnalysisRuleType: {
287
379
  readonly AGGREGATION: "AGGREGATION";
288
380
  readonly CUSTOM: "CUSTOM";
@@ -303,6 +395,11 @@ export declare const JobType: {
303
395
  readonly INCREMENTAL: "INCREMENTAL";
304
396
  };
305
397
  export type JobType = (typeof JobType)[keyof typeof JobType];
398
+ export declare const ResultFormat: {
399
+ readonly CSV: "CSV";
400
+ readonly PARQUET: "PARQUET";
401
+ };
402
+ export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
306
403
  export declare const MembershipJobLogStatus: {
307
404
  readonly DISABLED: "DISABLED";
308
405
  readonly ENABLED: "ENABLED";
@@ -315,6 +412,13 @@ export declare const MembershipQueryLogStatus: {
315
412
  };
316
413
  export type MembershipQueryLogStatus =
317
414
  (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
415
+ export declare const MembershipStatus: {
416
+ readonly ACTIVE: "ACTIVE";
417
+ readonly COLLABORATION_DELETED: "COLLABORATION_DELETED";
418
+ readonly REMOVED: "REMOVED";
419
+ };
420
+ export type MembershipStatus =
421
+ (typeof MembershipStatus)[keyof typeof MembershipStatus];
318
422
  export declare const ProtectedJobWorkerComputeType: {
319
423
  readonly CR1X: "CR.1X";
320
424
  readonly CR4X: "CR.4X";
@@ -337,6 +441,17 @@ export declare const WorkerComputeType: {
337
441
  };
338
442
  export type WorkerComputeType =
339
443
  (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
444
+ export declare const ProtectedQueryStatus: {
445
+ readonly CANCELLED: "CANCELLED";
446
+ readonly CANCELLING: "CANCELLING";
447
+ readonly FAILED: "FAILED";
448
+ readonly STARTED: "STARTED";
449
+ readonly SUBMITTED: "SUBMITTED";
450
+ readonly SUCCESS: "SUCCESS";
451
+ readonly TIMED_OUT: "TIMED_OUT";
452
+ };
453
+ export type ProtectedQueryStatus =
454
+ (typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus];
340
455
  export declare const ProtectedJobAnalysisType: {
341
456
  readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS";
342
457
  };
@@ -347,8 +462,18 @@ export declare const ProtectedJobType: {
347
462
  };
348
463
  export type ProtectedJobType =
349
464
  (typeof ProtectedJobType)[keyof typeof ProtectedJobType];
465
+ export declare const ProtectedQueryType: {
466
+ readonly SQL: "SQL";
467
+ };
468
+ export type ProtectedQueryType =
469
+ (typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
350
470
  export declare const TargetProtectedJobStatus: {
351
471
  readonly CANCELLED: "CANCELLED";
352
472
  };
353
473
  export type TargetProtectedJobStatus =
354
474
  (typeof TargetProtectedJobStatus)[keyof typeof TargetProtectedJobStatus];
475
+ export declare const TargetProtectedQueryStatus: {
476
+ readonly CANCELLED: "CANCELLED";
477
+ };
478
+ export type TargetProtectedQueryStatus =
479
+ (typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];
@@ -4,9 +4,9 @@ import {
4
4
  AccessDeniedExceptionReason,
5
5
  ConflictExceptionReason,
6
6
  ResourceType,
7
- ValidationExceptionField,
8
7
  ValidationExceptionReason,
9
- } from "./models_0";
8
+ } from "./enums";
9
+ import { ValidationExceptionField } from "./models_0";
10
10
  export declare class AccessDeniedException extends __BaseException {
11
11
  readonly name: "AccessDeniedException";
12
12
  readonly $fault: "client";