@aws-sdk/client-cleanrooms 3.940.0 → 3.942.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/index.js +64 -16
  2. package/dist-es/models/enums.js +4 -0
  3. package/dist-es/schemas/schemas_0.js +59 -16
  4. package/dist-types/commands/BatchGetCollaborationAnalysisTemplateCommand.d.ts +15 -0
  5. package/dist-types/commands/CreateAnalysisTemplateCommand.d.ts +30 -0
  6. package/dist-types/commands/CreateCollaborationCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateMembershipCommand.d.ts +6 -0
  8. package/dist-types/commands/GetAnalysisTemplateCommand.d.ts +15 -0
  9. package/dist-types/commands/GetCollaborationAnalysisTemplateCommand.d.ts +15 -0
  10. package/dist-types/commands/GetMembershipCommand.d.ts +3 -0
  11. package/dist-types/commands/GetProtectedJobCommand.d.ts +1 -1
  12. package/dist-types/commands/ListAnalysisTemplatesCommand.d.ts +1 -0
  13. package/dist-types/commands/ListCollaborationAnalysisTemplatesCommand.d.ts +1 -0
  14. package/dist-types/commands/ListMembersCommand.d.ts +3 -0
  15. package/dist-types/commands/ListMembershipsCommand.d.ts +3 -0
  16. package/dist-types/commands/StartProtectedJobCommand.d.ts +2 -2
  17. package/dist-types/commands/UpdateAnalysisTemplateCommand.d.ts +15 -0
  18. package/dist-types/commands/UpdateMembershipCommand.d.ts +3 -0
  19. package/dist-types/commands/UpdateProtectedJobCommand.d.ts +1 -1
  20. package/dist-types/models/enums.d.ts +12 -0
  21. package/dist-types/models/models_0.d.ts +145 -131
  22. package/dist-types/models/models_1.d.ts +130 -1
  23. package/dist-types/schemas/schemas_0.d.ts +7 -0
  24. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +47 -56
  26. package/dist-types/ts3.4/models/models_1.d.ts +58 -3
  27. package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
  28. package/package.json +1 -1
@@ -1,5 +1,134 @@
1
1
  import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipQueryLogStatus, MembershipStatus, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetType, ProtectedJobAnalysisType, ProtectedJobStatus, ProtectedJobType, ProtectedQueryStatus, ProtectedQueryType, TargetProtectedJobStatus, TargetProtectedQueryStatus } from "./enums";
2
- import { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, ComputeConfiguration, DifferentialPrivacyParameters, Membership, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateParametersOutput, ProtectedJob, ProtectedJobComputeConfiguration, ProtectedJobParameters, ProtectedQueryError, ProtectedQueryResult, ProtectedQueryResultConfiguration, ProtectedQuerySQLParameters, ProtectedQueryStatistics } from "./models_0";
2
+ import { AccessBudgetsPrivacyTemplateParametersInput, AccessBudgetsPrivacyTemplateUpdateParameters, ComputeConfiguration, DifferentialPrivacyParameters, Membership, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateParametersOutput, ProtectedJob, ProtectedJobComputeConfiguration, ProtectedJobParameters, ProtectedQueryDistributeOutputConfigurationLocation, ProtectedQueryError, ProtectedQueryMemberOutputConfiguration, ProtectedQueryResult, ProtectedQueryS3OutputConfiguration } from "./models_0";
3
+ /**
4
+ * <p> Specifies the configuration for distributing protected query results to multiple receivers, including S3 and collaboration members.</p>
5
+ * @public
6
+ */
7
+ export interface ProtectedQueryDistributeOutputConfiguration {
8
+ /**
9
+ * <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>
10
+ * @public
11
+ */
12
+ locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
13
+ }
14
+ /**
15
+ * <p>Contains configuration details for protected query output.</p>
16
+ * @public
17
+ */
18
+ export type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguration.DistributeMember | ProtectedQueryOutputConfiguration.MemberMember | ProtectedQueryOutputConfiguration.S3Member | ProtectedQueryOutputConfiguration.$UnknownMember;
19
+ /**
20
+ * @public
21
+ */
22
+ export declare namespace ProtectedQueryOutputConfiguration {
23
+ /**
24
+ * <p>Required configuration for a protected query with an <code>s3</code> output type.</p>
25
+ * @public
26
+ */
27
+ interface S3Member {
28
+ s3: ProtectedQueryS3OutputConfiguration;
29
+ member?: never;
30
+ distribute?: never;
31
+ $unknown?: never;
32
+ }
33
+ /**
34
+ * <p> Required configuration for a protected query with a <code>member</code> output type.</p>
35
+ * @public
36
+ */
37
+ interface MemberMember {
38
+ s3?: never;
39
+ member: ProtectedQueryMemberOutputConfiguration;
40
+ distribute?: never;
41
+ $unknown?: never;
42
+ }
43
+ /**
44
+ * <p> Required configuration for a protected query with a <code>distribute</code> output type.</p>
45
+ * @public
46
+ */
47
+ interface DistributeMember {
48
+ s3?: never;
49
+ member?: never;
50
+ distribute: ProtectedQueryDistributeOutputConfiguration;
51
+ $unknown?: never;
52
+ }
53
+ /**
54
+ * @public
55
+ */
56
+ interface $UnknownMember {
57
+ s3?: never;
58
+ member?: never;
59
+ distribute?: never;
60
+ $unknown: [string, any];
61
+ }
62
+ /**
63
+ * @deprecated unused in schema-serde mode.
64
+ *
65
+ */
66
+ interface Visitor<T> {
67
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
68
+ member: (value: ProtectedQueryMemberOutputConfiguration) => T;
69
+ distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
70
+ _: (name: string, value: any) => T;
71
+ }
72
+ }
73
+ /**
74
+ * <p>Contains configurations for protected query results.</p>
75
+ * @public
76
+ */
77
+ export interface ProtectedQueryResultConfiguration {
78
+ /**
79
+ * <p>Configuration for protected query results.</p>
80
+ * @public
81
+ */
82
+ outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
83
+ }
84
+ /**
85
+ * <p>The parameters for the SQL type Protected Query.</p>
86
+ * @public
87
+ */
88
+ export interface ProtectedQuerySQLParameters {
89
+ /**
90
+ * <p>The query string to be submitted.</p>
91
+ * @public
92
+ */
93
+ queryString?: string | undefined;
94
+ /**
95
+ * <p>The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.</p>
96
+ * @public
97
+ */
98
+ analysisTemplateArn?: string | undefined;
99
+ /**
100
+ * <p>The protected query SQL parameters.</p>
101
+ * @public
102
+ */
103
+ parameters?: Record<string, string> | undefined;
104
+ }
105
+ /**
106
+ * <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>
107
+ * @public
108
+ */
109
+ export interface BilledResourceUtilization {
110
+ /**
111
+ * <p> The number of Clean Rooms Processing Unit (CRPU) hours that have been billed.</p>
112
+ * @public
113
+ */
114
+ units: number | undefined;
115
+ }
116
+ /**
117
+ * <p>Contains statistics about the execution of the protected query.</p>
118
+ * @public
119
+ */
120
+ export interface ProtectedQueryStatistics {
121
+ /**
122
+ * <p>The duration of the protected query, from creation until query completion, in milliseconds.</p>
123
+ * @public
124
+ */
125
+ totalDurationInMillis?: number | undefined;
126
+ /**
127
+ * <p> The billed resource utilization.</p>
128
+ * @public
129
+ */
130
+ billedResourceUtilization?: BilledResourceUtilization | undefined;
131
+ }
3
132
  /**
4
133
  * <p>The parameters for an Clean Rooms protected query.</p>
5
134
  * @public
@@ -51,6 +51,7 @@ export declare var CollaborationPrivacyBudgetTemplate: StaticStructureSchema;
51
51
  export declare var CollaborationPrivacyBudgetTemplateSummary: StaticStructureSchema;
52
52
  export declare var CollaborationSummary: StaticStructureSchema;
53
53
  export declare var Column: StaticStructureSchema;
54
+ export declare var ColumnClassificationDetails: StaticStructureSchema;
54
55
  export declare var ConfiguredAudienceModelAssociation: StaticStructureSchema;
55
56
  export declare var ConfiguredAudienceModelAssociationSummary: StaticStructureSchema;
56
57
  export declare var ConfiguredTable: StaticStructureSchema;
@@ -238,10 +239,12 @@ export declare var MembershipProtectedJobResultConfiguration: StaticStructureSch
238
239
  export declare var MembershipProtectedQueryResultConfiguration: StaticStructureSchema;
239
240
  export declare var MembershipQueryComputePaymentConfig: StaticStructureSchema;
240
241
  export declare var MembershipSummary: StaticStructureSchema;
242
+ export declare var MembershipSyntheticDataGenerationPaymentConfig: StaticStructureSchema;
241
243
  export declare var MemberSpecification: StaticStructureSchema;
242
244
  export declare var MemberSummary: StaticStructureSchema;
243
245
  export declare var MLMemberAbilities: StaticStructureSchema;
244
246
  export declare var MLPaymentConfig: StaticStructureSchema;
247
+ export declare var MLSyntheticDataParameters: StaticStructureSchema;
245
248
  export declare var ModelInferencePaymentConfig: StaticStructureSchema;
246
249
  export declare var ModelTrainingPaymentConfig: StaticStructureSchema;
247
250
  export declare var PaymentConfiguration: StaticStructureSchema;
@@ -299,6 +302,8 @@ export declare var StartProtectedJobInput: StaticStructureSchema;
299
302
  export declare var StartProtectedJobOutput: StaticStructureSchema;
300
303
  export declare var StartProtectedQueryInput: StaticStructureSchema;
301
304
  export declare var StartProtectedQueryOutput: StaticStructureSchema;
305
+ export declare var SyntheticDataColumnProperties: StaticStructureSchema;
306
+ export declare var SyntheticDataGenerationPaymentConfig: StaticStructureSchema;
302
307
  export declare var TagResourceInput: StaticStructureSchema;
303
308
  export declare var TagResourceOutput: StaticStructureSchema;
304
309
  export declare var ThrottlingException: StaticErrorSchema;
@@ -370,6 +375,7 @@ export declare var CollaborationPrivacyBudgetSummaryList: StaticListSchema;
370
375
  export declare var CollaborationPrivacyBudgetTemplateSummaryList: StaticListSchema;
371
376
  export declare var CollaborationSummaryList: StaticListSchema;
372
377
  export declare var ColumnList: StaticListSchema;
378
+ export declare var ColumnMappingList: StaticListSchema;
373
379
  export declare var ConfiguredAudienceModelAssociationSummaryList: StaticListSchema;
374
380
  export declare var ConfiguredTableAnalysisRuleTypeList: number;
375
381
  export declare var ConfiguredTableAssociationAnalysisRuleTypeList: number;
@@ -451,6 +457,7 @@ export declare var ProtectedQueryOutputConfiguration: StaticStructureSchema;
451
457
  export declare var QueryConstraint: StaticStructureSchema;
452
458
  export declare var SchemaTypeProperties: StaticStructureSchema;
453
459
  export declare var SnowflakeTableSchema: StaticStructureSchema;
460
+ export declare var SyntheticDataParameters: StaticStructureSchema;
454
461
  export declare var TableReference: StaticStructureSchema;
455
462
  export declare var WorkerComputeConfigurationProperties: StaticStructureSchema;
456
463
  export declare var BatchGetCollaborationAnalysisTemplate: StaticOperationSchema;
@@ -170,6 +170,12 @@ export declare const ErrorMessageType: {
170
170
  };
171
171
  export type ErrorMessageType =
172
172
  (typeof ErrorMessageType)[keyof typeof ErrorMessageType];
173
+ export declare const SyntheticDataColumnType: {
174
+ readonly CATEGORICAL: "CATEGORICAL";
175
+ readonly NUMERICAL: "NUMERICAL";
176
+ };
177
+ export type SyntheticDataColumnType =
178
+ (typeof SyntheticDataColumnType)[keyof typeof SyntheticDataColumnType];
173
179
  export declare const AnalysisTemplateValidationStatus: {
174
180
  readonly INVALID: "INVALID";
175
181
  readonly UNABLE_TO_VALIDATE: "UNABLE_TO_VALIDATE";
@@ -47,6 +47,7 @@ import {
47
47
  SchemaType,
48
48
  SelectedAnalysisMethod,
49
49
  SupportedS3Region,
50
+ SyntheticDataColumnType,
50
51
  WorkerComputeType,
51
52
  } from "./enums";
52
53
  export interface AccessBudgetDetails {
@@ -444,6 +445,36 @@ export declare namespace AnalysisSourceMetadata {
444
445
  export interface ErrorMessageConfiguration {
445
446
  type: ErrorMessageType | undefined;
446
447
  }
448
+ export interface SyntheticDataColumnProperties {
449
+ columnName: string | undefined;
450
+ columnType: SyntheticDataColumnType | undefined;
451
+ isPredictiveValue: boolean | undefined;
452
+ }
453
+ export interface ColumnClassificationDetails {
454
+ columnMapping: SyntheticDataColumnProperties[] | undefined;
455
+ }
456
+ export interface MLSyntheticDataParameters {
457
+ epsilon: number | undefined;
458
+ maxMembershipInferenceAttackScore: number | undefined;
459
+ columnClassification: ColumnClassificationDetails | undefined;
460
+ }
461
+ export type SyntheticDataParameters =
462
+ | SyntheticDataParameters.MlSyntheticDataParametersMember
463
+ | SyntheticDataParameters.$UnknownMember;
464
+ export declare namespace SyntheticDataParameters {
465
+ interface MlSyntheticDataParametersMember {
466
+ mlSyntheticDataParameters: MLSyntheticDataParameters;
467
+ $unknown?: never;
468
+ }
469
+ interface $UnknownMember {
470
+ mlSyntheticDataParameters?: never;
471
+ $unknown: [string, any];
472
+ }
473
+ interface Visitor<T> {
474
+ mlSyntheticDataParameters: (value: MLSyntheticDataParameters) => T;
475
+ _: (name: string, value: any) => T;
476
+ }
477
+ }
447
478
  export interface AnalysisTemplateValidationStatusReason {
448
479
  message: string | undefined;
449
480
  }
@@ -470,6 +501,7 @@ export interface AnalysisTemplate {
470
501
  analysisParameters?: AnalysisParameter[] | undefined;
471
502
  validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
472
503
  errorMessageConfiguration?: ErrorMessageConfiguration | undefined;
504
+ syntheticDataParameters?: SyntheticDataParameters | undefined;
473
505
  }
474
506
  export interface CreateAnalysisTemplateInput {
475
507
  description?: string | undefined;
@@ -481,6 +513,7 @@ export interface CreateAnalysisTemplateInput {
481
513
  analysisParameters?: AnalysisParameter[] | undefined;
482
514
  schema?: AnalysisSchema | undefined;
483
515
  errorMessageConfiguration?: ErrorMessageConfiguration | undefined;
516
+ syntheticDataParameters?: SyntheticDataParameters | undefined;
484
517
  }
485
518
  export interface CreateAnalysisTemplateOutput {
486
519
  analysisTemplate: AnalysisTemplate | undefined;
@@ -517,6 +550,7 @@ export interface AnalysisTemplateSummary {
517
550
  collaborationArn: string | undefined;
518
551
  collaborationId: string | undefined;
519
552
  description?: string | undefined;
553
+ isSyntheticData?: boolean | undefined;
520
554
  }
521
555
  export interface ListAnalysisTemplatesOutput {
522
556
  nextToken?: string | undefined;
@@ -558,6 +592,7 @@ export interface CollaborationAnalysisTemplate {
558
592
  analysisParameters?: AnalysisParameter[] | undefined;
559
593
  validations?: AnalysisTemplateValidationStatusDetail[] | undefined;
560
594
  errorMessageConfiguration?: ErrorMessageConfiguration | undefined;
595
+ syntheticDataParameters?: SyntheticDataParameters | undefined;
561
596
  }
562
597
  export interface BatchGetCollaborationAnalysisTemplateError {
563
598
  arn: string | undefined;
@@ -668,9 +703,13 @@ export interface ModelInferencePaymentConfig {
668
703
  export interface ModelTrainingPaymentConfig {
669
704
  isResponsible: boolean | undefined;
670
705
  }
706
+ export interface SyntheticDataGenerationPaymentConfig {
707
+ isResponsible: boolean | undefined;
708
+ }
671
709
  export interface MLPaymentConfig {
672
710
  modelTraining?: ModelTrainingPaymentConfig | undefined;
673
711
  modelInference?: ModelInferencePaymentConfig | undefined;
712
+ syntheticDataGeneration?: SyntheticDataGenerationPaymentConfig | undefined;
674
713
  }
675
714
  export interface QueryComputePaymentConfig {
676
715
  isResponsible: boolean | undefined;
@@ -947,6 +986,7 @@ export interface CollaborationAnalysisTemplateSummary {
947
986
  collaborationId: string | undefined;
948
987
  creatorAccountId: string | undefined;
949
988
  description?: string | undefined;
989
+ isSyntheticData?: boolean | undefined;
950
990
  }
951
991
  export interface ListCollaborationAnalysisTemplatesOutput {
952
992
  nextToken?: string | undefined;
@@ -1819,9 +1859,15 @@ export interface MembershipModelInferencePaymentConfig {
1819
1859
  export interface MembershipModelTrainingPaymentConfig {
1820
1860
  isResponsible: boolean | undefined;
1821
1861
  }
1862
+ export interface MembershipSyntheticDataGenerationPaymentConfig {
1863
+ isResponsible: boolean | undefined;
1864
+ }
1822
1865
  export interface MembershipMLPaymentConfig {
1823
1866
  modelTraining?: MembershipModelTrainingPaymentConfig | undefined;
1824
1867
  modelInference?: MembershipModelInferencePaymentConfig | undefined;
1868
+ syntheticDataGeneration?:
1869
+ | MembershipSyntheticDataGenerationPaymentConfig
1870
+ | undefined;
1825
1871
  }
1826
1872
  export interface MembershipQueryComputePaymentConfig {
1827
1873
  isResponsible: boolean | undefined;
@@ -1910,7 +1956,7 @@ export interface ProtectedJobError {
1910
1956
  code: string | undefined;
1911
1957
  }
1912
1958
  export interface ProtectedJobParameters {
1913
- analysisTemplateArn?: string | undefined;
1959
+ analysisTemplateArn: string | undefined;
1914
1960
  }
1915
1961
  export interface ProtectedJobSingleMemberOutput {
1916
1962
  accountId: string | undefined;
@@ -2142,58 +2188,3 @@ export declare namespace ProtectedQueryDistributeOutputConfigurationLocation {
2142
2188
  _: (name: string, value: any) => T;
2143
2189
  }
2144
2190
  }
2145
- export interface ProtectedQueryDistributeOutputConfiguration {
2146
- locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
2147
- }
2148
- export type ProtectedQueryOutputConfiguration =
2149
- | ProtectedQueryOutputConfiguration.DistributeMember
2150
- | ProtectedQueryOutputConfiguration.MemberMember
2151
- | ProtectedQueryOutputConfiguration.S3Member
2152
- | ProtectedQueryOutputConfiguration.$UnknownMember;
2153
- export declare namespace ProtectedQueryOutputConfiguration {
2154
- interface S3Member {
2155
- s3: ProtectedQueryS3OutputConfiguration;
2156
- member?: never;
2157
- distribute?: never;
2158
- $unknown?: never;
2159
- }
2160
- interface MemberMember {
2161
- s3?: never;
2162
- member: ProtectedQueryMemberOutputConfiguration;
2163
- distribute?: never;
2164
- $unknown?: never;
2165
- }
2166
- interface DistributeMember {
2167
- s3?: never;
2168
- member?: never;
2169
- distribute: ProtectedQueryDistributeOutputConfiguration;
2170
- $unknown?: never;
2171
- }
2172
- interface $UnknownMember {
2173
- s3?: never;
2174
- member?: never;
2175
- distribute?: never;
2176
- $unknown: [string, any];
2177
- }
2178
- interface Visitor<T> {
2179
- s3: (value: ProtectedQueryS3OutputConfiguration) => T;
2180
- member: (value: ProtectedQueryMemberOutputConfiguration) => T;
2181
- distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
2182
- _: (name: string, value: any) => T;
2183
- }
2184
- }
2185
- export interface ProtectedQueryResultConfiguration {
2186
- outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
2187
- }
2188
- export interface ProtectedQuerySQLParameters {
2189
- queryString?: string | undefined;
2190
- analysisTemplateArn?: string | undefined;
2191
- parameters?: Record<string, string> | undefined;
2192
- }
2193
- export interface BilledResourceUtilization {
2194
- units: number | undefined;
2195
- }
2196
- export interface ProtectedQueryStatistics {
2197
- totalDurationInMillis?: number | undefined;
2198
- billedResourceUtilization?: BilledResourceUtilization | undefined;
2199
- }
@@ -30,12 +30,67 @@ import {
30
30
  ProtectedJob,
31
31
  ProtectedJobComputeConfiguration,
32
32
  ProtectedJobParameters,
33
+ ProtectedQueryDistributeOutputConfigurationLocation,
33
34
  ProtectedQueryError,
35
+ ProtectedQueryMemberOutputConfiguration,
34
36
  ProtectedQueryResult,
35
- ProtectedQueryResultConfiguration,
36
- ProtectedQuerySQLParameters,
37
- ProtectedQueryStatistics,
37
+ ProtectedQueryS3OutputConfiguration,
38
38
  } from "./models_0";
39
+ export interface ProtectedQueryDistributeOutputConfiguration {
40
+ locations: ProtectedQueryDistributeOutputConfigurationLocation[] | undefined;
41
+ }
42
+ export type ProtectedQueryOutputConfiguration =
43
+ | ProtectedQueryOutputConfiguration.DistributeMember
44
+ | ProtectedQueryOutputConfiguration.MemberMember
45
+ | ProtectedQueryOutputConfiguration.S3Member
46
+ | ProtectedQueryOutputConfiguration.$UnknownMember;
47
+ export declare namespace ProtectedQueryOutputConfiguration {
48
+ interface S3Member {
49
+ s3: ProtectedQueryS3OutputConfiguration;
50
+ member?: never;
51
+ distribute?: never;
52
+ $unknown?: never;
53
+ }
54
+ interface MemberMember {
55
+ s3?: never;
56
+ member: ProtectedQueryMemberOutputConfiguration;
57
+ distribute?: never;
58
+ $unknown?: never;
59
+ }
60
+ interface DistributeMember {
61
+ s3?: never;
62
+ member?: never;
63
+ distribute: ProtectedQueryDistributeOutputConfiguration;
64
+ $unknown?: never;
65
+ }
66
+ interface $UnknownMember {
67
+ s3?: never;
68
+ member?: never;
69
+ distribute?: never;
70
+ $unknown: [string, any];
71
+ }
72
+ interface Visitor<T> {
73
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
74
+ member: (value: ProtectedQueryMemberOutputConfiguration) => T;
75
+ distribute: (value: ProtectedQueryDistributeOutputConfiguration) => T;
76
+ _: (name: string, value: any) => T;
77
+ }
78
+ }
79
+ export interface ProtectedQueryResultConfiguration {
80
+ outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
81
+ }
82
+ export interface ProtectedQuerySQLParameters {
83
+ queryString?: string | undefined;
84
+ analysisTemplateArn?: string | undefined;
85
+ parameters?: Record<string, string> | undefined;
86
+ }
87
+ export interface BilledResourceUtilization {
88
+ units: number | undefined;
89
+ }
90
+ export interface ProtectedQueryStatistics {
91
+ totalDurationInMillis?: number | undefined;
92
+ billedResourceUtilization?: BilledResourceUtilization | undefined;
93
+ }
39
94
  export interface ProtectedQuery {
40
95
  id: string | undefined;
41
96
  membershipId: string | undefined;
@@ -57,6 +57,7 @@ export declare var CollaborationPrivacyBudgetTemplate: StaticStructureSchema;
57
57
  export declare var CollaborationPrivacyBudgetTemplateSummary: StaticStructureSchema;
58
58
  export declare var CollaborationSummary: StaticStructureSchema;
59
59
  export declare var Column: StaticStructureSchema;
60
+ export declare var ColumnClassificationDetails: StaticStructureSchema;
60
61
  export declare var ConfiguredAudienceModelAssociation: StaticStructureSchema;
61
62
  export declare var ConfiguredAudienceModelAssociationSummary: StaticStructureSchema;
62
63
  export declare var ConfiguredTable: StaticStructureSchema;
@@ -244,10 +245,12 @@ export declare var MembershipProtectedJobResultConfiguration: StaticStructureSch
244
245
  export declare var MembershipProtectedQueryResultConfiguration: StaticStructureSchema;
245
246
  export declare var MembershipQueryComputePaymentConfig: StaticStructureSchema;
246
247
  export declare var MembershipSummary: StaticStructureSchema;
248
+ export declare var MembershipSyntheticDataGenerationPaymentConfig: StaticStructureSchema;
247
249
  export declare var MemberSpecification: StaticStructureSchema;
248
250
  export declare var MemberSummary: StaticStructureSchema;
249
251
  export declare var MLMemberAbilities: StaticStructureSchema;
250
252
  export declare var MLPaymentConfig: StaticStructureSchema;
253
+ export declare var MLSyntheticDataParameters: StaticStructureSchema;
251
254
  export declare var ModelInferencePaymentConfig: StaticStructureSchema;
252
255
  export declare var ModelTrainingPaymentConfig: StaticStructureSchema;
253
256
  export declare var PaymentConfiguration: StaticStructureSchema;
@@ -305,6 +308,8 @@ export declare var StartProtectedJobInput: StaticStructureSchema;
305
308
  export declare var StartProtectedJobOutput: StaticStructureSchema;
306
309
  export declare var StartProtectedQueryInput: StaticStructureSchema;
307
310
  export declare var StartProtectedQueryOutput: StaticStructureSchema;
311
+ export declare var SyntheticDataColumnProperties: StaticStructureSchema;
312
+ export declare var SyntheticDataGenerationPaymentConfig: StaticStructureSchema;
308
313
  export declare var TagResourceInput: StaticStructureSchema;
309
314
  export declare var TagResourceOutput: StaticStructureSchema;
310
315
  export declare var ThrottlingException: StaticErrorSchema;
@@ -376,6 +381,7 @@ export declare var CollaborationPrivacyBudgetSummaryList: StaticListSchema;
376
381
  export declare var CollaborationPrivacyBudgetTemplateSummaryList: StaticListSchema;
377
382
  export declare var CollaborationSummaryList: StaticListSchema;
378
383
  export declare var ColumnList: StaticListSchema;
384
+ export declare var ColumnMappingList: StaticListSchema;
379
385
  export declare var ConfiguredAudienceModelAssociationSummaryList: StaticListSchema;
380
386
  export declare var ConfiguredTableAnalysisRuleTypeList: number;
381
387
  export declare var ConfiguredTableAssociationAnalysisRuleTypeList: number;
@@ -457,6 +463,7 @@ export declare var ProtectedQueryOutputConfiguration: StaticStructureSchema;
457
463
  export declare var QueryConstraint: StaticStructureSchema;
458
464
  export declare var SchemaTypeProperties: StaticStructureSchema;
459
465
  export declare var SnowflakeTableSchema: StaticStructureSchema;
466
+ export declare var SyntheticDataParameters: StaticStructureSchema;
460
467
  export declare var TableReference: StaticStructureSchema;
461
468
  export declare var WorkerComputeConfigurationProperties: StaticStructureSchema;
462
469
  export declare var BatchGetCollaborationAnalysisTemplate: StaticOperationSchema;
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.940.0",
4
+ "version": "3.942.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",