@aws-sdk/client-rds 3.78.0 → 3.81.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.
@@ -5124,7 +5124,7 @@ export interface CreateDBInstanceMessage {
5124
5124
  * <p>
5125
5125
  * <b>Amazon RDS Custom for SQL Server</b>
5126
5126
  * </p>
5127
- * <p>See <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.reqsMS">RDS Custom for SQL Server general requirements</a>
5127
+ * <p>See <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html">RDS Custom for SQL Server general requirements</a>
5128
5128
  * in the <i>Amazon RDS User Guide</i>.</p>
5129
5129
  * <p>
5130
5130
  * <b>MariaDB</b>
@@ -5481,6 +5481,30 @@ export interface CreateDBInstanceMessage {
5481
5481
  * with Amazon RDS on Amazon Web Services Outposts</a> in the <i>Amazon RDS User Guide</i>.</p>
5482
5482
  */
5483
5483
  BackupTarget?: string;
5484
+ /**
5485
+ * <p>The network type of the DB instance.</p>
5486
+ * <p>Valid values:</p>
5487
+ * <ul>
5488
+ * <li>
5489
+ * <p>
5490
+ * <code>IPV4</code>
5491
+ * </p>
5492
+ * </li>
5493
+ * <li>
5494
+ * <p>
5495
+ * <code>DUAL</code>
5496
+ * </p>
5497
+ * </li>
5498
+ * </ul>
5499
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
5500
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
5501
+ * protocols (<code>DUAL</code>).</p>
5502
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
5503
+ * Working with a DB instance in a VPC</a> in the
5504
+ * <i>Amazon RDS User Guide.</i>
5505
+ * </p>
5506
+ */
5507
+ NetworkType?: string;
5484
5508
  }
5485
5509
  export declare namespace CreateDBInstanceMessage {
5486
5510
  /**
@@ -5698,6 +5722,29 @@ export interface DBSubnetGroup {
5698
5722
  * <p>The Amazon Resource Name (ARN) for the DB subnet group.</p>
5699
5723
  */
5700
5724
  DBSubnetGroupArn?: string;
5725
+ /**
5726
+ * <p>The network type of the DB subnet group.</p>
5727
+ * <p>Valid values:</p>
5728
+ * <ul>
5729
+ * <li>
5730
+ * <p>
5731
+ * <code>IPV4</code>
5732
+ * </p>
5733
+ * </li>
5734
+ * <li>
5735
+ * <p>
5736
+ * <code>DUAL</code>
5737
+ * </p>
5738
+ * </li>
5739
+ * </ul>
5740
+ * <p>A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
5741
+ * protocols (<code>DUAL</code>).</p>
5742
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
5743
+ * Working with a DB instance in a VPC</a> in the
5744
+ * <i>Amazon RDS User Guide.</i>
5745
+ * </p>
5746
+ */
5747
+ SupportedNetworkTypes?: string[];
5701
5748
  }
5702
5749
  export declare namespace DBSubnetGroup {
5703
5750
  /**
@@ -6315,6 +6362,33 @@ export interface DBInstance {
6315
6362
  * <p>Specifies where automated backups and manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services Region.</p>
6316
6363
  */
6317
6364
  BackupTarget?: string;
6365
+ /**
6366
+ * <p>The network type of the DB instance.</p>
6367
+ * <p>Valid values:</p>
6368
+ * <ul>
6369
+ * <li>
6370
+ * <p>
6371
+ * <code>IPV4</code>
6372
+ * </p>
6373
+ * </li>
6374
+ * <li>
6375
+ * <p>
6376
+ * <code>DUAL</code>
6377
+ * </p>
6378
+ * </li>
6379
+ * </ul>
6380
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
6381
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
6382
+ * protocols (<code>DUAL</code>).</p>
6383
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
6384
+ * Working with a DB instance in a VPC</a> in the
6385
+ * <i>Amazon RDS User Guide</i> and
6386
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
6387
+ * Working with a DB instance in a VPC</a> in the
6388
+ * <i>Amazon Aurora User Guide.</i>
6389
+ * </p>
6390
+ */
6391
+ NetworkType?: string;
6318
6392
  }
6319
6393
  export declare namespace DBInstance {
6320
6394
  /**
@@ -6374,6 +6448,17 @@ export declare class InsufficientDBInstanceCapacityFault extends __BaseException
6374
6448
  */
6375
6449
  constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
6376
6450
  }
6451
+ /**
6452
+ * <p>The network type is invalid for the DB instance. Valid nework type values are <code>IPV4</code> and <code>DUAL</code>.</p>
6453
+ */
6454
+ export declare class NetworkTypeNotSupported extends __BaseException {
6455
+ readonly name: "NetworkTypeNotSupported";
6456
+ readonly $fault: "client";
6457
+ /**
6458
+ * @internal
6459
+ */
6460
+ constructor(opts: __ExceptionOptionType<NetworkTypeNotSupported, __BaseException>);
6461
+ }
6377
6462
  /**
6378
6463
  * <p>Provisioned IOPS not available in the specified Availability Zone.</p>
6379
6464
  */
@@ -6800,6 +6885,30 @@ export interface CreateDBInstanceReadReplicaMessage {
6800
6885
  * <p>This setting is required for RDS Custom.</p>
6801
6886
  */
6802
6887
  CustomIamInstanceProfile?: string;
6888
+ /**
6889
+ * <p>The network type of the DB instance.</p>
6890
+ * <p>Valid values:</p>
6891
+ * <ul>
6892
+ * <li>
6893
+ * <p>
6894
+ * <code>IPV4</code>
6895
+ * </p>
6896
+ * </li>
6897
+ * <li>
6898
+ * <p>
6899
+ * <code>DUAL</code>
6900
+ * </p>
6901
+ * </li>
6902
+ * </ul>
6903
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for read replica.
6904
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
6905
+ * protocols (<code>DUAL</code>).</p>
6906
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
6907
+ * Working with a DB instance in a VPC</a> in the
6908
+ * <i>Amazon RDS User Guide.</i>
6909
+ * </p>
6910
+ */
6911
+ NetworkType?: string;
6803
6912
  }
6804
6913
  export declare namespace CreateDBInstanceReadReplicaMessage {
6805
6914
  /**
@@ -11060,26 +11169,3 @@ export declare namespace DBSnapshotAttribute {
11060
11169
  */
11061
11170
  const filterSensitiveLog: (obj: DBSnapshotAttribute) => any;
11062
11171
  }
11063
- /**
11064
- * <p>Contains the results of a successful call to the <code>DescribeDBSnapshotAttributes</code>
11065
- * API action.</p>
11066
- * <p>Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts
11067
- * to copy or restore a manual DB snapshot. For more information, see the <code>ModifyDBSnapshotAttribute</code>
11068
- * API action.</p>
11069
- */
11070
- export interface DBSnapshotAttributesResult {
11071
- /**
11072
- * <p>The identifier of the manual DB snapshot that the attributes apply to.</p>
11073
- */
11074
- DBSnapshotIdentifier?: string;
11075
- /**
11076
- * <p>The list of attributes and values for the manual DB snapshot.</p>
11077
- */
11078
- DBSnapshotAttributes?: DBSnapshotAttribute[];
11079
- }
11080
- export declare namespace DBSnapshotAttributesResult {
11081
- /**
11082
- * @internal
11083
- */
11084
- const filterSensitiveLog: (obj: DBSnapshotAttributesResult) => any;
11085
- }
@@ -1,6 +1,29 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ActivityStreamMode, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot, DBSnapshotAttributesResult, DBSubnetGroup, EventSubscription, ExportTask, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
2
+ import { ActivityStreamMode, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot, DBSnapshotAttribute, DBSubnetGroup, EventSubscription, ExportTask, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
3
3
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
4
+ /**
5
+ * <p>Contains the results of a successful call to the <code>DescribeDBSnapshotAttributes</code>
6
+ * API action.</p>
7
+ * <p>Manual DB snapshot attributes are used to authorize other Amazon Web Services accounts
8
+ * to copy or restore a manual DB snapshot. For more information, see the <code>ModifyDBSnapshotAttribute</code>
9
+ * API action.</p>
10
+ */
11
+ export interface DBSnapshotAttributesResult {
12
+ /**
13
+ * <p>The identifier of the manual DB snapshot that the attributes apply to.</p>
14
+ */
15
+ DBSnapshotIdentifier?: string;
16
+ /**
17
+ * <p>The list of attributes and values for the manual DB snapshot.</p>
18
+ */
19
+ DBSnapshotAttributes?: DBSnapshotAttribute[];
20
+ }
21
+ export declare namespace DBSnapshotAttributesResult {
22
+ /**
23
+ * @internal
24
+ */
25
+ const filterSensitiveLog: (obj: DBSnapshotAttributesResult) => any;
26
+ }
4
27
  export interface DescribeDBSnapshotAttributesResult {
5
28
  /**
6
29
  * <p>Contains the results of a successful call to the <code>DescribeDBSnapshotAttributes</code>
@@ -1681,6 +1704,16 @@ export interface OrderableDBInstanceOption {
1681
1704
  * </p>
1682
1705
  */
1683
1706
  SupportsClusters?: boolean;
1707
+ /**
1708
+ * <p>The network types supported by the DB instance (<code>IPV4</code> or <code>DUAL</code>).</p>
1709
+ * <p>A DB instance can support only the IPv4 protocol or the IPv4 and the IPv6
1710
+ * protocols (<code>DUAL</code>).</p>
1711
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
1712
+ * Working with a DB instance in a VPC</a> in the
1713
+ * <i>Amazon RDS User Guide.</i>
1714
+ * </p>
1715
+ */
1716
+ SupportedNetworkTypes?: string[];
1684
1717
  }
1685
1718
  export declare namespace OrderableDBInstanceOption {
1686
1719
  /**
@@ -4002,6 +4035,30 @@ export interface ModifyDBInstanceMessage {
4002
4035
  * full automation. The minimum value is <code>60</code> (default). The maximum value is <code>1,440</code>.</p>
4003
4036
  */
4004
4037
  ResumeFullAutomationModeMinutes?: number;
4038
+ /**
4039
+ * <p>The network type of the DB instance.</p>
4040
+ * <p>Valid values:</p>
4041
+ * <ul>
4042
+ * <li>
4043
+ * <p>
4044
+ * <code>IPV4</code>
4045
+ * </p>
4046
+ * </li>
4047
+ * <li>
4048
+ * <p>
4049
+ * <code>DUAL</code>
4050
+ * </p>
4051
+ * </li>
4052
+ * </ul>
4053
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
4054
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
4055
+ * protocols (<code>DUAL</code>).</p>
4056
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
4057
+ * Working with a DB instance in a VPC</a> in the
4058
+ * <i>Amazon RDS User Guide.</i>
4059
+ * </p>
4060
+ */
4061
+ NetworkType?: string;
4005
4062
  }
4006
4063
  export declare namespace ModifyDBInstanceMessage {
4007
4064
  /**
@@ -6642,6 +6699,30 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
6642
6699
  * with Amazon RDS on Amazon Web Services Outposts</a> in the <i>Amazon RDS User Guide</i>.</p>
6643
6700
  */
6644
6701
  BackupTarget?: string;
6702
+ /**
6703
+ * <p>The network type of the DB instance.</p>
6704
+ * <p>Valid values:</p>
6705
+ * <ul>
6706
+ * <li>
6707
+ * <p>
6708
+ * <code>IPV4</code>
6709
+ * </p>
6710
+ * </li>
6711
+ * <li>
6712
+ * <p>
6713
+ * <code>DUAL</code>
6714
+ * </p>
6715
+ * </li>
6716
+ * </ul>
6717
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
6718
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
6719
+ * protocols (<code>DUAL</code>).</p>
6720
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
6721
+ * Working with a DB instance in a VPC</a> in the
6722
+ * <i>Amazon RDS User Guide.</i>
6723
+ * </p>
6724
+ */
6725
+ NetworkType?: string;
6645
6726
  }
6646
6727
  export declare namespace RestoreDBInstanceFromDBSnapshotMessage {
6647
6728
  /**
@@ -7026,6 +7107,30 @@ export interface RestoreDBInstanceFromS3Message {
7026
7107
  * in the <i>Amazon RDS User Guide</i>.</p>
7027
7108
  */
7028
7109
  MaxAllocatedStorage?: number;
7110
+ /**
7111
+ * <p>The network type of the DB instance.</p>
7112
+ * <p>Valid values:</p>
7113
+ * <ul>
7114
+ * <li>
7115
+ * <p>
7116
+ * <code>IPV4</code>
7117
+ * </p>
7118
+ * </li>
7119
+ * <li>
7120
+ * <p>
7121
+ * <code>DUAL</code>
7122
+ * </p>
7123
+ * </li>
7124
+ * </ul>
7125
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
7126
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
7127
+ * protocols (<code>DUAL</code>).</p>
7128
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
7129
+ * Working with a DB instance in a VPC</a> in the
7130
+ * <i>Amazon RDS User Guide.</i>
7131
+ * </p>
7132
+ */
7133
+ NetworkType?: string;
7029
7134
  }
7030
7135
  export declare namespace RestoreDBInstanceFromS3Message {
7031
7136
  /**
@@ -7436,6 +7541,30 @@ export interface RestoreDBInstanceToPointInTimeMessage {
7436
7541
  * with Amazon RDS on Amazon Web Services Outposts</a> in the <i>Amazon RDS User Guide</i>.</p>
7437
7542
  */
7438
7543
  BackupTarget?: string;
7544
+ /**
7545
+ * <p>The network type of the DB instance.</p>
7546
+ * <p>Valid values:</p>
7547
+ * <ul>
7548
+ * <li>
7549
+ * <p>
7550
+ * <code>IPV4</code>
7551
+ * </p>
7552
+ * </li>
7553
+ * <li>
7554
+ * <p>
7555
+ * <code>DUAL</code>
7556
+ * </p>
7557
+ * </li>
7558
+ * </ul>
7559
+ * <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB instance.
7560
+ * A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6
7561
+ * protocols (<code>DUAL</code>).</p>
7562
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html">
7563
+ * Working with a DB instance in a VPC</a> in the
7564
+ * <i>Amazon RDS User Guide.</i>
7565
+ * </p>
7566
+ */
7567
+ NetworkType?: string;
7439
7568
  }
7440
7569
  export declare namespace RestoreDBInstanceToPointInTimeMessage {
7441
7570
  /**
@@ -1784,6 +1784,8 @@ export interface CreateDBInstanceMessage {
1784
1784
  CustomIamInstanceProfile?: string;
1785
1785
 
1786
1786
  BackupTarget?: string;
1787
+
1788
+ NetworkType?: string;
1787
1789
  }
1788
1790
  export declare namespace CreateDBInstanceMessage {
1789
1791
 
@@ -1873,6 +1875,8 @@ export interface DBSubnetGroup {
1873
1875
  Subnets?: Subnet[];
1874
1876
 
1875
1877
  DBSubnetGroupArn?: string;
1878
+
1879
+ SupportedNetworkTypes?: string[];
1876
1880
  }
1877
1881
  export declare namespace DBSubnetGroup {
1878
1882
 
@@ -2114,6 +2118,8 @@ export interface DBInstance {
2114
2118
  CustomIamInstanceProfile?: string;
2115
2119
 
2116
2120
  BackupTarget?: string;
2121
+
2122
+ NetworkType?: string;
2117
2123
  }
2118
2124
  export declare namespace DBInstance {
2119
2125
 
@@ -2149,6 +2155,13 @@ export declare class InsufficientDBInstanceCapacityFault extends __BaseException
2149
2155
  constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
2150
2156
  }
2151
2157
 
2158
+ export declare class NetworkTypeNotSupported extends __BaseException {
2159
+ readonly name: "NetworkTypeNotSupported";
2160
+ readonly $fault: "client";
2161
+
2162
+ constructor(opts: __ExceptionOptionType<NetworkTypeNotSupported, __BaseException>);
2163
+ }
2164
+
2152
2165
  export declare class ProvisionedIopsNotAvailableInAZFault extends __BaseException {
2153
2166
  readonly name: "ProvisionedIopsNotAvailableInAZFault";
2154
2167
  readonly $fault: "client";
@@ -2229,6 +2242,8 @@ export interface CreateDBInstanceReadReplicaMessage {
2229
2242
  MaxAllocatedStorage?: number;
2230
2243
 
2231
2244
  CustomIamInstanceProfile?: string;
2245
+
2246
+ NetworkType?: string;
2232
2247
  }
2233
2248
  export declare namespace CreateDBInstanceReadReplicaMessage {
2234
2249
 
@@ -3987,14 +4002,3 @@ export declare namespace DBSnapshotAttribute {
3987
4002
 
3988
4003
  const filterSensitiveLog: (obj: DBSnapshotAttribute) => any;
3989
4004
  }
3990
-
3991
- export interface DBSnapshotAttributesResult {
3992
-
3993
- DBSnapshotIdentifier?: string;
3994
-
3995
- DBSnapshotAttributes?: DBSnapshotAttribute[];
3996
- }
3997
- export declare namespace DBSnapshotAttributesResult {
3998
-
3999
- const filterSensitiveLog: (obj: DBSnapshotAttributesResult) => any;
4000
- }
@@ -1,6 +1,17 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ActivityStreamMode, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot, DBSnapshotAttributesResult, DBSubnetGroup, EventSubscription, ExportTask, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
2
+ import { ActivityStreamMode, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot, DBSnapshotAttribute, DBSubnetGroup, EventSubscription, ExportTask, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
3
3
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
4
+
5
+ export interface DBSnapshotAttributesResult {
6
+
7
+ DBSnapshotIdentifier?: string;
8
+
9
+ DBSnapshotAttributes?: DBSnapshotAttribute[];
10
+ }
11
+ export declare namespace DBSnapshotAttributesResult {
12
+
13
+ const filterSensitiveLog: (obj: DBSnapshotAttributesResult) => any;
14
+ }
4
15
  export interface DescribeDBSnapshotAttributesResult {
5
16
 
6
17
  DBSnapshotAttributesResult?: DBSnapshotAttributesResult;
@@ -533,6 +544,8 @@ export interface OrderableDBInstanceOption {
533
544
  SupportsGlobalDatabases?: boolean;
534
545
 
535
546
  SupportsClusters?: boolean;
547
+
548
+ SupportedNetworkTypes?: string[];
536
549
  }
537
550
  export declare namespace OrderableDBInstanceOption {
538
551
 
@@ -1281,6 +1294,8 @@ export interface ModifyDBInstanceMessage {
1281
1294
  AutomationMode?: AutomationMode | string;
1282
1295
 
1283
1296
  ResumeFullAutomationModeMinutes?: number;
1297
+
1298
+ NetworkType?: string;
1284
1299
  }
1285
1300
  export declare namespace ModifyDBInstanceMessage {
1286
1301
 
@@ -2122,6 +2137,8 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
2122
2137
  CustomIamInstanceProfile?: string;
2123
2138
 
2124
2139
  BackupTarget?: string;
2140
+
2141
+ NetworkType?: string;
2125
2142
  }
2126
2143
  export declare namespace RestoreDBInstanceFromDBSnapshotMessage {
2127
2144
 
@@ -2224,6 +2241,8 @@ export interface RestoreDBInstanceFromS3Message {
2224
2241
  DeletionProtection?: boolean;
2225
2242
 
2226
2243
  MaxAllocatedStorage?: number;
2244
+
2245
+ NetworkType?: string;
2227
2246
  }
2228
2247
  export declare namespace RestoreDBInstanceFromS3Message {
2229
2248
 
@@ -2318,6 +2337,8 @@ export interface RestoreDBInstanceToPointInTimeMessage {
2318
2337
  CustomIamInstanceProfile?: string;
2319
2338
 
2320
2339
  BackupTarget?: string;
2340
+
2341
+ NetworkType?: string;
2321
2342
  }
2322
2343
  export declare namespace RestoreDBInstanceToPointInTimeMessage {
2323
2344
 
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.78.0",
4
+ "version": "3.81.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,22 +18,22 @@
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.78.0",
22
- "@aws-sdk/config-resolver": "3.78.0",
23
- "@aws-sdk/credential-provider-node": "3.78.0",
21
+ "@aws-sdk/client-sts": "3.81.0",
22
+ "@aws-sdk/config-resolver": "3.80.0",
23
+ "@aws-sdk/credential-provider-node": "3.81.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.78.0",
30
+ "@aws-sdk/middleware-retry": "3.80.0",
31
31
  "@aws-sdk/middleware-sdk-rds": "3.78.0",
32
32
  "@aws-sdk/middleware-serde": "3.78.0",
33
33
  "@aws-sdk/middleware-signing": "3.78.0",
34
34
  "@aws-sdk/middleware-stack": "3.78.0",
35
35
  "@aws-sdk/middleware-user-agent": "3.78.0",
36
- "@aws-sdk/node-config-provider": "3.78.0",
36
+ "@aws-sdk/node-config-provider": "3.80.0",
37
37
  "@aws-sdk/node-http-handler": "3.78.0",
38
38
  "@aws-sdk/protocol-http": "3.78.0",
39
39
  "@aws-sdk/smithy-client": "3.78.0",
@@ -44,9 +44,9 @@
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
46
  "@aws-sdk/util-defaults-mode-browser": "3.78.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.78.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.81.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.78.0",
49
- "@aws-sdk/util-user-agent-node": "3.78.0",
49
+ "@aws-sdk/util-user-agent-node": "3.80.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.55.0",
51
51
  "@aws-sdk/util-utf8-node": "3.55.0",
52
52
  "@aws-sdk/util-waiter": "3.78.0",