Show / Hide Table of Contents

Interface CfnPrivacyBudgetTemplate.IParametersProperty

Specifies the epsilon and noise parameters for the privacy budget template.

Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnPrivacyBudgetTemplate.IParametersProperty
Syntax (vb)
Public Interface CfnPrivacyBudgetTemplate.IParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-parameters.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Aws_cleanrooms;

             var parametersProperty = new ParametersProperty {
                 Epsilon = 123,
                 UsersNoisePerQuery = 123
             };

Synopsis

Properties

Epsilon

The epsilon value that you want to use.

UsersNoisePerQuery

Noise added per query is measured in terms of the number of users whose contributions you want to obscure.

Properties

Epsilon

The epsilon value that you want to use.

double Epsilon { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-parameters.html#cfn-cleanrooms-privacybudgettemplate-parameters-epsilon

UsersNoisePerQuery

Noise added per query is measured in terms of the number of users whose contributions you want to obscure.

double UsersNoisePerQuery { get; }
Property Value

double

Remarks

This value governs the rate at which the privacy budget is depleted.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-parameters.html#cfn-cleanrooms-privacybudgettemplate-parameters-usersnoiseperquery

Back to top Generated by DocFX