@awboost/cfn-resource-types 0.1.107 → 0.1.109
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-EntityResolution-IdMappingWorkflow.d.ts +36 -3
- package/lib/AWS-EntityResolution-IdNamespace.d.ts +43 -1
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +7 -1
- package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -0
- package/lib/AWS-LaunchWizard-Deployment.d.ts +109 -0
- package/lib/AWS-LaunchWizard-Deployment.js +12 -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-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,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::SES::MailManagerArchive Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SESMailManagerArchive extends $Resource {
|
|
7
|
+
static Type = "AWS::SES::MailManagerArchive";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SESMailManagerArchive.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SES-MailManagerArchive.js.map
|
|
@@ -0,0 +1,105 @@
|
|
|
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::MailManagerIngressPoint Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageringresspoint.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SESMailManagerIngressPointProperties = {
|
|
8
|
+
IngressPointConfiguration?: IngressPointConfiguration;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `3`
|
|
11
|
+
* @maxLength `63`
|
|
12
|
+
* @pattern `^[A-Za-z0-9_\-]+$`
|
|
13
|
+
*/
|
|
14
|
+
IngressPointName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `100`
|
|
18
|
+
*/
|
|
19
|
+
RuleSetId: string;
|
|
20
|
+
StatusToUpdate?: IngressPointStatusToUpdate;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `0`
|
|
23
|
+
* @maxLength `200`
|
|
24
|
+
*/
|
|
25
|
+
Tags?: Tag[];
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `100`
|
|
29
|
+
*/
|
|
30
|
+
TrafficPolicyId: string;
|
|
31
|
+
Type: IngressPointType;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Attribute type definition for `AWS::SES::MailManagerIngressPoint`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageringresspoint.html#aws-resource-ses-mailmanageringresspoint-return-values}
|
|
36
|
+
*/
|
|
37
|
+
export type SESMailManagerIngressPointAttributes = {
|
|
38
|
+
ARecord: string;
|
|
39
|
+
IngressPointArn: string;
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `1`
|
|
42
|
+
* @maxLength `100`
|
|
43
|
+
*/
|
|
44
|
+
IngressPointId: string;
|
|
45
|
+
Status: IngressPointStatus;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::SES::MailManagerIngressPoint.IngressPointConfiguration`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-ingresspointconfiguration.html}
|
|
50
|
+
*/
|
|
51
|
+
export type IngressPointConfiguration = {
|
|
52
|
+
/**
|
|
53
|
+
* @minLength `8`
|
|
54
|
+
* @maxLength `64`
|
|
55
|
+
* @pattern `^[A-Za-z0-9!@#$%^&*()_+\-=\[\]{}|.,?]+$`
|
|
56
|
+
*/
|
|
57
|
+
SmtpPassword: string;
|
|
58
|
+
} | {
|
|
59
|
+
/**
|
|
60
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov):secretsmanager:[a-z0-9-]+:\d{12}:secret:[a-zA-Z0-9/_+=,.@-]+$`
|
|
61
|
+
*/
|
|
62
|
+
SecretArn: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::SES::MailManagerIngressPoint.IngressPointStatus`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-ingresspointstatus.html}
|
|
67
|
+
*/
|
|
68
|
+
export type IngressPointStatus = "PROVISIONING" | "DEPROVISIONING" | "UPDATING" | "ACTIVE" | "CLOSED" | "FAILED";
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::SES::MailManagerIngressPoint.IngressPointStatusToUpdate`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-ingresspointstatustoupdate.html}
|
|
72
|
+
*/
|
|
73
|
+
export type IngressPointStatusToUpdate = "ACTIVE" | "CLOSED";
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::SES::MailManagerIngressPoint.IngressPointType`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-ingresspointtype.html}
|
|
77
|
+
*/
|
|
78
|
+
export type IngressPointType = "OPEN" | "AUTH";
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::SES::MailManagerIngressPoint.Tag`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-tag.html}
|
|
82
|
+
*/
|
|
83
|
+
export type Tag = {
|
|
84
|
+
/**
|
|
85
|
+
* @minLength `1`
|
|
86
|
+
* @maxLength `128`
|
|
87
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
|
|
88
|
+
*/
|
|
89
|
+
Key: string;
|
|
90
|
+
/**
|
|
91
|
+
* @minLength `0`
|
|
92
|
+
* @maxLength `256`
|
|
93
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
|
|
94
|
+
*/
|
|
95
|
+
Value: string;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Definition of AWS::SES::MailManagerIngressPoint Resource Type
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageringresspoint.html}
|
|
100
|
+
*/
|
|
101
|
+
export declare class SESMailManagerIngressPoint extends $Resource<"AWS::SES::MailManagerIngressPoint", SESMailManagerIngressPointProperties, SESMailManagerIngressPointAttributes> {
|
|
102
|
+
static readonly Type = "AWS::SES::MailManagerIngressPoint";
|
|
103
|
+
constructor(logicalId: string, properties: SESMailManagerIngressPointProperties, options?: $ResourceOptions);
|
|
104
|
+
}
|
|
105
|
+
//# sourceMappingURL=AWS-SES-MailManagerIngressPoint.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::MailManagerIngressPoint Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageringresspoint.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SESMailManagerIngressPoint extends $Resource {
|
|
7
|
+
static Type = "AWS::SES::MailManagerIngressPoint";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SESMailManagerIngressPoint.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SES-MailManagerIngressPoint.js.map
|
|
@@ -0,0 +1,88 @@
|
|
|
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::MailManagerRelay Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SESMailManagerRelayProperties = {
|
|
8
|
+
Authentication: RelayAuthentication;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `100`
|
|
12
|
+
* @pattern `^[a-zA-Z0-9-_]+$`
|
|
13
|
+
*/
|
|
14
|
+
RelayName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `100`
|
|
18
|
+
* @pattern `^[a-zA-Z0-9-\.]+$`
|
|
19
|
+
*/
|
|
20
|
+
ServerName: string;
|
|
21
|
+
/**
|
|
22
|
+
* @min `1`
|
|
23
|
+
* @max `65535`
|
|
24
|
+
*/
|
|
25
|
+
ServerPort: number;
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `0`
|
|
28
|
+
* @maxLength `200`
|
|
29
|
+
*/
|
|
30
|
+
Tags?: Tag[];
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Attribute type definition for `AWS::SES::MailManagerRelay`.
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html#aws-resource-ses-mailmanagerrelay-return-values}
|
|
35
|
+
*/
|
|
36
|
+
export type SESMailManagerRelayAttributes = {
|
|
37
|
+
RelayArn: string;
|
|
38
|
+
/**
|
|
39
|
+
* @minLength `1`
|
|
40
|
+
* @maxLength `100`
|
|
41
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
|
42
|
+
*/
|
|
43
|
+
RelayId: string;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::SES::MailManagerRelay.NoAuthentication`.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-noauthentication.html}
|
|
48
|
+
*/
|
|
49
|
+
export type NoAuthentication = Record<string, any>;
|
|
50
|
+
/**
|
|
51
|
+
* Type definition for `AWS::SES::MailManagerRelay.RelayAuthentication`.
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-relayauthentication.html}
|
|
53
|
+
*/
|
|
54
|
+
export type RelayAuthentication = {
|
|
55
|
+
/**
|
|
56
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov):secretsmanager:[a-z0-9-]+:\d{12}:secret:[a-zA-Z0-9/_+=,.@-]+$`
|
|
57
|
+
*/
|
|
58
|
+
SecretArn: string;
|
|
59
|
+
} | {
|
|
60
|
+
NoAuthentication: NoAuthentication;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::SES::MailManagerRelay.Tag`.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-tag.html}
|
|
65
|
+
*/
|
|
66
|
+
export type Tag = {
|
|
67
|
+
/**
|
|
68
|
+
* @minLength `1`
|
|
69
|
+
* @maxLength `128`
|
|
70
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
|
|
71
|
+
*/
|
|
72
|
+
Key: string;
|
|
73
|
+
/**
|
|
74
|
+
* @minLength `0`
|
|
75
|
+
* @maxLength `256`
|
|
76
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
|
|
77
|
+
*/
|
|
78
|
+
Value: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Definition of AWS::SES::MailManagerRelay Resource Type
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html}
|
|
83
|
+
*/
|
|
84
|
+
export declare class SESMailManagerRelay extends $Resource<"AWS::SES::MailManagerRelay", SESMailManagerRelayProperties, SESMailManagerRelayAttributes> {
|
|
85
|
+
static readonly Type = "AWS::SES::MailManagerRelay";
|
|
86
|
+
constructor(logicalId: string, properties: SESMailManagerRelayProperties, options?: $ResourceOptions);
|
|
87
|
+
}
|
|
88
|
+
//# sourceMappingURL=AWS-SES-MailManagerRelay.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::MailManagerRelay Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SESMailManagerRelay extends $Resource {
|
|
7
|
+
static Type = "AWS::SES::MailManagerRelay";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SESMailManagerRelay.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SES-MailManagerRelay.js.map
|
|
@@ -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
|