@awboost/cfn-resource-types 0.1.106 → 0.1.108
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.
- package/lib/AWS-CloudFormation-StackSet.d.ts +10 -0
- package/lib/AWS-CodePipeline-Pipeline.d.ts +220 -10
- package/lib/AWS-CodePipeline-Pipeline.js +1 -1
- package/lib/AWS-Deadline-MeteredProduct.d.ts +15 -15
- package/lib/AWS-ECS-TaskDefinition.d.ts +6 -6
- package/lib/AWS-LaunchWizard-Deployment.d.ts +109 -0
- package/lib/AWS-LaunchWizard-Deployment.js +12 -0
- package/lib/AWS-QBusiness-Application.d.ts +13 -0
- package/lib/AWS-RDS-DBCluster.d.ts +448 -161
- package/lib/AWS-RDS-DBCluster.js +17 -1
- package/lib/AWS-RDS-DBClusterParameterGroup.d.ts +29 -11
- package/lib/AWS-RDS-DBClusterParameterGroup.js +4 -1
- package/lib/AWS-RDS-DBInstance.d.ts +9 -1
- package/lib/AWS-RDS-EventSubscription.d.ts +29 -17
- package/lib/AWS-RDS-EventSubscription.js +1 -1
- package/lib/AWS-RDS-OptionGroup.d.ts +36 -15
- package/lib/AWS-RDS-OptionGroup.js +1 -1
- package/lib/AWS-Route53RecoveryControl-Cluster.d.ts +1 -0
- package/lib/AWS-Route53RecoveryControl-ControlPanel.d.ts +2 -0
- package/lib/AWS-Route53RecoveryControl-RoutingControl.d.ts +3 -0
- package/lib/AWS-S3-Bucket.d.ts +1 -1
- package/lib/AWS-SES-MailManagerAddonInstance.d.ts +60 -0
- package/lib/AWS-SES-MailManagerAddonInstance.js +12 -0
- package/lib/AWS-SES-MailManagerAddonSubscription.d.ts +54 -0
- package/lib/AWS-SES-MailManagerAddonSubscription.js +12 -0
- package/lib/AWS-SES-MailManagerArchive.d.ts +81 -0
- package/lib/AWS-SES-MailManagerArchive.js +12 -0
- package/lib/AWS-SES-MailManagerIngressPoint.d.ts +105 -0
- package/lib/AWS-SES-MailManagerIngressPoint.js +12 -0
- package/lib/AWS-SES-MailManagerRelay.d.ts +88 -0
- package/lib/AWS-SES-MailManagerRelay.js +12 -0
- package/lib/AWS-SES-MailManagerRuleSet.d.ts +447 -0
- package/lib/AWS-SES-MailManagerRuleSet.js +12 -0
- package/lib/AWS-SES-MailManagerTrafficPolicy.d.ts +212 -0
- package/lib/AWS-SES-MailManagerTrafficPolicy.js +12 -0
- package/lib/AWS-WorkSpacesThinClient-Environment.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,447 @@
|
|
|
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
|
+
* Definition of AWS::SES::MailManagerRuleSet Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerruleset.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SESMailManagerRuleSetProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `100`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9_.-]+$`
|
|
12
|
+
*/
|
|
13
|
+
RuleSetName?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `0`
|
|
16
|
+
* @maxLength `40`
|
|
17
|
+
*/
|
|
18
|
+
Rules: Rule[];
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `0`
|
|
21
|
+
* @maxLength `200`
|
|
22
|
+
*/
|
|
23
|
+
Tags?: Tag[];
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Attribute type definition for `AWS::SES::MailManagerRuleSet`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerruleset.html#aws-resource-ses-mailmanagerruleset-return-values}
|
|
28
|
+
*/
|
|
29
|
+
export type SESMailManagerRuleSetAttributes = {
|
|
30
|
+
RuleSetArn: string;
|
|
31
|
+
/**
|
|
32
|
+
* @minLength `1`
|
|
33
|
+
* @maxLength `100`
|
|
34
|
+
*/
|
|
35
|
+
RuleSetId: string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.ActionFailurePolicy`.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-actionfailurepolicy.html}
|
|
40
|
+
*/
|
|
41
|
+
export type ActionFailurePolicy = "CONTINUE" | "DROP";
|
|
42
|
+
/**
|
|
43
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.AddHeaderAction`.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-addheaderaction.html}
|
|
45
|
+
*/
|
|
46
|
+
export type AddHeaderAction = {
|
|
47
|
+
/**
|
|
48
|
+
* @minLength `1`
|
|
49
|
+
* @maxLength `64`
|
|
50
|
+
* @pattern `^[xX]\-[a-zA-Z0-9\-]+$`
|
|
51
|
+
*/
|
|
52
|
+
HeaderName: string;
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `1`
|
|
55
|
+
* @maxLength `128`
|
|
56
|
+
*/
|
|
57
|
+
HeaderValue: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.Analysis`.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-analysis.html}
|
|
62
|
+
*/
|
|
63
|
+
export type Analysis = {
|
|
64
|
+
/**
|
|
65
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
66
|
+
*/
|
|
67
|
+
Analyzer: string;
|
|
68
|
+
/**
|
|
69
|
+
* @minLength `1`
|
|
70
|
+
* @maxLength `256`
|
|
71
|
+
* @pattern `^[\sa-zA-Z0-9_]+$`
|
|
72
|
+
*/
|
|
73
|
+
ResultField: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.ArchiveAction`.
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-archiveaction.html}
|
|
78
|
+
*/
|
|
79
|
+
export type ArchiveAction = {
|
|
80
|
+
ActionFailurePolicy?: ActionFailurePolicy;
|
|
81
|
+
/**
|
|
82
|
+
* @minLength `1`
|
|
83
|
+
* @maxLength `2048`
|
|
84
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
85
|
+
*/
|
|
86
|
+
TargetArchive: string;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.DeliverToMailboxAction`.
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-delivertomailboxaction.html}
|
|
91
|
+
*/
|
|
92
|
+
export type DeliverToMailboxAction = {
|
|
93
|
+
ActionFailurePolicy?: ActionFailurePolicy;
|
|
94
|
+
/**
|
|
95
|
+
* @minLength `1`
|
|
96
|
+
* @maxLength `2048`
|
|
97
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
98
|
+
*/
|
|
99
|
+
MailboxArn: string;
|
|
100
|
+
/**
|
|
101
|
+
* @minLength `20`
|
|
102
|
+
* @maxLength `2048`
|
|
103
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
104
|
+
*/
|
|
105
|
+
RoleArn: string;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.DropAction`.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-dropaction.html}
|
|
110
|
+
*/
|
|
111
|
+
export type DropAction = Record<string, any>;
|
|
112
|
+
/**
|
|
113
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.MailFrom`.
|
|
114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-mailfrom.html}
|
|
115
|
+
*/
|
|
116
|
+
export type MailFrom = "REPLACE" | "PRESERVE";
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RelayAction`.
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-relayaction.html}
|
|
120
|
+
*/
|
|
121
|
+
export type RelayAction = {
|
|
122
|
+
ActionFailurePolicy?: ActionFailurePolicy;
|
|
123
|
+
MailFrom?: MailFrom;
|
|
124
|
+
/**
|
|
125
|
+
* @minLength `1`
|
|
126
|
+
* @maxLength `2048`
|
|
127
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
128
|
+
*/
|
|
129
|
+
Relay: string;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.ReplaceRecipientAction`.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-replacerecipientaction.html}
|
|
134
|
+
*/
|
|
135
|
+
export type ReplaceRecipientAction = {
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `100`
|
|
139
|
+
*/
|
|
140
|
+
ReplaceWith?: string[];
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.Rule`.
|
|
144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rule.html}
|
|
145
|
+
*/
|
|
146
|
+
export type Rule = {
|
|
147
|
+
/**
|
|
148
|
+
* @minLength `1`
|
|
149
|
+
* @maxLength `10`
|
|
150
|
+
*/
|
|
151
|
+
Actions: RuleAction[];
|
|
152
|
+
/**
|
|
153
|
+
* @minLength `0`
|
|
154
|
+
* @maxLength `10`
|
|
155
|
+
*/
|
|
156
|
+
Conditions?: RuleCondition[];
|
|
157
|
+
/**
|
|
158
|
+
* @minLength `1`
|
|
159
|
+
* @maxLength `32`
|
|
160
|
+
* @pattern `^[a-zA-Z0-9_.-]+$`
|
|
161
|
+
*/
|
|
162
|
+
Name?: string;
|
|
163
|
+
/**
|
|
164
|
+
* @minLength `0`
|
|
165
|
+
* @maxLength `10`
|
|
166
|
+
*/
|
|
167
|
+
Unless?: RuleCondition[];
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleAction`.
|
|
171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleaction.html}
|
|
172
|
+
*/
|
|
173
|
+
export type RuleAction = {
|
|
174
|
+
Drop: DropAction;
|
|
175
|
+
} | {
|
|
176
|
+
Relay: RelayAction;
|
|
177
|
+
} | {
|
|
178
|
+
Archive: ArchiveAction;
|
|
179
|
+
} | {
|
|
180
|
+
WriteToS3: S3Action;
|
|
181
|
+
} | {
|
|
182
|
+
Send: SendAction;
|
|
183
|
+
} | {
|
|
184
|
+
AddHeader: AddHeaderAction;
|
|
185
|
+
} | {
|
|
186
|
+
ReplaceRecipient: ReplaceRecipientAction;
|
|
187
|
+
} | {
|
|
188
|
+
DeliverToMailbox: DeliverToMailboxAction;
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
|
|
192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleanemailattribute.html}
|
|
193
|
+
*/
|
|
194
|
+
export type RuleBooleanEmailAttribute = "READ_RECEIPT_REQUESTED" | "TLS" | "TLS_WRAPPED";
|
|
195
|
+
/**
|
|
196
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanExpression`.
|
|
197
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleanexpression.html}
|
|
198
|
+
*/
|
|
199
|
+
export type RuleBooleanExpression = {
|
|
200
|
+
Evaluate: RuleBooleanToEvaluate;
|
|
201
|
+
Operator: RuleBooleanOperator;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanOperator`.
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleanoperator.html}
|
|
206
|
+
*/
|
|
207
|
+
export type RuleBooleanOperator = "IS_TRUE" | "IS_FALSE";
|
|
208
|
+
/**
|
|
209
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanToEvaluate`.
|
|
210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleantoevaluate.html}
|
|
211
|
+
*/
|
|
212
|
+
export type RuleBooleanToEvaluate = {
|
|
213
|
+
Attribute: RuleBooleanEmailAttribute;
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleCondition`.
|
|
217
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulecondition.html}
|
|
218
|
+
*/
|
|
219
|
+
export type RuleCondition = {
|
|
220
|
+
BooleanExpression: RuleBooleanExpression;
|
|
221
|
+
} | {
|
|
222
|
+
StringExpression: RuleStringExpression;
|
|
223
|
+
} | {
|
|
224
|
+
NumberExpression: RuleNumberExpression;
|
|
225
|
+
} | {
|
|
226
|
+
IpExpression: RuleIpExpression;
|
|
227
|
+
} | {
|
|
228
|
+
VerdictExpression: RuleVerdictExpression;
|
|
229
|
+
} | {
|
|
230
|
+
DmarcExpression: RuleDmarcExpression;
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleDmarcExpression`.
|
|
234
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruledmarcexpression.html}
|
|
235
|
+
*/
|
|
236
|
+
export type RuleDmarcExpression = {
|
|
237
|
+
Operator: RuleDmarcOperator;
|
|
238
|
+
/**
|
|
239
|
+
* @minLength `1`
|
|
240
|
+
* @maxLength `10`
|
|
241
|
+
*/
|
|
242
|
+
Values: RuleDmarcPolicy[];
|
|
243
|
+
};
|
|
244
|
+
/**
|
|
245
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleDmarcOperator`.
|
|
246
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruledmarcoperator.html}
|
|
247
|
+
*/
|
|
248
|
+
export type RuleDmarcOperator = "EQUALS" | "NOT_EQUALS";
|
|
249
|
+
/**
|
|
250
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleDmarcPolicy`.
|
|
251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruledmarcpolicy.html}
|
|
252
|
+
*/
|
|
253
|
+
export type RuleDmarcPolicy = "NONE" | "QUARANTINE" | "REJECT";
|
|
254
|
+
/**
|
|
255
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleIpEmailAttribute`.
|
|
256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleipemailattribute.html}
|
|
257
|
+
*/
|
|
258
|
+
export type RuleIpEmailAttribute = "SOURCE_IP";
|
|
259
|
+
/**
|
|
260
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleIpExpression`.
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleipexpression.html}
|
|
262
|
+
*/
|
|
263
|
+
export type RuleIpExpression = {
|
|
264
|
+
Evaluate: RuleIpToEvaluate;
|
|
265
|
+
Operator: RuleIpOperator;
|
|
266
|
+
/**
|
|
267
|
+
* @minLength `1`
|
|
268
|
+
* @maxLength `10`
|
|
269
|
+
*/
|
|
270
|
+
Values: string[];
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleIpOperator`.
|
|
274
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleipoperator.html}
|
|
275
|
+
*/
|
|
276
|
+
export type RuleIpOperator = "CIDR_MATCHES" | "NOT_CIDR_MATCHES";
|
|
277
|
+
/**
|
|
278
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleIpToEvaluate`.
|
|
279
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleiptoevaluate.html}
|
|
280
|
+
*/
|
|
281
|
+
export type RuleIpToEvaluate = {
|
|
282
|
+
Attribute: RuleIpEmailAttribute;
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleNumberEmailAttribute`.
|
|
286
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulenumberemailattribute.html}
|
|
287
|
+
*/
|
|
288
|
+
export type RuleNumberEmailAttribute = "MESSAGE_SIZE";
|
|
289
|
+
/**
|
|
290
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleNumberExpression`.
|
|
291
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulenumberexpression.html}
|
|
292
|
+
*/
|
|
293
|
+
export type RuleNumberExpression = {
|
|
294
|
+
Evaluate: RuleNumberToEvaluate;
|
|
295
|
+
Operator: RuleNumberOperator;
|
|
296
|
+
Value: number;
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleNumberOperator`.
|
|
300
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulenumberoperator.html}
|
|
301
|
+
*/
|
|
302
|
+
export type RuleNumberOperator = "EQUALS" | "NOT_EQUALS" | "LESS_THAN" | "GREATER_THAN" | "LESS_THAN_OR_EQUAL" | "GREATER_THAN_OR_EQUAL";
|
|
303
|
+
/**
|
|
304
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleNumberToEvaluate`.
|
|
305
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulenumbertoevaluate.html}
|
|
306
|
+
*/
|
|
307
|
+
export type RuleNumberToEvaluate = {
|
|
308
|
+
Attribute: RuleNumberEmailAttribute;
|
|
309
|
+
};
|
|
310
|
+
/**
|
|
311
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleStringEmailAttribute`.
|
|
312
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringemailattribute.html}
|
|
313
|
+
*/
|
|
314
|
+
export type RuleStringEmailAttribute = "MAIL_FROM" | "HELO" | "RECIPIENT" | "SENDER" | "FROM" | "SUBJECT" | "TO" | "CC";
|
|
315
|
+
/**
|
|
316
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleStringExpression`.
|
|
317
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringexpression.html}
|
|
318
|
+
*/
|
|
319
|
+
export type RuleStringExpression = {
|
|
320
|
+
Evaluate: RuleStringToEvaluate;
|
|
321
|
+
Operator: RuleStringOperator;
|
|
322
|
+
/**
|
|
323
|
+
* @minLength `1`
|
|
324
|
+
* @maxLength `10`
|
|
325
|
+
*/
|
|
326
|
+
Values: string[];
|
|
327
|
+
};
|
|
328
|
+
/**
|
|
329
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleStringOperator`.
|
|
330
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringoperator.html}
|
|
331
|
+
*/
|
|
332
|
+
export type RuleStringOperator = "EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS";
|
|
333
|
+
/**
|
|
334
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleStringToEvaluate`.
|
|
335
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulestringtoevaluate.html}
|
|
336
|
+
*/
|
|
337
|
+
export type RuleStringToEvaluate = {
|
|
338
|
+
Attribute: RuleStringEmailAttribute;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdict`.
|
|
342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdict.html}
|
|
343
|
+
*/
|
|
344
|
+
export type RuleVerdict = "PASS" | "FAIL" | "GRAY" | "PROCESSING_FAILED";
|
|
345
|
+
/**
|
|
346
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdictAttribute`.
|
|
347
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictattribute.html}
|
|
348
|
+
*/
|
|
349
|
+
export type RuleVerdictAttribute = "SPF" | "DKIM";
|
|
350
|
+
/**
|
|
351
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdictExpression`.
|
|
352
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictexpression.html}
|
|
353
|
+
*/
|
|
354
|
+
export type RuleVerdictExpression = {
|
|
355
|
+
Evaluate: RuleVerdictToEvaluate;
|
|
356
|
+
Operator: RuleVerdictOperator;
|
|
357
|
+
/**
|
|
358
|
+
* @minLength `1`
|
|
359
|
+
* @maxLength `10`
|
|
360
|
+
*/
|
|
361
|
+
Values: RuleVerdict[];
|
|
362
|
+
};
|
|
363
|
+
/**
|
|
364
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdictOperator`.
|
|
365
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdictoperator.html}
|
|
366
|
+
*/
|
|
367
|
+
export type RuleVerdictOperator = "EQUALS" | "NOT_EQUALS";
|
|
368
|
+
/**
|
|
369
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdictToEvaluate`.
|
|
370
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleverdicttoevaluate.html}
|
|
371
|
+
*/
|
|
372
|
+
export type RuleVerdictToEvaluate = {
|
|
373
|
+
Attribute: RuleVerdictAttribute;
|
|
374
|
+
} | {
|
|
375
|
+
Analysis: Analysis;
|
|
376
|
+
};
|
|
377
|
+
/**
|
|
378
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.S3Action`.
|
|
379
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-s3action.html}
|
|
380
|
+
*/
|
|
381
|
+
export type S3Action = {
|
|
382
|
+
ActionFailurePolicy?: ActionFailurePolicy;
|
|
383
|
+
/**
|
|
384
|
+
* @minLength `20`
|
|
385
|
+
* @maxLength `2048`
|
|
386
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
387
|
+
*/
|
|
388
|
+
RoleArn: string;
|
|
389
|
+
/**
|
|
390
|
+
* @minLength `1`
|
|
391
|
+
* @maxLength `62`
|
|
392
|
+
* @pattern `^[a-zA-Z0-9.-]+$`
|
|
393
|
+
*/
|
|
394
|
+
S3Bucket: string;
|
|
395
|
+
/**
|
|
396
|
+
* @minLength `1`
|
|
397
|
+
* @maxLength `62`
|
|
398
|
+
* @pattern `^[a-zA-Z0-9!_.*'()/-]+$`
|
|
399
|
+
*/
|
|
400
|
+
S3Prefix?: string;
|
|
401
|
+
/**
|
|
402
|
+
* @minLength `20`
|
|
403
|
+
* @maxLength `2048`
|
|
404
|
+
* @pattern `^[a-zA-Z0-9-:/]+$`
|
|
405
|
+
*/
|
|
406
|
+
S3SseKmsKeyId?: string;
|
|
407
|
+
};
|
|
408
|
+
/**
|
|
409
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.SendAction`.
|
|
410
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-sendaction.html}
|
|
411
|
+
*/
|
|
412
|
+
export type SendAction = {
|
|
413
|
+
ActionFailurePolicy?: ActionFailurePolicy;
|
|
414
|
+
/**
|
|
415
|
+
* @minLength `20`
|
|
416
|
+
* @maxLength `2048`
|
|
417
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
418
|
+
*/
|
|
419
|
+
RoleArn: string;
|
|
420
|
+
};
|
|
421
|
+
/**
|
|
422
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.Tag`.
|
|
423
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-tag.html}
|
|
424
|
+
*/
|
|
425
|
+
export type Tag = {
|
|
426
|
+
/**
|
|
427
|
+
* @minLength `1`
|
|
428
|
+
* @maxLength `128`
|
|
429
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
|
|
430
|
+
*/
|
|
431
|
+
Key: string;
|
|
432
|
+
/**
|
|
433
|
+
* @minLength `0`
|
|
434
|
+
* @maxLength `256`
|
|
435
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
|
|
436
|
+
*/
|
|
437
|
+
Value: string;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* Definition of AWS::SES::MailManagerRuleSet Resource Type
|
|
441
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerruleset.html}
|
|
442
|
+
*/
|
|
443
|
+
export declare class SESMailManagerRuleSet extends $Resource<"AWS::SES::MailManagerRuleSet", SESMailManagerRuleSetProperties, SESMailManagerRuleSetAttributes> {
|
|
444
|
+
static readonly Type = "AWS::SES::MailManagerRuleSet";
|
|
445
|
+
constructor(logicalId: string, properties: SESMailManagerRuleSetProperties, options?: $ResourceOptions);
|
|
446
|
+
}
|
|
447
|
+
//# sourceMappingURL=AWS-SES-MailManagerRuleSet.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::SES::MailManagerRuleSet Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerruleset.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SESMailManagerRuleSet extends $Resource {
|
|
7
|
+
static Type = "AWS::SES::MailManagerRuleSet";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SESMailManagerRuleSet.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SES-MailManagerRuleSet.js.map
|
|
@@ -0,0 +1,212 @@
|
|
|
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
|
+
* Definition of AWS::SES::MailManagerTrafficPolicy Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagertrafficpolicy.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SESMailManagerTrafficPolicyProperties = {
|
|
8
|
+
DefaultAction: AcceptAction;
|
|
9
|
+
/**
|
|
10
|
+
* @min `1`
|
|
11
|
+
*/
|
|
12
|
+
MaxMessageSizeBytes?: number;
|
|
13
|
+
PolicyStatements: PolicyStatement[];
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `0`
|
|
16
|
+
* @maxLength `200`
|
|
17
|
+
*/
|
|
18
|
+
Tags?: Tag[];
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `3`
|
|
21
|
+
* @maxLength `63`
|
|
22
|
+
* @pattern `^[A-Za-z0-9_\-]+$`
|
|
23
|
+
*/
|
|
24
|
+
TrafficPolicyName?: string;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::SES::MailManagerTrafficPolicy`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagertrafficpolicy.html#aws-resource-ses-mailmanagertrafficpolicy-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type SESMailManagerTrafficPolicyAttributes = {
|
|
31
|
+
TrafficPolicyArn: string;
|
|
32
|
+
/**
|
|
33
|
+
* @minLength `1`
|
|
34
|
+
* @maxLength `100`
|
|
35
|
+
*/
|
|
36
|
+
TrafficPolicyId: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.AcceptAction`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-acceptaction.html}
|
|
41
|
+
*/
|
|
42
|
+
export type AcceptAction = "ALLOW" | "DENY";
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressAnalysis`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressanalysis.html}
|
|
46
|
+
*/
|
|
47
|
+
export type IngressAnalysis = {
|
|
48
|
+
/**
|
|
49
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
|
50
|
+
*/
|
|
51
|
+
Analyzer: string;
|
|
52
|
+
/**
|
|
53
|
+
* @minLength `1`
|
|
54
|
+
* @maxLength `256`
|
|
55
|
+
* @pattern `^[\sa-zA-Z0-9_]+$`
|
|
56
|
+
*/
|
|
57
|
+
ResultField: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressBooleanExpression`.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleanexpression.html}
|
|
62
|
+
*/
|
|
63
|
+
export type IngressBooleanExpression = {
|
|
64
|
+
Evaluate: IngressBooleanToEvaluate;
|
|
65
|
+
Operator: IngressBooleanOperator;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressBooleanOperator`.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleanoperator.html}
|
|
70
|
+
*/
|
|
71
|
+
export type IngressBooleanOperator = "IS_TRUE" | "IS_FALSE";
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressBooleanToEvaluate`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressbooleantoevaluate.html}
|
|
75
|
+
*/
|
|
76
|
+
export type IngressBooleanToEvaluate = {
|
|
77
|
+
Analysis: IngressAnalysis;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpOperator`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipoperator.html}
|
|
82
|
+
*/
|
|
83
|
+
export type IngressIpOperator = "CIDR_MATCHES" | "NOT_CIDR_MATCHES";
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpToEvaluate`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressiptoevaluate.html}
|
|
87
|
+
*/
|
|
88
|
+
export type IngressIpToEvaluate = {
|
|
89
|
+
Attribute: IngressIpv4Attribute;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpv4Attribute`.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv4attribute.html}
|
|
94
|
+
*/
|
|
95
|
+
export type IngressIpv4Attribute = "SENDER_IP";
|
|
96
|
+
/**
|
|
97
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpv4Expression`.
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv4expression.html}
|
|
99
|
+
*/
|
|
100
|
+
export type IngressIpv4Expression = {
|
|
101
|
+
Evaluate: IngressIpToEvaluate;
|
|
102
|
+
Operator: IngressIpOperator;
|
|
103
|
+
Values: string[];
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressStringEmailAttribute`.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringemailattribute.html}
|
|
108
|
+
*/
|
|
109
|
+
export type IngressStringEmailAttribute = "RECIPIENT";
|
|
110
|
+
/**
|
|
111
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressStringExpression`.
|
|
112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringexpression.html}
|
|
113
|
+
*/
|
|
114
|
+
export type IngressStringExpression = {
|
|
115
|
+
Evaluate: IngressStringToEvaluate;
|
|
116
|
+
Operator: IngressStringOperator;
|
|
117
|
+
Values: string[];
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressStringOperator`.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringoperator.html}
|
|
122
|
+
*/
|
|
123
|
+
export type IngressStringOperator = "EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS";
|
|
124
|
+
/**
|
|
125
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressStringToEvaluate`.
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringtoevaluate.html}
|
|
127
|
+
*/
|
|
128
|
+
export type IngressStringToEvaluate = {
|
|
129
|
+
Attribute: IngressStringEmailAttribute;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressTlsAttribute`.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingresstlsattribute.html}
|
|
134
|
+
*/
|
|
135
|
+
export type IngressTlsAttribute = "TLS_PROTOCOL";
|
|
136
|
+
/**
|
|
137
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressTlsProtocolAttribute`.
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingresstlsprotocolattribute.html}
|
|
139
|
+
*/
|
|
140
|
+
export type IngressTlsProtocolAttribute = "TLS1_2" | "TLS1_3";
|
|
141
|
+
/**
|
|
142
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressTlsProtocolExpression`.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingresstlsprotocolexpression.html}
|
|
144
|
+
*/
|
|
145
|
+
export type IngressTlsProtocolExpression = {
|
|
146
|
+
Evaluate: IngressTlsProtocolToEvaluate;
|
|
147
|
+
Operator: IngressTlsProtocolOperator;
|
|
148
|
+
Value: IngressTlsProtocolAttribute;
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressTlsProtocolOperator`.
|
|
152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingresstlsprotocoloperator.html}
|
|
153
|
+
*/
|
|
154
|
+
export type IngressTlsProtocolOperator = "MINIMUM_TLS_VERSION" | "IS";
|
|
155
|
+
/**
|
|
156
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressTlsProtocolToEvaluate`.
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingresstlsprotocoltoevaluate.html}
|
|
158
|
+
*/
|
|
159
|
+
export type IngressTlsProtocolToEvaluate = {
|
|
160
|
+
Attribute: IngressTlsAttribute;
|
|
161
|
+
};
|
|
162
|
+
/**
|
|
163
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.PolicyCondition`.
|
|
164
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-policycondition.html}
|
|
165
|
+
*/
|
|
166
|
+
export type PolicyCondition = {
|
|
167
|
+
StringExpression: IngressStringExpression;
|
|
168
|
+
} | {
|
|
169
|
+
IpExpression: IngressIpv4Expression;
|
|
170
|
+
} | {
|
|
171
|
+
TlsExpression: IngressTlsProtocolExpression;
|
|
172
|
+
} | {
|
|
173
|
+
BooleanExpression: IngressBooleanExpression;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.PolicyStatement`.
|
|
177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-policystatement.html}
|
|
178
|
+
*/
|
|
179
|
+
export type PolicyStatement = {
|
|
180
|
+
Action: AcceptAction;
|
|
181
|
+
/**
|
|
182
|
+
* @minLength `1`
|
|
183
|
+
*/
|
|
184
|
+
Conditions: PolicyCondition[];
|
|
185
|
+
};
|
|
186
|
+
/**
|
|
187
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.Tag`.
|
|
188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-tag.html}
|
|
189
|
+
*/
|
|
190
|
+
export type Tag = {
|
|
191
|
+
/**
|
|
192
|
+
* @minLength `1`
|
|
193
|
+
* @maxLength `128`
|
|
194
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
|
|
195
|
+
*/
|
|
196
|
+
Key: string;
|
|
197
|
+
/**
|
|
198
|
+
* @minLength `0`
|
|
199
|
+
* @maxLength `256`
|
|
200
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
|
|
201
|
+
*/
|
|
202
|
+
Value: string;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* Definition of AWS::SES::MailManagerTrafficPolicy Resource Type
|
|
206
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagertrafficpolicy.html}
|
|
207
|
+
*/
|
|
208
|
+
export declare class SESMailManagerTrafficPolicy extends $Resource<"AWS::SES::MailManagerTrafficPolicy", SESMailManagerTrafficPolicyProperties, SESMailManagerTrafficPolicyAttributes> {
|
|
209
|
+
static readonly Type = "AWS::SES::MailManagerTrafficPolicy";
|
|
210
|
+
constructor(logicalId: string, properties: SESMailManagerTrafficPolicyProperties, options?: $ResourceOptions);
|
|
211
|
+
}
|
|
212
|
+
//# sourceMappingURL=AWS-SES-MailManagerTrafficPolicy.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::SES::MailManagerTrafficPolicy Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagertrafficpolicy.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SESMailManagerTrafficPolicy extends $Resource {
|
|
7
|
+
static Type = "AWS::SES::MailManagerTrafficPolicy";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SESMailManagerTrafficPolicy.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SES-MailManagerTrafficPolicy.js.map
|