@awboost/cfn-resource-types 0.1.341 → 0.1.343
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.
|
@@ -60,7 +60,7 @@ export type KeyAttributes = {
|
|
|
60
60
|
* Type definition for `AWS::PaymentCryptography::Key.KeyCheckValueAlgorithm`.
|
|
61
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keycheckvaluealgorithm.html}
|
|
62
62
|
*/
|
|
63
|
-
export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC";
|
|
63
|
+
export type KeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC" | "SHA_1";
|
|
64
64
|
/**
|
|
65
65
|
* Type definition for `AWS::PaymentCryptography::Key.KeyClass`.
|
|
66
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyclass.html}
|
|
@@ -216,6 +216,11 @@ export type RuleAction = {
|
|
|
216
216
|
} | {
|
|
217
217
|
PublishToSns: SnsAction;
|
|
218
218
|
};
|
|
219
|
+
/**
|
|
220
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleAddressListEmailAttribute`.
|
|
221
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleaddresslistemailattribute.html}
|
|
222
|
+
*/
|
|
223
|
+
export type RuleAddressListEmailAttribute = "RECIPIENT" | "MAIL_FROM" | "SENDER" | "FROM" | "TO" | "CC";
|
|
219
224
|
/**
|
|
220
225
|
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
|
|
221
226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulebooleanemailattribute.html}
|
|
@@ -242,6 +247,8 @@ export type RuleBooleanToEvaluate = {
|
|
|
242
247
|
Attribute: RuleBooleanEmailAttribute;
|
|
243
248
|
} | {
|
|
244
249
|
Analysis: Analysis;
|
|
250
|
+
} | {
|
|
251
|
+
IsInAddressList: RuleIsInAddressList;
|
|
245
252
|
};
|
|
246
253
|
/**
|
|
247
254
|
* Type definition for `AWS::SES::MailManagerRuleSet.RuleCondition`.
|
|
@@ -312,6 +319,18 @@ export type RuleIpOperator = "CIDR_MATCHES" | "NOT_CIDR_MATCHES";
|
|
|
312
319
|
export type RuleIpToEvaluate = {
|
|
313
320
|
Attribute: RuleIpEmailAttribute;
|
|
314
321
|
};
|
|
322
|
+
/**
|
|
323
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.RuleIsInAddressList`.
|
|
324
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-ruleisinaddresslist.html}
|
|
325
|
+
*/
|
|
326
|
+
export type RuleIsInAddressList = {
|
|
327
|
+
/**
|
|
328
|
+
* @minLength `1`
|
|
329
|
+
* @maxLength `1`
|
|
330
|
+
*/
|
|
331
|
+
AddressLists: string[];
|
|
332
|
+
Attribute: RuleAddressListEmailAttribute;
|
|
333
|
+
};
|
|
315
334
|
/**
|
|
316
335
|
* Type definition for `AWS::SES::MailManagerRuleSet.RuleNumberEmailAttribute`.
|
|
317
336
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-rulenumberemailattribute.html}
|
|
@@ -40,6 +40,11 @@ export type SESMailManagerTrafficPolicyAttributes = {
|
|
|
40
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-acceptaction.html}
|
|
41
41
|
*/
|
|
42
42
|
export type AcceptAction = "ALLOW" | "DENY";
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressAddressListEmailAttribute`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressaddresslistemailattribute.html}
|
|
46
|
+
*/
|
|
47
|
+
export type IngressAddressListEmailAttribute = "RECIPIENT";
|
|
43
48
|
/**
|
|
44
49
|
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressAnalysis`.
|
|
45
50
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressanalysis.html}
|
|
@@ -75,6 +80,8 @@ export type IngressBooleanOperator = "IS_TRUE" | "IS_FALSE";
|
|
|
75
80
|
*/
|
|
76
81
|
export type IngressBooleanToEvaluate = {
|
|
77
82
|
Analysis: IngressAnalysis;
|
|
83
|
+
} | {
|
|
84
|
+
IsInAddressList: IngressIsInAddressList;
|
|
78
85
|
};
|
|
79
86
|
/**
|
|
80
87
|
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpOperator`.
|
|
@@ -123,6 +130,18 @@ export type IngressIpv6Expression = {
|
|
|
123
130
|
export type IngressIpv6ToEvaluate = {
|
|
124
131
|
Attribute: IngressIpv6Attribute;
|
|
125
132
|
};
|
|
133
|
+
/**
|
|
134
|
+
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIsInAddressList`.
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html}
|
|
136
|
+
*/
|
|
137
|
+
export type IngressIsInAddressList = {
|
|
138
|
+
/**
|
|
139
|
+
* @minLength `1`
|
|
140
|
+
* @maxLength `1`
|
|
141
|
+
*/
|
|
142
|
+
AddressLists: string[];
|
|
143
|
+
Attribute: IngressAddressListEmailAttribute;
|
|
144
|
+
};
|
|
126
145
|
/**
|
|
127
146
|
* Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressStringEmailAttribute`.
|
|
128
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringemailattribute.html}
|