@aws-sdk/client-cleanrooms 3.687.0 → 3.691.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.
|
@@ -146,12 +146,12 @@ export interface StartProtectedQueryInput {
|
|
|
146
146
|
* <p>The details needed to write the query results.</p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
resultConfiguration?: ProtectedQueryResultConfiguration;
|
|
149
|
+
resultConfiguration?: ProtectedQueryResultConfiguration | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* <p> The compute configuration for the protected query.</p>
|
|
152
152
|
* @public
|
|
153
153
|
*/
|
|
154
|
-
computeConfiguration?: ComputeConfiguration;
|
|
154
|
+
computeConfiguration?: ComputeConfiguration | undefined;
|
|
155
155
|
}
|
|
156
156
|
/**
|
|
157
157
|
* @public
|
|
@@ -177,13 +177,13 @@ export interface UpdateMembershipInput {
|
|
|
177
177
|
* membership.</p>
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
queryLogStatus?: MembershipQueryLogStatus;
|
|
180
|
+
queryLogStatus?: MembershipQueryLogStatus | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* <p>The default protected query result configuration as specified by the member who can
|
|
183
183
|
* receive results.</p>
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
|
-
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
|
186
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration | undefined;
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
189
|
* @public
|
|
@@ -317,7 +317,7 @@ export interface CreatePrivacyBudgetTemplateInput {
|
|
|
317
317
|
* to this resource.</p>
|
|
318
318
|
* @public
|
|
319
319
|
*/
|
|
320
|
-
tags?: Record<string, string
|
|
320
|
+
tags?: Record<string, string> | undefined;
|
|
321
321
|
}
|
|
322
322
|
/**
|
|
323
323
|
* <p>An object that defines the privacy budget template.</p>
|
|
@@ -451,13 +451,13 @@ export interface ListPrivacyBudgetTemplatesInput {
|
|
|
451
451
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
452
452
|
* @public
|
|
453
453
|
*/
|
|
454
|
-
nextToken?: string;
|
|
454
|
+
nextToken?: string | undefined;
|
|
455
455
|
/**
|
|
456
456
|
* <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
|
|
457
457
|
* `maxResults` value has not been met.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
maxResults?: number;
|
|
460
|
+
maxResults?: number | undefined;
|
|
461
461
|
}
|
|
462
462
|
/**
|
|
463
463
|
* <p>A summary of the privacy budget template. The summary includes membership information, collaboration information, and creation information.</p>
|
|
@@ -518,7 +518,7 @@ export interface ListPrivacyBudgetTemplatesOutput {
|
|
|
518
518
|
* <p>The pagination token that's used to fetch the next set of results.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
nextToken?: string;
|
|
521
|
+
nextToken?: string | undefined;
|
|
522
522
|
/**
|
|
523
523
|
* <p>An array that summarizes the privacy budget templates. The summary includes collaboration information, creation information, and privacy budget type.</p>
|
|
524
524
|
* @public
|
|
@@ -534,12 +534,12 @@ export interface DifferentialPrivacyTemplateUpdateParameters {
|
|
|
534
534
|
* <p>The updated epsilon value that you want to use.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
epsilon?: number;
|
|
537
|
+
epsilon?: number | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>The updated value of noise added per query. It is measured in terms of the number of users whose contributions you want to obscure. This value governs the rate at which the privacy budget is depleted.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
usersNoisePerQuery?: number;
|
|
542
|
+
usersNoisePerQuery?: number | undefined;
|
|
543
543
|
}
|
|
544
544
|
/**
|
|
545
545
|
* <p>The epsilon and noise parameters that you want to update in the privacy budget template.</p>
|
|
@@ -594,7 +594,7 @@ export interface UpdatePrivacyBudgetTemplateInput {
|
|
|
594
594
|
* <p>Specifies the epsilon and noise parameters for the privacy budget template.</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
parameters?: PrivacyBudgetTemplateUpdateParameters;
|
|
597
|
+
parameters?: PrivacyBudgetTemplateUpdateParameters | undefined;
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
600
|
* @public
|