@aws-sdk/client-cleanrooms 3.934.0 → 3.936.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.
Files changed (31) hide show
  1. package/dist-cjs/index.js +278 -391
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +277 -0
  4. package/dist-es/models/errors.js +105 -0
  5. package/dist-es/models/models_0.js +5 -349
  6. package/dist-es/models/models_1.js +0 -38
  7. package/dist-es/schemas/schemas_0.js +1 -1
  8. package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
  10. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  11. package/dist-types/commands/GetProtectedJobCommand.d.ts +1 -1
  12. package/dist-types/commands/GetProtectedQueryCommand.d.ts +2 -1
  13. package/dist-types/index.d.ts +4 -1
  14. package/dist-types/models/enums.d.ts +613 -0
  15. package/dist-types/models/errors.d.ts +137 -0
  16. package/dist-types/models/models_0.d.ts +856 -652
  17. package/dist-types/models/models_1.d.ts +2 -953
  18. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +1 -1
  19. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +1 -1
  20. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/GetProtectedJobCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/index.d.ts +4 -1
  24. package/dist-types/ts3.4/models/enums.d.ts +354 -0
  25. package/dist-types/ts3.4/models/errors.d.ts +66 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +328 -364
  27. package/dist-types/ts3.4/models/models_1.d.ts +23 -341
  28. package/package.json +19 -19
  29. package/dist-es/models/index.js +0 -2
  30. package/dist-types/models/index.d.ts +0 -2
  31. package/dist-types/ts3.4/models/index.d.ts +0 -2
@@ -1,32 +1,5 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { DocumentType as __DocumentType } from "@smithy/types";
3
- import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
4
- /**
5
- * @public
6
- * @enum
7
- */
8
- export declare const AutoRefreshMode: {
9
- readonly DISABLED: "DISABLED";
10
- readonly ENABLED: "ENABLED";
11
- };
12
- /**
13
- * @public
14
- */
15
- export type AutoRefreshMode = (typeof AutoRefreshMode)[keyof typeof AutoRefreshMode];
16
- /**
17
- * @public
18
- * @enum
19
- */
20
- export declare const AccessBudgetType: {
21
- readonly CALENDAR_DAY: "CALENDAR_DAY";
22
- readonly CALENDAR_MONTH: "CALENDAR_MONTH";
23
- readonly CALENDAR_WEEK: "CALENDAR_WEEK";
24
- readonly LIFETIME: "LIFETIME";
25
- };
26
- /**
27
- * @public
28
- */
29
- export type AccessBudgetType = (typeof AccessBudgetType)[keyof typeof AccessBudgetType];
2
+ import { AccessBudgetType, AdditionalAnalyses, AnalysisFormat, AnalysisMethod, AnalysisRuleType, AnalysisTemplateValidationStatus, AnalysisTemplateValidationType, AnalysisType, AnalyticsEngine, AutoApprovedChangeType, AutoRefreshMode, ChangeRequestStatus, ChangeSpecificationType, ChangeType, CollaborationJobLogStatus, CollaborationQueryLogStatus, CommercialRegion, ConfiguredTableAnalysisRuleType, ConfiguredTableAssociationAnalysisRuleType, CustomMLMemberAbility, DifferentialPrivacyAggregationType, ErrorMessageType, IdNamespaceType, JobType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, ParameterType, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobStatus, ProtectedJobWorkerComputeType, SchemaConfiguration, SchemaStatus, SchemaStatusReasonCode, SchemaType, SelectedAnalysisMethod, SupportedS3Region, WorkerComputeType } from "./enums";
30
3
  /**
31
4
  * <p>Detailed information about an access budget including time bounds, budget allocation, and configuration settings.</p>
32
5
  * @public
@@ -159,36 +132,6 @@ export declare const AccessDeniedExceptionReason: {
159
132
  * @public
160
133
  */
161
134
  export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
162
- /**
163
- * <p>Caller does not have sufficient access to perform this action.</p>
164
- * @public
165
- */
166
- export declare class AccessDeniedException extends __BaseException {
167
- readonly name: "AccessDeniedException";
168
- readonly $fault: "client";
169
- /**
170
- * <p>A reason code for the exception.</p>
171
- * @public
172
- */
173
- reason?: AccessDeniedExceptionReason | undefined;
174
- /**
175
- * @internal
176
- */
177
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
178
- }
179
- /**
180
- * @public
181
- * @enum
182
- */
183
- export declare const AdditionalAnalyses: {
184
- readonly ALLOWED: "ALLOWED";
185
- readonly NOT_ALLOWED: "NOT_ALLOWED";
186
- readonly REQUIRED: "REQUIRED";
187
- };
188
- /**
189
- * @public
190
- */
191
- export type AdditionalAnalyses = (typeof AdditionalAnalyses)[keyof typeof AdditionalAnalyses];
192
135
  /**
193
136
  * @public
194
137
  * @enum
@@ -252,112 +195,6 @@ export interface AggregationConstraint {
252
195
  */
253
196
  type: AggregationType | undefined;
254
197
  }
255
- /**
256
- * @public
257
- * @enum
258
- */
259
- export declare const SupportedS3Region: {
260
- readonly AF_SOUTH_1: "af-south-1";
261
- readonly AP_EAST_1: "ap-east-1";
262
- readonly AP_EAST_2: "ap-east-2";
263
- readonly AP_NORTHEAST_1: "ap-northeast-1";
264
- readonly AP_NORTHEAST_2: "ap-northeast-2";
265
- readonly AP_NORTHEAST_3: "ap-northeast-3";
266
- readonly AP_SOUTHEAST_1: "ap-southeast-1";
267
- readonly AP_SOUTHEAST_2: "ap-southeast-2";
268
- readonly AP_SOUTHEAST_3: "ap-southeast-3";
269
- readonly AP_SOUTHEAST_4: "ap-southeast-4";
270
- readonly AP_SOUTHEAST_5: "ap-southeast-5";
271
- readonly AP_SOUTHEAST_7: "ap-southeast-7";
272
- readonly AP_SOUTH_1: "ap-south-1";
273
- readonly AP_SOUTH_2: "ap-south-2";
274
- readonly CA_CENTRAL_1: "ca-central-1";
275
- readonly CA_WEST_1: "ca-west-1";
276
- readonly EU_CENTRAL_1: "eu-central-1";
277
- readonly EU_CENTRAL_2: "eu-central-2";
278
- readonly EU_NORTH_1: "eu-north-1";
279
- readonly EU_SOUTH_1: "eu-south-1";
280
- readonly EU_SOUTH_2: "eu-south-2";
281
- readonly EU_WEST_1: "eu-west-1";
282
- readonly EU_WEST_2: "eu-west-2";
283
- readonly EU_WEST_3: "eu-west-3";
284
- readonly IL_CENTRAL_1: "il-central-1";
285
- readonly ME_CENTRAL_1: "me-central-1";
286
- readonly ME_SOUTH_1: "me-south-1";
287
- readonly MX_CENTRAL_1: "mx-central-1";
288
- readonly SA_EAST_1: "sa-east-1";
289
- readonly US_EAST_1: "us-east-1";
290
- readonly US_EAST_2: "us-east-2";
291
- readonly US_WEST_1: "us-west-1";
292
- readonly US_WEST_2: "us-west-2";
293
- };
294
- /**
295
- * @public
296
- */
297
- export type SupportedS3Region = (typeof SupportedS3Region)[keyof typeof SupportedS3Region];
298
- /**
299
- * @public
300
- * @enum
301
- */
302
- export declare const AnalysisFormat: {
303
- readonly PYSPARK_1_0: "PYSPARK_1_0";
304
- readonly SQL: "SQL";
305
- };
306
- /**
307
- * @public
308
- */
309
- export type AnalysisFormat = (typeof AnalysisFormat)[keyof typeof AnalysisFormat];
310
- /**
311
- * @public
312
- * @enum
313
- */
314
- export declare const AnalysisMethod: {
315
- readonly DIRECT_JOB: "DIRECT_JOB";
316
- readonly DIRECT_QUERY: "DIRECT_QUERY";
317
- readonly MULTIPLE: "MULTIPLE";
318
- };
319
- /**
320
- * @public
321
- */
322
- export type AnalysisMethod = (typeof AnalysisMethod)[keyof typeof AnalysisMethod];
323
- /**
324
- * @public
325
- * @enum
326
- */
327
- export declare const ParameterType: {
328
- readonly BIGINT: "BIGINT";
329
- readonly BINARY: "BINARY";
330
- readonly BOOLEAN: "BOOLEAN";
331
- readonly BYTE: "BYTE";
332
- readonly CHAR: "CHAR";
333
- readonly CHARACTER: "CHARACTER";
334
- readonly DATE: "DATE";
335
- readonly DECIMAL: "DECIMAL";
336
- readonly DOUBLE: "DOUBLE";
337
- readonly DOUBLE_PRECISION: "DOUBLE_PRECISION";
338
- readonly FLOAT: "FLOAT";
339
- readonly INT: "INT";
340
- readonly INTEGER: "INTEGER";
341
- readonly LONG: "LONG";
342
- readonly NUMERIC: "NUMERIC";
343
- readonly REAL: "REAL";
344
- readonly SHORT: "SHORT";
345
- readonly SMALLINT: "SMALLINT";
346
- readonly STRING: "STRING";
347
- readonly TIME: "TIME";
348
- readonly TIMESTAMP: "TIMESTAMP";
349
- readonly TIMESTAMPTZ: "TIMESTAMPTZ";
350
- readonly TIMESTAMP_LTZ: "TIMESTAMP_LTZ";
351
- readonly TIMESTAMP_NTZ: "TIMESTAMP_NTZ";
352
- readonly TIMETZ: "TIMETZ";
353
- readonly TINYINT: "TINYINT";
354
- readonly VARBYTE: "VARBYTE";
355
- readonly VARCHAR: "VARCHAR";
356
- };
357
- /**
358
- * @public
359
- */
360
- export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
361
198
  /**
362
199
  * <p>Optional. The member who can query can provide this placeholder for a literal data value in an analysis template.</p>
363
200
  * @public
@@ -1099,20 +936,6 @@ export declare namespace AnalysisRulePolicy {
1099
936
  _: (name: string, value: any) => T;
1100
937
  }
1101
938
  }
1102
- /**
1103
- * @public
1104
- * @enum
1105
- */
1106
- export declare const AnalysisRuleType: {
1107
- readonly AGGREGATION: "AGGREGATION";
1108
- readonly CUSTOM: "CUSTOM";
1109
- readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE";
1110
- readonly LIST: "LIST";
1111
- };
1112
- /**
1113
- * @public
1114
- */
1115
- export type AnalysisRuleType = (typeof AnalysisRuleType)[keyof typeof AnalysisRuleType];
1116
939
  /**
1117
940
  * <p>A specification about how data from the configured table can be used in a query.</p>
1118
941
  * @public
@@ -1323,17 +1146,6 @@ export declare namespace AnalysisSourceMetadata {
1323
1146
  _: (name: string, value: any) => T;
1324
1147
  }
1325
1148
  }
1326
- /**
1327
- * @public
1328
- * @enum
1329
- */
1330
- export declare const ErrorMessageType: {
1331
- readonly DETAILED: "DETAILED";
1332
- };
1333
- /**
1334
- * @public
1335
- */
1336
- export type ErrorMessageType = (typeof ErrorMessageType)[keyof typeof ErrorMessageType];
1337
1149
  /**
1338
1150
  * <p>A structure that defines the level of detail included in error messages returned by PySpark jobs. This configuration allows you to control the verbosity of error messages to help with troubleshooting PySpark jobs while maintaining appropriate security controls.</p>
1339
1151
  * @public
@@ -1356,30 +1168,6 @@ export interface AnalysisTemplateValidationStatusReason {
1356
1168
  */
1357
1169
  message: string | undefined;
1358
1170
  }
1359
- /**
1360
- * @public
1361
- * @enum
1362
- */
1363
- export declare const AnalysisTemplateValidationStatus: {
1364
- readonly INVALID: "INVALID";
1365
- readonly UNABLE_TO_VALIDATE: "UNABLE_TO_VALIDATE";
1366
- readonly VALID: "VALID";
1367
- };
1368
- /**
1369
- * @public
1370
- */
1371
- export type AnalysisTemplateValidationStatus = (typeof AnalysisTemplateValidationStatus)[keyof typeof AnalysisTemplateValidationStatus];
1372
- /**
1373
- * @public
1374
- * @enum
1375
- */
1376
- export declare const AnalysisTemplateValidationType: {
1377
- readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
1378
- };
1379
- /**
1380
- * @public
1381
- */
1382
- export type AnalysisTemplateValidationType = (typeof AnalysisTemplateValidationType)[keyof typeof AnalysisTemplateValidationType];
1383
1171
  /**
1384
1172
  * <p>The status details of the analysis template validation. Clean Rooms Differential Privacy uses a general-purpose query structure to support complex SQL queries and validates whether an analysis template fits that general-purpose query structure. Validation is performed when analysis templates are created and fetched. Because analysis templates are immutable by design, we recommend that you create analysis templates after you associate the configured tables with their analysis rule to your collaboration.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/clean-rooms/latest/userguide/analysis-rules-custom.html#custom-diff-privacy">https://docs.aws.amazon.com/clean-rooms/latest/userguide/analysis-rules-custom.html#custom-diff-privacy</a>.</p>
1385
1173
  * @public
@@ -1519,33 +1307,6 @@ export declare const ResourceType: {
1519
1307
  * @public
1520
1308
  */
1521
1309
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
1522
- /**
1523
- * <p>Updating or deleting a resource can cause an inconsistent state.</p>
1524
- * @public
1525
- */
1526
- export declare class ConflictException extends __BaseException {
1527
- readonly name: "ConflictException";
1528
- readonly $fault: "client";
1529
- /**
1530
- * <p>The ID of the conflicting resource.</p>
1531
- * @public
1532
- */
1533
- resourceId?: string | undefined;
1534
- /**
1535
- * <p>The type of the conflicting resource.</p>
1536
- * @public
1537
- */
1538
- resourceType?: ResourceType | undefined;
1539
- /**
1540
- * <p>A reason code for the exception.</p>
1541
- * @public
1542
- */
1543
- reason?: ConflictExceptionReason | undefined;
1544
- /**
1545
- * @internal
1546
- */
1547
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1548
- }
1549
1310
  /**
1550
1311
  * @public
1551
1312
  */
@@ -1606,74 +1367,6 @@ export interface CreateAnalysisTemplateOutput {
1606
1367
  */
1607
1368
  analysisTemplate: AnalysisTemplate | undefined;
1608
1369
  }
1609
- /**
1610
- * <p>Unexpected error during processing of request.</p>
1611
- * @public
1612
- */
1613
- export declare class InternalServerException extends __BaseException {
1614
- readonly name: "InternalServerException";
1615
- readonly $fault: "server";
1616
- /**
1617
- * @internal
1618
- */
1619
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
1620
- }
1621
- /**
1622
- * <p>Request references a resource which does not exist.</p>
1623
- * @public
1624
- */
1625
- export declare class ResourceNotFoundException extends __BaseException {
1626
- readonly name: "ResourceNotFoundException";
1627
- readonly $fault: "client";
1628
- /**
1629
- * <p>The Id of the missing resource.</p>
1630
- * @public
1631
- */
1632
- resourceId: string | undefined;
1633
- /**
1634
- * <p>The type of the missing resource.</p>
1635
- * @public
1636
- */
1637
- resourceType: ResourceType | undefined;
1638
- /**
1639
- * @internal
1640
- */
1641
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1642
- }
1643
- /**
1644
- * <p>Request denied because service quota has been exceeded.</p>
1645
- * @public
1646
- */
1647
- export declare class ServiceQuotaExceededException extends __BaseException {
1648
- readonly name: "ServiceQuotaExceededException";
1649
- readonly $fault: "client";
1650
- /**
1651
- * <p>The name of the quota.</p>
1652
- * @public
1653
- */
1654
- quotaName: string | undefined;
1655
- /**
1656
- * <p>The value of the quota.</p>
1657
- * @public
1658
- */
1659
- quotaValue: number | undefined;
1660
- /**
1661
- * @internal
1662
- */
1663
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
1664
- }
1665
- /**
1666
- * <p>Request was denied due to request throttling.</p>
1667
- * @public
1668
- */
1669
- export declare class ThrottlingException extends __BaseException {
1670
- readonly name: "ThrottlingException";
1671
- readonly $fault: "client";
1672
- /**
1673
- * @internal
1674
- */
1675
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
1676
- }
1677
1370
  /**
1678
1371
  * <p>Describes validation errors for specific input parameters.</p>
1679
1372
  * @public
@@ -1704,28 +1397,6 @@ export declare const ValidationExceptionReason: {
1704
1397
  * @public
1705
1398
  */
1706
1399
  export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
1707
- /**
1708
- * <p>The input fails to satisfy the specified constraints.</p>
1709
- * @public
1710
- */
1711
- export declare class ValidationException extends __BaseException {
1712
- readonly name: "ValidationException";
1713
- readonly $fault: "client";
1714
- /**
1715
- * <p>A reason code for the exception.</p>
1716
- * @public
1717
- */
1718
- reason?: ValidationExceptionReason | undefined;
1719
- /**
1720
- * <p>Validation errors for specific input parameters.</p>
1721
- * @public
1722
- */
1723
- fieldList?: ValidationExceptionField[] | undefined;
1724
- /**
1725
- * @internal
1726
- */
1727
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
1728
- }
1729
1400
  /**
1730
1401
  * @public
1731
1402
  */
@@ -1892,73 +1563,6 @@ export interface UpdateAnalysisTemplateOutput {
1892
1563
  */
1893
1564
  analysisTemplate: AnalysisTemplate | undefined;
1894
1565
  }
1895
- /**
1896
- * @public
1897
- * @enum
1898
- */
1899
- export declare const AnalysisType: {
1900
- readonly ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS";
1901
- readonly DIRECT_ANALYSIS: "DIRECT_ANALYSIS";
1902
- };
1903
- /**
1904
- * @public
1905
- */
1906
- export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
1907
- /**
1908
- * @public
1909
- * @enum
1910
- */
1911
- export declare const AnalyticsEngine: {
1912
- readonly CLEAN_ROOMS_SQL: "CLEAN_ROOMS_SQL";
1913
- readonly SPARK: "SPARK";
1914
- };
1915
- /**
1916
- * @public
1917
- */
1918
- export type AnalyticsEngine = (typeof AnalyticsEngine)[keyof typeof AnalyticsEngine];
1919
- /**
1920
- * @public
1921
- * @enum
1922
- */
1923
- export declare const CommercialRegion: {
1924
- readonly AF_SOUTH_1: "af-south-1";
1925
- readonly AP_EAST_1: "ap-east-1";
1926
- readonly AP_EAST_2: "ap-east-2";
1927
- readonly AP_NORTHEAST_1: "ap-northeast-1";
1928
- readonly AP_NORTHEAST_2: "ap-northeast-2";
1929
- readonly AP_NORTHEAST_3: "ap-northeast-3";
1930
- readonly AP_SOUTHEAST_1: "ap-southeast-1";
1931
- readonly AP_SOUTHEAST_2: "ap-southeast-2";
1932
- readonly AP_SOUTHEAST_3: "ap-southeast-3";
1933
- readonly AP_SOUTHEAST_4: "ap-southeast-4";
1934
- readonly AP_SOUTHEAST_5: "ap-southeast-5";
1935
- readonly AP_SOUTHEAST_7: "ap-southeast-7";
1936
- readonly AP_SOUTH_1: "ap-south-1";
1937
- readonly AP_SOUTH_2: "ap-south-2";
1938
- readonly CA_CENTRAL_1: "ca-central-1";
1939
- readonly CA_WEST_1: "ca-west-1";
1940
- readonly EU_CENTRAL_1: "eu-central-1";
1941
- readonly EU_CENTRAL_2: "eu-central-2";
1942
- readonly EU_NORTH_1: "eu-north-1";
1943
- readonly EU_SOUTH_1: "eu-south-1";
1944
- readonly EU_SOUTH_2: "eu-south-2";
1945
- readonly EU_WEST_1: "eu-west-1";
1946
- readonly EU_WEST_2: "eu-west-2";
1947
- readonly EU_WEST_3: "eu-west-3";
1948
- readonly IL_CENTRAL_1: "il-central-1";
1949
- readonly ME_CENTRAL_1: "me-central-1";
1950
- readonly ME_SOUTH_1: "me-south-1";
1951
- readonly MX_CENTRAL_1: "mx-central-1";
1952
- readonly SA_EAST_1: "sa-east-1";
1953
- readonly US_EAST_1: "us-east-1";
1954
- readonly US_EAST_2: "us-east-2";
1955
- readonly US_WEST_1: "us-west-1";
1956
- readonly US_WEST_2: "us-west-2";
1957
- };
1958
- /**
1959
- * @public
1960
- */
1961
- export type CommercialRegion = (typeof CommercialRegion)[keyof typeof CommercialRegion];
1962
1566
  /**
1963
1567
  * <p> A reference to a table within Athena.</p>
1964
1568
  * @public
@@ -1990,17 +1594,6 @@ export interface AthenaTableReference {
1990
1594
  */
1991
1595
  tableName: string | undefined;
1992
1596
  }
1993
- /**
1994
- * @public
1995
- * @enum
1996
- */
1997
- export declare const AutoApprovedChangeType: {
1998
- readonly ADD_MEMBER: "ADD_MEMBER";
1999
- };
2000
- /**
2001
- * @public
2002
- */
2003
- export type AutoApprovedChangeType = (typeof AutoApprovedChangeType)[keyof typeof AutoApprovedChangeType];
2004
1597
  /**
2005
1598
  * @public
2006
1599
  */
@@ -2190,38 +1783,6 @@ export interface Column {
2190
1783
  */
2191
1784
  type: string | undefined;
2192
1785
  }
2193
- /**
2194
- * @public
2195
- * @enum
2196
- */
2197
- export declare const SchemaConfiguration: {
2198
- readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
2199
- };
2200
- /**
2201
- * @public
2202
- */
2203
- export type SchemaConfiguration = (typeof SchemaConfiguration)[keyof typeof SchemaConfiguration];
2204
- /**
2205
- * @public
2206
- * @enum
2207
- */
2208
- export declare const SchemaStatusReasonCode: {
2209
- readonly ADDITIONAL_ANALYSES_NOT_ALLOWED: "ADDITIONAL_ANALYSES_NOT_ALLOWED";
2210
- readonly ADDITIONAL_ANALYSES_NOT_CONFIGURED: "ADDITIONAL_ANALYSES_NOT_CONFIGURED";
2211
- readonly ANALYSIS_PROVIDERS_NOT_CONFIGURED: "ANALYSIS_PROVIDERS_NOT_CONFIGURED";
2212
- readonly ANALYSIS_RULE_MISSING: "ANALYSIS_RULE_MISSING";
2213
- readonly ANALYSIS_RULE_TYPES_NOT_COMPATIBLE: "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE";
2214
- readonly ANALYSIS_TEMPLATES_NOT_CONFIGURED: "ANALYSIS_TEMPLATES_NOT_CONFIGURED";
2215
- readonly COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED: "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED";
2216
- readonly DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED: "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED";
2217
- readonly ID_MAPPING_TABLE_NOT_POPULATED: "ID_MAPPING_TABLE_NOT_POPULATED";
2218
- readonly RESULT_RECEIVERS_NOT_ALLOWED: "RESULT_RECEIVERS_NOT_ALLOWED";
2219
- readonly RESULT_RECEIVERS_NOT_CONFIGURED: "RESULT_RECEIVERS_NOT_CONFIGURED";
2220
- };
2221
- /**
2222
- * @public
2223
- */
2224
- export type SchemaStatusReasonCode = (typeof SchemaStatusReasonCode)[keyof typeof SchemaStatusReasonCode];
2225
1786
  /**
2226
1787
  * <p>A reason why the schema status is set to its current value.</p>
2227
1788
  * @public
@@ -2238,18 +1799,6 @@ export interface SchemaStatusReason {
2238
1799
  */
2239
1800
  message: string | undefined;
2240
1801
  }
2241
- /**
2242
- * @public
2243
- * @enum
2244
- */
2245
- export declare const SchemaStatus: {
2246
- readonly NOT_READY: "NOT_READY";
2247
- readonly READY: "READY";
2248
- };
2249
- /**
2250
- * @public
2251
- */
2252
- export type SchemaStatus = (typeof SchemaStatus)[keyof typeof SchemaStatus];
2253
1802
  /**
2254
1803
  * <p>Information about the schema status.</p> <p>A status of <code>READY</code> means that based on the schema analysis rule, queries of the given analysis rule type are properly configured to run queries on this schema.</p>
2255
1804
  * @public
@@ -2281,18 +1830,6 @@ export interface SchemaStatusDetail {
2281
1830
  */
2282
1831
  analysisType: AnalysisType | undefined;
2283
1832
  }
2284
- /**
2285
- * @public
2286
- * @enum
2287
- */
2288
- export declare const IdNamespaceType: {
2289
- readonly SOURCE: "SOURCE";
2290
- readonly TARGET: "TARGET";
2291
- };
2292
- /**
2293
- * @public
2294
- */
2295
- export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType];
2296
1833
  /**
2297
1834
  * <p>The input source of the ID mapping table.</p>
2298
1835
  * @public
@@ -2353,30 +1890,6 @@ export declare namespace SchemaTypeProperties {
2353
1890
  _: (name: string, value: any) => T;
2354
1891
  }
2355
1892
  }
2356
- /**
2357
- * @public
2358
- * @enum
2359
- */
2360
- export declare const SelectedAnalysisMethod: {
2361
- readonly DIRECT_JOB: "DIRECT_JOB";
2362
- readonly DIRECT_QUERY: "DIRECT_QUERY";
2363
- };
2364
- /**
2365
- * @public
2366
- */
2367
- export type SelectedAnalysisMethod = (typeof SelectedAnalysisMethod)[keyof typeof SelectedAnalysisMethod];
2368
- /**
2369
- * @public
2370
- * @enum
2371
- */
2372
- export declare const SchemaType: {
2373
- readonly ID_MAPPING_TABLE: "ID_MAPPING_TABLE";
2374
- readonly TABLE: "TABLE";
2375
- };
2376
- /**
2377
- * @public
2378
- */
2379
- export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
2380
1893
  /**
2381
1894
  * <p>A schema is a relation within a collaboration.</p>
2382
1895
  * @public
@@ -2550,31 +2063,6 @@ export interface BatchGetSchemaAnalysisRuleOutput {
2550
2063
  */
2551
2064
  errors: BatchGetSchemaAnalysisRuleError[] | undefined;
2552
2065
  }
2553
- /**
2554
- * @public
2555
- * @enum
2556
- */
2557
- export declare const MemberAbility: {
2558
- readonly CAN_QUERY: "CAN_QUERY";
2559
- readonly CAN_RECEIVE_RESULTS: "CAN_RECEIVE_RESULTS";
2560
- readonly CAN_RUN_JOB: "CAN_RUN_JOB";
2561
- };
2562
- /**
2563
- * @public
2564
- */
2565
- export type MemberAbility = (typeof MemberAbility)[keyof typeof MemberAbility];
2566
- /**
2567
- * @public
2568
- * @enum
2569
- */
2570
- export declare const CustomMLMemberAbility: {
2571
- readonly CAN_RECEIVE_INFERENCE_OUTPUT: "CAN_RECEIVE_INFERENCE_OUTPUT";
2572
- readonly CAN_RECEIVE_MODEL_OUTPUT: "CAN_RECEIVE_MODEL_OUTPUT";
2573
- };
2574
- /**
2575
- * @public
2576
- */
2577
- export type CustomMLMemberAbility = (typeof CustomMLMemberAbility)[keyof typeof CustomMLMemberAbility];
2578
2066
  /**
2579
2067
  * <p>The ML member abilities for a collaboration member.</p>
2580
2068
  * @public
@@ -2693,18 +2181,6 @@ export interface DataEncryptionMetadata {
2693
2181
  */
2694
2182
  preserveNulls: boolean | undefined;
2695
2183
  }
2696
- /**
2697
- * @public
2698
- * @enum
2699
- */
2700
- export declare const CollaborationJobLogStatus: {
2701
- readonly DISABLED: "DISABLED";
2702
- readonly ENABLED: "ENABLED";
2703
- };
2704
- /**
2705
- * @public
2706
- */
2707
- export type CollaborationJobLogStatus = (typeof CollaborationJobLogStatus)[keyof typeof CollaborationJobLogStatus];
2708
2184
  /**
2709
2185
  * <p>Basic metadata used to construct a new member.</p>
2710
2186
  * @public
@@ -2736,18 +2212,6 @@ export interface MemberSpecification {
2736
2212
  */
2737
2213
  paymentConfiguration?: PaymentConfiguration | undefined;
2738
2214
  }
2739
- /**
2740
- * @public
2741
- * @enum
2742
- */
2743
- export declare const CollaborationQueryLogStatus: {
2744
- readonly DISABLED: "DISABLED";
2745
- readonly ENABLED: "ENABLED";
2746
- };
2747
- /**
2748
- * @public
2749
- */
2750
- export type CollaborationQueryLogStatus = (typeof CollaborationQueryLogStatus)[keyof typeof CollaborationQueryLogStatus];
2751
2215
  /**
2752
2216
  * @public
2753
2217
  */
@@ -2992,17 +2456,6 @@ export declare namespace ChangeSpecification {
2992
2456
  _: (name: string, value: any) => T;
2993
2457
  }
2994
2458
  }
2995
- /**
2996
- * @public
2997
- * @enum
2998
- */
2999
- export declare const ChangeSpecificationType: {
3000
- readonly MEMBER: "MEMBER";
3001
- };
3002
- /**
3003
- * @public
3004
- */
3005
- export type ChangeSpecificationType = (typeof ChangeSpecificationType)[keyof typeof ChangeSpecificationType];
3006
2459
  /**
3007
2460
  * <p>Specifies a change to apply to a collaboration.</p>
3008
2461
  * @public
@@ -3034,17 +2487,6 @@ export interface CreateCollaborationChangeRequestInput {
3034
2487
  */
3035
2488
  changes: ChangeInput[] | undefined;
3036
2489
  }
3037
- /**
3038
- * @public
3039
- * @enum
3040
- */
3041
- export declare const ChangeType: {
3042
- readonly ADD_MEMBER: "ADD_MEMBER";
3043
- };
3044
- /**
3045
- * @public
3046
- */
3047
- export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
3048
2490
  /**
3049
2491
  * <p>Represents a single change within a collaboration change request, containing the change identifier and specification.</p>
3050
2492
  * @public
@@ -3066,21 +2508,6 @@ export interface Change {
3066
2508
  */
3067
2509
  types: ChangeType[] | undefined;
3068
2510
  }
3069
- /**
3070
- * @public
3071
- * @enum
3072
- */
3073
- export declare const ChangeRequestStatus: {
3074
- readonly APPROVED: "APPROVED";
3075
- readonly CANCELLED: "CANCELLED";
3076
- readonly COMMITTED: "COMMITTED";
3077
- readonly DENIED: "DENIED";
3078
- readonly PENDING: "PENDING";
3079
- };
3080
- /**
3081
- * @public
3082
- */
3083
- export type ChangeRequestStatus = (typeof ChangeRequestStatus)[keyof typeof ChangeRequestStatus];
3084
2511
  /**
3085
2512
  * <p>Represents a request to modify a collaboration. Change requests enable structured modifications to collaborations after they have been created.</p>
3086
2513
  * @public
@@ -3467,18 +2894,6 @@ export interface GetCollaborationPrivacyBudgetTemplateInput {
3467
2894
  */
3468
2895
  privacyBudgetTemplateIdentifier: string | undefined;
3469
2896
  }
3470
- /**
3471
- * @public
3472
- * @enum
3473
- */
3474
- export declare const PrivacyBudgetTemplateAutoRefresh: {
3475
- readonly CALENDAR_MONTH: "CALENDAR_MONTH";
3476
- readonly NONE: "NONE";
3477
- };
3478
- /**
3479
- * @public
3480
- */
3481
- export type PrivacyBudgetTemplateAutoRefresh = (typeof PrivacyBudgetTemplateAutoRefresh)[keyof typeof PrivacyBudgetTemplateAutoRefresh];
3482
2897
  /**
3483
2898
  * <p>The epsilon and noise parameter values that were used for the differential privacy template.</p>
3484
2899
  * @public
@@ -3540,18 +2955,6 @@ export declare namespace PrivacyBudgetTemplateParametersOutput {
3540
2955
  _: (name: string, value: any) => T;
3541
2956
  }
3542
2957
  }
3543
- /**
3544
- * @public
3545
- * @enum
3546
- */
3547
- export declare const PrivacyBudgetType: {
3548
- readonly ACCESS_BUDGET: "ACCESS_BUDGET";
3549
- readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
3550
- };
3551
- /**
3552
- * @public
3553
- */
3554
- export type PrivacyBudgetType = (typeof PrivacyBudgetType)[keyof typeof PrivacyBudgetType];
3555
2958
  /**
3556
2959
  * <p>An array that specifies the information for a collaboration's privacy budget template.</p>
3557
2960
  * @public
@@ -4063,21 +3466,6 @@ export interface ListCollaborationPrivacyBudgetsInput {
4063
3466
  */
4064
3467
  accessBudgetResourceArn?: string | undefined;
4065
3468
  }
4066
- /**
4067
- * @public
4068
- * @enum
4069
- */
4070
- export declare const DifferentialPrivacyAggregationType: {
4071
- readonly AVG: "AVG";
4072
- readonly COUNT: "COUNT";
4073
- readonly COUNT_DISTINCT: "COUNT_DISTINCT";
4074
- readonly STDDEV: "STDDEV";
4075
- readonly SUM: "SUM";
4076
- };
4077
- /**
4078
- * @public
4079
- */
4080
- export type DifferentialPrivacyAggregationType = (typeof DifferentialPrivacyAggregationType)[keyof typeof DifferentialPrivacyAggregationType];
4081
3469
  /**
4082
3470
  * <p>Information about the total number of aggregations, as well as the remaining aggregations.</p>
4083
3471
  * @public
@@ -4969,19 +4357,6 @@ export interface CreateConfiguredTableAssociationInput {
4969
4357
  */
4970
4358
  tags?: Record<string, string> | undefined;
4971
4359
  }
4972
- /**
4973
- * @public
4974
- * @enum
4975
- */
4976
- export declare const ConfiguredTableAssociationAnalysisRuleType: {
4977
- readonly AGGREGATION: "AGGREGATION";
4978
- readonly CUSTOM: "CUSTOM";
4979
- readonly LIST: "LIST";
4980
- };
4981
- /**
4982
- * @public
4983
- */
4984
- export type ConfiguredTableAssociationAnalysisRuleType = (typeof ConfiguredTableAssociationAnalysisRuleType)[keyof typeof ConfiguredTableAssociationAnalysisRuleType];
4985
4360
  /**
4986
4361
  * <p>A configured table association links a configured table to a collaboration.</p>
4987
4362
  * @public
@@ -5595,19 +4970,6 @@ export interface CreateConfiguredTableInput {
5595
4970
  */
5596
4971
  tags?: Record<string, string> | undefined;
5597
4972
  }
5598
- /**
5599
- * @public
5600
- * @enum
5601
- */
5602
- export declare const ConfiguredTableAnalysisRuleType: {
5603
- readonly AGGREGATION: "AGGREGATION";
5604
- readonly CUSTOM: "CUSTOM";
5605
- readonly LIST: "LIST";
5606
- };
5607
- /**
5608
- * @public
5609
- */
5610
- export type ConfiguredTableAnalysisRuleType = (typeof ConfiguredTableAnalysisRuleType)[keyof typeof ConfiguredTableAnalysisRuleType];
5611
4973
  /**
5612
4974
  * <p>A table that has been configured for use in a collaboration.</p>
5613
4975
  * @public
@@ -6359,19 +5721,6 @@ export interface ListIdMappingTablesOutput {
6359
5721
  */
6360
5722
  nextToken?: string | undefined;
6361
5723
  }
6362
- /**
6363
- * @public
6364
- * @enum
6365
- */
6366
- export declare const JobType: {
6367
- readonly BATCH: "BATCH";
6368
- readonly DELETE_ONLY: "DELETE_ONLY";
6369
- readonly INCREMENTAL: "INCREMENTAL";
6370
- };
6371
- /**
6372
- * @public
6373
- */
6374
- export type JobType = (typeof JobType)[keyof typeof JobType];
6375
5724
  /**
6376
5725
  * @public
6377
5726
  */
@@ -6836,3 +6185,858 @@ export declare const ResultFormat: {
6836
6185
  * @public
6837
6186
  */
6838
6187
  export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
6188
+ /**
6189
+ * <p>Contains the configuration to write the query results to S3.</p>
6190
+ * @public
6191
+ */
6192
+ export interface ProtectedQueryS3OutputConfiguration {
6193
+ /**
6194
+ * <p>Intended file format of the result.</p>
6195
+ * @public
6196
+ */
6197
+ resultFormat: ResultFormat | undefined;
6198
+ /**
6199
+ * <p>The S3 bucket to unload the protected query results.</p>
6200
+ * @public
6201
+ */
6202
+ bucket: string | undefined;
6203
+ /**
6204
+ * <p>The S3 prefix to unload the protected query results.</p>
6205
+ * @public
6206
+ */
6207
+ keyPrefix?: string | undefined;
6208
+ /**
6209
+ * <p>Indicates whether files should be output as a single file (<code>TRUE</code>) or output as multiple files (<code>FALSE</code>). This parameter is only supported for analyses with the Spark analytics engine.</p>
6210
+ * @public
6211
+ */
6212
+ singleFileOutput?: boolean | undefined;
6213
+ }
6214
+ /**
6215
+ * <p>Contains configurations for protected query results.</p>
6216
+ * @public
6217
+ */
6218
+ export type MembershipProtectedQueryOutputConfiguration = MembershipProtectedQueryOutputConfiguration.S3Member | MembershipProtectedQueryOutputConfiguration.$UnknownMember;
6219
+ /**
6220
+ * @public
6221
+ */
6222
+ export declare namespace MembershipProtectedQueryOutputConfiguration {
6223
+ /**
6224
+ * <p>Contains the configuration to write the query results to S3.</p>
6225
+ * @public
6226
+ */
6227
+ interface S3Member {
6228
+ s3: ProtectedQueryS3OutputConfiguration;
6229
+ $unknown?: never;
6230
+ }
6231
+ /**
6232
+ * @public
6233
+ */
6234
+ interface $UnknownMember {
6235
+ s3?: never;
6236
+ $unknown: [string, any];
6237
+ }
6238
+ /**
6239
+ * @deprecated unused in schema-serde mode.
6240
+ *
6241
+ */
6242
+ interface Visitor<T> {
6243
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
6244
+ _: (name: string, value: any) => T;
6245
+ }
6246
+ }
6247
+ /**
6248
+ * <p>Contains configurations for protected query results.</p>
6249
+ * @public
6250
+ */
6251
+ export interface MembershipProtectedQueryResultConfiguration {
6252
+ /**
6253
+ * <p>Configuration for protected query results.</p>
6254
+ * @public
6255
+ */
6256
+ outputConfiguration: MembershipProtectedQueryOutputConfiguration | undefined;
6257
+ /**
6258
+ * <p>The unique ARN for an IAM role that is used by Clean Rooms to write protected query results to the result location, given by the member who can receive results.</p>
6259
+ * @public
6260
+ */
6261
+ roleArn?: string | undefined;
6262
+ }
6263
+ /**
6264
+ * <p>An object representing the payment responsibilities accepted by the collaboration member for query and job compute costs.</p>
6265
+ * @public
6266
+ */
6267
+ export interface MembershipJobComputePaymentConfig {
6268
+ /**
6269
+ * <p>Indicates whether the collaboration member has accepted to pay for job compute costs (<code>TRUE</code>) or has not accepted to pay for query and job compute costs (<code>FALSE</code>).</p> <p>There is only one member who pays for queries and jobs. </p> <p>An error message is returned for the following reasons: </p> <ul> <li> <p>If you set the value to <code>FALSE</code> but you are responsible to pay for query and job compute costs. </p> </li> <li> <p>If you set the value to <code>TRUE</code> but you are not responsible to pay for query and job compute costs. </p> </li> </ul>
6270
+ * @public
6271
+ */
6272
+ isResponsible: boolean | undefined;
6273
+ }
6274
+ /**
6275
+ * <p>An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator.</p>
6276
+ * @public
6277
+ */
6278
+ export interface MembershipModelInferencePaymentConfig {
6279
+ /**
6280
+ * <p>Indicates whether the collaboration member has accepted to pay for model inference costs (<code>TRUE</code>) or has not accepted to pay for model inference costs (<code>FALSE</code>).</p> <p>If the collaboration creator has not specified anyone to pay for model inference costs, then the member who can query is the default payer. </p> <p>An error message is returned for the following reasons: </p> <ul> <li> <p>If you set the value to <code>FALSE</code> but you are responsible to pay for model inference costs. </p> </li> <li> <p>If you set the value to <code>TRUE</code> but you are not responsible to pay for model inference costs. </p> </li> </ul>
6281
+ * @public
6282
+ */
6283
+ isResponsible: boolean | undefined;
6284
+ }
6285
+ /**
6286
+ * <p>An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.</p>
6287
+ * @public
6288
+ */
6289
+ export interface MembershipModelTrainingPaymentConfig {
6290
+ /**
6291
+ * <p>Indicates whether the collaboration member has accepted to pay for model training costs (<code>TRUE</code>) or has not accepted to pay for model training costs (<code>FALSE</code>).</p> <p>If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer. </p> <p>An error message is returned for the following reasons: </p> <ul> <li> <p>If you set the value to <code>FALSE</code> but you are responsible to pay for model training costs. </p> </li> <li> <p>If you set the value to <code>TRUE</code> but you are not responsible to pay for model training costs. </p> </li> </ul>
6292
+ * @public
6293
+ */
6294
+ isResponsible: boolean | undefined;
6295
+ }
6296
+ /**
6297
+ * <p>An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.</p>
6298
+ * @public
6299
+ */
6300
+ export interface MembershipMLPaymentConfig {
6301
+ /**
6302
+ * <p>The payment responsibilities accepted by the member for model training.</p>
6303
+ * @public
6304
+ */
6305
+ modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
6306
+ /**
6307
+ * <p>The payment responsibilities accepted by the member for model inference.</p>
6308
+ * @public
6309
+ */
6310
+ modelInference?: MembershipModelInferencePaymentConfig | undefined;
6311
+ }
6312
+ /**
6313
+ * <p>An object representing the payment responsibilities accepted by the collaboration member for query compute costs.</p>
6314
+ * @public
6315
+ */
6316
+ export interface MembershipQueryComputePaymentConfig {
6317
+ /**
6318
+ * <p>Indicates whether the collaboration member has accepted to pay for query compute costs (<code>TRUE</code>) or has not accepted to pay for query compute costs (<code>FALSE</code>).</p> <p>If the collaboration creator has not specified anyone to pay for query compute costs, then the member who can query is the default payer. </p> <p>An error message is returned for the following reasons: </p> <ul> <li> <p>If you set the value to <code>FALSE</code> but you are responsible to pay for query compute costs. </p> </li> <li> <p>If you set the value to <code>TRUE</code> but you are not responsible to pay for query compute costs. </p> </li> </ul>
6319
+ * @public
6320
+ */
6321
+ isResponsible: boolean | undefined;
6322
+ }
6323
+ /**
6324
+ * <p>An object representing the payment responsibilities accepted by the collaboration member.</p>
6325
+ * @public
6326
+ */
6327
+ export interface MembershipPaymentConfiguration {
6328
+ /**
6329
+ * <p>The payment responsibilities accepted by the collaboration member for query compute costs.</p>
6330
+ * @public
6331
+ */
6332
+ queryCompute: MembershipQueryComputePaymentConfig | undefined;
6333
+ /**
6334
+ * <p>The payment responsibilities accepted by the collaboration member for machine learning costs.</p>
6335
+ * @public
6336
+ */
6337
+ machineLearning?: MembershipMLPaymentConfig | undefined;
6338
+ /**
6339
+ * <p>The payment responsibilities accepted by the collaboration member for job compute costs.</p>
6340
+ * @public
6341
+ */
6342
+ jobCompute?: MembershipJobComputePaymentConfig | undefined;
6343
+ }
6344
+ /**
6345
+ * @public
6346
+ */
6347
+ export interface CreateMembershipInput {
6348
+ /**
6349
+ * <p>The unique ID for the associated collaboration.</p>
6350
+ * @public
6351
+ */
6352
+ collaborationIdentifier: string | undefined;
6353
+ /**
6354
+ * <p>An indicator as to whether query logging has been enabled or disabled for the membership.</p> <p>When <code>ENABLED</code>, Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
6355
+ * @public
6356
+ */
6357
+ queryLogStatus: MembershipQueryLogStatus | undefined;
6358
+ /**
6359
+ * <p>An indicator as to whether job logging has been enabled or disabled for the collaboration. </p> <p>When <code>ENABLED</code>, Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
6360
+ * @public
6361
+ */
6362
+ jobLogStatus?: MembershipJobLogStatus | undefined;
6363
+ /**
6364
+ * <p>An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.</p>
6365
+ * @public
6366
+ */
6367
+ tags?: Record<string, string> | undefined;
6368
+ /**
6369
+ * <p>The default protected query result configuration as specified by the member who can receive results.</p>
6370
+ * @public
6371
+ */
6372
+ defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
6373
+ /**
6374
+ * <p>The default job result configuration that determines how job results are protected and managed within this membership. This configuration applies to all jobs.</p>
6375
+ * @public
6376
+ */
6377
+ defaultJobResultConfiguration?: MembershipProtectedJobResultConfiguration | undefined;
6378
+ /**
6379
+ * <p>The payment responsibilities accepted by the collaboration member.</p> <p>Not required if the collaboration member has the member ability to run queries. </p> <p>Required if the collaboration member doesn't have the member ability to run queries but is configured as a payer by the collaboration creator. </p>
6380
+ * @public
6381
+ */
6382
+ paymentConfiguration?: MembershipPaymentConfiguration | undefined;
6383
+ }
6384
+ /**
6385
+ * @public
6386
+ * @enum
6387
+ */
6388
+ export declare const MembershipStatus: {
6389
+ readonly ACTIVE: "ACTIVE";
6390
+ readonly COLLABORATION_DELETED: "COLLABORATION_DELETED";
6391
+ readonly REMOVED: "REMOVED";
6392
+ };
6393
+ /**
6394
+ * @public
6395
+ */
6396
+ export type MembershipStatus = (typeof MembershipStatus)[keyof typeof MembershipStatus];
6397
+ /**
6398
+ * <p>The membership object.</p>
6399
+ * @public
6400
+ */
6401
+ export interface Membership {
6402
+ /**
6403
+ * <p>The unique ID of the membership.</p>
6404
+ * @public
6405
+ */
6406
+ id: string | undefined;
6407
+ /**
6408
+ * <p>The unique ARN for the membership.</p>
6409
+ * @public
6410
+ */
6411
+ arn: string | undefined;
6412
+ /**
6413
+ * <p>The unique ARN for the membership's associated collaboration.</p>
6414
+ * @public
6415
+ */
6416
+ collaborationArn: string | undefined;
6417
+ /**
6418
+ * <p>The unique ID for the membership's collaboration.</p>
6419
+ * @public
6420
+ */
6421
+ collaborationId: string | undefined;
6422
+ /**
6423
+ * <p>The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.</p>
6424
+ * @public
6425
+ */
6426
+ collaborationCreatorAccountId: string | undefined;
6427
+ /**
6428
+ * <p>The display name of the collaboration creator.</p>
6429
+ * @public
6430
+ */
6431
+ collaborationCreatorDisplayName: string | undefined;
6432
+ /**
6433
+ * <p>The name of the membership's collaboration.</p>
6434
+ * @public
6435
+ */
6436
+ collaborationName: string | undefined;
6437
+ /**
6438
+ * <p>The time when the membership was created.</p>
6439
+ * @public
6440
+ */
6441
+ createTime: Date | undefined;
6442
+ /**
6443
+ * <p>The time the membership metadata was last updated.</p>
6444
+ * @public
6445
+ */
6446
+ updateTime: Date | undefined;
6447
+ /**
6448
+ * <p>The status of the membership.</p>
6449
+ * @public
6450
+ */
6451
+ status: MembershipStatus | undefined;
6452
+ /**
6453
+ * <p>The abilities granted to the collaboration member.</p>
6454
+ * @public
6455
+ */
6456
+ memberAbilities: MemberAbility[] | undefined;
6457
+ /**
6458
+ * <p>Specifies the ML member abilities that are granted to a collaboration member.</p>
6459
+ * @public
6460
+ */
6461
+ mlMemberAbilities?: MLMemberAbilities | undefined;
6462
+ /**
6463
+ * <p>An indicator as to whether query logging has been enabled or disabled for the membership.</p> <p>When <code>ENABLED</code>, Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
6464
+ * @public
6465
+ */
6466
+ queryLogStatus: MembershipQueryLogStatus | undefined;
6467
+ /**
6468
+ * <p>An indicator as to whether job logging has been enabled or disabled for the collaboration. </p> <p>When <code>ENABLED</code>, Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
6469
+ * @public
6470
+ */
6471
+ jobLogStatus?: MembershipJobLogStatus | undefined;
6472
+ /**
6473
+ * <p>The default protected query result configuration as specified by the member who can receive results.</p>
6474
+ * @public
6475
+ */
6476
+ defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
6477
+ /**
6478
+ * <p> The default job result configuration for the membership.</p>
6479
+ * @public
6480
+ */
6481
+ defaultJobResultConfiguration?: MembershipProtectedJobResultConfiguration | undefined;
6482
+ /**
6483
+ * <p>The payment responsibilities accepted by the collaboration member.</p>
6484
+ * @public
6485
+ */
6486
+ paymentConfiguration: MembershipPaymentConfiguration | undefined;
6487
+ }
6488
+ /**
6489
+ * @public
6490
+ */
6491
+ export interface CreateMembershipOutput {
6492
+ /**
6493
+ * <p>The membership that was created.</p>
6494
+ * @public
6495
+ */
6496
+ membership: Membership | undefined;
6497
+ }
6498
+ /**
6499
+ * @public
6500
+ */
6501
+ export interface DeleteMembershipInput {
6502
+ /**
6503
+ * <p>The identifier for a membership resource.</p>
6504
+ * @public
6505
+ */
6506
+ membershipIdentifier: string | undefined;
6507
+ }
6508
+ /**
6509
+ * @public
6510
+ */
6511
+ export interface DeleteMembershipOutput {
6512
+ }
6513
+ /**
6514
+ * @public
6515
+ */
6516
+ export interface GetMembershipInput {
6517
+ /**
6518
+ * <p>The identifier for a membership resource.</p>
6519
+ * @public
6520
+ */
6521
+ membershipIdentifier: string | undefined;
6522
+ }
6523
+ /**
6524
+ * @public
6525
+ */
6526
+ export interface GetMembershipOutput {
6527
+ /**
6528
+ * <p>The membership retrieved for the provided identifier.</p>
6529
+ * @public
6530
+ */
6531
+ membership: Membership | undefined;
6532
+ }
6533
+ /**
6534
+ * @public
6535
+ */
6536
+ export interface GetProtectedJobInput {
6537
+ /**
6538
+ * <p> The identifier for a membership in a protected job instance.</p>
6539
+ * @public
6540
+ */
6541
+ membershipIdentifier: string | undefined;
6542
+ /**
6543
+ * <p> The identifier for the protected job instance.</p>
6544
+ * @public
6545
+ */
6546
+ protectedJobIdentifier: string | undefined;
6547
+ }
6548
+ /**
6549
+ * <p>The configuration of the compute resources for a PySpark job.</p>
6550
+ * @public
6551
+ */
6552
+ export interface ProtectedJobWorkerComputeConfiguration {
6553
+ /**
6554
+ * <p>The worker compute configuration type.</p>
6555
+ * @public
6556
+ */
6557
+ type: ProtectedJobWorkerComputeType | undefined;
6558
+ /**
6559
+ * <p>The number of workers for a PySpark job.</p>
6560
+ * @public
6561
+ */
6562
+ number: number | undefined;
6563
+ }
6564
+ /**
6565
+ * <p>The configuration of the compute resources for a PySpark job.</p>
6566
+ * @public
6567
+ */
6568
+ export type ProtectedJobComputeConfiguration = ProtectedJobComputeConfiguration.WorkerMember | ProtectedJobComputeConfiguration.$UnknownMember;
6569
+ /**
6570
+ * @public
6571
+ */
6572
+ export declare namespace ProtectedJobComputeConfiguration {
6573
+ /**
6574
+ * <p>The worker configuration for the compute environment.</p>
6575
+ * @public
6576
+ */
6577
+ interface WorkerMember {
6578
+ worker: ProtectedJobWorkerComputeConfiguration;
6579
+ $unknown?: never;
6580
+ }
6581
+ /**
6582
+ * @public
6583
+ */
6584
+ interface $UnknownMember {
6585
+ worker?: never;
6586
+ $unknown: [string, any];
6587
+ }
6588
+ /**
6589
+ * @deprecated unused in schema-serde mode.
6590
+ *
6591
+ */
6592
+ interface Visitor<T> {
6593
+ worker: (value: ProtectedJobWorkerComputeConfiguration) => T;
6594
+ _: (name: string, value: any) => T;
6595
+ }
6596
+ }
6597
+ /**
6598
+ * <p>The protected job error.</p>
6599
+ * @public
6600
+ */
6601
+ export interface ProtectedJobError {
6602
+ /**
6603
+ * <p> The message for the protected job error.</p>
6604
+ * @public
6605
+ */
6606
+ message: string | undefined;
6607
+ /**
6608
+ * <p> The error code for the protected job.</p>
6609
+ * @public
6610
+ */
6611
+ code: string | undefined;
6612
+ }
6613
+ /**
6614
+ * <p>The parameters for the protected job.</p>
6615
+ * @public
6616
+ */
6617
+ export interface ProtectedJobParameters {
6618
+ /**
6619
+ * <p> The ARN of the analysis template.</p>
6620
+ * @public
6621
+ */
6622
+ analysisTemplateArn?: string | undefined;
6623
+ }
6624
+ /**
6625
+ * <p>Details about the member who received the job result.</p>
6626
+ * @public
6627
+ */
6628
+ export interface ProtectedJobSingleMemberOutput {
6629
+ /**
6630
+ * <p>The Amazon Web Services account ID of the member in the collaboration who can receive results from analyses.</p>
6631
+ * @public
6632
+ */
6633
+ accountId: string | undefined;
6634
+ }
6635
+ /**
6636
+ * <p>Contains output information for protected jobs with an S3 output type.</p>
6637
+ * @public
6638
+ */
6639
+ export interface ProtectedJobS3Output {
6640
+ /**
6641
+ * <p> The S3 location for the protected job output.</p>
6642
+ * @public
6643
+ */
6644
+ location: string | undefined;
6645
+ }
6646
+ /**
6647
+ * <p>Contains details about the protected job output.</p>
6648
+ * @public
6649
+ */
6650
+ export type ProtectedJobOutput = ProtectedJobOutput.MemberListMember | ProtectedJobOutput.S3Member | ProtectedJobOutput.$UnknownMember;
6651
+ /**
6652
+ * @public
6653
+ */
6654
+ export declare namespace ProtectedJobOutput {
6655
+ /**
6656
+ * <p>If present, the output for a protected job with an `S3` output type.</p>
6657
+ * @public
6658
+ */
6659
+ interface S3Member {
6660
+ s3: ProtectedJobS3Output;
6661
+ memberList?: never;
6662
+ $unknown?: never;
6663
+ }
6664
+ /**
6665
+ * <p>The list of member Amazon Web Services account(s) that received the results of the job. </p>
6666
+ * @public
6667
+ */
6668
+ interface MemberListMember {
6669
+ s3?: never;
6670
+ memberList: ProtectedJobSingleMemberOutput[];
6671
+ $unknown?: never;
6672
+ }
6673
+ /**
6674
+ * @public
6675
+ */
6676
+ interface $UnknownMember {
6677
+ s3?: never;
6678
+ memberList?: never;
6679
+ $unknown: [string, any];
6680
+ }
6681
+ /**
6682
+ * @deprecated unused in schema-serde mode.
6683
+ *
6684
+ */
6685
+ interface Visitor<T> {
6686
+ s3: (value: ProtectedJobS3Output) => T;
6687
+ memberList: (value: ProtectedJobSingleMemberOutput[]) => T;
6688
+ _: (name: string, value: any) => T;
6689
+ }
6690
+ }
6691
+ /**
6692
+ * <p>Details about the job results.</p>
6693
+ * @public
6694
+ */
6695
+ export interface ProtectedJobResult {
6696
+ /**
6697
+ * <p> The output of the protected job.</p>
6698
+ * @public
6699
+ */
6700
+ output: ProtectedJobOutput | undefined;
6701
+ }
6702
+ /**
6703
+ * <p> The protected job member output configuration output.</p>
6704
+ * @public
6705
+ */
6706
+ export interface ProtectedJobMemberOutputConfigurationOutput {
6707
+ /**
6708
+ * <p> The account ID.</p>
6709
+ * @public
6710
+ */
6711
+ accountId: string | undefined;
6712
+ }
6713
+ /**
6714
+ * <p> The output configuration for a protected job's S3 output.</p>
6715
+ * @public
6716
+ */
6717
+ export interface ProtectedJobS3OutputConfigurationOutput {
6718
+ /**
6719
+ * <p> The S3 bucket for job output.</p>
6720
+ * @public
6721
+ */
6722
+ bucket: string | undefined;
6723
+ /**
6724
+ * <p>The S3 prefix to unload the protected job results.</p>
6725
+ * @public
6726
+ */
6727
+ keyPrefix?: string | undefined;
6728
+ }
6729
+ /**
6730
+ * <p> The protected job output configuration output.</p>
6731
+ * @public
6732
+ */
6733
+ export type ProtectedJobOutputConfigurationOutput = ProtectedJobOutputConfigurationOutput.MemberMember | ProtectedJobOutputConfigurationOutput.S3Member | ProtectedJobOutputConfigurationOutput.$UnknownMember;
6734
+ /**
6735
+ * @public
6736
+ */
6737
+ export declare namespace ProtectedJobOutputConfigurationOutput {
6738
+ /**
6739
+ * <p>If present, the output for a protected job with an `S3` output type.</p>
6740
+ * @public
6741
+ */
6742
+ interface S3Member {
6743
+ s3: ProtectedJobS3OutputConfigurationOutput;
6744
+ member?: never;
6745
+ $unknown?: never;
6746
+ }
6747
+ /**
6748
+ * <p> The member output configuration for a protected job.</p>
6749
+ * @public
6750
+ */
6751
+ interface MemberMember {
6752
+ s3?: never;
6753
+ member: ProtectedJobMemberOutputConfigurationOutput;
6754
+ $unknown?: never;
6755
+ }
6756
+ /**
6757
+ * @public
6758
+ */
6759
+ interface $UnknownMember {
6760
+ s3?: never;
6761
+ member?: never;
6762
+ $unknown: [string, any];
6763
+ }
6764
+ /**
6765
+ * @deprecated unused in schema-serde mode.
6766
+ *
6767
+ */
6768
+ interface Visitor<T> {
6769
+ s3: (value: ProtectedJobS3OutputConfigurationOutput) => T;
6770
+ member: (value: ProtectedJobMemberOutputConfigurationOutput) => T;
6771
+ _: (name: string, value: any) => T;
6772
+ }
6773
+ }
6774
+ /**
6775
+ * <p>The output configuration for a protected job result.</p>
6776
+ * @public
6777
+ */
6778
+ export interface ProtectedJobResultConfigurationOutput {
6779
+ /**
6780
+ * <p>The output configuration.</p>
6781
+ * @public
6782
+ */
6783
+ outputConfiguration: ProtectedJobOutputConfigurationOutput | undefined;
6784
+ }
6785
+ /**
6786
+ * <p> Information related to the utilization of resources that have been billed or charged for in a given context, such as a protected job.</p>
6787
+ * @public
6788
+ */
6789
+ export interface BilledJobResourceUtilization {
6790
+ /**
6791
+ * <p> The number of Clean Rooms Processing Unit (CRPU) hours that have been billed.</p>
6792
+ * @public
6793
+ */
6794
+ units: number | undefined;
6795
+ }
6796
+ /**
6797
+ * <p>Contains statistics about the execution of the protected job.</p>
6798
+ * @public
6799
+ */
6800
+ export interface ProtectedJobStatistics {
6801
+ /**
6802
+ * <p>The duration of the protected job, from creation until job completion, in milliseconds.</p>
6803
+ * @public
6804
+ */
6805
+ totalDurationInMillis?: number | undefined;
6806
+ /**
6807
+ * <p> The billed resource utilization for the protected job.</p>
6808
+ * @public
6809
+ */
6810
+ billedResourceUtilization?: BilledJobResourceUtilization | undefined;
6811
+ }
6812
+ /**
6813
+ * <p>The parameters for an Clean Rooms protected job.</p>
6814
+ * @public
6815
+ */
6816
+ export interface ProtectedJob {
6817
+ /**
6818
+ * <p>The identifier for a protected job instance.</p>
6819
+ * @public
6820
+ */
6821
+ id: string | undefined;
6822
+ /**
6823
+ * <p>he identifier for the membership.</p>
6824
+ * @public
6825
+ */
6826
+ membershipId: string | undefined;
6827
+ /**
6828
+ * <p>The ARN of the membership.</p>
6829
+ * @public
6830
+ */
6831
+ membershipArn: string | undefined;
6832
+ /**
6833
+ * <p> The creation time of the protected job.</p>
6834
+ * @public
6835
+ */
6836
+ createTime: Date | undefined;
6837
+ /**
6838
+ * <p> The job parameters for the protected job.</p>
6839
+ * @public
6840
+ */
6841
+ jobParameters?: ProtectedJobParameters | undefined;
6842
+ /**
6843
+ * <p> The status of the protected job.</p>
6844
+ * @public
6845
+ */
6846
+ status: ProtectedJobStatus | undefined;
6847
+ /**
6848
+ * <p>Contains any details needed to write the job results.</p>
6849
+ * @public
6850
+ */
6851
+ resultConfiguration?: ProtectedJobResultConfigurationOutput | undefined;
6852
+ /**
6853
+ * <p> The statistics of the protected job.</p>
6854
+ * @public
6855
+ */
6856
+ statistics?: ProtectedJobStatistics | undefined;
6857
+ /**
6858
+ * <p> The result of the protected job.</p>
6859
+ * @public
6860
+ */
6861
+ result?: ProtectedJobResult | undefined;
6862
+ /**
6863
+ * <p> The error from the protected job.</p>
6864
+ * @public
6865
+ */
6866
+ error?: ProtectedJobError | undefined;
6867
+ /**
6868
+ * <p>The compute configuration for the protected job.</p>
6869
+ * @public
6870
+ */
6871
+ computeConfiguration?: ProtectedJobComputeConfiguration | undefined;
6872
+ }
6873
+ /**
6874
+ * @public
6875
+ */
6876
+ export interface GetProtectedJobOutput {
6877
+ /**
6878
+ * <p> The protected job metadata.</p>
6879
+ * @public
6880
+ */
6881
+ protectedJob: ProtectedJob | undefined;
6882
+ }
6883
+ /**
6884
+ * @public
6885
+ */
6886
+ export interface GetProtectedQueryInput {
6887
+ /**
6888
+ * <p>The identifier for a membership in a protected query instance.</p>
6889
+ * @public
6890
+ */
6891
+ membershipIdentifier: string | undefined;
6892
+ /**
6893
+ * <p>The identifier for a protected query instance.</p>
6894
+ * @public
6895
+ */
6896
+ protectedQueryIdentifier: string | undefined;
6897
+ }
6898
+ /**
6899
+ * <p>The configuration properties that define the compute environment settings for workers in Clean Rooms. These properties enable customization of the underlying compute environment to optimize performance for your specific workloads.</p>
6900
+ * @public
6901
+ */
6902
+ export type WorkerComputeConfigurationProperties = WorkerComputeConfigurationProperties.SparkMember | WorkerComputeConfigurationProperties.$UnknownMember;
6903
+ /**
6904
+ * @public
6905
+ */
6906
+ export declare namespace WorkerComputeConfigurationProperties {
6907
+ /**
6908
+ * <p>The Spark configuration properties for SQL workloads. This map contains key-value pairs that configure Apache Spark settings to optimize performance for your data processing jobs. You can specify up to 50 Spark properties, with each key being 1-200 characters and each value being 0-500 characters. These properties allow you to adjust compute capacity for large datasets and complex workloads.</p>
6909
+ * @public
6910
+ */
6911
+ interface SparkMember {
6912
+ spark: Record<string, string>;
6913
+ $unknown?: never;
6914
+ }
6915
+ /**
6916
+ * @public
6917
+ */
6918
+ interface $UnknownMember {
6919
+ spark?: never;
6920
+ $unknown: [string, any];
6921
+ }
6922
+ /**
6923
+ * @deprecated unused in schema-serde mode.
6924
+ *
6925
+ */
6926
+ interface Visitor<T> {
6927
+ spark: (value: Record<string, string>) => T;
6928
+ _: (name: string, value: any) => T;
6929
+ }
6930
+ }
6931
+ /**
6932
+ * <p> The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.</p>
6933
+ * @public
6934
+ */
6935
+ export interface WorkerComputeConfiguration {
6936
+ /**
6937
+ * <p> The worker compute configuration type.</p>
6938
+ * @public
6939
+ */
6940
+ type?: WorkerComputeType | undefined;
6941
+ /**
6942
+ * <p> The number of workers.</p> <p>SQL queries support a minimum value of 2 and a maximum value of 400. </p> <p>PySpark jobs support a minimum value of 4 and a maximum value of 128.</p>
6943
+ * @public
6944
+ */
6945
+ number?: number | undefined;
6946
+ /**
6947
+ * <p>The configuration properties for the worker compute environment. These properties allow you to customize the compute settings for your Clean Rooms workloads.</p>
6948
+ * @public
6949
+ */
6950
+ properties?: WorkerComputeConfigurationProperties | undefined;
6951
+ }
6952
+ /**
6953
+ * <p> The configuration of the compute resources for an analysis with the Spark analytics engine.</p>
6954
+ * @public
6955
+ */
6956
+ export type ComputeConfiguration = ComputeConfiguration.WorkerMember | ComputeConfiguration.$UnknownMember;
6957
+ /**
6958
+ * @public
6959
+ */
6960
+ export declare namespace ComputeConfiguration {
6961
+ /**
6962
+ * <p> The worker configuration for the compute environment.</p>
6963
+ * @public
6964
+ */
6965
+ interface WorkerMember {
6966
+ worker: WorkerComputeConfiguration;
6967
+ $unknown?: never;
6968
+ }
6969
+ /**
6970
+ * @public
6971
+ */
6972
+ interface $UnknownMember {
6973
+ worker?: never;
6974
+ $unknown: [string, any];
6975
+ }
6976
+ /**
6977
+ * @deprecated unused in schema-serde mode.
6978
+ *
6979
+ */
6980
+ interface Visitor<T> {
6981
+ worker: (value: WorkerComputeConfiguration) => T;
6982
+ _: (name: string, value: any) => T;
6983
+ }
6984
+ }
6985
+ /**
6986
+ * <p>Provides the sensitivity parameters.</p>
6987
+ * @public
6988
+ */
6989
+ export interface DifferentialPrivacySensitivityParameters {
6990
+ /**
6991
+ * <p>The type of aggregation function that was run.</p>
6992
+ * @public
6993
+ */
6994
+ aggregationType: DifferentialPrivacyAggregationType | undefined;
6995
+ /**
6996
+ * <p>The aggregation expression that was run.</p>
6997
+ * @public
6998
+ */
6999
+ aggregationExpression: string | undefined;
7000
+ /**
7001
+ * <p>The maximum number of rows contributed by a user in a SQL query.</p>
7002
+ * @public
7003
+ */
7004
+ userContributionLimit: number | undefined;
7005
+ /**
7006
+ * <p>The lower bound of the aggregation expression.</p>
7007
+ * @public
7008
+ */
7009
+ minColumnValue?: number | undefined;
7010
+ /**
7011
+ * <p>The upper bound of the aggregation expression.</p>
7012
+ * @public
7013
+ */
7014
+ maxColumnValue?: number | undefined;
7015
+ }
7016
+ /**
7017
+ * <p>An array that contains the sensitivity parameters.</p>
7018
+ * @public
7019
+ */
7020
+ export interface DifferentialPrivacyParameters {
7021
+ /**
7022
+ * <p>Provides the sensitivity parameters that you can use to better understand the total amount of noise in query results.</p>
7023
+ * @public
7024
+ */
7025
+ sensitivityParameters: DifferentialPrivacySensitivityParameters[] | undefined;
7026
+ }
7027
+ /**
7028
+ * <p>Details of errors thrown by the protected query.</p>
7029
+ * @public
7030
+ */
7031
+ export interface ProtectedQueryError {
7032
+ /**
7033
+ * <p>A description of why the query failed.</p>
7034
+ * @public
7035
+ */
7036
+ message: string | undefined;
7037
+ /**
7038
+ * <p>An error code for the error.</p>
7039
+ * @public
7040
+ */
7041
+ code: string | undefined;
7042
+ }