@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,81 @@
|
|
|
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::MailManagerArchive Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SESMailManagerArchiveProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `64`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*[a-zA-Z0-9]$`
|
|
12
|
+
*/
|
|
13
|
+
ArchiveName?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @pattern `^arn:aws(|-cn|-us-gov):kms:[a-z0-9-]{1,20}:[0-9]{12}:(key|alias)/.+$`
|
|
16
|
+
*/
|
|
17
|
+
KmsKeyArn?: string;
|
|
18
|
+
Retention?: ArchiveRetention;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `0`
|
|
21
|
+
* @maxLength `200`
|
|
22
|
+
*/
|
|
23
|
+
Tags?: Tag[];
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Attribute type definition for `AWS::SES::MailManagerArchive`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html#aws-resource-ses-mailmanagerarchive-return-values}
|
|
28
|
+
*/
|
|
29
|
+
export type SESMailManagerArchiveAttributes = {
|
|
30
|
+
ArchiveArn: string;
|
|
31
|
+
/**
|
|
32
|
+
* @minLength `1`
|
|
33
|
+
* @maxLength `66`
|
|
34
|
+
*/
|
|
35
|
+
ArchiveId: string;
|
|
36
|
+
ArchiveState: ArchiveState;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Type definition for `AWS::SES::MailManagerArchive.ArchiveRetention`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-archiveretention.html}
|
|
41
|
+
*/
|
|
42
|
+
export type ArchiveRetention = {
|
|
43
|
+
RetentionPeriod: RetentionPeriod;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::SES::MailManagerArchive.ArchiveState`.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-archivestate.html}
|
|
48
|
+
*/
|
|
49
|
+
export type ArchiveState = "ACTIVE" | "PENDING_DELETION";
|
|
50
|
+
/**
|
|
51
|
+
* Type definition for `AWS::SES::MailManagerArchive.RetentionPeriod`.
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-retentionperiod.html}
|
|
53
|
+
*/
|
|
54
|
+
export type RetentionPeriod = "THREE_MONTHS" | "SIX_MONTHS" | "NINE_MONTHS" | "ONE_YEAR" | "EIGHTEEN_MONTHS" | "TWO_YEARS" | "THIRTY_MONTHS" | "THREE_YEARS" | "FOUR_YEARS" | "FIVE_YEARS" | "SIX_YEARS" | "SEVEN_YEARS" | "EIGHT_YEARS" | "NINE_YEARS" | "TEN_YEARS" | "PERMANENT";
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::SES::MailManagerArchive.Tag`.
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-tag.html}
|
|
58
|
+
*/
|
|
59
|
+
export type Tag = {
|
|
60
|
+
/**
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
* @maxLength `128`
|
|
63
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
|
|
64
|
+
*/
|
|
65
|
+
Key: string;
|
|
66
|
+
/**
|
|
67
|
+
* @minLength `0`
|
|
68
|
+
* @maxLength `256`
|
|
69
|
+
* @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
|
|
70
|
+
*/
|
|
71
|
+
Value: string;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Definition of AWS::SES::MailManagerArchive Resource Type
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html}
|
|
76
|
+
*/
|
|
77
|
+
export declare class SESMailManagerArchive extends $Resource<"AWS::SES::MailManagerArchive", SESMailManagerArchiveProperties, SESMailManagerArchiveAttributes> {
|
|
78
|
+
static readonly Type = "AWS::SES::MailManagerArchive";
|
|
79
|
+
constructor(logicalId: string, properties: SESMailManagerArchiveProperties, options?: $ResourceOptions);
|
|
80
|
+
}
|
|
81
|
+
//# sourceMappingURL=AWS-SES-MailManagerArchive.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::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
|