interface CfnPrivacyBudgetTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnPrivacyBudgetTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnPrivacyBudgetTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnPrivacyBudgetTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnPrivacyBudgetTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnPrivacyBudgetTemplateMixinProps |
Properties for CfnPrivacyBudgetTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const cfnPrivacyBudgetTemplateMixinProps: cleanrooms_mixins.CfnPrivacyBudgetTemplateMixinProps = {
autoRefresh: 'autoRefresh',
membershipIdentifier: 'membershipIdentifier',
parameters: {
budgetParameters: [{
autoRefresh: 'autoRefresh',
budget: 123,
type: 'type',
}],
epsilon: 123,
resourceArn: 'resourceArn',
usersNoisePerQuery: 123,
},
privacyBudgetType: 'privacyBudgetType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string | How often the privacy budget refreshes. |
| membership | string | The identifier for a membership resource. |
| parameters? | IResolvable | Parameters | Specifies the epsilon and noise parameters for the privacy budget template. |
| privacy | string | Specifies the type of the privacy budget template. |
| tags? | Cfn[] | An optional label that you can assign to a resource when you create it. |
autoRefresh?
Type:
string
(optional)
How often the privacy budget refreshes.
If you plan to regularly bring new data into the collaboration, use
CALENDAR_MONTHto 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.
membershipIdentifier?
Type:
string
(optional)
The identifier for a membership resource.
parameters?
Type:
IResolvable | Parameters
(optional)
Specifies the epsilon and noise parameters for the privacy budget template.
privacyBudgetType?
Type:
string
(optional)
Specifies the type of the privacy budget template.
tags?
Type:
Cfn[]
(optional)
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.

.NET
Go
Java
Python
TypeScript