@awboost/cfn-resource-types 0.1.447 → 0.1.448
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.
|
@@ -45,7 +45,7 @@ export type VpcLatticeAccessLogSubscriptionAttributes = {
|
|
|
45
45
|
/**
|
|
46
46
|
* @minLength `20`
|
|
47
47
|
* @maxLength `2048`
|
|
48
|
-
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}$`
|
|
48
|
+
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc)|(resourceconfiguration/rcfg))-[0-9a-z]{17}$`
|
|
49
49
|
*/
|
|
50
50
|
ResourceArn: string;
|
|
51
51
|
/**
|
|
@@ -7,6 +7,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type VpcLatticeResourceGatewayProperties = {
|
|
9
9
|
IpAddressType?: "IPV4" | "IPV6" | "DUALSTACK";
|
|
10
|
+
/**
|
|
11
|
+
* The number of IPv4 addresses to allocate per ENI for the resource gateway
|
|
12
|
+
*/
|
|
13
|
+
Ipv4AddressesPerEni?: number;
|
|
10
14
|
/**
|
|
11
15
|
* @minLength `3`
|
|
12
16
|
* @maxLength `40`
|
|
@@ -10,7 +10,7 @@ export type VpcLatticeResourcePolicyProperties = {
|
|
|
10
10
|
/**
|
|
11
11
|
* @minLength `20`
|
|
12
12
|
* @maxLength `200`
|
|
13
|
-
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}$`
|
|
13
|
+
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc)|(resourceconfiguration/rcfg))-[0-9a-z]{17}$`
|
|
14
14
|
*/
|
|
15
15
|
ResourceArn: string;
|
|
16
16
|
};
|