interface PrivacyBudgetTemplateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.PrivacyBudgetTemplateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#PrivacyBudgetTemplateReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.PrivacyBudgetTemplateReference |
Python | aws_cdk.interfaces.aws_cleanrooms.PrivacyBudgetTemplateReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » PrivacyBudgetTemplateReference |
A reference to a PrivacyBudgetTemplate resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as interfaces_cleanrooms } from 'aws-cdk-lib/interfaces';
const privacyBudgetTemplateReference: interfaces_cleanrooms.PrivacyBudgetTemplateReference = {
membershipIdentifier: 'membershipIdentifier',
privacyBudgetTemplateArn: 'privacyBudgetTemplateArn',
privacyBudgetTemplateIdentifier: 'privacyBudgetTemplateIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| membership | string | The MembershipIdentifier of the PrivacyBudgetTemplate resource. |
| privacy | string | The ARN of the PrivacyBudgetTemplate resource. |
| privacy | string | The PrivacyBudgetTemplateIdentifier of the PrivacyBudgetTemplate resource. |
membershipIdentifier
Type:
string
The MembershipIdentifier of the PrivacyBudgetTemplate resource.
privacyBudgetTemplateArn
Type:
string
The ARN of the PrivacyBudgetTemplate resource.
privacyBudgetTemplateIdentifier
Type:
string
The PrivacyBudgetTemplateIdentifier of the PrivacyBudgetTemplate resource.

.NET
Go
Java
Python
TypeScript