@aws-sdk/client-rds 3.145.0 → 3.152.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.152.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.151.0...v3.152.0) (2022-08-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-rds:** Adds support for Internet Protocol Version 6 (IPv6) for RDS Aurora database clusters. ([77a9475](https://github.com/aws/aws-sdk-js-v3/commit/77a94757c2aa1d94081e7669cd4a5a06e3370a5c))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-rds
20
+
21
+
22
+
23
+
24
+
25
+ # [3.149.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.148.0...v3.149.0) (2022-08-12)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-rds
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-rds
@@ -9134,6 +9134,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
9134
9134
  entries[loc] = value;
9135
9135
  });
9136
9136
  }
9137
+ if (input.NetworkType != null) {
9138
+ entries["NetworkType"] = input.NetworkType;
9139
+ }
9137
9140
  return entries;
9138
9141
  };
9139
9142
  const serializeAws_queryCreateDBClusterParameterGroupMessage = (input, context) => {
@@ -11091,6 +11094,9 @@ const serializeAws_queryModifyDBClusterMessage = (input, context) => {
11091
11094
  entries[loc] = value;
11092
11095
  });
11093
11096
  }
11097
+ if (input.NetworkType != null) {
11098
+ entries["NetworkType"] = input.NetworkType;
11099
+ }
11094
11100
  return entries;
11095
11101
  };
11096
11102
  const serializeAws_queryModifyDBClusterParameterGroupMessage = (input, context) => {
@@ -11983,6 +11989,9 @@ const serializeAws_queryRestoreDBClusterFromS3Message = (input, context) => {
11983
11989
  entries[loc] = value;
11984
11990
  });
11985
11991
  }
11992
+ if (input.NetworkType != null) {
11993
+ entries["NetworkType"] = input.NetworkType;
11994
+ }
11986
11995
  return entries;
11987
11996
  };
11988
11997
  const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) => {
@@ -12092,6 +12101,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
12092
12101
  entries[loc] = value;
12093
12102
  });
12094
12103
  }
12104
+ if (input.NetworkType != null) {
12105
+ entries["NetworkType"] = input.NetworkType;
12106
+ }
12095
12107
  return entries;
12096
12108
  };
12097
12109
  const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context) => {
@@ -12194,6 +12206,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
12194
12206
  entries[loc] = value;
12195
12207
  });
12196
12208
  }
12209
+ if (input.NetworkType != null) {
12210
+ entries["NetworkType"] = input.NetworkType;
12211
+ }
12197
12212
  return entries;
12198
12213
  };
12199
12214
  const serializeAws_queryRestoreDBInstanceFromDBSnapshotMessage = (input, context) => {
@@ -13444,6 +13459,7 @@ const deserializeAws_queryDBCluster = (output, context) => {
13444
13459
  PerformanceInsightsKMSKeyId: undefined,
13445
13460
  PerformanceInsightsRetentionPeriod: undefined,
13446
13461
  ServerlessV2ScalingConfiguration: undefined,
13462
+ NetworkType: undefined,
13447
13463
  };
13448
13464
  if (output["AllocatedStorage"] !== undefined) {
13449
13465
  contents.AllocatedStorage = (0, smithy_client_1.strictParseInt32)(output["AllocatedStorage"]);
@@ -13685,6 +13701,9 @@ const deserializeAws_queryDBCluster = (output, context) => {
13685
13701
  if (output["ServerlessV2ScalingConfiguration"] !== undefined) {
13686
13702
  contents.ServerlessV2ScalingConfiguration = deserializeAws_queryServerlessV2ScalingConfigurationInfo(output["ServerlessV2ScalingConfiguration"], context);
13687
13703
  }
13704
+ if (output["NetworkType"] !== undefined) {
13705
+ contents.NetworkType = (0, smithy_client_1.expectString)(output["NetworkType"]);
13706
+ }
13688
13707
  return contents;
13689
13708
  };
13690
13709
  const deserializeAws_queryDBClusterAlreadyExistsFault = (output, context) => {
@@ -11482,6 +11482,9 @@ var serializeAws_queryCreateDBClusterMessage = function (input, context) {
11482
11482
  entries[loc] = value;
11483
11483
  });
11484
11484
  }
11485
+ if (input.NetworkType != null) {
11486
+ entries["NetworkType"] = input.NetworkType;
11487
+ }
11485
11488
  return entries;
11486
11489
  };
11487
11490
  var serializeAws_queryCreateDBClusterParameterGroupMessage = function (input, context) {
@@ -13589,6 +13592,9 @@ var serializeAws_queryModifyDBClusterMessage = function (input, context) {
13589
13592
  entries[loc] = value;
13590
13593
  });
13591
13594
  }
13595
+ if (input.NetworkType != null) {
13596
+ entries["NetworkType"] = input.NetworkType;
13597
+ }
13592
13598
  return entries;
13593
13599
  };
13594
13600
  var serializeAws_queryModifyDBClusterParameterGroupMessage = function (input, context) {
@@ -14573,6 +14579,9 @@ var serializeAws_queryRestoreDBClusterFromS3Message = function (input, context)
14573
14579
  entries[loc] = value;
14574
14580
  });
14575
14581
  }
14582
+ if (input.NetworkType != null) {
14583
+ entries["NetworkType"] = input.NetworkType;
14584
+ }
14576
14585
  return entries;
14577
14586
  };
14578
14587
  var serializeAws_queryRestoreDBClusterFromSnapshotMessage = function (input, context) {
@@ -14688,6 +14697,9 @@ var serializeAws_queryRestoreDBClusterFromSnapshotMessage = function (input, con
14688
14697
  entries[loc] = value;
14689
14698
  });
14690
14699
  }
14700
+ if (input.NetworkType != null) {
14701
+ entries["NetworkType"] = input.NetworkType;
14702
+ }
14691
14703
  return entries;
14692
14704
  };
14693
14705
  var serializeAws_queryRestoreDBClusterToPointInTimeMessage = function (input, context) {
@@ -14795,6 +14807,9 @@ var serializeAws_queryRestoreDBClusterToPointInTimeMessage = function (input, co
14795
14807
  entries[loc] = value;
14796
14808
  });
14797
14809
  }
14810
+ if (input.NetworkType != null) {
14811
+ entries["NetworkType"] = input.NetworkType;
14812
+ }
14798
14813
  return entries;
14799
14814
  };
14800
14815
  var serializeAws_queryRestoreDBInstanceFromDBSnapshotMessage = function (input, context) {
@@ -16127,6 +16142,7 @@ var deserializeAws_queryDBCluster = function (output, context) {
16127
16142
  PerformanceInsightsKMSKeyId: undefined,
16128
16143
  PerformanceInsightsRetentionPeriod: undefined,
16129
16144
  ServerlessV2ScalingConfiguration: undefined,
16145
+ NetworkType: undefined,
16130
16146
  };
16131
16147
  if (output["AllocatedStorage"] !== undefined) {
16132
16148
  contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
@@ -16368,6 +16384,9 @@ var deserializeAws_queryDBCluster = function (output, context) {
16368
16384
  if (output["ServerlessV2ScalingConfiguration"] !== undefined) {
16369
16385
  contents.ServerlessV2ScalingConfiguration = deserializeAws_queryServerlessV2ScalingConfigurationInfo(output["ServerlessV2ScalingConfiguration"], context);
16370
16386
  }
16387
+ if (output["NetworkType"] !== undefined) {
16388
+ contents.NetworkType = __expectString(output["NetworkType"]);
16389
+ }
16371
16390
  return contents;
16372
16391
  };
16373
16392
  var deserializeAws_queryDBClusterAlreadyExistsFault = function (output, context) {
@@ -235,12 +235,17 @@ export declare class RDS extends RDSClient {
235
235
  * instances. Second, IP ranges are available if the application accessing your database is running on the internet.
236
236
  * Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId
237
237
  * and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).</p>
238
- * <note>
239
- * <p>You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in
240
- * another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.</p>
241
- * </note>
238
+ * <p>You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in
239
+ * another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.</p>
242
240
  * <p>For an overview of CIDR ranges, go to the
243
241
  * <a href="http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Wikipedia Tutorial</a>.</p>
242
+ * <note>
243
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
244
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
245
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
246
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
247
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
248
+ * </note>
244
249
  */
245
250
  authorizeDBSecurityGroupIngress(args: AuthorizeDBSecurityGroupIngressCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeDBSecurityGroupIngressCommandOutput>;
246
251
  authorizeDBSecurityGroupIngress(args: AuthorizeDBSecurityGroupIngressCommandInput, cb: (err: any, data?: AuthorizeDBSecurityGroupIngressCommandOutput) => void): void;
@@ -515,8 +520,13 @@ export declare class RDS extends RDSClient {
515
520
  createDBProxyEndpoint(args: CreateDBProxyEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDBProxyEndpointCommandOutput) => void): void;
516
521
  /**
517
522
  * <p>Creates a new DB security group. DB security groups control access to a DB instance.</p>
523
+ * <p>A DB security group controls access to EC2-Classic DB instances that are not in a VPC.</p>
518
524
  * <note>
519
- * <p>A DB security group controls access to EC2-Classic DB instances that are not in a VPC.</p>
525
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
526
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
527
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
528
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
529
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
520
530
  * </note>
521
531
  */
522
532
  createDBSecurityGroup(args: CreateDBSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateDBSecurityGroupCommandOutput>;
@@ -554,10 +564,12 @@ export declare class RDS extends RDSClient {
554
564
  * you receive notice of the events for that source type for all your RDS sources. If you
555
565
  * don't specify either the SourceType or the <code>SourceIds</code>, you are notified of events
556
566
  * generated from all RDS sources belonging to your customer account.</p>
557
- * <note>
558
- * <p>RDS event notification is only available for unencrypted SNS topics. If you specify an
559
- * encrypted SNS topic, event notifications aren't sent for the topic.</p>
560
- * </note>
567
+ * <p>For more information about subscribing to an event for RDS DB engines, see
568
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Subscribing.html">
569
+ * Subscribing to Amazon RDS event notification</a> in the <i>Amazon RDS User Guide</i>.</p>
570
+ * <p>For more information about subscribing to an event for Aurora DB engines, see
571
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Subscribing.html">
572
+ * Subscribing to Amazon RDS event notification</a> in the <i>Amazon Aurora User Guide</i>.</p>
561
573
  */
562
574
  createEventSubscription(args: CreateEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventSubscriptionCommandOutput>;
563
575
  createEventSubscription(args: CreateEventSubscriptionCommandInput, cb: (err: any, data?: CreateEventSubscriptionCommandOutput) => void): void;
@@ -720,8 +732,13 @@ export declare class RDS extends RDSClient {
720
732
  deleteDBProxyEndpoint(args: DeleteDBProxyEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDBProxyEndpointCommandOutput) => void): void;
721
733
  /**
722
734
  * <p>Deletes a DB security group.</p>
735
+ * <p>The specified DB security group must not be associated with any DB instances.</p>
723
736
  * <note>
724
- * <p>The specified DB security group must not be associated with any DB instances.</p>
737
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
738
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
739
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
740
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
741
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
725
742
  * </note>
726
743
  */
727
744
  deleteDBSecurityGroup(args: DeleteDBSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDBSecurityGroupCommandOutput>;
@@ -946,6 +963,13 @@ export declare class RDS extends RDSClient {
946
963
  /**
947
964
  * <p>Returns a list of <code>DBSecurityGroup</code> descriptions. If a <code>DBSecurityGroupName</code> is specified,
948
965
  * the list will contain only the descriptions of the specified DB security group.</p>
966
+ * <note>
967
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
968
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
969
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
970
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
971
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
972
+ * </note>
949
973
  */
950
974
  describeDBSecurityGroups(args: DescribeDBSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDBSecurityGroupsCommandOutput>;
951
975
  describeDBSecurityGroups(args: DescribeDBSecurityGroupsCommandInput, cb: (err: any, data?: DescribeDBSecurityGroupsCommandOutput) => void): void;
@@ -1697,7 +1721,16 @@ export declare class RDS extends RDSClient {
1697
1721
  restoreDBInstanceToPointInTime(args: RestoreDBInstanceToPointInTimeCommandInput, cb: (err: any, data?: RestoreDBInstanceToPointInTimeCommandOutput) => void): void;
1698
1722
  restoreDBInstanceToPointInTime(args: RestoreDBInstanceToPointInTimeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreDBInstanceToPointInTimeCommandOutput) => void): void;
1699
1723
  /**
1700
- * <p>Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).</p>
1724
+ * <p>Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required
1725
+ * parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
1726
+ * EC2SecurityGroupName or EC2SecurityGroupId).</p>
1727
+ * <note>
1728
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
1729
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
1730
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
1731
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
1732
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
1733
+ * </note>
1701
1734
  */
1702
1735
  revokeDBSecurityGroupIngress(args: RevokeDBSecurityGroupIngressCommandInput, options?: __HttpHandlerOptions): Promise<RevokeDBSecurityGroupIngressCommandOutput>;
1703
1736
  revokeDBSecurityGroupIngress(args: RevokeDBSecurityGroupIngressCommandInput, cb: (err: any, data?: RevokeDBSecurityGroupIngressCommandOutput) => void): void;
@@ -12,12 +12,17 @@ export interface AuthorizeDBSecurityGroupIngressCommandOutput extends AuthorizeD
12
12
  * instances. Second, IP ranges are available if the application accessing your database is running on the internet.
13
13
  * Required parameters for this API are one of CIDR range, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId
14
14
  * and either EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).</p>
15
- * <note>
16
- * <p>You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in
17
- * another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.</p>
18
- * </note>
15
+ * <p>You can't authorize ingress from an EC2 security group in one Amazon Web Services Region to an Amazon RDS DB instance in
16
+ * another. You can't authorize ingress from a VPC security group in one VPC to an Amazon RDS DB instance in another.</p>
19
17
  * <p>For an overview of CIDR ranges, go to the
20
18
  * <a href="http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Wikipedia Tutorial</a>.</p>
19
+ * <note>
20
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
21
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
22
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
23
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
24
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
25
+ * </note>
21
26
  * @example
22
27
  * Use a bare-bones client and the command you need to make an API call.
23
28
  * ```javascript
@@ -8,8 +8,13 @@ export interface CreateDBSecurityGroupCommandOutput extends CreateDBSecurityGrou
8
8
  }
9
9
  /**
10
10
  * <p>Creates a new DB security group. DB security groups control access to a DB instance.</p>
11
+ * <p>A DB security group controls access to EC2-Classic DB instances that are not in a VPC.</p>
11
12
  * <note>
12
- * <p>A DB security group controls access to EC2-Classic DB instances that are not in a VPC.</p>
13
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
14
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
15
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
16
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
17
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
13
18
  * </note>
14
19
  * @example
15
20
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,10 +25,12 @@ export interface CreateEventSubscriptionCommandOutput extends CreateEventSubscri
25
25
  * you receive notice of the events for that source type for all your RDS sources. If you
26
26
  * don't specify either the SourceType or the <code>SourceIds</code>, you are notified of events
27
27
  * generated from all RDS sources belonging to your customer account.</p>
28
- * <note>
29
- * <p>RDS event notification is only available for unencrypted SNS topics. If you specify an
30
- * encrypted SNS topic, event notifications aren't sent for the topic.</p>
31
- * </note>
28
+ * <p>For more information about subscribing to an event for RDS DB engines, see
29
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Subscribing.html">
30
+ * Subscribing to Amazon RDS event notification</a> in the <i>Amazon RDS User Guide</i>.</p>
31
+ * <p>For more information about subscribing to an event for Aurora DB engines, see
32
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Subscribing.html">
33
+ * Subscribing to Amazon RDS event notification</a> in the <i>Amazon Aurora User Guide</i>.</p>
32
34
  * @example
33
35
  * Use a bare-bones client and the command you need to make an API call.
34
36
  * ```javascript
@@ -8,8 +8,13 @@ export interface DeleteDBSecurityGroupCommandOutput extends __MetadataBearer {
8
8
  }
9
9
  /**
10
10
  * <p>Deletes a DB security group.</p>
11
+ * <p>The specified DB security group must not be associated with any DB instances.</p>
11
12
  * <note>
12
- * <p>The specified DB security group must not be associated with any DB instances.</p>
13
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
14
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
15
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
16
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
17
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
13
18
  * </note>
14
19
  * @example
15
20
  * Use a bare-bones client and the command you need to make an API call.
@@ -9,6 +9,13 @@ export interface DescribeDBSecurityGroupsCommandOutput extends DBSecurityGroupMe
9
9
  /**
10
10
  * <p>Returns a list of <code>DBSecurityGroup</code> descriptions. If a <code>DBSecurityGroupName</code> is specified,
11
11
  * the list will contain only the descriptions of the specified DB security group.</p>
12
+ * <note>
13
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
14
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
15
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
16
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
17
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
18
+ * </note>
12
19
  * @example
13
20
  * Use a bare-bones client and the command you need to make an API call.
14
21
  * ```javascript
@@ -7,7 +7,16 @@ export interface RevokeDBSecurityGroupIngressCommandInput extends RevokeDBSecuri
7
7
  export interface RevokeDBSecurityGroupIngressCommandOutput extends RevokeDBSecurityGroupIngressResult, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).</p>
10
+ * <p>Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC security groups. Required
11
+ * parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
12
+ * EC2SecurityGroupName or EC2SecurityGroupId).</p>
13
+ * <note>
14
+ * <p>EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that
15
+ * you migrate as soon as possible. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the
16
+ * <i>Amazon EC2 User Guide</i>, the blog <a href="http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/">EC2-Classic Networking is Retiring –
17
+ * Here’s How to Prepare</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html">Moving a DB instance not in a VPC
18
+ * into a VPC</a> in the <i>Amazon RDS User Guide</i>.</p>
19
+ * </note>
11
20
  * @example
12
21
  * Use a bare-bones client and the command you need to make an API call.
13
22
  * ```javascript
@@ -3129,6 +3129,31 @@ export interface CreateDBClusterMessage {
3129
3129
  * <i>Amazon Aurora User Guide</i>.</p>
3130
3130
  */
3131
3131
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
3132
+ /**
3133
+ * <p>The network type of the DB cluster.</p>
3134
+ * <p>Valid values:</p>
3135
+ * <ul>
3136
+ * <li>
3137
+ * <p>
3138
+ * <code>IPV4</code>
3139
+ * </p>
3140
+ * </li>
3141
+ * <li>
3142
+ * <p>
3143
+ * <code>DUAL</code>
3144
+ * </p>
3145
+ * </li>
3146
+ * </ul>
3147
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster.
3148
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
3149
+ * protocols (<code>DUAL</code>).</p>
3150
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
3151
+ * Working with a DB instance in a VPC</a> in the
3152
+ * <i>Amazon Aurora User Guide.</i>
3153
+ * </p>
3154
+ * <p>Valid for: Aurora DB clusters only</p>
3155
+ */
3156
+ NetworkType?: string;
3132
3157
  }
3133
3158
  /**
3134
3159
  * <p>Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.</p>
@@ -3716,6 +3741,31 @@ export interface DBCluster {
3716
3741
  * <i>Amazon Aurora User Guide</i>.</p>
3717
3742
  */
3718
3743
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
3744
+ /**
3745
+ * <p>The network type of the DB instance.</p>
3746
+ * <p>Valid values:</p>
3747
+ * <ul>
3748
+ * <li>
3749
+ * <p>
3750
+ * <code>IPV4</code>
3751
+ * </p>
3752
+ * </li>
3753
+ * <li>
3754
+ * <p>
3755
+ * <code>DUAL</code>
3756
+ * </p>
3757
+ * </li>
3758
+ * </ul>
3759
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster.
3760
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
3761
+ * protocols (<code>DUAL</code>).</p>
3762
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
3763
+ * Working with a DB instance in a VPC</a> in the
3764
+ * <i>Amazon Aurora User Guide.</i>
3765
+ * </p>
3766
+ * <p>This setting is only for Aurora DB clusters.</p>
3767
+ */
3768
+ NetworkType?: string;
3719
3769
  }
3720
3770
  export interface CreateDBClusterResult {
3721
3771
  /**
@@ -2880,6 +2880,31 @@ export interface ModifyDBClusterMessage {
2880
2880
  * <i>Amazon Aurora User Guide</i>.</p>
2881
2881
  */
2882
2882
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
2883
+ /**
2884
+ * <p>The network type of the DB cluster.</p>
2885
+ * <p>Valid values:</p>
2886
+ * <ul>
2887
+ * <li>
2888
+ * <p>
2889
+ * <code>IPV4</code>
2890
+ * </p>
2891
+ * </li>
2892
+ * <li>
2893
+ * <p>
2894
+ * <code>DUAL</code>
2895
+ * </p>
2896
+ * </li>
2897
+ * </ul>
2898
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster.
2899
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
2900
+ * protocols (<code>DUAL</code>).</p>
2901
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
2902
+ * Working with a DB instance in a VPC</a> in the
2903
+ * <i>Amazon Aurora User Guide.</i>
2904
+ * </p>
2905
+ * <p>Valid for: Aurora DB clusters only</p>
2906
+ */
2907
+ NetworkType?: string;
2883
2908
  }
2884
2909
  export interface ModifyDBClusterResult {
2885
2910
  /**
@@ -3067,17 +3092,13 @@ export interface ModifyDBInstanceMessage {
3067
3092
  */
3068
3093
  AllocatedStorage?: number;
3069
3094
  /**
3070
- * <p>The new compute and memory capacity of the DB instance, for example db.m5.large.
3071
- * Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.
3072
- * For the full list of DB instance classes, and availability for your engine, see
3073
- * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB instance
3074
- * classes</a> in the <i>Amazon RDS User Guide</i> or
3075
- * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html">Aurora
3076
- * DB instance classes</a> in the <i>Amazon Aurora User Guide</i>.</p>
3077
- * <p>If you modify the DB instance class, an outage occurs during the change.
3078
- * The change is applied during the next maintenance window,
3079
- * unless <code>ApplyImmediately</code> is enabled for this request.</p>
3080
- * <p>This setting doesn't apply to RDS Custom for Oracle.</p>
3095
+ * <p>The new compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all
3096
+ * Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB Instance Class</a> in the <i>Amazon
3097
+ * RDS User Guide</i>. For RDS Custom, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances">DB instance class support
3098
+ * for RDS Custom for Oracle</a> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS">DB instance class
3099
+ * support for RDS Custom for SQL Server</a>.</p>
3100
+ * <p>If you modify the DB instance class, an outage occurs during the change. The change is applied during the next maintenance window,
3101
+ * unless <code>ApplyImmediately</code> is enabled for this request. </p>
3081
3102
  * <p>Default: Uses existing setting</p>
3082
3103
  */
3083
3104
  DBInstanceClass?: string;
@@ -4991,6 +5012,30 @@ export interface RestoreDBClusterFromS3Message {
4991
5012
  * <i>Amazon Aurora User Guide</i>.</p>
4992
5013
  */
4993
5014
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
5015
+ /**
5016
+ * <p>The network type of the DB cluster.</p>
5017
+ * <p>Valid values:</p>
5018
+ * <ul>
5019
+ * <li>
5020
+ * <p>
5021
+ * <code>IPV4</code>
5022
+ * </p>
5023
+ * </li>
5024
+ * <li>
5025
+ * <p>
5026
+ * <code>DUAL</code>
5027
+ * </p>
5028
+ * </li>
5029
+ * </ul>
5030
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster.
5031
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
5032
+ * protocols (<code>DUAL</code>).</p>
5033
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
5034
+ * Working with a DB instance in a VPC</a> in the
5035
+ * <i>Amazon Aurora User Guide.</i>
5036
+ * </p>
5037
+ */
5038
+ NetworkType?: string;
4994
5039
  }
4995
5040
  export interface RestoreDBClusterFromS3Result {
4996
5041
  /**
@@ -5366,6 +5411,31 @@ export interface RestoreDBClusterFromSnapshotMessage {
5366
5411
  * <i>Amazon Aurora User Guide</i>.</p>
5367
5412
  */
5368
5413
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
5414
+ /**
5415
+ * <p>The network type of the DB cluster.</p>
5416
+ * <p>Valid values:</p>
5417
+ * <ul>
5418
+ * <li>
5419
+ * <p>
5420
+ * <code>IPV4</code>
5421
+ * </p>
5422
+ * </li>
5423
+ * <li>
5424
+ * <p>
5425
+ * <code>DUAL</code>
5426
+ * </p>
5427
+ * </li>
5428
+ * </ul>
5429
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster.
5430
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
5431
+ * protocols (<code>DUAL</code>).</p>
5432
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
5433
+ * Working with a DB instance in a VPC</a> in the
5434
+ * <i>Amazon Aurora User Guide.</i>
5435
+ * </p>
5436
+ * <p>Valid for: Aurora DB clusters only</p>
5437
+ */
5438
+ NetworkType?: string;
5369
5439
  }
5370
5440
  export interface RestoreDBClusterFromSnapshotResult {
5371
5441
  /**
@@ -5697,6 +5767,31 @@ export interface RestoreDBClusterToPointInTimeMessage {
5697
5767
  * <i>Amazon Aurora User Guide</i>.</p>
5698
5768
  */
5699
5769
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
5770
+ /**
5771
+ * <p>The network type of the DB cluster.</p>
5772
+ * <p>Valid values:</p>
5773
+ * <ul>
5774
+ * <li>
5775
+ * <p>
5776
+ * <code>IPV4</code>
5777
+ * </p>
5778
+ * </li>
5779
+ * <li>
5780
+ * <p>
5781
+ * <code>DUAL</code>
5782
+ * </p>
5783
+ * </li>
5784
+ * </ul>
5785
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster.
5786
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
5787
+ * protocols (<code>DUAL</code>).</p>
5788
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
5789
+ * Working with a DB instance in a VPC</a> in the
5790
+ * <i>Amazon Aurora User Guide.</i>
5791
+ * </p>
5792
+ * <p>Valid for: Aurora DB clusters only</p>
5793
+ */
5794
+ NetworkType?: string;
5700
5795
  }
5701
5796
  export interface RestoreDBClusterToPointInTimeResult {
5702
5797
  /**
@@ -1010,6 +1010,8 @@ export interface CreateDBClusterMessage {
1010
1010
  PerformanceInsightsRetentionPeriod?: number;
1011
1011
 
1012
1012
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1013
+
1014
+ NetworkType?: string;
1013
1015
  }
1014
1016
 
1015
1017
  export interface DBClusterRole {
@@ -1236,6 +1238,8 @@ export interface DBCluster {
1236
1238
  PerformanceInsightsRetentionPeriod?: number;
1237
1239
 
1238
1240
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
1241
+
1242
+ NetworkType?: string;
1239
1243
  }
1240
1244
  export interface CreateDBClusterResult {
1241
1245
 
@@ -877,6 +877,8 @@ export interface ModifyDBClusterMessage {
877
877
  PerformanceInsightsRetentionPeriod?: number;
878
878
 
879
879
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
880
+
881
+ NetworkType?: string;
880
882
  }
881
883
  export interface ModifyDBClusterResult {
882
884
 
@@ -1465,6 +1467,8 @@ export interface RestoreDBClusterFromS3Message {
1465
1467
  DomainIAMRoleName?: string;
1466
1468
 
1467
1469
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1470
+
1471
+ NetworkType?: string;
1468
1472
  }
1469
1473
  export interface RestoreDBClusterFromS3Result {
1470
1474
 
@@ -1540,6 +1544,8 @@ export interface RestoreDBClusterFromSnapshotMessage {
1540
1544
  PubliclyAccessible?: boolean;
1541
1545
 
1542
1546
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1547
+
1548
+ NetworkType?: string;
1543
1549
  }
1544
1550
  export interface RestoreDBClusterFromSnapshotResult {
1545
1551
 
@@ -1599,6 +1605,8 @@ export interface RestoreDBClusterToPointInTimeMessage {
1599
1605
  Iops?: number;
1600
1606
 
1601
1607
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1608
+
1609
+ NetworkType?: string;
1602
1610
  }
1603
1611
  export interface RestoreDBClusterToPointInTimeResult {
1604
1612
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds",
3
3
  "description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
4
- "version": "3.145.0",
4
+ "version": "3.152.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.145.0",
21
+ "@aws-sdk/client-sts": "3.150.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.145.0",
23
+ "@aws-sdk/credential-provider-node": "3.150.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",