@awboost/cfn-resource-types 0.1.306 → 0.1.307

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.
@@ -41,6 +41,10 @@ export type MemoryDBClusterProperties = {
41
41
  * The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
42
42
  */
43
43
  FinalSnapshotName?: string;
44
+ /**
45
+ * For clusters wth dual stack NetworkType, IpDiscovery controls the Ip protocol (ipv4 or ipv6) returned by the engine commands such as `cluster info` and `cluster nodes` which are used by clients to connect to the nodes in the cluster.
46
+ */
47
+ IpDiscovery?: SupportedIpDiscoveryTypes;
44
48
  /**
45
49
  * The ID of the KMS key used to encrypt the cluster.
46
50
  */
@@ -53,6 +57,10 @@ export type MemoryDBClusterProperties = {
53
57
  * The name of the Global Datastore, it is generated by MemoryDB adding a prefix to MultiRegionClusterNameSuffix.
54
58
  */
55
59
  MultiRegionClusterName?: string;
60
+ /**
61
+ * Must be either ipv4 | ipv6 | dual_stack.
62
+ */
63
+ NetworkType?: SupportedNetworkTypes;
56
64
  /**
57
65
  * The compute and memory capacity of the nodes in the cluster.
58
66
  */
@@ -153,6 +161,16 @@ export type MemoryDBClusterAttributes = {
153
161
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-datatieringstatus.html}
154
162
  */
155
163
  export type DataTieringStatus = "true" | "false";
164
+ /**
165
+ * Type definition for `AWS::MemoryDB::Cluster.SupportedIpDiscoveryTypes`.
166
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-supportedipdiscoverytypes.html}
167
+ */
168
+ export type SupportedIpDiscoveryTypes = "ipv4" | "ipv6";
169
+ /**
170
+ * Type definition for `AWS::MemoryDB::Cluster.SupportedNetworkTypes`.
171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-supportednetworktypes.html}
172
+ */
173
+ export type SupportedNetworkTypes = "ipv4" | "ipv6" | "dual_stack";
156
174
  /**
157
175
  * Type definition for `AWS::MemoryDB::Cluster.Tag`.
158
176
  * A key-value pair to associate with a resource.
@@ -33,6 +33,10 @@ export type MemoryDBSubnetGroupAttributes = {
33
33
  * The Amazon Resource Name (ARN) of the subnet group.
34
34
  */
35
35
  ARN: string;
36
+ /**
37
+ * Supported network types would be a list of network types supported by subnet group and can be either [ipv4] or [ipv4, dual_stack] or [ipv6].
38
+ */
39
+ SupportedNetworkTypes: string[];
36
40
  };
37
41
  /**
38
42
  * Type definition for `AWS::MemoryDB::SubnetGroup.Tag`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.306",
3
+ "version": "0.1.307",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },