@aws-sdk/client-cleanrooms 3.798.0 → 3.800.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.
@@ -11,8 +11,7 @@ export interface ProtectedJobResultConfigurationOutput {
11
11
  outputConfiguration: ProtectedJobOutputConfigurationOutput | undefined;
12
12
  }
13
13
  /**
14
- * <p> Information related to the utilization of resources that have been billed
15
- * or charged for in a given context, such as a protected job.</p>
14
+ * <p> Information related to the utilization of resources that have been billed or charged for in a given context, such as a protected job.</p>
16
15
  * @public
17
16
  */
18
17
  export interface BilledJobResourceUtilization {
@@ -148,8 +147,7 @@ export declare const WorkerComputeType: {
148
147
  */
149
148
  export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
150
149
  /**
151
- * <p> The configuration of the compute resources for workers running an analysis with the
152
- * Clean Rooms SQL analytics engine.</p>
150
+ * <p> The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.</p>
153
151
  * @public
154
152
  */
155
153
  export interface WorkerComputeConfiguration {
@@ -258,8 +256,7 @@ export interface ProtectedQueryError {
258
256
  */
259
257
  export interface ProtectedQuerySingleMemberOutput {
260
258
  /**
261
- * <p>The Amazon Web Services account ID of the member in the collaboration who can receive results for the
262
- * query.</p>
259
+ * <p>The Amazon Web Services account ID of the member in the collaboration who can receive results for the query.</p>
263
260
  * @public
264
261
  */
265
262
  accountId: string | undefined;
@@ -275,22 +272,39 @@ export interface ProtectedQueryS3Output {
275
272
  */
276
273
  location: string | undefined;
277
274
  }
275
+ /**
276
+ * <p> Contains the output information for a protected query with a distribute output configuration.</p> <p> This output type allows query results to be distributed to multiple receivers, including S3 and collaboration members. It is only available for queries using the Spark analytics engine.</p>
277
+ * @public
278
+ */
279
+ export interface ProtectedQueryDistributeOutput {
280
+ /**
281
+ * <p>Contains output information for protected queries with an S3 output type.</p>
282
+ * @public
283
+ */
284
+ s3?: ProtectedQueryS3Output | undefined;
285
+ /**
286
+ * <p> Contains the output results for each member location specified in the distribute output configuration. Each entry provides details about the result distribution to a specific collaboration member. </p>
287
+ * @public
288
+ */
289
+ memberList?: ProtectedQuerySingleMemberOutput[] | undefined;
290
+ }
278
291
  /**
279
292
  * <p>Contains details about the protected query output.</p>
280
293
  * @public
281
294
  */
282
- export type ProtectedQueryOutput = ProtectedQueryOutput.MemberListMember | ProtectedQueryOutput.S3Member | ProtectedQueryOutput.$UnknownMember;
295
+ export type ProtectedQueryOutput = ProtectedQueryOutput.DistributeMember | ProtectedQueryOutput.MemberListMember | ProtectedQueryOutput.S3Member | ProtectedQueryOutput.$UnknownMember;
283
296
  /**
284
297
  * @public
285
298
  */
286
299
  export declare namespace ProtectedQueryOutput {
287
300
  /**
288
- * <p>If present, the output for a protected query with an `S3` output type.</p>
301
+ * <p>If present, the output for a protected query with an <code>S3</code> output type.</p>
289
302
  * @public
290
303
  */
291
304
  interface S3Member {
292
305
  s3: ProtectedQueryS3Output;
293
306
  memberList?: never;
307
+ distribute?: never;
294
308
  $unknown?: never;
295
309
  }
296
310
  /**
@@ -300,6 +314,17 @@ export declare namespace ProtectedQueryOutput {
300
314
  interface MemberListMember {
301
315
  s3?: never;
302
316
  memberList: ProtectedQuerySingleMemberOutput[];
317
+ distribute?: never;
318
+ $unknown?: never;
319
+ }
320
+ /**
321
+ * <p>Contains output information for protected queries that use a <code>distribute</code> output type. This output type lets you send query results to multiple locations - either to S3 or to collaboration members. </p> <note> <p> You can only use the <code>distribute</code> output type with the Spark analytics engine. </p> </note>
322
+ * @public
323
+ */
324
+ interface DistributeMember {
325
+ s3?: never;
326
+ memberList?: never;
327
+ distribute: ProtectedQueryDistributeOutput;
303
328
  $unknown?: never;
304
329
  }
305
330
  /**
@@ -308,11 +333,13 @@ export declare namespace ProtectedQueryOutput {
308
333
  interface $UnknownMember {
309
334
  s3?: never;
310
335
  memberList?: never;
336
+ distribute?: never;
311
337
  $unknown: [string, any];
312
338
  }
313
339
  interface Visitor<T> {
314
340
  s3: (value: ProtectedQueryS3Output) => T;
315
341
  memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
342
+ distribute: (value: ProtectedQueryDistributeOutput) => T;
316
343
  _: (name: string, value: any) => T;
317
344
  }
318
345
  const visit: <T>(value: ProtectedQueryOutput, visitor: Visitor<T>) => T;
@@ -339,11 +366,64 @@ export interface ProtectedQueryMemberOutputConfiguration {
339
366
  */
340
367
  accountId: string | undefined;
341
368
  }
369
+ /**
370
+ * <p> Specifies where you'll distribute the results of your protected query. You must configure either an S3 destination or a collaboration member destination.</p>
371
+ * @public
372
+ */
373
+ export type ProtectedQueryDistributeOutputConfigurationLocation = ProtectedQueryDistributeOutputConfigurationLocation.MemberMember | ProtectedQueryDistributeOutputConfigurationLocation.S3Member | ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
374
+ /**
375
+ * @public
376
+ */
377
+ export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
378
+ /**
379
+ * <p>Contains the configuration to write the query results to S3.</p>
380
+ * @public
381
+ */
382
+ interface S3Member {
383
+ s3: ProtectedQueryS3OutputConfiguration;
384
+ member?: never;
385
+ $unknown?: never;
386
+ }
387
+ /**
388
+ * <p> Contains configuration details for the protected query member output.</p>
389
+ * @public
390
+ */
391
+ interface MemberMember {
392
+ s3?: never;
393
+ member: ProtectedQueryMemberOutputConfiguration;
394
+ $unknown?: never;
395
+ }
396
+ /**
397
+ * @public
398
+ */
399
+ interface $UnknownMember {
400
+ s3?: never;
401
+ member?: never;
402
+ $unknown: [string, any];
403
+ }
404
+ interface Visitor<T> {
405
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
406
+ member: (value: ProtectedQueryMemberOutputConfiguration) => T;
407
+ _: (name: string, value: any) => T;
408
+ }
409
+ const visit: <T>(value: ProtectedQueryDistributeOutputConfigurationLocation, visitor: Visitor<T>) => T;
410
+ }
411
+ /**
412
+ * <p> Specifies the configuration for distributing protected query results to multiple receivers, including S3 and collaboration members.</p>
413
+ * @public
414
+ */
415
+ export interface ProtectedQueryDistributeOutputConfiguration {
416
+ /**
417
+ * <p> A list of locations where you want to distribute the protected query results. Each location must specify either an S3 destination or a collaboration member destination.</p> <important> <p>You can't specify more than one S3 location.</p> <p>You can't specify the query runner's account as a member location.</p> <p>You must include either an S3 or member output configuration for each location, but not both.</p> </important>
418
+ * @public
419
+ */
420
+ locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
421
+ }
342
422
  /**
343
423
  * <p>Contains configuration details for protected query output.</p>
344
424
  * @public
345
425
  */
346
- export type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguration.MemberMember | ProtectedQueryOutputConfiguration.S3Member | ProtectedQueryOutputConfiguration.$UnknownMember;
426
+ export type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguration.DistributeMember | ProtectedQueryOutputConfiguration.MemberMember | ProtectedQueryOutputConfiguration.S3Member | ProtectedQueryOutputConfiguration.$UnknownMember;
347
427
  /**
348
428
  * @public
349
429
  */
@@ -355,6 +435,7 @@ export declare namespace ProtectedQueryOutputConfiguration {
355
435
  interface S3Member {
356
436
  s3: ProtectedQueryS3OutputConfiguration;
357
437
  member?: never;
438
+ distribute?: never;
358
439
  $unknown?: never;
359
440
  }
360
441
  /**
@@ -364,6 +445,17 @@ export declare namespace ProtectedQueryOutputConfiguration {
364
445
  interface MemberMember {
365
446
  s3?: never;
366
447
  member: ProtectedQueryMemberOutputConfiguration;
448
+ distribute?: never;
449
+ $unknown?: never;
450
+ }
451
+ /**
452
+ * <p> Required configuration for a protected query with a <code>distribute</code> output type.</p>
453
+ * @public
454
+ */
455
+ interface DistributeMember {
456
+ s3?: never;
457
+ member?: never;
458
+ distribute: ProtectedQueryDistributeOutputConfiguration;
367
459
  $unknown?: never;
368
460
  }
369
461
  /**
@@ -372,11 +464,13 @@ export declare namespace ProtectedQueryOutputConfiguration {
372
464
  interface $UnknownMember {
373
465
  s3?: never;
374
466
  member?: never;
467
+ distribute?: never;
375
468
  $unknown: [string, any];
376
469
  }
377
470
  interface Visitor<T> {
378
471
  s3: (value: ProtectedQueryS3OutputConfiguration) => T;
379
472
  member: (value: ProtectedQueryMemberOutputConfiguration) => T;
473
+ distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
380
474
  _: (name: string, value: any) => T;
381
475
  }
382
476
  const visit: <T>(value: ProtectedQueryOutputConfiguration, visitor: Visitor<T>) => T;
@@ -403,8 +497,7 @@ export interface ProtectedQuerySQLParameters {
403
497
  */
404
498
  queryString?: string | undefined;
405
499
  /**
406
- * <p>The Amazon Resource Name (ARN) associated with the analysis template within a
407
- * collaboration.</p>
500
+ * <p>The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.</p>
408
501
  * @public
409
502
  */
410
503
  analysisTemplateArn?: string | undefined;
@@ -544,8 +637,7 @@ export interface ListMembershipsInput {
544
637
  */
545
638
  nextToken?: string | undefined;
546
639
  /**
547
- * <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
548
- * `maxResults` value has not been met.</p>
640
+ * <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 `maxResults` value has not been met.</p>
549
641
  * @public
550
642
  */
551
643
  maxResults?: number | undefined;
@@ -581,8 +673,7 @@ export interface MembershipSummary {
581
673
  */
582
674
  collaborationId: string | undefined;
583
675
  /**
584
- * <p>The identifier of the Amazon Web Services principal that created the collaboration. Currently only
585
- * supports Amazon Web Services account ID.</p>
676
+ * <p>The identifier of the Amazon Web Services principal that created the collaboration. Currently only supports Amazon Web Services account ID.</p>
586
677
  * @public
587
678
  */
588
679
  collaborationCreatorAccountId: string | undefined;
@@ -662,8 +753,7 @@ export interface ListPrivacyBudgetsInput {
662
753
  */
663
754
  nextToken?: string | undefined;
664
755
  /**
665
- * <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
666
- * `maxResults` value has not been met.</p>
756
+ * <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 `maxResults` value has not been met.</p>
667
757
  * @public
668
758
  */
669
759
  maxResults?: number | undefined;
@@ -764,9 +854,7 @@ export interface ListProtectedJobsInput {
764
854
  */
765
855
  nextToken?: string | undefined;
766
856
  /**
767
- * <p>The maximum number of results that are returned for an API request call.
768
- * The service chooses a default number if you don't set one. The service might
769
- * return a `nextToken` even if the `maxResults` value has not been met. </p>
857
+ * <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 `maxResults` value has not been met. </p>
770
858
  * @public
771
859
  */
772
860
  maxResults?: number | undefined;
@@ -910,8 +998,7 @@ export interface ListProtectedQueriesInput {
910
998
  */
911
999
  nextToken?: string | undefined;
912
1000
  /**
913
- * <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
914
- * `maxResults` value has not been met. </p>
1001
+ * <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 `maxResults` value has not been met. </p>
915
1002
  * @public
916
1003
  */
917
1004
  maxResults?: number | undefined;
@@ -1225,8 +1312,7 @@ export interface StartProtectedJobInput {
1225
1312
  */
1226
1313
  type: ProtectedJobType | undefined;
1227
1314
  /**
1228
- * <p>A unique identifier for the membership to run this job against.
1229
- * Currently accepts a membership ID.</p>
1315
+ * <p>A unique identifier for the membership to run this job against. Currently accepts a membership ID.</p>
1230
1316
  * @public
1231
1317
  */
1232
1318
  membershipIdentifier: string | undefined;
@@ -1272,8 +1358,7 @@ export interface StartProtectedQueryInput {
1272
1358
  */
1273
1359
  type: ProtectedQueryType | undefined;
1274
1360
  /**
1275
- * <p>A unique identifier for the membership to run this query against. Currently accepts a
1276
- * membership ID.</p>
1361
+ * <p>A unique identifier for the membership to run this query against. Currently accepts a membership ID.</p>
1277
1362
  * @public
1278
1363
  */
1279
1364
  membershipIdentifier: string | undefined;
@@ -1313,26 +1398,17 @@ export interface UpdateMembershipInput {
1313
1398
  */
1314
1399
  membershipIdentifier: string | undefined;
1315
1400
  /**
1316
- * <p>An indicator as to whether query logging has been enabled or disabled for the
1317
- * membership.</p>
1318
- * <p>When <code>ENABLED</code>, Clean Rooms logs details about queries run within this
1319
- * collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is
1320
- * <code>DISABLED</code>.</p>
1401
+ * <p>An indicator as to whether query logging has been enabled or disabled for the membership.</p> <p>When <code>ENABLED</code>, Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
1321
1402
  * @public
1322
1403
  */
1323
1404
  queryLogStatus?: MembershipQueryLogStatus | undefined;
1324
1405
  /**
1325
- * <p>An indicator as to whether job logging has been enabled or disabled
1326
- * for the collaboration. </p>
1327
- * <p>When <code>ENABLED</code>, Clean Rooms logs details about jobs run within this
1328
- * collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is
1329
- * <code>DISABLED</code>.</p>
1406
+ * <p>An indicator as to whether job logging has been enabled or disabled for the collaboration. </p> <p>When <code>ENABLED</code>, Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is <code>DISABLED</code>.</p>
1330
1407
  * @public
1331
1408
  */
1332
1409
  jobLogStatus?: MembershipJobLogStatus | undefined;
1333
1410
  /**
1334
- * <p>The default protected query result configuration as specified by the member who can
1335
- * receive results.</p>
1411
+ * <p>The default protected query result configuration as specified by the member who can receive results.</p>
1336
1412
  * @public
1337
1413
  */
1338
1414
  defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
@@ -1378,8 +1454,7 @@ export interface UpdateProtectedJobInput {
1378
1454
  */
1379
1455
  protectedJobIdentifier: string | undefined;
1380
1456
  /**
1381
- * <p>The target status of a protected job. Used to update the execution status
1382
- * of a currently running job.</p>
1457
+ * <p>The target status of a protected job. Used to update the execution status of a currently running job.</p>
1383
1458
  * @public
1384
1459
  */
1385
1460
  targetStatus: TargetProtectedJobStatus | undefined;
@@ -1420,8 +1495,7 @@ export interface UpdateProtectedQueryInput {
1420
1495
  */
1421
1496
  protectedQueryIdentifier: string | undefined;
1422
1497
  /**
1423
- * <p>The target status of a query. Used to update the execution status of a currently running
1424
- * query.</p>
1498
+ * <p>The target status of a query. Used to update the execution status of a currently running query.</p>
1425
1499
  * @public
1426
1500
  */
1427
1501
  targetStatus: TargetProtectedQueryStatus | undefined;
@@ -1492,10 +1566,7 @@ export interface CreatePrivacyBudgetTemplateInput {
1492
1566
  */
1493
1567
  membershipIdentifier: string | undefined;
1494
1568
  /**
1495
- * <p>How often the privacy budget refreshes.</p>
1496
- * <important>
1497
- * <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>
1498
- * </important>
1569
+ * <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>
1499
1570
  * @public
1500
1571
  */
1501
1572
  autoRefresh: PrivacyBudgetTemplateAutoRefresh | undefined;
@@ -1510,10 +1581,7 @@ export interface CreatePrivacyBudgetTemplateInput {
1510
1581
  */
1511
1582
  parameters: PrivacyBudgetTemplateParametersInput | undefined;
1512
1583
  /**
1513
- * <p>An optional label that you can assign to a resource when you create it. Each tag
1514
- * consists of a key and an optional value, both of which you define. When you use tagging,
1515
- * you can also use tag-based access control in IAM policies to control access
1516
- * to this resource.</p>
1584
+ * <p>An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.</p>
1517
1585
  * @public
1518
1586
  */
1519
1587
  tags?: Record<string, string> | undefined;
@@ -1569,10 +1637,7 @@ export interface PrivacyBudgetTemplate {
1569
1637
  */
1570
1638
  privacyBudgetType: PrivacyBudgetType | undefined;
1571
1639
  /**
1572
- * <p>How often the privacy budget refreshes.</p>
1573
- * <important>
1574
- * <p>If you plan to regularly bring new data into the collaboration, 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 queried across refreshes. Avoid choosing this if the same rows will be repeatedly queried between privacy budget refreshes.</p>
1575
- * </important>
1640
+ * <p>How often the privacy budget refreshes.</p> <important> <p>If you plan to regularly bring new data into the collaboration, 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 queried across refreshes. Avoid choosing this if the same rows will be repeatedly queried between privacy budget refreshes.</p> </important>
1576
1641
  * @public
1577
1642
  */
1578
1643
  autoRefresh: PrivacyBudgetTemplateAutoRefresh | undefined;
@@ -1652,8 +1717,7 @@ export interface ListPrivacyBudgetTemplatesInput {
1652
1717
  */
1653
1718
  nextToken?: string | undefined;
1654
1719
  /**
1655
- * <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
1656
- * `maxResults` value has not been met.</p>
1720
+ * <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 `maxResults` value has not been met.</p>
1657
1721
  * @public
1658
1722
  */
1659
1723
  maxResults?: number | undefined;
@@ -1830,8 +1894,7 @@ export interface TagResourceOutput {
1830
1894
  */
1831
1895
  export interface UntagResourceInput {
1832
1896
  /**
1833
- * <p>The Amazon Resource Name (ARN) associated with the resource you want to remove the tag
1834
- * from.</p>
1897
+ * <p>The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.</p>
1835
1898
  * @public
1836
1899
  */
1837
1900
  resourceArn: string | undefined;
@@ -6,6 +6,7 @@ import { CleanRoomsClientConfig } from "./CleanRoomsClient";
6
6
  export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
11
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
12
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
@@ -38,7 +39,6 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
38
39
  }) => import("@smithy/types").EndpointV2;
39
40
  tls?: boolean | undefined;
40
41
  serviceConfiguredEndpoint?: undefined;
41
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
42
42
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
43
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
44
44
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -107,7 +107,12 @@ export interface ProtectedQuerySingleMemberOutput {
107
107
  export interface ProtectedQueryS3Output {
108
108
  location: string | undefined;
109
109
  }
110
+ export interface ProtectedQueryDistributeOutput {
111
+ s3?: ProtectedQueryS3Output | undefined;
112
+ memberList?: ProtectedQuerySingleMemberOutput[] | undefined;
113
+ }
110
114
  export type ProtectedQueryOutput =
115
+ | ProtectedQueryOutput.DistributeMember
111
116
  | ProtectedQueryOutput.MemberListMember
112
117
  | ProtectedQueryOutput.S3Member
113
118
  | ProtectedQueryOutput.$UnknownMember;
@@ -115,21 +120,31 @@ export declare namespace ProtectedQueryOutput {
115
120
  interface S3Member {
116
121
  s3: ProtectedQueryS3Output;
117
122
  memberList?: never;
123
+ distribute?: never;
118
124
  $unknown?: never;
119
125
  }
120
126
  interface MemberListMember {
121
127
  s3?: never;
122
128
  memberList: ProtectedQuerySingleMemberOutput[];
129
+ distribute?: never;
130
+ $unknown?: never;
131
+ }
132
+ interface DistributeMember {
133
+ s3?: never;
134
+ memberList?: never;
135
+ distribute: ProtectedQueryDistributeOutput;
123
136
  $unknown?: never;
124
137
  }
125
138
  interface $UnknownMember {
126
139
  s3?: never;
127
140
  memberList?: never;
141
+ distribute?: never;
128
142
  $unknown: [string, any];
129
143
  }
130
144
  interface Visitor<T> {
131
145
  s3: (value: ProtectedQueryS3Output) => T;
132
146
  memberList: (value: ProtectedQuerySingleMemberOutput[]) => T;
147
+ distribute: (value: ProtectedQueryDistributeOutput) => T;
133
148
  _: (name: string, value: any) => T;
134
149
  }
135
150
  const visit: <T>(value: ProtectedQueryOutput, visitor: Visitor<T>) => T;
@@ -140,7 +155,41 @@ export interface ProtectedQueryResult {
140
155
  export interface ProtectedQueryMemberOutputConfiguration {
141
156
  accountId: string | undefined;
142
157
  }
158
+ export type ProtectedQueryDistributeOutputConfigurationLocation =
159
+ | ProtectedQueryDistributeOutputConfigurationLocation.MemberMember
160
+ | ProtectedQueryDistributeOutputConfigurationLocation.S3Member
161
+ | ProtectedQueryDistributeOutputConfigurationLocation.$UnknownMember;
162
+ export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
163
+ interface S3Member {
164
+ s3: ProtectedQueryS3OutputConfiguration;
165
+ member?: never;
166
+ $unknown?: never;
167
+ }
168
+ interface MemberMember {
169
+ s3?: never;
170
+ member: ProtectedQueryMemberOutputConfiguration;
171
+ $unknown?: never;
172
+ }
173
+ interface $UnknownMember {
174
+ s3?: never;
175
+ member?: never;
176
+ $unknown: [string, any];
177
+ }
178
+ interface Visitor<T> {
179
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
180
+ member: (value: ProtectedQueryMemberOutputConfiguration) => T;
181
+ _: (name: string, value: any) => T;
182
+ }
183
+ const visit: <T>(
184
+ value: ProtectedQueryDistributeOutputConfigurationLocation,
185
+ visitor: Visitor<T>
186
+ ) => T;
187
+ }
188
+ export interface ProtectedQueryDistributeOutputConfiguration {
189
+ locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
190
+ }
143
191
  export type ProtectedQueryOutputConfiguration =
192
+ | ProtectedQueryOutputConfiguration.DistributeMember
144
193
  | ProtectedQueryOutputConfiguration.MemberMember
145
194
  | ProtectedQueryOutputConfiguration.S3Member
146
195
  | ProtectedQueryOutputConfiguration.$UnknownMember;
@@ -148,21 +197,31 @@ export declare namespace ProtectedQueryOutputConfiguration {
148
197
  interface S3Member {
149
198
  s3: ProtectedQueryS3OutputConfiguration;
150
199
  member?: never;
200
+ distribute?: never;
151
201
  $unknown?: never;
152
202
  }
153
203
  interface MemberMember {
154
204
  s3?: never;
155
205
  member: ProtectedQueryMemberOutputConfiguration;
206
+ distribute?: never;
207
+ $unknown?: never;
208
+ }
209
+ interface DistributeMember {
210
+ s3?: never;
211
+ member?: never;
212
+ distribute: ProtectedQueryDistributeOutputConfiguration;
156
213
  $unknown?: never;
157
214
  }
158
215
  interface $UnknownMember {
159
216
  s3?: never;
160
217
  member?: never;
218
+ distribute?: never;
161
219
  $unknown: [string, any];
162
220
  }
163
221
  interface Visitor<T> {
164
222
  s3: (value: ProtectedQueryS3OutputConfiguration) => T;
165
223
  member: (value: ProtectedQueryMemberOutputConfiguration) => T;
224
+ distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
166
225
  _: (name: string, value: any) => T;
167
226
  }
168
227
  const visit: <T>(
@@ -5,6 +5,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
5
5
  defaultsMode: import("@smithy/types").Provider<
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
8
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
10
  credentialDefaultProvider:
10
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
@@ -73,10 +74,6 @@ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
73
74
  ) => import("@smithy/types").EndpointV2;
74
75
  tls?: boolean | undefined;
75
76
  serviceConfiguredEndpoint?: undefined;
76
- authSchemePreference?:
77
- | string[]
78
- | import("@smithy/types").Provider<string[]>
79
- | undefined;
80
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
81
78
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsHttpAuthSchemeProvider;
82
79
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cleanrooms",
3
3
  "description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
4
- "version": "3.798.0",
4
+ "version": "3.800.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cleanrooms",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.798.0",
24
- "@aws-sdk/credential-provider-node": "3.798.0",
23
+ "@aws-sdk/core": "3.799.0",
24
+ "@aws-sdk/credential-provider-node": "3.799.0",
25
25
  "@aws-sdk/middleware-host-header": "3.775.0",
26
26
  "@aws-sdk/middleware-logger": "3.775.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.798.0",
28
+ "@aws-sdk/middleware-user-agent": "3.799.0",
29
29
  "@aws-sdk/region-config-resolver": "3.775.0",
30
30
  "@aws-sdk/types": "3.775.0",
31
31
  "@aws-sdk/util-endpoints": "3.787.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.798.0",
33
+ "@aws-sdk/util-user-agent-node": "3.799.0",
34
34
  "@smithy/config-resolver": "^4.1.0",
35
35
  "@smithy/core": "^3.3.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",