@aws-sdk/client-cleanrooms 3.679.0 → 3.682.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 (43) hide show
  1. package/README.md +1 -1
  2. package/dist-cjs/index.js +89 -36
  3. package/dist-es/commands/StartProtectedQueryCommand.js +2 -1
  4. package/dist-es/commands/UpdateProtectedQueryCommand.js +1 -1
  5. package/dist-es/models/models_0.js +31 -7
  6. package/dist-es/models/models_1.js +7 -0
  7. package/dist-es/protocols/Aws_restJson1.js +18 -2
  8. package/dist-types/commands/BatchGetCollaborationAnalysisTemplateCommand.d.ts +2 -2
  9. package/dist-types/commands/BatchGetSchemaCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateAnalysisTemplateCommand.d.ts +4 -4
  11. package/dist-types/commands/CreateCollaborationCommand.d.ts +6 -4
  12. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +2 -2
  13. package/dist-types/commands/CreateMembershipCommand.d.ts +3 -1
  14. package/dist-types/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.d.ts +1 -2
  15. package/dist-types/commands/GetAnalysisTemplateCommand.d.ts +2 -2
  16. package/dist-types/commands/GetCollaborationAnalysisTemplateCommand.d.ts +2 -2
  17. package/dist-types/commands/GetCollaborationCommand.d.ts +2 -1
  18. package/dist-types/commands/GetConfiguredTableAssociationAnalysisRuleCommand.d.ts +1 -3
  19. package/dist-types/commands/GetConfiguredTableCommand.d.ts +1 -1
  20. package/dist-types/commands/GetMembershipCommand.d.ts +2 -1
  21. package/dist-types/commands/GetProtectedQueryCommand.d.ts +10 -0
  22. package/dist-types/commands/GetSchemaCommand.d.ts +1 -1
  23. package/dist-types/commands/ListCollaborationsCommand.d.ts +1 -0
  24. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +1 -1
  25. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  26. package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListSchemasCommand.d.ts +1 -1
  28. package/dist-types/commands/PopulateIdMappingTableCommand.d.ts +3 -0
  29. package/dist-types/commands/StartProtectedQueryCommand.d.ts +19 -1
  30. package/dist-types/commands/UpdateAnalysisTemplateCommand.d.ts +2 -2
  31. package/dist-types/commands/UpdateCollaborationCommand.d.ts +2 -1
  32. package/dist-types/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.d.ts +1 -3
  33. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +1 -1
  34. package/dist-types/commands/UpdateMembershipCommand.d.ts +4 -2
  35. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +11 -2
  36. package/dist-types/models/models_0.d.ts +222 -223
  37. package/dist-types/models/models_1.d.ts +84 -11
  38. package/dist-types/ts3.4/commands/StartProtectedQueryCommand.d.ts +2 -4
  39. package/dist-types/ts3.4/commands/UpdateMembershipCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/UpdateProtectedQueryCommand.d.ts +4 -2
  41. package/dist-types/ts3.4/models/models_0.d.ts +57 -24
  42. package/dist-types/ts3.4/models/models_1.d.ts +27 -0
  43. package/package.json +6 -6
@@ -138,18 +138,31 @@ export type AnalysisMethod = (typeof AnalysisMethod)[keyof typeof AnalysisMethod
138
138
  */
139
139
  export declare const ParameterType: {
140
140
  readonly BIGINT: "BIGINT";
141
+ readonly BINARY: "BINARY";
141
142
  readonly BOOLEAN: "BOOLEAN";
143
+ readonly BYTE: "BYTE";
142
144
  readonly CHAR: "CHAR";
145
+ readonly CHARACTER: "CHARACTER";
143
146
  readonly DATE: "DATE";
144
147
  readonly DECIMAL: "DECIMAL";
148
+ readonly DOUBLE: "DOUBLE";
145
149
  readonly DOUBLE_PRECISION: "DOUBLE_PRECISION";
150
+ readonly FLOAT: "FLOAT";
151
+ readonly INT: "INT";
146
152
  readonly INTEGER: "INTEGER";
153
+ readonly LONG: "LONG";
154
+ readonly NUMERIC: "NUMERIC";
147
155
  readonly REAL: "REAL";
156
+ readonly SHORT: "SHORT";
148
157
  readonly SMALLINT: "SMALLINT";
158
+ readonly STRING: "STRING";
149
159
  readonly TIME: "TIME";
150
160
  readonly TIMESTAMP: "TIMESTAMP";
151
161
  readonly TIMESTAMPTZ: "TIMESTAMPTZ";
162
+ readonly TIMESTAMP_LTZ: "TIMESTAMP_LTZ";
163
+ readonly TIMESTAMP_NTZ: "TIMESTAMP_NTZ";
152
164
  readonly TIMETZ: "TIMETZ";
165
+ readonly TINYINT: "TINYINT";
153
166
  readonly VARBYTE: "VARBYTE";
154
167
  readonly VARCHAR: "VARCHAR";
155
168
  };
@@ -286,12 +299,9 @@ export interface AnalysisRuleAggregation {
286
299
  outputConstraints: AggregationConstraint[] | undefined;
287
300
  /**
288
301
  * <p> An indicator as to whether additional analyses (such as Clean Rooms ML) can be applied to the output of the direct query. </p>
289
- * <p>The
290
- * <code>additionalAnalyses</code>
291
- * parameter is
292
- * currently
293
- * supported for the list analysis rule (<code>AnalysisRuleList</code>) and the custom
294
- * analysis rule (<code>AnalysisRuleCustom</code>).</p>
302
+ * <p>The <code>additionalAnalyses</code> parameter is currently supported for the list
303
+ * analysis rule (<code>AnalysisRuleList</code>) and the custom analysis rule
304
+ * (<code>AnalysisRuleCustom</code>).</p>
295
305
  * @public
296
306
  */
297
307
  additionalAnalyses?: AdditionalAnalyses;
@@ -1055,13 +1065,13 @@ export interface ListAnalysisTemplatesInput {
1055
1065
  */
1056
1066
  membershipIdentifier: string | undefined;
1057
1067
  /**
1058
- * <p>The token value retrieved from a previous call to access the next page of
1059
- * results.</p>
1068
+ * <p>The pagination token that's used to fetch the next set of results.</p>
1060
1069
  * @public
1061
1070
  */
1062
1071
  nextToken?: string;
1063
1072
  /**
1064
- * <p>The maximum size of the results that is returned per call.</p>
1073
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
1074
+ * `maxResults` value has not been met.</p>
1065
1075
  * @public
1066
1076
  */
1067
1077
  maxResults?: number;
@@ -1128,8 +1138,7 @@ export interface AnalysisTemplateSummary {
1128
1138
  */
1129
1139
  export interface ListAnalysisTemplatesOutput {
1130
1140
  /**
1131
- * <p>The token value retrieved from a previous call to access the next page of
1132
- * results.</p>
1141
+ * <p>The pagination token that's used to fetch the next set of results.</p>
1133
1142
  * @public
1134
1143
  */
1135
1144
  nextToken?: string;
@@ -1181,6 +1190,18 @@ export declare const AnalysisType: {
1181
1190
  * @public
1182
1191
  */
1183
1192
  export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType];
1193
+ /**
1194
+ * @public
1195
+ * @enum
1196
+ */
1197
+ export declare const AnalyticsEngine: {
1198
+ readonly CLEAN_ROOMS_SQL: "CLEAN_ROOMS_SQL";
1199
+ readonly SPARK: "SPARK";
1200
+ };
1201
+ /**
1202
+ * @public
1203
+ */
1204
+ export type AnalyticsEngine = (typeof AnalyticsEngine)[keyof typeof AnalyticsEngine];
1184
1205
  /**
1185
1206
  * @public
1186
1207
  */
@@ -1549,7 +1570,7 @@ export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
1549
1570
  */
1550
1571
  export interface Schema {
1551
1572
  /**
1552
- * <p>The columns for the relation this schema represents.</p>
1573
+ * <p>The columns for the relation that this schema represents.</p>
1553
1574
  * @public
1554
1575
  */
1555
1576
  columns: Column[] | undefined;
@@ -1559,14 +1580,14 @@ export interface Schema {
1559
1580
  */
1560
1581
  partitionKeys: Column[] | undefined;
1561
1582
  /**
1562
- * <p>The analysis rule types associated with the schema. Currently, only one entry is
1583
+ * <p>The analysis rule types that are associated with the schema. Currently, only one entry is
1563
1584
  * present.</p>
1564
1585
  * @public
1565
1586
  */
1566
1587
  analysisRuleTypes: AnalysisRuleType[] | undefined;
1567
1588
  /**
1568
1589
  * <p>The analysis method for the schema. The only valid value is currently
1569
- * DIRECT_QUERY.</p>
1590
+ * <code>DIRECT_QUERY</code>.</p>
1570
1591
  * @public
1571
1592
  */
1572
1593
  analysisMethod?: AnalysisMethod;
@@ -1587,7 +1608,7 @@ export interface Schema {
1587
1608
  */
1588
1609
  collaborationId: string | undefined;
1589
1610
  /**
1590
- * <p>The unique ARN for the collaboration that the schema belongs to.</p>
1611
+ * <p>The unique Amazon Resource Name (ARN) for the collaboration that the schema belongs to.</p>
1591
1612
  * @public
1592
1613
  */
1593
1614
  collaborationArn: string | undefined;
@@ -1597,17 +1618,17 @@ export interface Schema {
1597
1618
  */
1598
1619
  description: string | undefined;
1599
1620
  /**
1600
- * <p>The time the schema was created.</p>
1621
+ * <p>The time at which the schema was created.</p>
1601
1622
  * @public
1602
1623
  */
1603
1624
  createTime: Date | undefined;
1604
1625
  /**
1605
- * <p>The time the schema was last updated.</p>
1626
+ * <p>The most recent time at which the schema was updated.</p>
1606
1627
  * @public
1607
1628
  */
1608
1629
  updateTime: Date | undefined;
1609
1630
  /**
1610
- * <p>The type of schema. The only valid value is currently `TABLE`.</p>
1631
+ * <p>The type of schema.</p>
1611
1632
  * @public
1612
1633
  */
1613
1634
  type: SchemaType | undefined;
@@ -1884,6 +1905,11 @@ export interface CreateCollaborationInput {
1884
1905
  * @public
1885
1906
  */
1886
1907
  creatorPaymentConfiguration?: PaymentConfiguration;
1908
+ /**
1909
+ * <p> The analytics engine.</p>
1910
+ * @public
1911
+ */
1912
+ analyticsEngine?: AnalyticsEngine;
1887
1913
  }
1888
1914
  /**
1889
1915
  * @public
@@ -1973,6 +1999,11 @@ export interface Collaboration {
1973
1999
  * @public
1974
2000
  */
1975
2001
  queryLogStatus: CollaborationQueryLogStatus | undefined;
2002
+ /**
2003
+ * <p> The analytics engine for the collaboration.</p>
2004
+ * @public
2005
+ */
2006
+ analyticsEngine?: AnalyticsEngine;
1976
2007
  }
1977
2008
  /**
1978
2009
  * @public
@@ -2122,7 +2153,7 @@ export interface CollaborationConfiguredAudienceModelAssociation {
2122
2153
  */
2123
2154
  description?: string;
2124
2155
  /**
2125
- * <p>The identifier used to reference members of the collaboration. Only supports AWS account ID.</p>
2156
+ * <p>The identifier used to reference members of the collaboration. Only supports Amazon Web Services account ID.</p>
2126
2157
  * @public
2127
2158
  */
2128
2159
  creatorAccountId: string | undefined;
@@ -2505,13 +2536,13 @@ export interface ListCollaborationAnalysisTemplatesInput {
2505
2536
  */
2506
2537
  collaborationIdentifier: string | undefined;
2507
2538
  /**
2508
- * <p>The token value retrieved from a previous call to access the next page of
2509
- * results.</p>
2539
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2510
2540
  * @public
2511
2541
  */
2512
2542
  nextToken?: string;
2513
2543
  /**
2514
- * <p>The maximum size of the results that is returned per call.</p>
2544
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
2545
+ * `maxResults` value has not been met.</p>
2515
2546
  * @public
2516
2547
  */
2517
2548
  maxResults?: number;
@@ -2576,8 +2607,7 @@ export interface CollaborationAnalysisTemplateSummary {
2576
2607
  */
2577
2608
  export interface ListCollaborationAnalysisTemplatesOutput {
2578
2609
  /**
2579
- * <p>The token value retrieved from a previous call to access the next page of
2580
- * results.</p>
2610
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2581
2611
  * @public
2582
2612
  */
2583
2613
  nextToken?: string;
@@ -2597,12 +2627,13 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsInput {
2597
2627
  */
2598
2628
  collaborationIdentifier: string | undefined;
2599
2629
  /**
2600
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
2630
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2601
2631
  * @public
2602
2632
  */
2603
2633
  nextToken?: string;
2604
2634
  /**
2605
- * <p>The maximum size of the results that is returned per call.</p>
2635
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
2636
+ * `maxResults` value has not been met.</p>
2606
2637
  * @public
2607
2638
  */
2608
2639
  maxResults?: number;
@@ -2648,7 +2679,7 @@ export interface CollaborationConfiguredAudienceModelAssociationSummary {
2648
2679
  */
2649
2680
  collaborationId: string | undefined;
2650
2681
  /**
2651
- * <p>The identifier used to reference members of the collaboration. Only supports AWS account ID.</p>
2682
+ * <p>The identifier used to reference members of the collaboration. Only supports Amazon Web Services account ID.</p>
2652
2683
  * @public
2653
2684
  */
2654
2685
  creatorAccountId: string | undefined;
@@ -2668,7 +2699,7 @@ export interface ListCollaborationConfiguredAudienceModelAssociationsOutput {
2668
2699
  */
2669
2700
  collaborationConfiguredAudienceModelAssociationSummaries: CollaborationConfiguredAudienceModelAssociationSummary[] | undefined;
2670
2701
  /**
2671
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
2702
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2672
2703
  * @public
2673
2704
  */
2674
2705
  nextToken?: string;
@@ -2795,15 +2826,13 @@ export interface ListCollaborationPrivacyBudgetsInput {
2795
2826
  */
2796
2827
  privacyBudgetType: PrivacyBudgetType | undefined;
2797
2828
  /**
2798
- * <p>The maximum size of the results that is returned per call. Service chooses a default if
2799
- * it has not been set. Service may return a nextToken even if the maximum results has not
2800
- * been met.</p>
2829
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
2830
+ * `maxResults` value has not been met.</p>
2801
2831
  * @public
2802
2832
  */
2803
2833
  maxResults?: number;
2804
2834
  /**
2805
- * <p>The token value retrieved from a previous call to access the next page of
2806
- * results.</p>
2835
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2807
2836
  * @public
2808
2837
  */
2809
2838
  nextToken?: string;
@@ -2956,8 +2985,7 @@ export interface ListCollaborationPrivacyBudgetsOutput {
2956
2985
  */
2957
2986
  collaborationPrivacyBudgetSummaries: CollaborationPrivacyBudgetSummary[] | undefined;
2958
2987
  /**
2959
- * <p>The token value retrieved from a previous call to access the next page of
2960
- * results.</p>
2988
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2961
2989
  * @public
2962
2990
  */
2963
2991
  nextToken?: string;
@@ -2972,15 +3000,13 @@ export interface ListCollaborationPrivacyBudgetTemplatesInput {
2972
3000
  */
2973
3001
  collaborationIdentifier: string | undefined;
2974
3002
  /**
2975
- * <p>The token value retrieved from a previous call to access the next page of
2976
- * results.</p>
3003
+ * <p>The pagination token that's used to fetch the next set of results.</p>
2977
3004
  * @public
2978
3005
  */
2979
3006
  nextToken?: string;
2980
3007
  /**
2981
- * <p>The maximum size of the results that is returned per call. Service chooses a default if
2982
- * it has not been set. Service may return a nextToken even if the maximum results has not
2983
- * been met.</p>
3008
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3009
+ * `maxResults` value has not been met.</p>
2984
3010
  * @public
2985
3011
  */
2986
3012
  maxResults?: number;
@@ -3036,8 +3062,7 @@ export interface CollaborationPrivacyBudgetTemplateSummary {
3036
3062
  */
3037
3063
  export interface ListCollaborationPrivacyBudgetTemplatesOutput {
3038
3064
  /**
3039
- * <p>The token value retrieved from a previous call to access the next page of
3040
- * results.</p>
3065
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3041
3066
  * @public
3042
3067
  */
3043
3068
  nextToken?: string;
@@ -3064,15 +3089,13 @@ export type FilterableMemberStatus = (typeof FilterableMemberStatus)[keyof typeo
3064
3089
  */
3065
3090
  export interface ListCollaborationsInput {
3066
3091
  /**
3067
- * <p>The token value retrieved from a previous call to access the next page of
3068
- * results.</p>
3092
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3069
3093
  * @public
3070
3094
  */
3071
3095
  nextToken?: string;
3072
3096
  /**
3073
- * <p>The maximum size of the results that is returned per call. Service chooses a default if
3074
- * it has not been set. Service may return a nextToken even if the maximum results has not
3075
- * been met.</p>
3097
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3098
+ * `maxResults` value has not been met.</p>
3076
3099
  * @public
3077
3100
  */
3078
3101
  maxResults?: number;
@@ -3139,14 +3162,18 @@ export interface CollaborationSummary {
3139
3162
  * @public
3140
3163
  */
3141
3164
  membershipArn?: string;
3165
+ /**
3166
+ * <p> The analytics engine.</p>
3167
+ * @public
3168
+ */
3169
+ analyticsEngine?: AnalyticsEngine;
3142
3170
  }
3143
3171
  /**
3144
3172
  * @public
3145
3173
  */
3146
3174
  export interface ListCollaborationsOutput {
3147
3175
  /**
3148
- * <p>The token value retrieved from a previous call to access the next page of
3149
- * results.</p>
3176
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3150
3177
  * @public
3151
3178
  */
3152
3179
  nextToken?: string;
@@ -3166,13 +3193,13 @@ export interface ListMembersInput {
3166
3193
  */
3167
3194
  collaborationIdentifier: string | undefined;
3168
3195
  /**
3169
- * <p>The token value retrieved from a previous call to access the next page of
3170
- * results.</p>
3196
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3171
3197
  * @public
3172
3198
  */
3173
3199
  nextToken?: string;
3174
3200
  /**
3175
- * <p>The maximum size of the results that is returned per call.</p>
3201
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3202
+ * `maxResults` value has not been met.</p>
3176
3203
  * @public
3177
3204
  */
3178
3205
  maxResults?: number;
@@ -3234,8 +3261,7 @@ export interface MemberSummary {
3234
3261
  */
3235
3262
  export interface ListMembersOutput {
3236
3263
  /**
3237
- * <p>The token value retrieved from a previous call to access the next page of
3238
- * results.</p>
3264
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3239
3265
  * @public
3240
3266
  */
3241
3267
  nextToken?: string;
@@ -3256,19 +3282,18 @@ export interface ListSchemasInput {
3256
3282
  */
3257
3283
  collaborationIdentifier: string | undefined;
3258
3284
  /**
3259
- * <p>If present, filter schemas by schema type. The only valid schema type is currently
3260
- * `TABLE`.</p>
3285
+ * <p>If present, filter schemas by schema type.</p>
3261
3286
  * @public
3262
3287
  */
3263
3288
  schemaType?: SchemaType;
3264
3289
  /**
3265
- * <p>The token value retrieved from a previous call to access the next page of
3266
- * results.</p>
3290
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3267
3291
  * @public
3268
3292
  */
3269
3293
  nextToken?: string;
3270
3294
  /**
3271
- * <p>The maximum size of the results that is returned per call.</p>
3295
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3296
+ * `maxResults` value has not been met.</p>
3272
3297
  * @public
3273
3298
  */
3274
3299
  maxResults?: number;
@@ -3284,7 +3309,7 @@ export interface SchemaSummary {
3284
3309
  */
3285
3310
  name: string | undefined;
3286
3311
  /**
3287
- * <p>The type of schema object. The only valid schema type is currently `TABLE`.</p>
3312
+ * <p>The type of schema object.</p>
3288
3313
  * @public
3289
3314
  */
3290
3315
  type: SchemaType | undefined;
@@ -3335,8 +3360,7 @@ export interface ListSchemasOutput {
3335
3360
  */
3336
3361
  schemaSummaries: SchemaSummary[] | undefined;
3337
3362
  /**
3338
- * <p>The token value retrieved from a previous call to access the next page of
3339
- * results.</p>
3363
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3340
3364
  * @public
3341
3365
  */
3342
3366
  nextToken?: string;
@@ -3544,14 +3568,13 @@ export interface ListConfiguredAudienceModelAssociationsInput {
3544
3568
  */
3545
3569
  membershipIdentifier: string | undefined;
3546
3570
  /**
3547
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
3571
+ * <p>The pagination token that's used to fetch the next set of results.</p>
3548
3572
  * @public
3549
3573
  */
3550
3574
  nextToken?: string;
3551
3575
  /**
3552
- * <p>The maximum size of the results that is returned per call. Service chooses a default if
3553
- * it has not been set. Service may return a nextToken even if the maximum results has not
3554
- * been met.</p>
3576
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
3577
+ * `maxResults` value has not been met.</p>
3555
3578
  * @public
3556
3579
  */
3557
3580
  maxResults?: number;
@@ -3812,11 +3835,8 @@ export interface ConfiguredTableAssociationAnalysisRuleAggregation {
3812
3835
  allowedResultReceivers?: string[];
3813
3836
  /**
3814
3837
  * <p> The list of resources or wildcards (ARNs) that are allowed to perform additional analysis on query output.</p>
3815
- * <p>The
3816
- * <code>allowedAdditionalAnalyses</code>
3817
- * parameter
3818
- * is currently supported for the list analysis rule
3819
- * (<code>AnalysisRuleList</code>) and the custom analysis rule
3838
+ * <p>The <code>allowedAdditionalAnalyses</code> parameter is currently supported for the list
3839
+ * analysis rule (<code>AnalysisRuleList</code>) and the custom analysis rule
3820
3840
  * (<code>AnalysisRuleCustom</code>).</p>
3821
3841
  * @public
3822
3842
  */
@@ -3828,10 +3848,8 @@ export interface ConfiguredTableAssociationAnalysisRuleAggregation {
3828
3848
  */
3829
3849
  export interface ConfiguredTableAssociationAnalysisRuleCustom {
3830
3850
  /**
3831
- * <p> The list of
3832
- * collaboration members who are allowed
3833
- * to
3834
- * receive results of queries run with this configured table.</p>
3851
+ * <p> The list of collaboration members who are allowed to receive results of queries run
3852
+ * with this configured table.</p>
3835
3853
  * @public
3836
3854
  */
3837
3855
  allowedResultReceivers?: string[];
@@ -3973,11 +3991,9 @@ export interface CreateConfiguredTableAssociationAnalysisRuleInput {
3973
3991
  analysisRulePolicy: ConfiguredTableAssociationAnalysisRulePolicy | undefined;
3974
3992
  }
3975
3993
  /**
3976
- * <p>An
3977
- * analysis rule for a configured table association. This analysis rule specifies how data
3978
- * from the table can be used within its associated
3979
- * collaboration.
3980
- * In the console, the <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the
3994
+ * <p>An analysis rule for a configured table association. This analysis rule specifies how
3995
+ * data from the table can be used within its associated collaboration. In the console, the
3996
+ * <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the
3981
3997
  * <i>collaboration analysis rule</i>.</p>
3982
3998
  * @public
3983
3999
  */
@@ -3988,16 +4004,12 @@ export interface ConfiguredTableAssociationAnalysisRule {
3988
4004
  */
3989
4005
  membershipIdentifier: string | undefined;
3990
4006
  /**
3991
- * <p>
3992
- * The
3993
- * unique identifier for the configured table association.</p>
4007
+ * <p> The unique identifier for the configured table association.</p>
3994
4008
  * @public
3995
4009
  */
3996
4010
  configuredTableAssociationId: string | undefined;
3997
4011
  /**
3998
- * <p>
3999
- * The
4000
- * Amazon Resource Name (ARN) of the configured table association.</p>
4012
+ * <p> The Amazon Resource Name (ARN) of the configured table association.</p>
4001
4013
  * @public
4002
4014
  */
4003
4015
  configuredTableAssociationArn: string | undefined;
@@ -4027,8 +4039,7 @@ export interface ConfiguredTableAssociationAnalysisRule {
4027
4039
  */
4028
4040
  export interface CreateConfiguredTableAssociationAnalysisRuleOutput {
4029
4041
  /**
4030
- * <p>The analysis rule for the configured table association.
4031
- * In the console, the
4042
+ * <p>The analysis rule for the configured table association. In the console, the
4032
4043
  * <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the
4033
4044
  * <i>collaboration analysis rule</i>.</p>
4034
4045
  * @public
@@ -4068,15 +4079,13 @@ export interface DeleteConfiguredTableAssociationAnalysisRuleInput {
4068
4079
  */
4069
4080
  membershipIdentifier: string | undefined;
4070
4081
  /**
4071
- * <p>The
4072
- * identifier for the configured table association that's related to the analysis rule that you
4073
- * want to delete.</p>
4082
+ * <p>The identifier for the configured table association that's related to the analysis rule
4083
+ * that you want to delete.</p>
4074
4084
  * @public
4075
4085
  */
4076
4086
  configuredTableAssociationIdentifier: string | undefined;
4077
4087
  /**
4078
- * <p>The
4079
- * type of the analysis rule that you want to delete.</p>
4088
+ * <p>The type of the analysis rule that you want to delete.</p>
4080
4089
  * @public
4081
4090
  */
4082
4091
  analysisRuleType: ConfiguredTableAssociationAnalysisRuleType | undefined;
@@ -4124,17 +4133,13 @@ export interface GetConfiguredTableAssociationAnalysisRuleInput {
4124
4133
  */
4125
4134
  membershipIdentifier: string | undefined;
4126
4135
  /**
4127
- * <p>
4128
- * The
4129
- * identifier for the configured table association that's related to the analysis
4136
+ * <p> The identifier for the configured table association that's related to the analysis
4130
4137
  * rule.</p>
4131
4138
  * @public
4132
4139
  */
4133
4140
  configuredTableAssociationIdentifier: string | undefined;
4134
4141
  /**
4135
- * <p>
4136
- * The
4137
- * type of analysis rule that you want to retrieve.</p>
4142
+ * <p> The type of analysis rule that you want to retrieve.</p>
4138
4143
  * @public
4139
4144
  */
4140
4145
  analysisRuleType: ConfiguredTableAssociationAnalysisRuleType | undefined;
@@ -4144,10 +4149,9 @@ export interface GetConfiguredTableAssociationAnalysisRuleInput {
4144
4149
  */
4145
4150
  export interface GetConfiguredTableAssociationAnalysisRuleOutput {
4146
4151
  /**
4147
- * <p>The
4148
- * analysis rule for the configured table association. In the console, the
4149
- * <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the
4150
- * <i>collaboration analysis rule</i>.</p>
4152
+ * <p>The analysis rule for the configured table association. In the console, the
4153
+ * <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the
4154
+ * <i>collaboration analysis rule</i>.</p>
4151
4155
  * @public
4152
4156
  */
4153
4157
  analysisRule: ConfiguredTableAssociationAnalysisRule | undefined;
@@ -4163,13 +4167,13 @@ export interface ListConfiguredTableAssociationsInput {
4163
4167
  */
4164
4168
  membershipIdentifier: string | undefined;
4165
4169
  /**
4166
- * <p>The token value retrieved from a previous call to access the next page of
4167
- * results.</p>
4170
+ * <p>The pagination token that's used to fetch the next set of results.</p>
4168
4171
  * @public
4169
4172
  */
4170
4173
  nextToken?: string;
4171
4174
  /**
4172
- * <p>The maximum size of the results that is returned per call.</p>
4175
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
4176
+ * `maxResults` value has not been met.</p>
4173
4177
  * @public
4174
4178
  */
4175
4179
  maxResults?: number;
@@ -4233,8 +4237,7 @@ export interface ListConfiguredTableAssociationsOutput {
4233
4237
  */
4234
4238
  configuredTableAssociationSummaries: ConfiguredTableAssociationSummary[] | undefined;
4235
4239
  /**
4236
- * <p>The token value retrieved from a previous call to access the next page of
4237
- * results.</p>
4240
+ * <p>The pagination token that's used to fetch the next set of results.</p>
4238
4241
  * @public
4239
4242
  */
4240
4243
  nextToken?: string;
@@ -4292,16 +4295,12 @@ export interface UpdateConfiguredTableAssociationAnalysisRuleInput {
4292
4295
  */
4293
4296
  configuredTableAssociationIdentifier: string | undefined;
4294
4297
  /**
4295
- * <p> The analysis rule type
4296
- * that
4297
- * you want to update.</p>
4298
+ * <p> The analysis rule type that you want to update.</p>
4298
4299
  * @public
4299
4300
  */
4300
4301
  analysisRuleType: ConfiguredTableAssociationAnalysisRuleType | undefined;
4301
4302
  /**
4302
- * <p>
4303
- * The
4304
- * updated analysis rule policy for the configured table association.</p>
4303
+ * <p> The updated analysis rule policy for the configured table association.</p>
4305
4304
  * @public
4306
4305
  */
4307
4306
  analysisRulePolicy: ConfiguredTableAssociationAnalysisRulePolicy | undefined;
@@ -4311,9 +4310,7 @@ export interface UpdateConfiguredTableAssociationAnalysisRuleInput {
4311
4310
  */
4312
4311
  export interface UpdateConfiguredTableAssociationAnalysisRuleOutput {
4313
4312
  /**
4314
- * <p>
4315
- * The
4316
- * updated analysis rule for the configured table association. In the console, the
4313
+ * <p> The updated analysis rule for the configured table association. In the console, the
4317
4314
  * <code>ConfiguredTableAssociationAnalysisRule</code> is referred to as the
4318
4315
  * <i>collaboration analysis rule</i>.</p>
4319
4316
  * @public
@@ -4736,13 +4733,13 @@ export interface GetConfiguredTableAnalysisRuleOutput {
4736
4733
  */
4737
4734
  export interface ListConfiguredTablesInput {
4738
4735
  /**
4739
- * <p>The token value retrieved from a previous call to access the next page of
4740
- * results.</p>
4736
+ * <p>The pagination token that's used to fetch the next set of results.</p>
4741
4737
  * @public
4742
4738
  */
4743
4739
  nextToken?: string;
4744
4740
  /**
4745
- * <p>The maximum size of the results that is returned per call.</p>
4741
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
4742
+ * `maxResults` value has not been met.</p>
4746
4743
  * @public
4747
4744
  */
4748
4745
  maxResults?: number;
@@ -4799,8 +4796,7 @@ export interface ListConfiguredTablesOutput {
4799
4796
  */
4800
4797
  configuredTableSummaries: ConfiguredTableSummary[] | undefined;
4801
4798
  /**
4802
- * <p>The token value retrieved from a previous call to access the next page of
4803
- * results.</p>
4799
+ * <p>The pagination token that's used to fetch the next set of results.</p>
4804
4800
  * @public
4805
4801
  */
4806
4802
  nextToken?: string;
@@ -5574,6 +5570,13 @@ export interface ProtectedQueryS3OutputConfiguration {
5574
5570
  * @public
5575
5571
  */
5576
5572
  keyPrefix?: string;
5573
+ /**
5574
+ * <p>Indicates whether files should be output as a single file (<code>TRUE</code>) or output
5575
+ * as multiple files (<code>FALSE</code>). This parameter is only supported for analyses with
5576
+ * the Spark analytics engine.</p>
5577
+ * @public
5578
+ */
5579
+ singleFileOutput?: boolean;
5577
5580
  }
5578
5581
  /**
5579
5582
  * <p>Contains configurations for protected query results.</p>
@@ -5864,6 +5867,65 @@ export interface GetProtectedQueryInput {
5864
5867
  */
5865
5868
  protectedQueryIdentifier: string | undefined;
5866
5869
  }
5870
+ /**
5871
+ * @public
5872
+ * @enum
5873
+ */
5874
+ export declare const WorkerComputeType: {
5875
+ readonly CR1X: "CR.1X";
5876
+ readonly CR4X: "CR.4X";
5877
+ };
5878
+ /**
5879
+ * @public
5880
+ */
5881
+ export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
5882
+ /**
5883
+ * <p> The configuration of the compute resources for workers running an analysis with the
5884
+ * Clean Rooms SQL analytics engine.</p>
5885
+ * @public
5886
+ */
5887
+ export interface WorkerComputeConfiguration {
5888
+ /**
5889
+ * <p> The worker compute configuration type.</p>
5890
+ * @public
5891
+ */
5892
+ type?: WorkerComputeType;
5893
+ /**
5894
+ * <p> The number of workers.</p>
5895
+ * @public
5896
+ */
5897
+ number?: number;
5898
+ }
5899
+ /**
5900
+ * <p> The configuration of the compute resources for an analysis with the Spark analytics engine.</p>
5901
+ * @public
5902
+ */
5903
+ export type ComputeConfiguration = ComputeConfiguration.WorkerMember | ComputeConfiguration.$UnknownMember;
5904
+ /**
5905
+ * @public
5906
+ */
5907
+ export declare namespace ComputeConfiguration {
5908
+ /**
5909
+ * <p> The worker configuration for the compute environment.</p>
5910
+ * @public
5911
+ */
5912
+ interface WorkerMember {
5913
+ worker: WorkerComputeConfiguration;
5914
+ $unknown?: never;
5915
+ }
5916
+ /**
5917
+ * @public
5918
+ */
5919
+ interface $UnknownMember {
5920
+ worker?: never;
5921
+ $unknown: [string, any];
5922
+ }
5923
+ interface Visitor<T> {
5924
+ worker: (value: WorkerComputeConfiguration) => T;
5925
+ _: (name: string, value: any) => T;
5926
+ }
5927
+ const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
5928
+ }
5867
5929
  /**
5868
5930
  * <p>Provides the sensitivity parameters.</p>
5869
5931
  * @public
@@ -6004,8 +6066,7 @@ export interface ProtectedQueryResult {
6004
6066
  */
6005
6067
  export interface ProtectedQueryMemberOutputConfiguration {
6006
6068
  /**
6007
- * <p>The
6008
- * unique identifier for the account.</p>
6069
+ * <p>The unique identifier for the account.</p>
6009
6070
  * @public
6010
6071
  */
6011
6072
  accountId: string | undefined;
@@ -6020,9 +6081,7 @@ export type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguratio
6020
6081
  */
6021
6082
  export declare namespace ProtectedQueryOutputConfiguration {
6022
6083
  /**
6023
- * <p>Required configuration for a protected query with an
6024
- * <code>s3</code>
6025
- * output type.</p>
6084
+ * <p>Required configuration for a protected query with an <code>s3</code> output type.</p>
6026
6085
  * @public
6027
6086
  */
6028
6087
  interface S3Member {
@@ -6087,6 +6146,17 @@ export interface ProtectedQuerySQLParameters {
6087
6146
  */
6088
6147
  parameters?: Record<string, string>;
6089
6148
  }
6149
+ /**
6150
+ * <p> Information related to the utilization of resources that have been billed or charged for in a given context, such as a protected query.</p>
6151
+ * @public
6152
+ */
6153
+ export interface BilledResourceUtilization {
6154
+ /**
6155
+ * <p> The number of Clean Rooms Processing Unit (CRPU) hours that have been billed.</p>
6156
+ * @public
6157
+ */
6158
+ units: number | undefined;
6159
+ }
6090
6160
  /**
6091
6161
  * <p>Contains statistics about the execution of the protected query.</p>
6092
6162
  * @public
@@ -6097,6 +6167,11 @@ export interface ProtectedQueryStatistics {
6097
6167
  * @public
6098
6168
  */
6099
6169
  totalDurationInMillis?: number;
6170
+ /**
6171
+ * <p> The billed resource utilization.</p>
6172
+ * @public
6173
+ */
6174
+ billedResourceUtilization?: BilledResourceUtilization;
6100
6175
  }
6101
6176
  /**
6102
6177
  * @public
@@ -6175,6 +6250,11 @@ export interface ProtectedQuery {
6175
6250
  * @public
6176
6251
  */
6177
6252
  differentialPrivacy?: DifferentialPrivacyParameters;
6253
+ /**
6254
+ * <p> The compute configuration for the protected query.</p>
6255
+ * @public
6256
+ */
6257
+ computeConfiguration?: ComputeConfiguration;
6178
6258
  }
6179
6259
  /**
6180
6260
  * @public
@@ -6191,13 +6271,13 @@ export interface GetProtectedQueryOutput {
6191
6271
  */
6192
6272
  export interface ListMembershipsInput {
6193
6273
  /**
6194
- * <p>The token value retrieved from a previous call to access the next page of
6195
- * results.</p>
6274
+ * <p>The pagination token that's used to fetch the next set of results.</p>
6196
6275
  * @public
6197
6276
  */
6198
6277
  nextToken?: string;
6199
6278
  /**
6200
- * <p>The maximum size of the results that is returned per call.</p>
6279
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
6280
+ * `maxResults` value has not been met.</p>
6201
6281
  * @public
6202
6282
  */
6203
6283
  maxResults?: number;
@@ -6279,8 +6359,7 @@ export interface MembershipSummary {
6279
6359
  */
6280
6360
  export interface ListMembershipsOutput {
6281
6361
  /**
6282
- * <p>The token value retrieved from a previous call to access the next page of
6283
- * results.</p>
6362
+ * <p>The pagination token that's used to fetch the next set of results.</p>
6284
6363
  * @public
6285
6364
  */
6286
6365
  nextToken?: string;
@@ -6305,15 +6384,13 @@ export interface ListPrivacyBudgetsInput {
6305
6384
  */
6306
6385
  privacyBudgetType: PrivacyBudgetType | undefined;
6307
6386
  /**
6308
- * <p>The token value retrieved from a previous call to access the next page of
6309
- * results.</p>
6387
+ * <p>The pagination token that's used to fetch the next set of results.</p>
6310
6388
  * @public
6311
6389
  */
6312
6390
  nextToken?: string;
6313
6391
  /**
6314
- * <p>The maximum size of the results that is returned per call. Service chooses a default if
6315
- * it has not been set. Service may return a nextToken even if the maximum results has not
6316
- * been met.</p>
6392
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
6393
+ * `maxResults` value has not been met.</p>
6317
6394
  * @public
6318
6395
  */
6319
6396
  maxResults?: number;
@@ -6389,8 +6466,7 @@ export interface ListPrivacyBudgetsOutput {
6389
6466
  */
6390
6467
  privacyBudgetSummaries: PrivacyBudgetSummary[] | undefined;
6391
6468
  /**
6392
- * <p>The token value retrieved from a previous call to access the next page of
6393
- * results.</p>
6469
+ * <p>The pagination token that's used to fetch the next set of results.</p>
6394
6470
  * @public
6395
6471
  */
6396
6472
  nextToken?: string;
@@ -6410,15 +6486,13 @@ export interface ListProtectedQueriesInput {
6410
6486
  */
6411
6487
  status?: ProtectedQueryStatus;
6412
6488
  /**
6413
- * <p>The token value retrieved from a previous call to access the next page of
6414
- * results.</p>
6489
+ * <p>The pagination token that's used to fetch the next set of results.</p>
6415
6490
  * @public
6416
6491
  */
6417
6492
  nextToken?: string;
6418
6493
  /**
6419
- * <p>The maximum size of the results that is returned per call. Service chooses a default if
6420
- * it has not been set. Service can return a nextToken even if the maximum results has not
6421
- * been met. </p>
6494
+ * <p>The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the
6495
+ * `maxResults` value has not been met. </p>
6422
6496
  * @public
6423
6497
  */
6424
6498
  maxResults?: number;
@@ -6506,8 +6580,7 @@ export interface ProtectedQuerySummary {
6506
6580
  */
6507
6581
  createTime: Date | undefined;
6508
6582
  /**
6509
- * <p>The status of the protected query. Value values are `SUBMITTED`, `STARTED`, `CANCELLED`,
6510
- * `CANCELLING`, `FAILED`, `SUCCESS`, `TIMED_OUT`.</p>
6583
+ * <p>The status of the protected query.</p>
6511
6584
  * @public
6512
6585
  */
6513
6586
  status: ProtectedQueryStatus | undefined;
@@ -6522,8 +6595,7 @@ export interface ProtectedQuerySummary {
6522
6595
  */
6523
6596
  export interface ListProtectedQueriesOutput {
6524
6597
  /**
6525
- * <p>The token value retrieved from a previous call to access the next page of
6526
- * results.</p>
6598
+ * <p>The pagination token that's used to fetch the next set of results.</p>
6527
6599
  * @public
6528
6600
  */
6529
6601
  nextToken?: string;
@@ -6697,80 +6769,11 @@ export interface StartProtectedQueryInput {
6697
6769
  * @public
6698
6770
  */
6699
6771
  resultConfiguration?: ProtectedQueryResultConfiguration;
6700
- }
6701
- /**
6702
- * @public
6703
- */
6704
- export interface StartProtectedQueryOutput {
6705
6772
  /**
6706
- * <p>The protected query.</p>
6773
+ * <p> The compute configuration for the protected query.</p>
6707
6774
  * @public
6708
6775
  */
6709
- protectedQuery: ProtectedQuery | undefined;
6710
- }
6711
- /**
6712
- * @public
6713
- */
6714
- export interface UpdateMembershipInput {
6715
- /**
6716
- * <p>The unique identifier of the membership.</p>
6717
- * @public
6718
- */
6719
- membershipIdentifier: string | undefined;
6720
- /**
6721
- * <p>An indicator as to whether query logging has been enabled or disabled for the
6722
- * membership.</p>
6723
- * @public
6724
- */
6725
- queryLogStatus?: MembershipQueryLogStatus;
6726
- /**
6727
- * <p>The default protected query result configuration as specified by the member who can
6728
- * receive results.</p>
6729
- * @public
6730
- */
6731
- defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
6732
- }
6733
- /**
6734
- * @public
6735
- */
6736
- export interface UpdateMembershipOutput {
6737
- /**
6738
- * <p>The membership object.</p>
6739
- * @public
6740
- */
6741
- membership: Membership | undefined;
6742
- }
6743
- /**
6744
- * @public
6745
- * @enum
6746
- */
6747
- export declare const TargetProtectedQueryStatus: {
6748
- readonly CANCELLED: "CANCELLED";
6749
- };
6750
- /**
6751
- * @public
6752
- */
6753
- export type TargetProtectedQueryStatus = (typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];
6754
- /**
6755
- * @public
6756
- */
6757
- export interface UpdateProtectedQueryInput {
6758
- /**
6759
- * <p>The identifier for a member of a protected query instance.</p>
6760
- * @public
6761
- */
6762
- membershipIdentifier: string | undefined;
6763
- /**
6764
- * <p>The identifier for a protected query instance.</p>
6765
- * @public
6766
- */
6767
- protectedQueryIdentifier: string | undefined;
6768
- /**
6769
- * <p>The target status of a query. Used to update the execution status of a currently running
6770
- * query.</p>
6771
- * @public
6772
- */
6773
- targetStatus: TargetProtectedQueryStatus | undefined;
6776
+ computeConfiguration?: ComputeConfiguration;
6774
6777
  }
6775
6778
  /**
6776
6779
  * @internal
@@ -6828,7 +6831,3 @@ export declare const GetProtectedQueryOutputFilterSensitiveLog: (obj: GetProtect
6828
6831
  * @internal
6829
6832
  */
6830
6833
  export declare const StartProtectedQueryInputFilterSensitiveLog: (obj: StartProtectedQueryInput) => any;
6831
- /**
6832
- * @internal
6833
- */
6834
- export declare const StartProtectedQueryOutputFilterSensitiveLog: (obj: StartProtectedQueryOutput) => any;