@awboost/cfn-resource-types 0.1.523 → 0.1.525
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.
|
@@ -13,7 +13,17 @@ export type EC2NatGatewayProperties = {
|
|
|
13
13
|
* [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway.
|
|
14
14
|
*/
|
|
15
15
|
AllocationId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Indicates whether this is a zonal (single-AZ) or regional (multi-AZ) NAT gateway.
|
|
18
|
+
A zonal NAT gateway is a NAT Gateway that provides redundancy and scalability within a single availability zone. A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
19
|
+
For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
|
|
20
|
+
*/
|
|
16
21
|
AvailabilityMode?: string;
|
|
22
|
+
/**
|
|
23
|
+
* For regional NAT gateways only: Specifies which Availability Zones you want the NAT gateway to support and the Elastic IP addresses (EIPs) to use in each AZ. The regional NAT gateway uses these EIPs to handle outbound NAT traffic from their respective AZs. If not specified, the NAT gateway will automatically expand to new AZs and associate EIPs upon detection of an elastic network interface. If you specify this parameter, auto-expansion is disabled and you must manually manage AZ coverage.
|
|
24
|
+
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
25
|
+
For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
|
|
26
|
+
*/
|
|
17
27
|
AvailabilityZoneAddresses?: AvailabilityZoneAddress[];
|
|
18
28
|
/**
|
|
19
29
|
* Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
|
|
@@ -68,11 +78,25 @@ export type EC2NatGatewayAttributes = {
|
|
|
68
78
|
};
|
|
69
79
|
/**
|
|
70
80
|
* Type definition for `AWS::EC2::NatGateway.AvailabilityZoneAddress`.
|
|
81
|
+
* For regional NAT gateways only: The configuration specifying which Elastic IP address (EIP) to use for handling outbound NAT traffic from a specific Availability Zone.
|
|
82
|
+
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
83
|
+
For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
|
|
71
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-availabilityzoneaddress.html}
|
|
72
85
|
*/
|
|
73
86
|
export type AvailabilityZoneAddress = {
|
|
87
|
+
/**
|
|
88
|
+
* The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
|
|
89
|
+
*/
|
|
74
90
|
AllocationIds: string[];
|
|
91
|
+
/**
|
|
92
|
+
* For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ.
|
|
93
|
+
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
94
|
+
*/
|
|
75
95
|
AvailabilityZone?: string;
|
|
96
|
+
/**
|
|
97
|
+
* For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ. Use this instead of AvailabilityZone for consistent identification of AZs across AWS Regions.
|
|
98
|
+
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
99
|
+
*/
|
|
76
100
|
AvailabilityZoneId?: string;
|
|
77
101
|
};
|
|
78
102
|
/**
|
|
@@ -11,6 +11,11 @@ export type GameLiftScriptProperties = {
|
|
|
11
11
|
* @maxLength `1024`
|
|
12
12
|
*/
|
|
13
13
|
Name?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The Node.js version used for execution of the Realtime script.
|
|
16
|
+
* @pattern `^\d+\.[x0-9]+$`
|
|
17
|
+
*/
|
|
18
|
+
NodeJsVersion?: string;
|
|
14
19
|
/**
|
|
15
20
|
* The location of the Amazon S3 bucket where a zipped file containing your Realtime scripts is stored. The storage location must specify the Amazon S3 bucket name, the zip file name (the "key"), and a role ARN that allows Amazon GameLift to access the Amazon S3 storage location. The S3 bucket must be in the same Region where you want to create a new script. By default, Amazon GameLift uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the ObjectVersion parameter to specify an earlier version.
|
|
16
21
|
*/
|
|
@@ -25,6 +25,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
25
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html}
|
|
26
26
|
*/
|
|
27
27
|
export type RDSDBInstanceProperties = {
|
|
28
|
+
/**
|
|
29
|
+
* The additional storage volumes associated with the DB instance. RDS supports additional storage volumes for RDS for Oracle and RDS for SQL Server.
|
|
30
|
+
*/
|
|
28
31
|
AdditionalStorageVolumes?: AdditionalStorageVolume[];
|
|
29
32
|
/**
|
|
30
33
|
* The amount of storage in gibibytes (GiB) to be initially allocated for the database instance.
|
|
@@ -926,6 +929,7 @@ export type RDSDBInstanceAttributes = {
|
|
|
926
929
|
};
|
|
927
930
|
/**
|
|
928
931
|
* Type definition for `AWS::RDS::DBInstance.AdditionalStorageVolume`.
|
|
932
|
+
* Contains details about an additional storage volume for a DB instance. RDS support additional storage volumes for RDS for Oracle and RDS for SQL Server.
|
|
929
933
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html}
|
|
930
934
|
*/
|
|
931
935
|
export type AdditionalStorageVolume = {
|
|
@@ -943,16 +947,18 @@ export type AdditionalStorageVolume = {
|
|
|
943
947
|
*/
|
|
944
948
|
MaxAllocatedStorage?: number;
|
|
945
949
|
/**
|
|
946
|
-
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD gp3 storage type.
|
|
950
|
+
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD (``gp3``) storage type.
|
|
947
951
|
*/
|
|
948
952
|
StorageThroughput?: number;
|
|
949
953
|
/**
|
|
950
|
-
|
|
951
|
-
|
|
954
|
+
* The storage type for the additional storage volume.
|
|
955
|
+
Valid Values: ``GP3 | IO2``
|
|
956
|
+
*/
|
|
952
957
|
StorageType?: string;
|
|
953
958
|
/**
|
|
954
|
-
|
|
955
|
-
|
|
959
|
+
* The name of the additional storage volume.
|
|
960
|
+
Valid Values: ``RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4``
|
|
961
|
+
*/
|
|
956
962
|
VolumeName?: string;
|
|
957
963
|
};
|
|
958
964
|
/**
|