interface ParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnPrivacyBudgetTemplate.ParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnPrivacyBudgetTemplate_ParametersProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnPrivacyBudgetTemplate.ParametersProperty |
Python | aws_cdk.aws_cleanrooms.CfnPrivacyBudgetTemplate.ParametersProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnPrivacyBudgetTemplate » ParametersProperty |
Specifies the epsilon and noise parameters for the privacy budget template.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const parametersProperty: cleanrooms.CfnPrivacyBudgetTemplate.ParametersProperty = {
budgetParameters: [{
budget: 123,
type: 'type',
// the properties below are optional
autoRefresh: 'autoRefresh',
}],
epsilon: 123,
resourceArn: 'resourceArn',
usersNoisePerQuery: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| budget | IResolvable | (IResolvable | Budget)[] | |
| epsilon? | number | The epsilon value that you want to use. |
| resource | string | |
| users | number | Noise added per query is measured in terms of the number of users whose contributions you want to obscure. |
budgetParameters?
Type:
IResolvable | (IResolvable | Budget)[]
(optional)
epsilon?
Type:
number
(optional)
The epsilon value that you want to use.
resourceArn?
Type:
string
(optional)
usersNoisePerQuery?
Type:
number
(optional)
Noise added per query 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.

.NET
Go
Java
Python
TypeScript