@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.
- package/lib/AWS-Amplify-App.d.ts +6 -0
- package/lib/AWS-Amplify-Branch.d.ts +7 -0
- package/lib/AWS-AppIntegrations-EventIntegration.d.ts +1 -1
- package/lib/AWS-CloudFormation-Stack.d.ts +1 -1
- package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +2 -2
- package/lib/AWS-RUM-AppMonitor.d.ts +1 -1
- package/lib/AWS-Route53RecoveryControl-Cluster.d.ts +4 -0
- package/package.json +1 -1
package/lib/AWS-Amplify-App.d.ts
CHANGED
|
@@ -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`
|
|
@@ -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.
|
|
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.
|
|
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
|
/**
|
|
@@ -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
|
*/
|