@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,4 +1,169 @@
1
- import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetTemplateParametersOutput, PrivacyBudgetType, ProtectedQueryS3OutputConfiguration } from "./models_0";
1
+ import { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipProtectedJobResultConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetTemplateParametersOutput, PrivacyBudgetType, ResultFormat } from "./models_0";
2
+ /**
3
+ * <p>Contains the configuration to write the query results to S3.</p>
4
+ * @public
5
+ */
6
+ export interface ProtectedQueryS3OutputConfiguration {
7
+ /**
8
+ * <p>Intended file format of the result.</p>
9
+ * @public
10
+ */
11
+ resultFormat: ResultFormat | undefined;
12
+ /**
13
+ * <p>The S3 bucket to unload the protected query results.</p>
14
+ * @public
15
+ */
16
+ bucket: string | undefined;
17
+ /**
18
+ * <p>The S3 prefix to unload the protected query results.</p>
19
+ * @public
20
+ */
21
+ keyPrefix?: string | undefined;
22
+ /**
23
+ * <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>
24
+ * @public
25
+ */
26
+ singleFileOutput?: boolean | undefined;
27
+ }
28
+ /**
29
+ * <p>Contains configurations for protected query results.</p>
30
+ * @public
31
+ */
32
+ export type MembershipProtectedQueryOutputConfiguration = MembershipProtectedQueryOutputConfiguration.S3Member | MembershipProtectedQueryOutputConfiguration.$UnknownMember;
33
+ /**
34
+ * @public
35
+ */
36
+ export declare namespace MembershipProtectedQueryOutputConfiguration {
37
+ /**
38
+ * <p>Contains the configuration to write the query results to S3.</p>
39
+ * @public
40
+ */
41
+ interface S3Member {
42
+ s3: ProtectedQueryS3OutputConfiguration;
43
+ $unknown?: never;
44
+ }
45
+ /**
46
+ * @public
47
+ */
48
+ interface $UnknownMember {
49
+ s3?: never;
50
+ $unknown: [string, any];
51
+ }
52
+ interface Visitor<T> {
53
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
54
+ _: (name: string, value: any) => T;
55
+ }
56
+ const visit: <T>(value: MembershipProtectedQueryOutputConfiguration, visitor: Visitor<T>) => T;
57
+ }
58
+ /**
59
+ * <p>Contains configurations for protected query results.</p>
60
+ * @public
61
+ */
62
+ export interface MembershipProtectedQueryResultConfiguration {
63
+ /**
64
+ * <p>Configuration for protected query results.</p>
65
+ * @public
66
+ */
67
+ outputConfiguration: MembershipProtectedQueryOutputConfiguration | undefined;
68
+ /**
69
+ * <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>
70
+ * @public
71
+ */
72
+ roleArn?: string | undefined;
73
+ }
74
+ /**
75
+ * @public
76
+ * @enum
77
+ */
78
+ export declare const MembershipJobLogStatus: {
79
+ readonly DISABLED: "DISABLED";
80
+ readonly ENABLED: "ENABLED";
81
+ };
82
+ /**
83
+ * @public
84
+ */
85
+ export type MembershipJobLogStatus = (typeof MembershipJobLogStatus)[keyof typeof MembershipJobLogStatus];
86
+ /**
87
+ * <p>An object representing the payment responsibilities accepted by the collaboration member for query and job compute costs.</p>
88
+ * @public
89
+ */
90
+ export interface MembershipJobComputePaymentConfig {
91
+ /**
92
+ * <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>
93
+ * @public
94
+ */
95
+ isResponsible: boolean | undefined;
96
+ }
97
+ /**
98
+ * <p>An object representing the collaboration member's model inference payment responsibilities set by the collaboration creator.</p>
99
+ * @public
100
+ */
101
+ export interface MembershipModelInferencePaymentConfig {
102
+ /**
103
+ * <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>
104
+ * @public
105
+ */
106
+ isResponsible: boolean | undefined;
107
+ }
108
+ /**
109
+ * <p>An object representing the collaboration member's model training payment responsibilities set by the collaboration creator.</p>
110
+ * @public
111
+ */
112
+ export interface MembershipModelTrainingPaymentConfig {
113
+ /**
114
+ * <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>
115
+ * @public
116
+ */
117
+ isResponsible: boolean | undefined;
118
+ }
119
+ /**
120
+ * <p>An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.</p>
121
+ * @public
122
+ */
123
+ export interface MembershipMLPaymentConfig {
124
+ /**
125
+ * <p>The payment responsibilities accepted by the member for model training.</p>
126
+ * @public
127
+ */
128
+ modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
129
+ /**
130
+ * <p>The payment responsibilities accepted by the member for model inference.</p>
131
+ * @public
132
+ */
133
+ modelInference?: MembershipModelInferencePaymentConfig | undefined;
134
+ }
135
+ /**
136
+ * <p>An object representing the payment responsibilities accepted by the collaboration member for query compute costs.</p>
137
+ * @public
138
+ */
139
+ export interface MembershipQueryComputePaymentConfig {
140
+ /**
141
+ * <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>
142
+ * @public
143
+ */
144
+ isResponsible: boolean | undefined;
145
+ }
146
+ /**
147
+ * <p>An object representing the payment responsibilities accepted by the collaboration member.</p>
148
+ * @public
149
+ */
150
+ export interface MembershipPaymentConfiguration {
151
+ /**
152
+ * <p>The payment responsibilities accepted by the collaboration member for query compute costs.</p>
153
+ * @public
154
+ */
155
+ queryCompute: MembershipQueryComputePaymentConfig | undefined;
156
+ /**
157
+ * <p>The payment responsibilities accepted by the collaboration member for machine learning costs.</p>
158
+ * @public
159
+ */
160
+ machineLearning?: MembershipMLPaymentConfig | undefined;
161
+ /**
162
+ * <p>The payment responsibilities accepted by the collaboration member for job compute costs.</p>
163
+ * @public
164
+ */
165
+ jobCompute?: MembershipJobComputePaymentConfig | undefined;
166
+ }
2
167
  /**
3
168
  * @public
4
169
  * @enum
@@ -1207,6 +1372,11 @@ export interface ListPrivacyBudgetsInput {
1207
1372
  * @public
1208
1373
  */
1209
1374
  maxResults?: number | undefined;
1375
+ /**
1376
+ * <p>The Amazon Resource Name (ARN) of the access budget resource to filter privacy budgets by.</p>
1377
+ * @public
1378
+ */
1379
+ accessBudgetResourceArn?: string | undefined;
1210
1380
  }
1211
1381
  /**
1212
1382
  * <p>An array that summaries the specified privacy budget. This summary includes collaboration information, creation information, membership information, and privacy budget information.</p>
@@ -1985,7 +2155,7 @@ export interface DifferentialPrivacyTemplateParametersInput {
1985
2155
  * <p>The epsilon and noise parameters that you want to use for the privacy budget template.</p>
1986
2156
  * @public
1987
2157
  */
1988
- export type PrivacyBudgetTemplateParametersInput = PrivacyBudgetTemplateParametersInput.DifferentialPrivacyMember | PrivacyBudgetTemplateParametersInput.$UnknownMember;
2158
+ export type PrivacyBudgetTemplateParametersInput = PrivacyBudgetTemplateParametersInput.AccessBudgetMember | PrivacyBudgetTemplateParametersInput.DifferentialPrivacyMember | PrivacyBudgetTemplateParametersInput.$UnknownMember;
1989
2159
  /**
1990
2160
  * @public
1991
2161
  */
@@ -1996,6 +2166,16 @@ export declare namespace PrivacyBudgetTemplateParametersInput {
1996
2166
  */
1997
2167
  interface DifferentialPrivacyMember {
1998
2168
  differentialPrivacy: DifferentialPrivacyTemplateParametersInput;
2169
+ accessBudget?: never;
2170
+ $unknown?: never;
2171
+ }
2172
+ /**
2173
+ * <p>Access budget configuration for the privacy budget template input, enabling integration with access budget functionality.</p>
2174
+ * @public
2175
+ */
2176
+ interface AccessBudgetMember {
2177
+ differentialPrivacy?: never;
2178
+ accessBudget: AccessBudgetsPrivacyTemplateParametersInput;
1999
2179
  $unknown?: never;
2000
2180
  }
2001
2181
  /**
@@ -2003,10 +2183,12 @@ export declare namespace PrivacyBudgetTemplateParametersInput {
2003
2183
  */
2004
2184
  interface $UnknownMember {
2005
2185
  differentialPrivacy?: never;
2186
+ accessBudget?: never;
2006
2187
  $unknown: [string, any];
2007
2188
  }
2008
2189
  interface Visitor<T> {
2009
2190
  differentialPrivacy: (value: DifferentialPrivacyTemplateParametersInput) => T;
2191
+ accessBudget: (value: AccessBudgetsPrivacyTemplateParametersInput) => T;
2010
2192
  _: (name: string, value: any) => T;
2011
2193
  }
2012
2194
  const visit: <T>(value: PrivacyBudgetTemplateParametersInput, visitor: Visitor<T>) => T;
@@ -2024,7 +2206,7 @@ export interface CreatePrivacyBudgetTemplateInput {
2024
2206
  * <p>How often the privacy budget refreshes.</p> <important> <p>If you plan to regularly bring new data into the collaboration, you can use <code>CALENDAR_MONTH</code> to automatically get a new privacy budget for the collaboration every calendar month. Choosing this option allows arbitrary amounts of information to be revealed about rows of the data when repeatedly queries across refreshes. Avoid choosing this if the same rows will be repeatedly queried between privacy budget refreshes.</p> </important>
2025
2207
  * @public
2026
2208
  */
2027
- autoRefresh: PrivacyBudgetTemplateAutoRefresh | undefined;
2209
+ autoRefresh?: PrivacyBudgetTemplateAutoRefresh | undefined;
2028
2210
  /**
2029
2211
  * <p>Specifies the type of the privacy budget template.</p>
2030
2212
  * @public
@@ -2263,7 +2445,7 @@ export interface DifferentialPrivacyTemplateUpdateParameters {
2263
2445
  * <p>The epsilon and noise parameters that you want to update in the privacy budget template.</p>
2264
2446
  * @public
2265
2447
  */
2266
- export type PrivacyBudgetTemplateUpdateParameters = PrivacyBudgetTemplateUpdateParameters.DifferentialPrivacyMember | PrivacyBudgetTemplateUpdateParameters.$UnknownMember;
2448
+ export type PrivacyBudgetTemplateUpdateParameters = PrivacyBudgetTemplateUpdateParameters.AccessBudgetMember | PrivacyBudgetTemplateUpdateParameters.DifferentialPrivacyMember | PrivacyBudgetTemplateUpdateParameters.$UnknownMember;
2267
2449
  /**
2268
2450
  * @public
2269
2451
  */
@@ -2274,6 +2456,16 @@ export declare namespace PrivacyBudgetTemplateUpdateParameters {
2274
2456
  */
2275
2457
  interface DifferentialPrivacyMember {
2276
2458
  differentialPrivacy: DifferentialPrivacyTemplateUpdateParameters;
2459
+ accessBudget?: never;
2460
+ $unknown?: never;
2461
+ }
2462
+ /**
2463
+ * <p> The new access budget configuration that completely replaces the existing access budget settings in the privacy budget template.</p>
2464
+ * @public
2465
+ */
2466
+ interface AccessBudgetMember {
2467
+ differentialPrivacy?: never;
2468
+ accessBudget: AccessBudgetsPrivacyTemplateUpdateParameters;
2277
2469
  $unknown?: never;
2278
2470
  }
2279
2471
  /**
@@ -2281,10 +2473,12 @@ export declare namespace PrivacyBudgetTemplateUpdateParameters {
2281
2473
  */
2282
2474
  interface $UnknownMember {
2283
2475
  differentialPrivacy?: never;
2476
+ accessBudget?: never;
2284
2477
  $unknown: [string, any];
2285
2478
  }
2286
2479
  interface Visitor<T> {
2287
2480
  differentialPrivacy: (value: DifferentialPrivacyTemplateUpdateParameters) => T;
2481
+ accessBudget: (value: AccessBudgetsPrivacyTemplateUpdateParameters) => T;
2288
2482
  _: (name: string, value: any) => T;
2289
2483
  }
2290
2484
  const visit: <T>(value: PrivacyBudgetTemplateUpdateParameters, visitor: Visitor<T>) => T;
@@ -1,6 +1,49 @@
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
+ export declare const AutoRefreshMode: {
5
+ readonly DISABLED: "DISABLED";
6
+ readonly ENABLED: "ENABLED";
7
+ };
8
+ export type AutoRefreshMode =
9
+ (typeof AutoRefreshMode)[keyof typeof AutoRefreshMode];
10
+ export declare const AccessBudgetType: {
11
+ readonly CALENDAR_DAY: "CALENDAR_DAY";
12
+ readonly CALENDAR_MONTH: "CALENDAR_MONTH";
13
+ readonly CALENDAR_WEEK: "CALENDAR_WEEK";
14
+ readonly LIFETIME: "LIFETIME";
15
+ };
16
+ export type AccessBudgetType =
17
+ (typeof AccessBudgetType)[keyof typeof AccessBudgetType];
18
+ export interface AccessBudgetDetails {
19
+ startTime: Date | undefined;
20
+ endTime?: Date | undefined;
21
+ remainingBudget: number | undefined;
22
+ budget: number | undefined;
23
+ budgetType: AccessBudgetType | undefined;
24
+ autoRefresh?: AutoRefreshMode | undefined;
25
+ }
26
+ export interface AccessBudget {
27
+ resourceArn: string | undefined;
28
+ details: AccessBudgetDetails[] | undefined;
29
+ aggregateRemainingBudget: number | undefined;
30
+ }
31
+ export interface BudgetParameter {
32
+ type: AccessBudgetType | undefined;
33
+ budget: number | undefined;
34
+ autoRefresh?: AutoRefreshMode | undefined;
35
+ }
36
+ export interface AccessBudgetsPrivacyTemplateParametersInput {
37
+ budgetParameters: BudgetParameter[] | undefined;
38
+ resourceArn: string | undefined;
39
+ }
40
+ export interface AccessBudgetsPrivacyTemplateParametersOutput {
41
+ budgetParameters: BudgetParameter[] | undefined;
42
+ resourceArn: string | undefined;
43
+ }
44
+ export interface AccessBudgetsPrivacyTemplateUpdateParameters {
45
+ budgetParameters: BudgetParameter[] | undefined;
46
+ }
4
47
  export declare const AccessDeniedExceptionReason: {
5
48
  readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
6
49
  };
@@ -44,6 +87,43 @@ export interface AggregationConstraint {
44
87
  minimum: number | undefined;
45
88
  type: AggregationType | undefined;
46
89
  }
90
+ export declare const SupportedS3Region: {
91
+ readonly AF_SOUTH_1: "af-south-1";
92
+ readonly AP_EAST_1: "ap-east-1";
93
+ readonly AP_EAST_2: "ap-east-2";
94
+ readonly AP_NORTHEAST_1: "ap-northeast-1";
95
+ readonly AP_NORTHEAST_2: "ap-northeast-2";
96
+ readonly AP_NORTHEAST_3: "ap-northeast-3";
97
+ readonly AP_SOUTHEAST_1: "ap-southeast-1";
98
+ readonly AP_SOUTHEAST_2: "ap-southeast-2";
99
+ readonly AP_SOUTHEAST_3: "ap-southeast-3";
100
+ readonly AP_SOUTHEAST_4: "ap-southeast-4";
101
+ readonly AP_SOUTHEAST_5: "ap-southeast-5";
102
+ readonly AP_SOUTHEAST_7: "ap-southeast-7";
103
+ readonly AP_SOUTH_1: "ap-south-1";
104
+ readonly AP_SOUTH_2: "ap-south-2";
105
+ readonly CA_CENTRAL_1: "ca-central-1";
106
+ readonly CA_WEST_1: "ca-west-1";
107
+ readonly EU_CENTRAL_1: "eu-central-1";
108
+ readonly EU_CENTRAL_2: "eu-central-2";
109
+ readonly EU_NORTH_1: "eu-north-1";
110
+ readonly EU_SOUTH_1: "eu-south-1";
111
+ readonly EU_SOUTH_2: "eu-south-2";
112
+ readonly EU_WEST_1: "eu-west-1";
113
+ readonly EU_WEST_2: "eu-west-2";
114
+ readonly EU_WEST_3: "eu-west-3";
115
+ readonly IL_CENTRAL_1: "il-central-1";
116
+ readonly ME_CENTRAL_1: "me-central-1";
117
+ readonly ME_SOUTH_1: "me-south-1";
118
+ readonly MX_CENTRAL_1: "mx-central-1";
119
+ readonly SA_EAST_1: "sa-east-1";
120
+ readonly US_EAST_1: "us-east-1";
121
+ readonly US_EAST_2: "us-east-2";
122
+ readonly US_WEST_1: "us-west-1";
123
+ readonly US_WEST_2: "us-west-2";
124
+ };
125
+ export type SupportedS3Region =
126
+ (typeof SupportedS3Region)[keyof typeof SupportedS3Region];
47
127
  export declare const AnalysisFormat: {
48
128
  readonly PYSPARK_1_0: "PYSPARK_1_0";
49
129
  readonly SQL: "SQL";
@@ -691,7 +771,45 @@ export declare const AnalyticsEngine: {
691
771
  };
692
772
  export type AnalyticsEngine =
693
773
  (typeof AnalyticsEngine)[keyof typeof AnalyticsEngine];
774
+ export declare const CommercialRegion: {
775
+ readonly AF_SOUTH_1: "af-south-1";
776
+ readonly AP_EAST_1: "ap-east-1";
777
+ readonly AP_EAST_2: "ap-east-2";
778
+ readonly AP_NORTHEAST_1: "ap-northeast-1";
779
+ readonly AP_NORTHEAST_2: "ap-northeast-2";
780
+ readonly AP_NORTHEAST_3: "ap-northeast-3";
781
+ readonly AP_SOUTHEAST_1: "ap-southeast-1";
782
+ readonly AP_SOUTHEAST_2: "ap-southeast-2";
783
+ readonly AP_SOUTHEAST_3: "ap-southeast-3";
784
+ readonly AP_SOUTHEAST_4: "ap-southeast-4";
785
+ readonly AP_SOUTHEAST_5: "ap-southeast-5";
786
+ readonly AP_SOUTHEAST_7: "ap-southeast-7";
787
+ readonly AP_SOUTH_1: "ap-south-1";
788
+ readonly AP_SOUTH_2: "ap-south-2";
789
+ readonly CA_CENTRAL_1: "ca-central-1";
790
+ readonly CA_WEST_1: "ca-west-1";
791
+ readonly EU_CENTRAL_1: "eu-central-1";
792
+ readonly EU_CENTRAL_2: "eu-central-2";
793
+ readonly EU_NORTH_1: "eu-north-1";
794
+ readonly EU_SOUTH_1: "eu-south-1";
795
+ readonly EU_SOUTH_2: "eu-south-2";
796
+ readonly EU_WEST_1: "eu-west-1";
797
+ readonly EU_WEST_2: "eu-west-2";
798
+ readonly EU_WEST_3: "eu-west-3";
799
+ readonly IL_CENTRAL_1: "il-central-1";
800
+ readonly ME_CENTRAL_1: "me-central-1";
801
+ readonly ME_SOUTH_1: "me-south-1";
802
+ readonly MX_CENTRAL_1: "mx-central-1";
803
+ readonly SA_EAST_1: "sa-east-1";
804
+ readonly US_EAST_1: "us-east-1";
805
+ readonly US_EAST_2: "us-east-2";
806
+ readonly US_WEST_1: "us-west-1";
807
+ readonly US_WEST_2: "us-west-2";
808
+ };
809
+ export type CommercialRegion =
810
+ (typeof CommercialRegion)[keyof typeof CommercialRegion];
694
811
  export interface AthenaTableReference {
812
+ region?: CommercialRegion | undefined;
695
813
  workGroup: string | undefined;
696
814
  outputLocation?: string | undefined;
697
815
  databaseName: string | undefined;
@@ -839,6 +957,7 @@ export interface Schema {
839
957
  updateTime: Date | undefined;
840
958
  type: SchemaType | undefined;
841
959
  schemaStatusDetails: SchemaStatusDetail[] | undefined;
960
+ resourceArn?: string | undefined;
842
961
  schemaTypeProperties?: SchemaTypeProperties | undefined;
843
962
  }
844
963
  export interface BatchGetSchemaOutput {
@@ -938,6 +1057,7 @@ export interface CreateCollaborationInput {
938
1057
  creatorPaymentConfiguration?: PaymentConfiguration | undefined;
939
1058
  analyticsEngine?: AnalyticsEngine | undefined;
940
1059
  autoApprovedChangeRequestTypes?: AutoApprovedChangeType[] | undefined;
1060
+ allowedResultRegions?: SupportedS3Region[] | undefined;
941
1061
  }
942
1062
  export declare const MemberStatus: {
943
1063
  readonly ACTIVE: "ACTIVE";
@@ -963,6 +1083,7 @@ export interface Collaboration {
963
1083
  jobLogStatus?: CollaborationJobLogStatus | undefined;
964
1084
  analyticsEngine?: AnalyticsEngine | undefined;
965
1085
  autoApprovedChangeTypes?: AutoApprovedChangeType[] | undefined;
1086
+ allowedResultRegions?: SupportedS3Region[] | undefined;
966
1087
  }
967
1088
  export interface CreateCollaborationOutput {
968
1089
  collaboration: Collaboration | undefined;
@@ -1134,21 +1255,30 @@ export interface DifferentialPrivacyTemplateParametersOutput {
1134
1255
  usersNoisePerQuery: number | undefined;
1135
1256
  }
1136
1257
  export type PrivacyBudgetTemplateParametersOutput =
1258
+ | PrivacyBudgetTemplateParametersOutput.AccessBudgetMember
1137
1259
  | PrivacyBudgetTemplateParametersOutput.DifferentialPrivacyMember
1138
1260
  | PrivacyBudgetTemplateParametersOutput.$UnknownMember;
1139
1261
  export declare namespace PrivacyBudgetTemplateParametersOutput {
1140
1262
  interface DifferentialPrivacyMember {
1141
1263
  differentialPrivacy: DifferentialPrivacyTemplateParametersOutput;
1264
+ accessBudget?: never;
1265
+ $unknown?: never;
1266
+ }
1267
+ interface AccessBudgetMember {
1268
+ differentialPrivacy?: never;
1269
+ accessBudget: AccessBudgetsPrivacyTemplateParametersOutput;
1142
1270
  $unknown?: never;
1143
1271
  }
1144
1272
  interface $UnknownMember {
1145
1273
  differentialPrivacy?: never;
1274
+ accessBudget?: never;
1146
1275
  $unknown: [string, any];
1147
1276
  }
1148
1277
  interface Visitor<T> {
1149
1278
  differentialPrivacy: (
1150
1279
  value: DifferentialPrivacyTemplateParametersOutput
1151
1280
  ) => T;
1281
+ accessBudget: (value: AccessBudgetsPrivacyTemplateParametersOutput) => T;
1152
1282
  _: (name: string, value: any) => T;
1153
1283
  }
1154
1284
  const visit: <T>(
@@ -1157,6 +1287,7 @@ export declare namespace PrivacyBudgetTemplateParametersOutput {
1157
1287
  ) => T;
1158
1288
  }
1159
1289
  export declare const PrivacyBudgetType: {
1290
+ readonly ACCESS_BUDGET: "ACCESS_BUDGET";
1160
1291
  readonly DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY";
1161
1292
  };
1162
1293
  export type PrivacyBudgetType =
@@ -1292,6 +1423,7 @@ export interface ListCollaborationPrivacyBudgetsInput {
1292
1423
  privacyBudgetType: PrivacyBudgetType | undefined;
1293
1424
  maxResults?: number | undefined;
1294
1425
  nextToken?: string | undefined;
1426
+ accessBudgetResourceArn?: string | undefined;
1295
1427
  }
1296
1428
  export declare const DifferentialPrivacyAggregationType: {
1297
1429
  readonly AVG: "AVG";
@@ -1312,19 +1444,28 @@ export interface DifferentialPrivacyPrivacyBudget {
1312
1444
  epsilon: number | undefined;
1313
1445
  }
1314
1446
  export type PrivacyBudget =
1447
+ | PrivacyBudget.AccessBudgetMember
1315
1448
  | PrivacyBudget.DifferentialPrivacyMember
1316
1449
  | PrivacyBudget.$UnknownMember;
1317
1450
  export declare namespace PrivacyBudget {
1318
1451
  interface DifferentialPrivacyMember {
1319
1452
  differentialPrivacy: DifferentialPrivacyPrivacyBudget;
1453
+ accessBudget?: never;
1454
+ $unknown?: never;
1455
+ }
1456
+ interface AccessBudgetMember {
1457
+ differentialPrivacy?: never;
1458
+ accessBudget: AccessBudget;
1320
1459
  $unknown?: never;
1321
1460
  }
1322
1461
  interface $UnknownMember {
1323
1462
  differentialPrivacy?: never;
1463
+ accessBudget?: never;
1324
1464
  $unknown: [string, any];
1325
1465
  }
1326
1466
  interface Visitor<T> {
1327
1467
  differentialPrivacy: (value: DifferentialPrivacyPrivacyBudget) => T;
1468
+ accessBudget: (value: AccessBudget) => T;
1328
1469
  _: (name: string, value: any) => T;
1329
1470
  }
1330
1471
  const visit: <T>(value: PrivacyBudget, visitor: Visitor<T>) => T;
@@ -1433,6 +1574,7 @@ export interface SchemaSummary {
1433
1574
  collaborationArn: string | undefined;
1434
1575
  analysisRuleTypes: AnalysisRuleType[] | undefined;
1435
1576
  analysisMethod?: AnalysisMethod | undefined;
1577
+ resourceArn?: string | undefined;
1436
1578
  selectedAnalysisMethods?: SelectedAnalysisMethod[] | undefined;
1437
1579
  }
1438
1580
  export interface ListSchemasOutput {
@@ -1641,6 +1783,7 @@ export interface UpdateConfiguredTableAssociationAnalysisRuleOutput {
1641
1783
  analysisRule: ConfiguredTableAssociationAnalysisRule | undefined;
1642
1784
  }
1643
1785
  export interface GlueTableReference {
1786
+ region?: CommercialRegion | undefined;
1644
1787
  tableName: string | undefined;
1645
1788
  databaseName: string | undefined;
1646
1789
  }
@@ -2087,64 +2230,6 @@ export declare const ResultFormat: {
2087
2230
  readonly PARQUET: "PARQUET";
2088
2231
  };
2089
2232
  export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
2090
- export interface ProtectedQueryS3OutputConfiguration {
2091
- resultFormat: ResultFormat | undefined;
2092
- bucket: string | undefined;
2093
- keyPrefix?: string | undefined;
2094
- singleFileOutput?: boolean | undefined;
2095
- }
2096
- export type MembershipProtectedQueryOutputConfiguration =
2097
- | MembershipProtectedQueryOutputConfiguration.S3Member
2098
- | MembershipProtectedQueryOutputConfiguration.$UnknownMember;
2099
- export declare namespace MembershipProtectedQueryOutputConfiguration {
2100
- interface S3Member {
2101
- s3: ProtectedQueryS3OutputConfiguration;
2102
- $unknown?: never;
2103
- }
2104
- interface $UnknownMember {
2105
- s3?: never;
2106
- $unknown: [string, any];
2107
- }
2108
- interface Visitor<T> {
2109
- s3: (value: ProtectedQueryS3OutputConfiguration) => T;
2110
- _: (name: string, value: any) => T;
2111
- }
2112
- const visit: <T>(
2113
- value: MembershipProtectedQueryOutputConfiguration,
2114
- visitor: Visitor<T>
2115
- ) => T;
2116
- }
2117
- export interface MembershipProtectedQueryResultConfiguration {
2118
- outputConfiguration: MembershipProtectedQueryOutputConfiguration | undefined;
2119
- roleArn?: string | undefined;
2120
- }
2121
- export declare const MembershipJobLogStatus: {
2122
- readonly DISABLED: "DISABLED";
2123
- readonly ENABLED: "ENABLED";
2124
- };
2125
- export type MembershipJobLogStatus =
2126
- (typeof MembershipJobLogStatus)[keyof typeof MembershipJobLogStatus];
2127
- export interface MembershipJobComputePaymentConfig {
2128
- isResponsible: boolean | undefined;
2129
- }
2130
- export interface MembershipModelInferencePaymentConfig {
2131
- isResponsible: boolean | undefined;
2132
- }
2133
- export interface MembershipModelTrainingPaymentConfig {
2134
- isResponsible: boolean | undefined;
2135
- }
2136
- export interface MembershipMLPaymentConfig {
2137
- modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
2138
- modelInference?: MembershipModelInferencePaymentConfig | undefined;
2139
- }
2140
- export interface MembershipQueryComputePaymentConfig {
2141
- isResponsible: boolean | undefined;
2142
- }
2143
- export interface MembershipPaymentConfiguration {
2144
- queryCompute: MembershipQueryComputePaymentConfig | undefined;
2145
- machineLearning?: MembershipMLPaymentConfig | undefined;
2146
- jobCompute?: MembershipJobComputePaymentConfig | undefined;
2147
- }
2148
2233
  export declare const AnalysisParameterFilterSensitiveLog: (
2149
2234
  obj: AnalysisParameter
2150
2235
  ) => any;