@awboost/cfn-resource-types 0.1.295 → 0.1.296

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.
@@ -19,6 +19,12 @@ export type AmplifyAppProperties = {
19
19
  */
20
20
  BuildSpec?: string;
21
21
  CacheConfig?: CacheConfig;
22
+ /**
23
+ * @minLength `0`
24
+ * @maxLength `1000`
25
+ * @pattern `(?s).*`
26
+ */
27
+ ComputeRoleArn?: string;
22
28
  /**
23
29
  * @minLength `0`
24
30
  * @maxLength `25000`
@@ -25,6 +25,12 @@ export type AmplifyBranchProperties = {
25
25
  * @pattern `(?s).+`
26
26
  */
27
27
  BuildSpec?: string;
28
+ /**
29
+ * @minLength `0`
30
+ * @maxLength `1000`
31
+ * @pattern `(?s).*`
32
+ */
33
+ ComputeRoleArn?: string;
28
34
  /**
29
35
  * @maxLength `1000`
30
36
  * @pattern `(?s).*`
@@ -33,6 +39,7 @@ export type AmplifyBranchProperties = {
33
39
  EnableAutoBuild?: boolean;
34
40
  EnablePerformanceMode?: boolean;
35
41
  EnablePullRequestPreview?: boolean;
42
+ EnableSkewProtection?: boolean;
36
43
  EnvironmentVariables?: EnvironmentVariable[];
37
44
  /**
38
45
  * @maxLength `255`
@@ -58,7 +58,7 @@ export type EventFilter = {
58
58
  * The source of the events.
59
59
  * @minLength `1`
60
60
  * @maxLength `256`
61
- * @pattern `^aws\.partner\/.*$`
61
+ * @pattern `^aws\.(partner\/.*|cases)$`
62
62
  */
63
63
  Source: string;
64
64
  };
@@ -27,7 +27,7 @@ export type CloudFormationStackProperties = {
27
27
  * @maxLength `50`
28
28
  */
29
29
  Tags?: Tag[];
30
- TemplateBody?: Record<string, any>;
30
+ TemplateBody?: Record<string, any> | string;
31
31
  /**
32
32
  * @minLength `1`
33
33
  * @maxLength `1024`
@@ -286,7 +286,7 @@ export type ListenerAttribute = {
286
286
  */
287
287
  export type MutualAuthentication = {
288
288
  /**
289
- * Indicates whether trust store CA certificate names are advertised. The default value is ``off``.
289
+ * Indicates whether trust store CA certificate names are advertised.
290
290
  */
291
291
  AdvertiseTrustStoreCaNames?: string;
292
292
  /**
@@ -294,7 +294,7 @@ export type MutualAuthentication = {
294
294
  */
295
295
  IgnoreClientCertificateExpiry?: boolean;
296
296
  /**
297
- * The client certificate handling method. The possible values are ``off``, ``passthrough``, and ``verify``. The default value is ``off``.
297
+ * The client certificate handling method. Options are ``off``, ``passthrough`` or ``verify``. The default value is ``off``.
298
298
  */
299
299
  Mode?: string;
300
300
  /**
@@ -33,7 +33,7 @@ export type RUMAppMonitorProperties = {
33
33
  * @minLength `1`
34
34
  * @maxLength `5`
35
35
  */
36
- DomainList?: unknown[];
36
+ DomainList?: string[];
37
37
  /**
38
38
  * A name for the app monitor
39
39
  * @minLength `1`
@@ -12,6 +12,10 @@ export type Route53RecoveryControlClusterProperties = {
12
12
  * @maxLength `64`
13
13
  */
14
14
  Name: string;
15
+ /**
16
+ * Cluster supports IPv4 endpoints and Dual-stack IPv4 and IPv6 endpoints. NetworkType can be IPV4 or DUALSTACK.
17
+ */
18
+ NetworkType?: "IPV4" | "DUALSTACK";
15
19
  /**
16
20
  * A collection of tags associated with a resource
17
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.295",
3
+ "version": "0.1.296",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },