@awboost/cfn-resource-types 0.1.432 → 0.1.433

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.
@@ -927,6 +927,9 @@ export type NetworkInterface = {
927
927
  If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
928
928
  */
929
929
  DeviceIndex?: number;
930
+ /**
931
+ * The number of ENA queues to be created with the instance.
932
+ */
930
933
  EnaQueueCount?: number;
931
934
  /**
932
935
  * The ENA Express configuration for the network interface.
@@ -1035,8 +1038,9 @@ export type Placement = {
1035
1038
  */
1036
1039
  Affinity?: string;
1037
1040
  /**
1038
- * The Availability Zone for the instance.
1039
- */
1041
+ * The Availability Zone for the instance.
1042
+ Either ``AvailabilityZone`` or ``AvailabilityZoneId`` can be specified, but not both
1043
+ */
1040
1044
  AvailabilityZone?: string;
1041
1045
  /**
1042
1046
  * The Group Id of a placement group. You must specify the Placement Group *Group Id* to launch an instance in a shared placement group.
@@ -9,7 +9,7 @@ export type RDSDBProxyProperties = {
9
9
  * The authorization mechanism that the proxy uses.
10
10
  * @minLength `1`
11
11
  */
12
- Auth: AuthFormat[];
12
+ Auth?: AuthFormat[];
13
13
  /**
14
14
  * The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region.
15
15
  * @maxLength `64`
@@ -20,6 +20,14 @@ export type RDSDBProxyProperties = {
20
20
  * Whether the proxy includes detailed information about SQL statements in its logs.
21
21
  */
22
22
  DebugLogging?: boolean;
23
+ /**
24
+ * The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
25
+ */
26
+ DefaultAuthScheme?: "IAM_AUTH" | "NONE";
27
+ /**
28
+ * The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.
29
+ */
30
+ EndpointNetworkType?: "IPV4" | "IPV6" | "DUAL";
23
31
  /**
24
32
  * The kinds of databases that the proxy can connect to.
25
33
  */
@@ -40,6 +48,10 @@ export type RDSDBProxyProperties = {
40
48
  * An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
41
49
  */
42
50
  Tags?: TagFormat[];
51
+ /**
52
+ * The network type that the proxy uses to connect to the target database. The network type determines the IP version that the proxy uses for connections to the database.
53
+ */
54
+ TargetConnectionNetworkType?: "IPV4" | "IPV6";
43
55
  /**
44
56
  * VPC security group IDs to associate with the new proxy.
45
57
  * @minLength `1`
@@ -17,6 +17,10 @@ export type RDSDBProxyEndpointProperties = {
17
17
  * @pattern `[0-z]*`
18
18
  */
19
19
  DBProxyName: string;
20
+ /**
21
+ * The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.
22
+ */
23
+ EndpointNetworkType?: "IPV4" | "IPV6" | "DUAL";
20
24
  /**
21
25
  * An optional set of key-value pairs to associate arbitrary data of your choosing with the DB proxy endpoint.
22
26
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.432",
3
+ "version": "0.1.433",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },