@aws-sdk/client-cleanrooms 3.899.0 → 3.903.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 (28) hide show
  1. package/dist-cjs/endpoint/ruleset.js +1 -1
  2. package/dist-cjs/index.js +155 -19
  3. package/dist-es/endpoint/ruleset.js +1 -1
  4. package/dist-es/models/models_0.js +85 -12
  5. package/dist-es/models/models_1.js +16 -0
  6. package/dist-es/protocols/Aws_restJson1.js +47 -2
  7. package/dist-types/commands/BatchGetSchemaCommand.d.ts +1 -0
  8. package/dist-types/commands/CreateCollaborationCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +4 -0
  10. package/dist-types/commands/CreatePrivacyBudgetTemplateCommand.d.ts +23 -3
  11. package/dist-types/commands/GetCollaborationCommand.d.ts +3 -0
  12. package/dist-types/commands/GetCollaborationPrivacyBudgetTemplateCommand.d.ts +11 -1
  13. package/dist-types/commands/GetConfiguredTableCommand.d.ts +2 -0
  14. package/dist-types/commands/GetPrivacyBudgetTemplateCommand.d.ts +11 -1
  15. package/dist-types/commands/GetSchemaCommand.d.ts +1 -0
  16. package/dist-types/commands/ListCollaborationPrivacyBudgetTemplatesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListCollaborationPrivacyBudgetsCommand.d.ts +17 -2
  18. package/dist-types/commands/ListPrivacyBudgetTemplatesCommand.d.ts +1 -1
  19. package/dist-types/commands/ListPrivacyBudgetsCommand.d.ts +17 -2
  20. package/dist-types/commands/ListSchemasCommand.d.ts +1 -0
  21. package/dist-types/commands/UpdateCollaborationCommand.d.ts +3 -0
  22. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +4 -0
  23. package/dist-types/commands/UpdatePrivacyBudgetTemplateCommand.d.ts +21 -2
  24. package/dist-types/models/models_0.d.ts +295 -167
  25. package/dist-types/models/models_1.d.ts +198 -4
  26. package/dist-types/ts3.4/models/models_0.d.ts +143 -58
  27. package/dist-types/ts3.4/models/models_1.d.ts +81 -5
  28. package/package.json +37 -37
@@ -1,6 +1,153 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { DocumentType as __DocumentType } from "@smithy/types";
3
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];
30
+ /**
31
+ * <p>Detailed information about an access budget including time bounds, budget allocation, and configuration settings.</p>
32
+ * @public
33
+ */
34
+ export interface AccessBudgetDetails {
35
+ /**
36
+ * <p>The start time for the access budget period.</p>
37
+ * @public
38
+ */
39
+ startTime: Date | undefined;
40
+ /**
41
+ * <p>The end time for the access budget period.</p>
42
+ * @public
43
+ */
44
+ endTime?: Date | undefined;
45
+ /**
46
+ * <p>The remaining budget amount available for use within this access budget.</p>
47
+ * @public
48
+ */
49
+ remainingBudget: number | undefined;
50
+ /**
51
+ * <p>The total budget allocation amount for this access budget.</p>
52
+ * @public
53
+ */
54
+ budget: number | undefined;
55
+ /**
56
+ * <p>Specifies the time period for limiting table usage in queries and jobs. For calendar-based periods, the budget can renew if auto refresh is enabled. For lifetime budgets, the limit applies to the total usage throughout the collaboration. Valid values are:</p> <p> <code>CALENDAR_DAY</code> - Limit table usage per day.</p> <p> <code>CALENDAR_WEEK</code> - Limit table usage per week.</p> <p> <code>CALENDAR_MONTH</code> - Limit table usage per month.</p> <p> <code>LIFETIME</code> - Limit total table usage for the collaboration duration.</p>
57
+ * @public
58
+ */
59
+ budgetType: AccessBudgetType | undefined;
60
+ /**
61
+ * <p>Indicates whether the budget automatically refreshes for each time period specified in <code>budgetType</code>. Valid values are:</p> <p> <code>ENABLED</code> - The budget refreshes automatically at the start of each period.</p> <p> <code>DISABLED</code> - The budget must be refreshed manually.</p> <p> <code>NULL</code> - The value is null when <code>budgetType</code> is set to <code>LIFETIME</code>.</p>
62
+ * @public
63
+ */
64
+ autoRefresh?: AutoRefreshMode | undefined;
65
+ }
66
+ /**
67
+ * <p>Controls and tracks usage limits for associated configured tables within a collaboration across queries and job. Supports both period-based budgets that can renew (daily, weekly, or monthly) and fixed lifetime budgets. Contains the resource ARN, remaining budget information, and up to two budget configurations (period-based and lifetime). By default, table usage is unlimited unless a budget is configured.</p>
68
+ * @public
69
+ */
70
+ export interface AccessBudget {
71
+ /**
72
+ * <p>The Amazon Resource Name (ARN) of the access budget resource.</p>
73
+ * @public
74
+ */
75
+ resourceArn: string | undefined;
76
+ /**
77
+ * <p>Detailed budget information including time bounds, remaining budget, and refresh settings.</p>
78
+ * @public
79
+ */
80
+ details: AccessBudgetDetails[] | undefined;
81
+ /**
82
+ * <p>The total remaining budget across all budget parameters, showing the lower value between the per-period budget and lifetime budget for this access budget. For individual parameter budgets, see <code>remainingBudget</code>.</p>
83
+ * @public
84
+ */
85
+ aggregateRemainingBudget: number | undefined;
86
+ }
87
+ /**
88
+ * <p>Individual budget parameter configuration that defines specific budget allocation settings for access budgets.</p>
89
+ * @public
90
+ */
91
+ export interface BudgetParameter {
92
+ /**
93
+ * <p>The type of budget parameter being configured.</p>
94
+ * @public
95
+ */
96
+ type: AccessBudgetType | undefined;
97
+ /**
98
+ * <p>The budget allocation amount for this specific parameter.</p>
99
+ * @public
100
+ */
101
+ budget: number | undefined;
102
+ /**
103
+ * <p>Whether this individual budget parameter automatically refreshes when the budget period resets.</p>
104
+ * @public
105
+ */
106
+ autoRefresh?: AutoRefreshMode | undefined;
107
+ }
108
+ /**
109
+ * <p>Input parameters for privacy budget templates that support access budgets functionality, enabling enhanced budget management capabilities.</p>
110
+ * @public
111
+ */
112
+ export interface AccessBudgetsPrivacyTemplateParametersInput {
113
+ /**
114
+ * <p>An array of budget parameters that define the access budget configuration for the privacy template.</p>
115
+ * @public
116
+ */
117
+ budgetParameters: BudgetParameter[] | undefined;
118
+ /**
119
+ * <p>The Amazon Resource Name (ARN) of the resource associated with this privacy budget template.</p>
120
+ * @public
121
+ */
122
+ resourceArn: string | undefined;
123
+ }
124
+ /**
125
+ * <p>Output parameters for privacy budget templates with access budgets support, containing the configured budget information.</p>
126
+ * @public
127
+ */
128
+ export interface AccessBudgetsPrivacyTemplateParametersOutput {
129
+ /**
130
+ * <p>An array of budget parameters returned from the access budget configuration.</p>
131
+ * @public
132
+ */
133
+ budgetParameters: BudgetParameter[] | undefined;
134
+ /**
135
+ * <p>The Amazon Resource Name (ARN) of the resource associated with this privacy budget template.</p>
136
+ * @public
137
+ */
138
+ resourceArn: string | undefined;
139
+ }
140
+ /**
141
+ * <p>Update parameters for privacy budget templates with access budgets functionality, allowing modification of existing budget configurations.</p>
142
+ * @public
143
+ */
144
+ export interface AccessBudgetsPrivacyTemplateUpdateParameters {
145
+ /**
146
+ * <p>Updated array of budget parameters for the access budget configuration.</p>
147
+ * @public
148
+ */
149
+ budgetParameters: BudgetParameter[] | undefined;
150
+ }
4
151
  /**
5
152
  * @public
6
153
  * @enum
@@ -105,6 +252,49 @@ export interface AggregationConstraint {
105
252
  */
106
253
  type: AggregationType | undefined;
107
254
  }
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];
108
298
  /**
109
299
  * @public
110
300
  * @enum
@@ -1699,11 +1889,59 @@ export declare const AnalyticsEngine: {
1699
1889
  * @public
1700
1890
  */
1701
1891
  export type AnalyticsEngine = (typeof AnalyticsEngine)[keyof typeof AnalyticsEngine];
1892
+ /**
1893
+ * @public
1894
+ * @enum
1895
+ */
1896
+ export declare const CommercialRegion: {
1897
+ readonly AF_SOUTH_1: "af-south-1";
1898
+ readonly AP_EAST_1: "ap-east-1";
1899
+ readonly AP_EAST_2: "ap-east-2";
1900
+ readonly AP_NORTHEAST_1: "ap-northeast-1";
1901
+ readonly AP_NORTHEAST_2: "ap-northeast-2";
1902
+ readonly AP_NORTHEAST_3: "ap-northeast-3";
1903
+ readonly AP_SOUTHEAST_1: "ap-southeast-1";
1904
+ readonly AP_SOUTHEAST_2: "ap-southeast-2";
1905
+ readonly AP_SOUTHEAST_3: "ap-southeast-3";
1906
+ readonly AP_SOUTHEAST_4: "ap-southeast-4";
1907
+ readonly AP_SOUTHEAST_5: "ap-southeast-5";
1908
+ readonly AP_SOUTHEAST_7: "ap-southeast-7";
1909
+ readonly AP_SOUTH_1: "ap-south-1";
1910
+ readonly AP_SOUTH_2: "ap-south-2";
1911
+ readonly CA_CENTRAL_1: "ca-central-1";
1912
+ readonly CA_WEST_1: "ca-west-1";
1913
+ readonly EU_CENTRAL_1: "eu-central-1";
1914
+ readonly EU_CENTRAL_2: "eu-central-2";
1915
+ readonly EU_NORTH_1: "eu-north-1";
1916
+ readonly EU_SOUTH_1: "eu-south-1";
1917
+ readonly EU_SOUTH_2: "eu-south-2";
1918
+ readonly EU_WEST_1: "eu-west-1";
1919
+ readonly EU_WEST_2: "eu-west-2";
1920
+ readonly EU_WEST_3: "eu-west-3";
1921
+ readonly IL_CENTRAL_1: "il-central-1";
1922
+ readonly ME_CENTRAL_1: "me-central-1";
1923
+ readonly ME_SOUTH_1: "me-south-1";
1924
+ readonly MX_CENTRAL_1: "mx-central-1";
1925
+ readonly SA_EAST_1: "sa-east-1";
1926
+ readonly US_EAST_1: "us-east-1";
1927
+ readonly US_EAST_2: "us-east-2";
1928
+ readonly US_WEST_1: "us-west-1";
1929
+ readonly US_WEST_2: "us-west-2";
1930
+ };
1931
+ /**
1932
+ * @public
1933
+ */
1934
+ export type CommercialRegion = (typeof CommercialRegion)[keyof typeof CommercialRegion];
1702
1935
  /**
1703
1936
  * <p> A reference to a table within Athena.</p>
1704
1937
  * @public
1705
1938
  */
1706
1939
  export interface AthenaTableReference {
1940
+ /**
1941
+ * <p>The Amazon Web Services Region where the Athena table is located. This parameter is required to uniquely identify and access tables across different Regions.</p>
1942
+ * @public
1943
+ */
1944
+ region?: CommercialRegion | undefined;
1707
1945
  /**
1708
1946
  * <p> The workgroup of the Athena table reference.</p>
1709
1947
  * @public
@@ -2184,6 +2422,11 @@ export interface Schema {
2184
2422
  * @public
2185
2423
  */
2186
2424
  schemaStatusDetails: SchemaStatusDetail[] | undefined;
2425
+ /**
2426
+ * <p>The Amazon Resource Name (ARN) of the schema resource.</p>
2427
+ * @public
2428
+ */
2429
+ resourceArn?: string | undefined;
2187
2430
  /**
2188
2431
  * <p>The schema type properties.</p>
2189
2432
  * @public
@@ -2544,6 +2787,11 @@ export interface CreateCollaborationInput {
2544
2787
  * @public
2545
2788
  */
2546
2789
  autoApprovedChangeRequestTypes?: AutoApprovedChangeType[] | undefined;
2790
+ /**
2791
+ * <p>The Amazon Web Services Regions where collaboration query results can be stored. When specified, results can only be written to these Regions. This parameter enables you to meet your compliance and data governance requirements, and implement regional data governance policies.</p>
2792
+ * @public
2793
+ */
2794
+ allowedResultRegions?: SupportedS3Region[] | undefined;
2547
2795
  }
2548
2796
  /**
2549
2797
  * @public
@@ -2644,6 +2892,11 @@ export interface Collaboration {
2644
2892
  * @public
2645
2893
  */
2646
2894
  autoApprovedChangeTypes?: AutoApprovedChangeType[] | undefined;
2895
+ /**
2896
+ * <p>The Amazon Web Services Regions where collaboration query results can be stored. Returns the list of Region identifiers that were specified when the collaboration was created. This list is used to enforce regional storage policies and compliance requirements.</p>
2897
+ * @public
2898
+ */
2899
+ allowedResultRegions?: SupportedS3Region[] | undefined;
2647
2900
  }
2648
2901
  /**
2649
2902
  * @public
@@ -3213,7 +3466,7 @@ export interface DifferentialPrivacyTemplateParametersOutput {
3213
3466
  * <p>The epsilon and noise parameters that were used in the privacy budget template.</p>
3214
3467
  * @public
3215
3468
  */
3216
- export type PrivacyBudgetTemplateParametersOutput = PrivacyBudgetTemplateParametersOutput.DifferentialPrivacyMember | PrivacyBudgetTemplateParametersOutput.$UnknownMember;
3469
+ export type PrivacyBudgetTemplateParametersOutput = PrivacyBudgetTemplateParametersOutput.AccessBudgetMember | PrivacyBudgetTemplateParametersOutput.DifferentialPrivacyMember | PrivacyBudgetTemplateParametersOutput.$UnknownMember;
3217
3470
  /**
3218
3471
  * @public
3219
3472
  */
@@ -3224,6 +3477,16 @@ export declare namespace PrivacyBudgetTemplateParametersOutput {
3224
3477
  */
3225
3478
  interface DifferentialPrivacyMember {
3226
3479
  differentialPrivacy: DifferentialPrivacyTemplateParametersOutput;
3480
+ accessBudget?: never;
3481
+ $unknown?: never;
3482
+ }
3483
+ /**
3484
+ * <p>Access budget configuration returned from the privacy budget template, containing the configured access budget settings.</p>
3485
+ * @public
3486
+ */
3487
+ interface AccessBudgetMember {
3488
+ differentialPrivacy?: never;
3489
+ accessBudget: AccessBudgetsPrivacyTemplateParametersOutput;
3227
3490
  $unknown?: never;
3228
3491
  }
3229
3492
  /**
@@ -3231,10 +3494,12 @@ export declare namespace PrivacyBudgetTemplateParametersOutput {
3231
3494
  */
3232
3495
  interface $UnknownMember {
3233
3496
  differentialPrivacy?: never;
3497
+ accessBudget?: never;
3234
3498
  $unknown: [string, any];
3235
3499
  }
3236
3500
  interface Visitor<T> {
3237
3501
  differentialPrivacy: (value: DifferentialPrivacyTemplateParametersOutput) => T;
3502
+ accessBudget: (value: AccessBudgetsPrivacyTemplateParametersOutput) => T;
3238
3503
  _: (name: string, value: any) => T;
3239
3504
  }
3240
3505
  const visit: <T>(value: PrivacyBudgetTemplateParametersOutput, visitor: Visitor<T>) => T;
@@ -3244,6 +3509,7 @@ export declare namespace PrivacyBudgetTemplateParametersOutput {
3244
3509
  * @enum
3245
3510
  */
3246
3511
  export declare const PrivacyBudgetType: {
3512
+ readonly ACCESS_BUDGET: "ACCESS_BUDGET";
3247
3513
  readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
3248
3514
  };
3249
3515
  /**
@@ -3755,6 +4021,11 @@ export interface ListCollaborationPrivacyBudgetsInput {
3755
4021
  * @public
3756
4022
  */
3757
4023
  nextToken?: string | undefined;
4024
+ /**
4025
+ * <p>The Amazon Resource Name (ARN) of the Configured Table Association (ConfiguredTableAssociation) used to filter privacy budgets.</p>
4026
+ * @public
4027
+ */
4028
+ accessBudgetResourceArn?: string | undefined;
3758
4029
  }
3759
4030
  /**
3760
4031
  * @public
@@ -3812,7 +4083,7 @@ export interface DifferentialPrivacyPrivacyBudget {
3812
4083
  * <p>The epsilon parameter value and number of each aggregation function that you can perform.</p>
3813
4084
  * @public
3814
4085
  */
3815
- export type PrivacyBudget = PrivacyBudget.DifferentialPrivacyMember | PrivacyBudget.$UnknownMember;
4086
+ export type PrivacyBudget = PrivacyBudget.AccessBudgetMember | PrivacyBudget.DifferentialPrivacyMember | PrivacyBudget.$UnknownMember;
3816
4087
  /**
3817
4088
  * @public
3818
4089
  */
@@ -3823,6 +4094,16 @@ export declare namespace PrivacyBudget {
3823
4094
  */
3824
4095
  interface DifferentialPrivacyMember {
3825
4096
  differentialPrivacy: DifferentialPrivacyPrivacyBudget;
4097
+ accessBudget?: never;
4098
+ $unknown?: never;
4099
+ }
4100
+ /**
4101
+ * <p>Access budget information associated with this privacy budget.</p>
4102
+ * @public
4103
+ */
4104
+ interface AccessBudgetMember {
4105
+ differentialPrivacy?: never;
4106
+ accessBudget: AccessBudget;
3826
4107
  $unknown?: never;
3827
4108
  }
3828
4109
  /**
@@ -3830,10 +4111,12 @@ export declare namespace PrivacyBudget {
3830
4111
  */
3831
4112
  interface $UnknownMember {
3832
4113
  differentialPrivacy?: never;
4114
+ accessBudget?: never;
3833
4115
  $unknown: [string, any];
3834
4116
  }
3835
4117
  interface Visitor<T> {
3836
4118
  differentialPrivacy: (value: DifferentialPrivacyPrivacyBudget) => T;
4119
+ accessBudget: (value: AccessBudget) => T;
3837
4120
  _: (name: string, value: any) => T;
3838
4121
  }
3839
4122
  const visit: <T>(value: PrivacyBudget, visitor: Visitor<T>) => T;
@@ -4264,6 +4547,11 @@ export interface SchemaSummary {
4264
4547
  * @public
4265
4548
  */
4266
4549
  analysisMethod?: AnalysisMethod | undefined;
4550
+ /**
4551
+ * <p>The Amazon Resource Name (ARN) of the schema summary resource.</p>
4552
+ * @public
4553
+ */
4554
+ resourceArn?: string | undefined;
4267
4555
  /**
4268
4556
  * <p> The selected analysis methods for the schema.</p>
4269
4557
  * @public
@@ -5068,6 +5356,11 @@ export interface UpdateConfiguredTableAssociationAnalysisRuleOutput {
5068
5356
  * @public
5069
5357
  */
5070
5358
  export interface GlueTableReference {
5359
+ /**
5360
+ * <p>The Amazon Web Services Region where the Glue table is located. This parameter is required to uniquely identify and access tables across different Regions.</p>
5361
+ * @public
5362
+ */
5363
+ region?: CommercialRegion | undefined;
5071
5364
  /**
5072
5365
  * <p>The name of the Glue table.</p>
5073
5366
  * @public
@@ -6489,171 +6782,6 @@ export declare const ResultFormat: {
6489
6782
  * @public
6490
6783
  */
6491
6784
  export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
6492
- /**
6493
- * <p>Contains the configuration to write the query results to S3.</p>
6494
- * @public
6495
- */
6496
- export interface ProtectedQueryS3OutputConfiguration {
6497
- /**
6498
- * <p>Intended file format of the result.</p>
6499
- * @public
6500
- */
6501
- resultFormat: ResultFormat | undefined;
6502
- /**
6503
- * <p>The S3 bucket to unload the protected query results.</p>
6504
- * @public
6505
- */
6506
- bucket: string | undefined;
6507
- /**
6508
- * <p>The S3 prefix to unload the protected query results.</p>
6509
- * @public
6510
- */
6511
- keyPrefix?: string | undefined;
6512
- /**
6513
- * <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>
6514
- * @public
6515
- */
6516
- singleFileOutput?: boolean | undefined;
6517
- }
6518
- /**
6519
- * <p>Contains configurations for protected query results.</p>
6520
- * @public
6521
- */
6522
- export type MembershipProtectedQueryOutputConfiguration = MembershipProtectedQueryOutputConfiguration.S3Member | MembershipProtectedQueryOutputConfiguration.$UnknownMember;
6523
- /**
6524
- * @public
6525
- */
6526
- export declare namespace MembershipProtectedQueryOutputConfiguration {
6527
- /**
6528
- * <p>Contains the configuration to write the query results to S3.</p>
6529
- * @public
6530
- */
6531
- interface S3Member {
6532
- s3: ProtectedQueryS3OutputConfiguration;
6533
- $unknown?: never;
6534
- }
6535
- /**
6536
- * @public
6537
- */
6538
- interface $UnknownMember {
6539
- s3?: never;
6540
- $unknown: [string, any];
6541
- }
6542
- interface Visitor<T> {
6543
- s3: (value: ProtectedQueryS3OutputConfiguration) => T;
6544
- _: (name: string, value: any) => T;
6545
- }
6546
- const visit: <T>(value: MembershipProtectedQueryOutputConfiguration, visitor: Visitor<T>) => T;
6547
- }
6548
- /**
6549
- * <p>Contains configurations for protected query results.</p>
6550
- * @public
6551
- */
6552
- export interface MembershipProtectedQueryResultConfiguration {
6553
- /**
6554
- * <p>Configuration for protected query results.</p>
6555
- * @public
6556
- */
6557
- outputConfiguration: MembershipProtectedQueryOutputConfiguration | undefined;
6558
- /**
6559
- * <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>
6560
- * @public
6561
- */
6562
- roleArn?: string | undefined;
6563
- }
6564
- /**
6565
- * @public
6566
- * @enum
6567
- */
6568
- export declare const MembershipJobLogStatus: {
6569
- readonly DISABLED: "DISABLED";
6570
- readonly ENABLED: "ENABLED";
6571
- };
6572
- /**
6573
- * @public
6574
- */
6575
- export type MembershipJobLogStatus = (typeof MembershipJobLogStatus)[keyof typeof MembershipJobLogStatus];
6576
- /**
6577
- * <p>An object representing the payment responsibilities accepted by the collaboration member for query and job compute costs.</p>
6578
- * @public
6579
- */
6580
- export interface MembershipJobComputePaymentConfig {
6581
- /**
6582
- * <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>
6583
- * @public
6584
- */
6585
- isResponsible: boolean | undefined;
6586
- }
6587
- /**
6588
- * <p>An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator.</p>
6589
- * @public
6590
- */
6591
- export interface MembershipModelInferencePaymentConfig {
6592
- /**
6593
- * <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>
6594
- * @public
6595
- */
6596
- isResponsible: boolean | undefined;
6597
- }
6598
- /**
6599
- * <p>An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.</p>
6600
- * @public
6601
- */
6602
- export interface MembershipModelTrainingPaymentConfig {
6603
- /**
6604
- * <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>
6605
- * @public
6606
- */
6607
- isResponsible: boolean | undefined;
6608
- }
6609
- /**
6610
- * <p>An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.</p>
6611
- * @public
6612
- */
6613
- export interface MembershipMLPaymentConfig {
6614
- /**
6615
- * <p>The payment responsibilities accepted by the member for model training.</p>
6616
- * @public
6617
- */
6618
- modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
6619
- /**
6620
- * <p>The payment responsibilities accepted by the member for model inference.</p>
6621
- * @public
6622
- */
6623
- modelInference?: MembershipModelInferencePaymentConfig | undefined;
6624
- }
6625
- /**
6626
- * <p>An object representing the payment responsibilities accepted by the collaboration member for query compute costs.</p>
6627
- * @public
6628
- */
6629
- export interface MembershipQueryComputePaymentConfig {
6630
- /**
6631
- * <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>
6632
- * @public
6633
- */
6634
- isResponsible: boolean | undefined;
6635
- }
6636
- /**
6637
- * <p>An object representing the payment responsibilities accepted by the collaboration member.</p>
6638
- * @public
6639
- */
6640
- export interface MembershipPaymentConfiguration {
6641
- /**
6642
- * <p>The payment responsibilities accepted by the collaboration member for query compute costs.</p>
6643
- * @public
6644
- */
6645
- queryCompute: MembershipQueryComputePaymentConfig | undefined;
6646
- /**
6647
- * <p>The payment responsibilities accepted by the collaboration member for machine learning costs.</p>
6648
- * @public
6649
- */
6650
- machineLearning?: MembershipMLPaymentConfig | undefined;
6651
- /**
6652
- * <p>The payment responsibilities accepted by the collaboration member for job compute costs.</p>
6653
- * @public
6654
- */
6655
- jobCompute?: MembershipJobComputePaymentConfig | undefined;
6656
- }
6657
6785
  /**
6658
6786
  * @internal
6659
6787
  */