@awboost/cfn-resource-types 0.1.55 → 0.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::CleanRooms::PrivacyBudgetTemplate`.
|
|
5
|
+
* Represents a privacy budget within a collaboration
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html}
|
|
7
|
+
*/
|
|
8
|
+
export type CleanRoomsPrivacyBudgetTemplateProperties = {
|
|
9
|
+
AutoRefresh: "CALENDAR_MONTH" | "NONE";
|
|
10
|
+
/**
|
|
11
|
+
* @minLength `36`
|
|
12
|
+
* @maxLength `36`
|
|
13
|
+
* @pattern `[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}`
|
|
14
|
+
*/
|
|
15
|
+
MembershipIdentifier: string;
|
|
16
|
+
Parameters: {
|
|
17
|
+
/**
|
|
18
|
+
* @min `1`
|
|
19
|
+
* @max `20`
|
|
20
|
+
*/
|
|
21
|
+
Epsilon: number;
|
|
22
|
+
/**
|
|
23
|
+
* @min `10`
|
|
24
|
+
* @max `100`
|
|
25
|
+
*/
|
|
26
|
+
UsersNoisePerQuery: number;
|
|
27
|
+
};
|
|
28
|
+
PrivacyBudgetType: "DIFFERENTIAL_PRIVACY";
|
|
29
|
+
/**
|
|
30
|
+
* An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.
|
|
31
|
+
*/
|
|
32
|
+
Tags?: Tag[];
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Attribute type definition for `AWS::CleanRooms::PrivacyBudgetTemplate`.
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html#aws-resource-cleanrooms-privacybudgettemplate-return-values}
|
|
37
|
+
*/
|
|
38
|
+
export type CleanRoomsPrivacyBudgetTemplateAttributes = {
|
|
39
|
+
/**
|
|
40
|
+
* @maxLength `200`
|
|
41
|
+
*/
|
|
42
|
+
Arn: string;
|
|
43
|
+
/**
|
|
44
|
+
* @maxLength `100`
|
|
45
|
+
*/
|
|
46
|
+
CollaborationArn: string;
|
|
47
|
+
/**
|
|
48
|
+
* @minLength `36`
|
|
49
|
+
* @maxLength `36`
|
|
50
|
+
* @pattern `[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}`
|
|
51
|
+
*/
|
|
52
|
+
CollaborationIdentifier: string;
|
|
53
|
+
/**
|
|
54
|
+
* @maxLength `100`
|
|
55
|
+
*/
|
|
56
|
+
MembershipArn: string;
|
|
57
|
+
/**
|
|
58
|
+
* @minLength `36`
|
|
59
|
+
* @maxLength `36`
|
|
60
|
+
* @pattern `[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}`
|
|
61
|
+
*/
|
|
62
|
+
PrivacyBudgetTemplateIdentifier: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::CleanRooms::PrivacyBudgetTemplate.Tag`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-privacybudgettemplate-tag.html}
|
|
67
|
+
*/
|
|
68
|
+
export type Tag = {
|
|
69
|
+
/**
|
|
70
|
+
* @minLength `1`
|
|
71
|
+
* @maxLength `128`
|
|
72
|
+
*/
|
|
73
|
+
Key: string;
|
|
74
|
+
/**
|
|
75
|
+
* @minLength `1`
|
|
76
|
+
* @maxLength `256`
|
|
77
|
+
*/
|
|
78
|
+
Value: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Resource type definition for `AWS::CleanRooms::PrivacyBudgetTemplate`.
|
|
82
|
+
* Represents a privacy budget within a collaboration
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html}
|
|
84
|
+
*/
|
|
85
|
+
export declare class CleanRoomsPrivacyBudgetTemplate extends $Resource<"AWS::CleanRooms::PrivacyBudgetTemplate", CleanRoomsPrivacyBudgetTemplateProperties, CleanRoomsPrivacyBudgetTemplateAttributes> {
|
|
86
|
+
static readonly Type = "AWS::CleanRooms::PrivacyBudgetTemplate";
|
|
87
|
+
constructor(logicalId: string, properties: CleanRoomsPrivacyBudgetTemplateProperties, options?: $ResourceOptions);
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=AWS-CleanRooms-PrivacyBudgetTemplate.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::CleanRooms::PrivacyBudgetTemplate`.
|
|
4
|
+
* Represents a privacy budget within a collaboration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-privacybudgettemplate.html}
|
|
6
|
+
*/
|
|
7
|
+
export class CleanRoomsPrivacyBudgetTemplate extends $Resource {
|
|
8
|
+
static Type = "AWS::CleanRooms::PrivacyBudgetTemplate";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, CleanRoomsPrivacyBudgetTemplate.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-CleanRooms-PrivacyBudgetTemplate.js.map
|