Show / Hide Table of Contents

Class CfnPrivacyBudgetTemplateProps

Properties for defining a CfnPrivacyBudgetTemplate.

Inheritance
object
CfnPrivacyBudgetTemplateProps
Implements
ICfnPrivacyBudgetTemplateProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPrivacyBudgetTemplateProps : ICfnPrivacyBudgetTemplateProps
Syntax (vb)
Public Class CfnPrivacyBudgetTemplateProps Implements ICfnPrivacyBudgetTemplateProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.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 cfnPrivacyBudgetTemplateProps = new CfnPrivacyBudgetTemplateProps {
                 AutoRefresh = "autoRefresh",
                 MembershipIdentifier = "membershipIdentifier",
                 Parameters = new ParametersProperty {
                     Epsilon = 123,
                     UsersNoisePerQuery = 123
                 },
                 PrivacyBudgetType = "privacyBudgetType",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnPrivacyBudgetTemplateProps()

Properties for defining a CfnPrivacyBudgetTemplate.

Properties

AutoRefresh

How often the privacy budget refreshes.

MembershipIdentifier

The identifier for a membership resource.

Parameters

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

PrivacyBudgetType

Specifies the type of the privacy budget template.

Tags

An optional label that you can assign to a resource when you create it.

Constructors

CfnPrivacyBudgetTemplateProps()

Properties for defining a CfnPrivacyBudgetTemplate.

public CfnPrivacyBudgetTemplateProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.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 cfnPrivacyBudgetTemplateProps = new CfnPrivacyBudgetTemplateProps {
                 AutoRefresh = "autoRefresh",
                 MembershipIdentifier = "membershipIdentifier",
                 Parameters = new ParametersProperty {
                     Epsilon = 123,
                     UsersNoisePerQuery = 123
                 },
                 PrivacyBudgetType = "privacyBudgetType",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AutoRefresh

How often the privacy budget refreshes.

public string AutoRefresh { get; set; }
Property Value

string

Remarks
If you plan to regularly bring new data into the collaboration, use <code>CALENDAR_MONTH</code> to 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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-autorefresh

MembershipIdentifier

The identifier for a membership resource.

public string MembershipIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-membershipidentifier

Parameters

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

public object Parameters { get; set; }
Property Value

object

Remarks

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

PrivacyBudgetType

Specifies the type of the privacy budget template.

public string PrivacyBudgetType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-privacybudgettype

Tags

An optional label that you can assign to a resource when you create it.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#cfn-cleanrooms-privacybudgettemplate-tags

Implements

ICfnPrivacyBudgetTemplateProps
Back to top Generated by DocFX