@awboost/cfn-resource-types 0.1.107 → 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.
Files changed (33) hide show
  1. package/lib/AWS-CloudFormation-StackSet.d.ts +10 -0
  2. package/lib/AWS-CodePipeline-Pipeline.d.ts +220 -10
  3. package/lib/AWS-CodePipeline-Pipeline.js +1 -1
  4. package/lib/AWS-Deadline-MeteredProduct.d.ts +15 -15
  5. package/lib/AWS-ECS-TaskDefinition.d.ts +6 -6
  6. package/lib/AWS-LaunchWizard-Deployment.d.ts +109 -0
  7. package/lib/AWS-LaunchWizard-Deployment.js +12 -0
  8. package/lib/AWS-RDS-DBCluster.d.ts +448 -161
  9. package/lib/AWS-RDS-DBCluster.js +17 -1
  10. package/lib/AWS-RDS-DBClusterParameterGroup.d.ts +29 -11
  11. package/lib/AWS-RDS-DBClusterParameterGroup.js +4 -1
  12. package/lib/AWS-RDS-DBInstance.d.ts +9 -1
  13. package/lib/AWS-RDS-EventSubscription.d.ts +29 -17
  14. package/lib/AWS-RDS-EventSubscription.js +1 -1
  15. package/lib/AWS-RDS-OptionGroup.d.ts +36 -15
  16. package/lib/AWS-RDS-OptionGroup.js +1 -1
  17. package/lib/AWS-S3-Bucket.d.ts +1 -1
  18. package/lib/AWS-SES-MailManagerAddonInstance.d.ts +60 -0
  19. package/lib/AWS-SES-MailManagerAddonInstance.js +12 -0
  20. package/lib/AWS-SES-MailManagerAddonSubscription.d.ts +54 -0
  21. package/lib/AWS-SES-MailManagerAddonSubscription.js +12 -0
  22. package/lib/AWS-SES-MailManagerArchive.d.ts +81 -0
  23. package/lib/AWS-SES-MailManagerArchive.js +12 -0
  24. package/lib/AWS-SES-MailManagerIngressPoint.d.ts +105 -0
  25. package/lib/AWS-SES-MailManagerIngressPoint.js +12 -0
  26. package/lib/AWS-SES-MailManagerRelay.d.ts +88 -0
  27. package/lib/AWS-SES-MailManagerRelay.js +12 -0
  28. package/lib/AWS-SES-MailManagerRuleSet.d.ts +447 -0
  29. package/lib/AWS-SES-MailManagerRuleSet.js +12 -0
  30. package/lib/AWS-SES-MailManagerTrafficPolicy.d.ts +212 -0
  31. package/lib/AWS-SES-MailManagerTrafficPolicy.js +12 -0
  32. package/lib/AWS-WorkSpacesThinClient-Environment.d.ts +5 -0
  33. 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::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
@@ -24,6 +24,11 @@ export type WorkSpacesThinClientEnvironmentProperties = {
24
24
  * @pattern `^(https:\/\/)[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,32}(:[0-9]{1,5})?(\/.*)?$`
25
25
  */
26
26
  DesktopEndpoint?: string;
27
+ /**
28
+ * An array of key-value pairs to apply to the newly created devices for this environment.
29
+ * @maxLength `50`
30
+ */
31
+ DeviceCreationTags?: Tag[];
27
32
  /**
28
33
  * The Amazon Resource Name (ARN) of the AWS Key Management Service key used to encrypt the environment.
29
34
  * @minLength `20`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.107",
3
+ "version": "0.1.108",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },