@aws-sdk/client-rds 3.53.0 → 3.54.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 +11 -0
- package/dist-types/RDS.d.ts +1 -56
- package/dist-types/RDSClient.d.ts +2 -2
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +0 -3
- package/dist-types/commands/CreateDBClusterCommand.d.ts +0 -3
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +0 -3
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +0 -3
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +0 -3
- package/dist-types/commands/DeleteDBClusterParameterGroupCommand.d.ts +0 -3
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +0 -3
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +0 -3
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +0 -3
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +0 -3
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +0 -3
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +0 -3
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +0 -3
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +0 -3
- package/dist-types/commands/RebootDBClusterCommand.d.ts +1 -2
- package/dist-types/commands/RemoveRoleFromDBClusterCommand.d.ts +0 -3
- package/dist-types/commands/ResetDBClusterParameterGroupCommand.d.ts +0 -3
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +0 -3
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +0 -3
- package/dist-types/models/models_0.d.ts +14 -13
- package/dist-types/models/models_1.d.ts +75 -40
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RDSClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +29 -29
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
18
|
|
|
8
19
|
|
package/dist-types/RDS.d.ts
CHANGED
|
@@ -358,9 +358,6 @@ export declare class RDS extends RDSClient {
|
|
|
358
358
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
359
359
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
360
360
|
* </p>
|
|
361
|
-
* <note>
|
|
362
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
363
|
-
* </note>
|
|
364
361
|
*/
|
|
365
362
|
copyDBClusterSnapshot(args: CopyDBClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CopyDBClusterSnapshotCommandOutput>;
|
|
366
363
|
copyDBClusterSnapshot(args: CopyDBClusterSnapshotCommandInput, cb: (err: any, data?: CopyDBClusterSnapshotCommandOutput) => void): void;
|
|
@@ -455,9 +452,6 @@ export declare class RDS extends RDSClient {
|
|
|
455
452
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
456
453
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
457
454
|
* </p>
|
|
458
|
-
* <note>
|
|
459
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
460
|
-
* </note>
|
|
461
455
|
*/
|
|
462
456
|
createDBCluster(args: CreateDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateDBClusterCommandOutput>;
|
|
463
457
|
createDBCluster(args: CreateDBClusterCommandInput, cb: (err: any, data?: CreateDBClusterCommandOutput) => void): void;
|
|
@@ -507,9 +501,6 @@ export declare class RDS extends RDSClient {
|
|
|
507
501
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
508
502
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
509
503
|
* </p>
|
|
510
|
-
* <note>
|
|
511
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
512
|
-
* </note>
|
|
513
504
|
*/
|
|
514
505
|
createDBClusterParameterGroup(args: CreateDBClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateDBClusterParameterGroupCommandOutput>;
|
|
515
506
|
createDBClusterParameterGroup(args: CreateDBClusterParameterGroupCommandInput, cb: (err: any, data?: CreateDBClusterParameterGroupCommandOutput) => void): void;
|
|
@@ -523,9 +514,6 @@ export declare class RDS extends RDSClient {
|
|
|
523
514
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
524
515
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
525
516
|
* </p>
|
|
526
|
-
* <note>
|
|
527
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
528
|
-
* </note>
|
|
529
517
|
*/
|
|
530
518
|
createDBClusterSnapshot(args: CreateDBClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateDBClusterSnapshotCommandOutput>;
|
|
531
519
|
createDBClusterSnapshot(args: CreateDBClusterSnapshotCommandInput, cb: (err: any, data?: CreateDBClusterSnapshotCommandOutput) => void): void;
|
|
@@ -728,9 +716,6 @@ export declare class RDS extends RDSClient {
|
|
|
728
716
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
729
717
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
730
718
|
* </p>
|
|
731
|
-
* <note>
|
|
732
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
733
|
-
* </note>
|
|
734
719
|
*/
|
|
735
720
|
deleteDBCluster(args: DeleteDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDBClusterCommandOutput>;
|
|
736
721
|
deleteDBCluster(args: DeleteDBClusterCommandInput, cb: (err: any, data?: DeleteDBClusterCommandOutput) => void): void;
|
|
@@ -754,9 +739,6 @@ export declare class RDS extends RDSClient {
|
|
|
754
739
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
755
740
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
756
741
|
* </p>
|
|
757
|
-
* <note>
|
|
758
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
759
|
-
* </note>
|
|
760
742
|
*/
|
|
761
743
|
deleteDBClusterParameterGroup(args: DeleteDBClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDBClusterParameterGroupCommandOutput>;
|
|
762
744
|
deleteDBClusterParameterGroup(args: DeleteDBClusterParameterGroupCommandInput, cb: (err: any, data?: DeleteDBClusterParameterGroupCommandOutput) => void): void;
|
|
@@ -775,9 +757,6 @@ export declare class RDS extends RDSClient {
|
|
|
775
757
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
776
758
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
777
759
|
* </p>
|
|
778
|
-
* <note>
|
|
779
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
780
|
-
* </note>
|
|
781
760
|
*/
|
|
782
761
|
deleteDBClusterSnapshot(args: DeleteDBClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDBClusterSnapshotCommandOutput>;
|
|
783
762
|
deleteDBClusterSnapshot(args: DeleteDBClusterSnapshotCommandInput, cb: (err: any, data?: DeleteDBClusterSnapshotCommandOutput) => void): void;
|
|
@@ -964,9 +943,6 @@ export declare class RDS extends RDSClient {
|
|
|
964
943
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
965
944
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
966
945
|
* </p>
|
|
967
|
-
* <note>
|
|
968
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
969
|
-
* </note>
|
|
970
946
|
*/
|
|
971
947
|
describeDBClusterParameterGroups(args: DescribeDBClusterParameterGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDBClusterParameterGroupsCommandOutput>;
|
|
972
948
|
describeDBClusterParameterGroups(args: DescribeDBClusterParameterGroupsCommandInput, cb: (err: any, data?: DescribeDBClusterParameterGroupsCommandOutput) => void): void;
|
|
@@ -981,9 +957,6 @@ export declare class RDS extends RDSClient {
|
|
|
981
957
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
982
958
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
983
959
|
* </p>
|
|
984
|
-
* <note>
|
|
985
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
986
|
-
* </note>
|
|
987
960
|
*/
|
|
988
961
|
describeDBClusterParameters(args: DescribeDBClusterParametersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDBClusterParametersCommandOutput>;
|
|
989
962
|
describeDBClusterParameters(args: DescribeDBClusterParametersCommandInput, cb: (err: any, data?: DescribeDBClusterParametersCommandOutput) => void): void;
|
|
@@ -998,9 +971,6 @@ export declare class RDS extends RDSClient {
|
|
|
998
971
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
999
972
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1000
973
|
* </p>
|
|
1001
|
-
* <note>
|
|
1002
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1003
|
-
* </note>
|
|
1004
974
|
* <p>This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.</p>
|
|
1005
975
|
*/
|
|
1006
976
|
describeDBClusters(args: DescribeDBClustersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDBClustersCommandOutput>;
|
|
@@ -1029,9 +999,6 @@ export declare class RDS extends RDSClient {
|
|
|
1029
999
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1030
1000
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1031
1001
|
* </p>
|
|
1032
|
-
* <note>
|
|
1033
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1034
|
-
* </note>
|
|
1035
1002
|
*/
|
|
1036
1003
|
describeDBClusterSnapshots(args: DescribeDBClusterSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDBClusterSnapshotsCommandOutput>;
|
|
1037
1004
|
describeDBClusterSnapshots(args: DescribeDBClusterSnapshotsCommandInput, cb: (err: any, data?: DescribeDBClusterSnapshotsCommandOutput) => void): void;
|
|
@@ -1302,9 +1269,6 @@ export declare class RDS extends RDSClient {
|
|
|
1302
1269
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1303
1270
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1304
1271
|
* </p>
|
|
1305
|
-
* <note>
|
|
1306
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1307
|
-
* </note>
|
|
1308
1272
|
*/
|
|
1309
1273
|
failoverDBCluster(args: FailoverDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<FailoverDBClusterCommandOutput>;
|
|
1310
1274
|
failoverDBCluster(args: FailoverDBClusterCommandInput, cb: (err: any, data?: FailoverDBClusterCommandOutput) => void): void;
|
|
@@ -1426,9 +1390,6 @@ export declare class RDS extends RDSClient {
|
|
|
1426
1390
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1427
1391
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1428
1392
|
* </p>
|
|
1429
|
-
* <note>
|
|
1430
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1431
|
-
* </note>
|
|
1432
1393
|
*/
|
|
1433
1394
|
modifyDBCluster(args: ModifyDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<ModifyDBClusterCommandOutput>;
|
|
1434
1395
|
modifyDBCluster(args: ModifyDBClusterCommandInput, cb: (err: any, data?: ModifyDBClusterCommandOutput) => void): void;
|
|
@@ -1472,9 +1433,6 @@ export declare class RDS extends RDSClient {
|
|
|
1472
1433
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1473
1434
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1474
1435
|
* </p>
|
|
1475
|
-
* <note>
|
|
1476
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1477
|
-
* </note>
|
|
1478
1436
|
*/
|
|
1479
1437
|
modifyDBClusterParameterGroup(args: ModifyDBClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyDBClusterParameterGroupCommandOutput>;
|
|
1480
1438
|
modifyDBClusterParameterGroup(args: ModifyDBClusterParameterGroupCommandInput, cb: (err: any, data?: ModifyDBClusterParameterGroupCommandOutput) => void): void;
|
|
@@ -1671,8 +1629,7 @@ export declare class RDS extends RDSClient {
|
|
|
1671
1629
|
* cluster results in a momentary outage, during which the DB cluster status is set to rebooting.
|
|
1672
1630
|
* </p>
|
|
1673
1631
|
*
|
|
1674
|
-
* <p>Use this operation only for a non-Aurora Multi-AZ DB cluster
|
|
1675
|
-
* The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1632
|
+
* <p>Use this operation only for a non-Aurora Multi-AZ DB cluster.</p>
|
|
1676
1633
|
*
|
|
1677
1634
|
* <p>For more information on Multi-AZ DB clusters, see
|
|
1678
1635
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
@@ -1732,9 +1689,6 @@ export declare class RDS extends RDSClient {
|
|
|
1732
1689
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1733
1690
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1734
1691
|
* </p>
|
|
1735
|
-
* <note>
|
|
1736
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1737
|
-
* </note>
|
|
1738
1692
|
*/
|
|
1739
1693
|
removeRoleFromDBCluster(args: RemoveRoleFromDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<RemoveRoleFromDBClusterCommandOutput>;
|
|
1740
1694
|
removeRoleFromDBCluster(args: RemoveRoleFromDBClusterCommandInput, cb: (err: any, data?: RemoveRoleFromDBClusterCommandOutput) => void): void;
|
|
@@ -1782,9 +1736,6 @@ export declare class RDS extends RDSClient {
|
|
|
1782
1736
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1783
1737
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1784
1738
|
* </p>
|
|
1785
|
-
* <note>
|
|
1786
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1787
|
-
* </note>
|
|
1788
1739
|
*/
|
|
1789
1740
|
resetDBClusterParameterGroup(args: ResetDBClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<ResetDBClusterParameterGroupCommandOutput>;
|
|
1790
1741
|
resetDBClusterParameterGroup(args: ResetDBClusterParameterGroupCommandInput, cb: (err: any, data?: ResetDBClusterParameterGroupCommandOutput) => void): void;
|
|
@@ -1848,9 +1799,6 @@ export declare class RDS extends RDSClient {
|
|
|
1848
1799
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1849
1800
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1850
1801
|
* </p>
|
|
1851
|
-
* <note>
|
|
1852
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1853
|
-
* </note>
|
|
1854
1802
|
*/
|
|
1855
1803
|
restoreDBClusterFromSnapshot(args: RestoreDBClusterFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreDBClusterFromSnapshotCommandOutput>;
|
|
1856
1804
|
restoreDBClusterFromSnapshot(args: RestoreDBClusterFromSnapshotCommandInput, cb: (err: any, data?: RestoreDBClusterFromSnapshotCommandOutput) => void): void;
|
|
@@ -1877,9 +1825,6 @@ export declare class RDS extends RDSClient {
|
|
|
1877
1825
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1878
1826
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
1879
1827
|
* </p>
|
|
1880
|
-
* <note>
|
|
1881
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1882
|
-
* </note>
|
|
1883
1828
|
*/
|
|
1884
1829
|
restoreDBClusterToPointInTime(args: RestoreDBClusterToPointInTimeCommandInput, options?: __HttpHandlerOptions): Promise<RestoreDBClusterToPointInTimeCommandOutput>;
|
|
1885
1830
|
restoreDBClusterToPointInTime(args: RestoreDBClusterToPointInTimeCommandInput, cb: (err: any, data?: RestoreDBClusterToPointInTimeCommandOutput) => void): void;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddRoleToDBClusterCommandInput, AddRoleToDBClusterCommandOutput } from "./commands/AddRoleToDBClusterCommand";
|
|
10
10
|
import { AddRoleToDBInstanceCommandInput, AddRoleToDBInstanceCommandOutput } from "./commands/AddRoleToDBInstanceCommand";
|
|
11
11
|
import { AddSourceIdentifierToSubscriptionCommandInput, AddSourceIdentifierToSubscriptionCommandOutput } from "./commands/AddSourceIdentifierToSubscriptionCommand";
|
|
@@ -169,7 +169,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
169
169
|
* A function that can calculate the length of a request body.
|
|
170
170
|
* @internal
|
|
171
171
|
*/
|
|
172
|
-
bodyLengthChecker?:
|
|
172
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
173
173
|
/**
|
|
174
174
|
* A function that converts a stream into an array of bytes.
|
|
175
175
|
* @internal
|
|
@@ -82,9 +82,6 @@ export interface CopyDBClusterSnapshotCommandOutput extends CopyDBClusterSnapsho
|
|
|
82
82
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
83
83
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
84
84
|
* </p>
|
|
85
|
-
* <note>
|
|
86
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
87
|
-
* </note>
|
|
88
85
|
* @example
|
|
89
86
|
* Use a bare-bones client and the command you need to make an API call.
|
|
90
87
|
* ```javascript
|
|
@@ -21,9 +21,6 @@ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __M
|
|
|
21
21
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
22
22
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
23
23
|
* </p>
|
|
24
|
-
* <note>
|
|
25
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
26
|
-
* </note>
|
|
27
24
|
* @example
|
|
28
25
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
26
|
* ```javascript
|
|
@@ -42,9 +42,6 @@ export interface CreateDBClusterParameterGroupCommandOutput extends CreateDBClus
|
|
|
42
42
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
43
43
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
44
44
|
* </p>
|
|
45
|
-
* <note>
|
|
46
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
47
|
-
* </note>
|
|
48
45
|
* @example
|
|
49
46
|
* Use a bare-bones client and the command you need to make an API call.
|
|
50
47
|
* ```javascript
|
|
@@ -15,9 +15,6 @@ export interface CreateDBClusterSnapshotCommandOutput extends CreateDBClusterSna
|
|
|
15
15
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
16
16
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
17
17
|
* </p>
|
|
18
|
-
* <note>
|
|
19
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
20
|
-
* </note>
|
|
21
18
|
* @example
|
|
22
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
23
20
|
* ```javascript
|
|
@@ -18,9 +18,6 @@ export interface DeleteDBClusterCommandOutput extends DeleteDBClusterResult, __M
|
|
|
18
18
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
19
19
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
20
20
|
* </p>
|
|
21
|
-
* <note>
|
|
22
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
23
|
-
* </note>
|
|
24
21
|
* @example
|
|
25
22
|
* Use a bare-bones client and the command you need to make an API call.
|
|
26
23
|
* ```javascript
|
|
@@ -16,9 +16,6 @@ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBe
|
|
|
16
16
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
17
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
18
18
|
* </p>
|
|
19
|
-
* <note>
|
|
20
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
21
|
-
* </note>
|
|
22
19
|
* @example
|
|
23
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
24
21
|
* ```javascript
|
|
@@ -20,9 +20,6 @@ export interface DeleteDBClusterSnapshotCommandOutput extends DeleteDBClusterSna
|
|
|
20
20
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
21
21
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
22
22
|
* </p>
|
|
23
|
-
* <note>
|
|
24
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
25
|
-
* </note>
|
|
26
23
|
* @example
|
|
27
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
28
25
|
* ```javascript
|
|
@@ -20,9 +20,6 @@ export interface DescribeDBClusterParameterGroupsCommandOutput extends DBCluster
|
|
|
20
20
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
21
21
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
22
22
|
* </p>
|
|
23
|
-
* <note>
|
|
24
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
25
|
-
* </note>
|
|
26
23
|
* @example
|
|
27
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
28
25
|
* ```javascript
|
|
@@ -16,9 +16,6 @@ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParam
|
|
|
16
16
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
17
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
18
18
|
* </p>
|
|
19
|
-
* <note>
|
|
20
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
21
|
-
* </note>
|
|
22
19
|
* @example
|
|
23
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
24
21
|
* ```javascript
|
|
@@ -16,9 +16,6 @@ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapsh
|
|
|
16
16
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
17
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
18
18
|
* </p>
|
|
19
|
-
* <note>
|
|
20
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
21
|
-
* </note>
|
|
22
19
|
* @example
|
|
23
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
24
21
|
* ```javascript
|
|
@@ -16,9 +16,6 @@ export interface DescribeDBClustersCommandOutput extends DBClusterMessage, __Met
|
|
|
16
16
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
17
17
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
18
18
|
* </p>
|
|
19
|
-
* <note>
|
|
20
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
21
|
-
* </note>
|
|
22
19
|
* <p>This operation can also return information for Amazon Neptune DB instances and Amazon DocumentDB instances.</p>
|
|
23
20
|
* @example
|
|
24
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -26,9 +26,6 @@ export interface FailoverDBClusterCommandOutput extends FailoverDBClusterResult,
|
|
|
26
26
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
27
27
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
28
28
|
* </p>
|
|
29
|
-
* <note>
|
|
30
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
31
|
-
* </note>
|
|
32
29
|
* @example
|
|
33
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
31
|
* ```javascript
|
|
@@ -18,9 +18,6 @@ export interface ModifyDBClusterCommandOutput extends ModifyDBClusterResult, __M
|
|
|
18
18
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
19
19
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
20
20
|
* </p>
|
|
21
|
-
* <note>
|
|
22
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
23
|
-
* </note>
|
|
24
21
|
* @example
|
|
25
22
|
* Use a bare-bones client and the command you need to make an API call.
|
|
26
23
|
* ```javascript
|
|
@@ -36,9 +36,6 @@ export interface ModifyDBClusterParameterGroupCommandOutput extends DBClusterPar
|
|
|
36
36
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
37
37
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
38
38
|
* </p>
|
|
39
|
-
* <note>
|
|
40
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
41
|
-
* </note>
|
|
42
39
|
* @example
|
|
43
40
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
41
|
* ```javascript
|
|
@@ -17,8 +17,7 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
|
|
|
17
17
|
* cluster results in a momentary outage, during which the DB cluster status is set to rebooting.
|
|
18
18
|
* </p>
|
|
19
19
|
*
|
|
20
|
-
* <p>Use this operation only for a non-Aurora Multi-AZ DB cluster
|
|
21
|
-
* The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
20
|
+
* <p>Use this operation only for a non-Aurora Multi-AZ DB cluster.</p>
|
|
22
21
|
*
|
|
23
22
|
* <p>For more information on Multi-AZ DB clusters, see
|
|
24
23
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
@@ -17,9 +17,6 @@ export interface RemoveRoleFromDBClusterCommandOutput extends __MetadataBearer {
|
|
|
17
17
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
18
18
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
19
19
|
* </p>
|
|
20
|
-
* <note>
|
|
21
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
22
|
-
* </note>
|
|
23
20
|
* @example
|
|
24
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
22
|
* ```javascript
|
|
@@ -27,9 +27,6 @@ export interface ResetDBClusterParameterGroupCommandOutput extends DBClusterPara
|
|
|
27
27
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
28
28
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
29
29
|
* </p>
|
|
30
|
-
* <note>
|
|
31
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
32
|
-
* </note>
|
|
33
30
|
* @example
|
|
34
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
32
|
* ```javascript
|
|
@@ -27,9 +27,6 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
27
27
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
28
28
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
29
29
|
* </p>
|
|
30
|
-
* <note>
|
|
31
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
32
|
-
* </note>
|
|
33
30
|
* @example
|
|
34
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
32
|
* ```javascript
|
|
@@ -28,9 +28,6 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
28
28
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
29
29
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
30
30
|
* </p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
33
|
-
* </note>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -3357,8 +3357,15 @@ export interface CreateDBClusterMessage {
|
|
|
3357
3357
|
BacktrackWindow?: number;
|
|
3358
3358
|
/**
|
|
3359
3359
|
* <p>The list of log types that need to be enabled for exporting to CloudWatch Logs. The values
|
|
3360
|
-
* in the list depend on the DB engine being used
|
|
3361
|
-
*
|
|
3360
|
+
* in the list depend on the DB engine being used.</p>
|
|
3361
|
+
* <p>
|
|
3362
|
+
* <b>RDS for MySQL</b>
|
|
3363
|
+
* </p>
|
|
3364
|
+
* <p>Possible values are <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
3365
|
+
* <p>
|
|
3366
|
+
* <b>RDS for PostgreSQL</b>
|
|
3367
|
+
* </p>
|
|
3368
|
+
* <p>Possible values are <code>postgresql</code> and <code>upgrade</code>.</p>
|
|
3362
3369
|
* <p>
|
|
3363
3370
|
* <b>Aurora MySQL</b>
|
|
3364
3371
|
* </p>
|
|
@@ -3367,7 +3374,10 @@ export interface CreateDBClusterMessage {
|
|
|
3367
3374
|
* <b>Aurora PostgreSQL</b>
|
|
3368
3375
|
* </p>
|
|
3369
3376
|
* <p>Possible value is <code>postgresql</code>.</p>
|
|
3370
|
-
* <p>
|
|
3377
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Relational Database
|
|
3378
|
+
* Service User Guide</i>.</p>
|
|
3379
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
3380
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
3371
3381
|
*/
|
|
3372
3382
|
EnableCloudwatchLogsExports?: string[];
|
|
3373
3383
|
/**
|
|
@@ -3445,7 +3455,7 @@ export interface CreateDBClusterMessage {
|
|
|
3445
3455
|
/**
|
|
3446
3456
|
* <p>A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster.
|
|
3447
3457
|
* The default is not to copy them.</p>
|
|
3448
|
-
* <p>Valid for: Aurora DB clusters
|
|
3458
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
3449
3459
|
*/
|
|
3450
3460
|
CopyTagsToSnapshot?: boolean;
|
|
3451
3461
|
/**
|
|
@@ -3846,9 +3856,6 @@ export declare namespace ScalingConfigurationInfo {
|
|
|
3846
3856
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
3847
3857
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
3848
3858
|
* </p>
|
|
3849
|
-
* <note>
|
|
3850
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
3851
|
-
* </note>
|
|
3852
3859
|
*/
|
|
3853
3860
|
export interface DBCluster {
|
|
3854
3861
|
/**
|
|
@@ -4214,9 +4221,6 @@ export interface CreateDBClusterResult {
|
|
|
4214
4221
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
4215
4222
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
4216
4223
|
* </p>
|
|
4217
|
-
* <note>
|
|
4218
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
4219
|
-
* </note>
|
|
4220
4224
|
*/
|
|
4221
4225
|
DBCluster?: DBCluster;
|
|
4222
4226
|
}
|
|
@@ -8699,9 +8703,6 @@ export interface DeleteDBClusterResult {
|
|
|
8699
8703
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
8700
8704
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
8701
8705
|
* </p>
|
|
8702
|
-
* <note>
|
|
8703
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
8704
|
-
* </note>
|
|
8705
8706
|
*/
|
|
8706
8707
|
DBCluster?: DBCluster;
|
|
8707
8708
|
}
|
|
@@ -1886,7 +1886,6 @@ export interface OrderableDBInstanceOption {
|
|
|
1886
1886
|
SupportsGlobalDatabases?: boolean;
|
|
1887
1887
|
/**
|
|
1888
1888
|
* <p>Whether DB instances can be configured as a Multi-AZ DB cluster.</p>
|
|
1889
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
1890
1889
|
* <p>For more information on Multi-AZ DB clusters, see
|
|
1891
1890
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
1892
1891
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
@@ -2761,9 +2760,6 @@ export interface FailoverDBClusterResult {
|
|
|
2761
2760
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
2762
2761
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
2763
2762
|
* </p>
|
|
2764
|
-
* <note>
|
|
2765
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
2766
|
-
* </note>
|
|
2767
2763
|
*/
|
|
2768
2764
|
DBCluster?: DBCluster;
|
|
2769
2765
|
}
|
|
@@ -3288,8 +3284,28 @@ export interface ModifyDBClusterMessage {
|
|
|
3288
3284
|
*/
|
|
3289
3285
|
BacktrackWindow?: number;
|
|
3290
3286
|
/**
|
|
3291
|
-
* <p>The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB cluster
|
|
3292
|
-
*
|
|
3287
|
+
* <p>The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB cluster. The values
|
|
3288
|
+
* in the list depend on the DB engine being used.</p>
|
|
3289
|
+
* <p>
|
|
3290
|
+
* <b>RDS for MySQL</b>
|
|
3291
|
+
* </p>
|
|
3292
|
+
* <p>Possible values are <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
3293
|
+
* <p>
|
|
3294
|
+
* <b>RDS for PostgreSQL</b>
|
|
3295
|
+
* </p>
|
|
3296
|
+
* <p>Possible values are <code>postgresql</code> and <code>upgrade</code>.</p>
|
|
3297
|
+
* <p>
|
|
3298
|
+
* <b>Aurora MySQL</b>
|
|
3299
|
+
* </p>
|
|
3300
|
+
* <p>Possible values are <code>audit</code>, <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
3301
|
+
* <p>
|
|
3302
|
+
* <b>Aurora PostgreSQL</b>
|
|
3303
|
+
* </p>
|
|
3304
|
+
* <p>Possible value is <code>postgresql</code>.</p>
|
|
3305
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Relational Database
|
|
3306
|
+
* Service User Guide</i>.</p>
|
|
3307
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
3308
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
3293
3309
|
*/
|
|
3294
3310
|
CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
|
|
3295
3311
|
/**
|
|
@@ -3390,7 +3406,7 @@ export interface ModifyDBClusterMessage {
|
|
|
3390
3406
|
/**
|
|
3391
3407
|
* <p>A value that indicates whether to copy all tags from the DB cluster to snapshots of the DB cluster.
|
|
3392
3408
|
* The default is not to copy them.</p>
|
|
3393
|
-
* <p>Valid for: Aurora DB clusters
|
|
3409
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
3394
3410
|
*/
|
|
3395
3411
|
CopyTagsToSnapshot?: boolean;
|
|
3396
3412
|
/**
|
|
@@ -3518,9 +3534,6 @@ export interface ModifyDBClusterResult {
|
|
|
3518
3534
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
3519
3535
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
3520
3536
|
* </p>
|
|
3521
|
-
* <note>
|
|
3522
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
3523
|
-
* </note>
|
|
3524
3537
|
*/
|
|
3525
3538
|
DBCluster?: DBCluster;
|
|
3526
3539
|
}
|
|
@@ -5205,9 +5218,6 @@ export interface PromoteReadReplicaDBClusterResult {
|
|
|
5205
5218
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
5206
5219
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
5207
5220
|
* </p>
|
|
5208
|
-
* <note>
|
|
5209
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
5210
|
-
* </note>
|
|
5211
5221
|
*/
|
|
5212
5222
|
DBCluster?: DBCluster;
|
|
5213
5223
|
}
|
|
@@ -5327,9 +5337,6 @@ export interface RebootDBClusterResult {
|
|
|
5327
5337
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
5328
5338
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
5329
5339
|
* </p>
|
|
5330
|
-
* <note>
|
|
5331
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
5332
|
-
* </note>
|
|
5333
5340
|
*/
|
|
5334
5341
|
DBCluster?: DBCluster;
|
|
5335
5342
|
}
|
|
@@ -5951,8 +5958,16 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
5951
5958
|
BacktrackWindow?: number;
|
|
5952
5959
|
/**
|
|
5953
5960
|
* <p>The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values
|
|
5954
|
-
* in the list depend on the DB engine being used
|
|
5955
|
-
*
|
|
5961
|
+
* in the list depend on the DB engine being used.</p>
|
|
5962
|
+
* <p>
|
|
5963
|
+
* <b>Aurora MySQL</b>
|
|
5964
|
+
* </p>
|
|
5965
|
+
* <p>Possible values are <code>audit</code>, <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
5966
|
+
* <p>
|
|
5967
|
+
* <b>Aurora PostgreSQL</b>
|
|
5968
|
+
* </p>
|
|
5969
|
+
* <p>Possible value is <code>postgresql</code>.</p>
|
|
5970
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
5956
5971
|
*/
|
|
5957
5972
|
EnableCloudwatchLogsExports?: string[];
|
|
5958
5973
|
/**
|
|
@@ -6009,9 +6024,6 @@ export interface RestoreDBClusterFromS3Result {
|
|
|
6009
6024
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
6010
6025
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
6011
6026
|
* </p>
|
|
6012
|
-
* <note>
|
|
6013
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
6014
|
-
* </note>
|
|
6015
6027
|
*/
|
|
6016
6028
|
DBCluster?: DBCluster;
|
|
6017
6029
|
}
|
|
@@ -6231,9 +6243,26 @@ export interface RestoreDBClusterFromSnapshotMessage {
|
|
|
6231
6243
|
/**
|
|
6232
6244
|
* <p>The list of logs that the restored DB cluster is to export to Amazon CloudWatch Logs.
|
|
6233
6245
|
* The values in the list depend on the DB engine being used.</p>
|
|
6234
|
-
* <p>
|
|
6235
|
-
*
|
|
6236
|
-
*
|
|
6246
|
+
* <p>
|
|
6247
|
+
* <b>RDS for MySQL</b>
|
|
6248
|
+
* </p>
|
|
6249
|
+
* <p>Possible values are <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
6250
|
+
* <p>
|
|
6251
|
+
* <b>RDS for PostgreSQL</b>
|
|
6252
|
+
* </p>
|
|
6253
|
+
* <p>Possible values are <code>postgresql</code> and <code>upgrade</code>.</p>
|
|
6254
|
+
* <p>
|
|
6255
|
+
* <b>Aurora MySQL</b>
|
|
6256
|
+
* </p>
|
|
6257
|
+
* <p>Possible values are <code>audit</code>, <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
6258
|
+
* <p>
|
|
6259
|
+
* <b>Aurora PostgreSQL</b>
|
|
6260
|
+
* </p>
|
|
6261
|
+
* <p>Possible value is <code>postgresql</code>.</p>
|
|
6262
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Relational Database
|
|
6263
|
+
* Service User Guide</i>.</p>
|
|
6264
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
6265
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
6237
6266
|
*/
|
|
6238
6267
|
EnableCloudwatchLogsExports?: string[];
|
|
6239
6268
|
/**
|
|
@@ -6280,7 +6309,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
|
|
|
6280
6309
|
DeletionProtection?: boolean;
|
|
6281
6310
|
/**
|
|
6282
6311
|
* <p>A value that indicates whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.</p>
|
|
6283
|
-
* <p>Valid for: Aurora DB clusters
|
|
6312
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
6284
6313
|
*/
|
|
6285
6314
|
CopyTagsToSnapshot?: boolean;
|
|
6286
6315
|
/**
|
|
@@ -6386,9 +6415,6 @@ export interface RestoreDBClusterFromSnapshotResult {
|
|
|
6386
6415
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
6387
6416
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
6388
6417
|
* </p>
|
|
6389
|
-
* <note>
|
|
6390
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
6391
|
-
* </note>
|
|
6392
6418
|
*/
|
|
6393
6419
|
DBCluster?: DBCluster;
|
|
6394
6420
|
}
|
|
@@ -6563,8 +6589,26 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
6563
6589
|
/**
|
|
6564
6590
|
* <p>The list of logs that the restored DB cluster is to export to CloudWatch Logs. The values
|
|
6565
6591
|
* in the list depend on the DB engine being used.</p>
|
|
6566
|
-
* <p>
|
|
6567
|
-
*
|
|
6592
|
+
* <p>
|
|
6593
|
+
* <b>RDS for MySQL</b>
|
|
6594
|
+
* </p>
|
|
6595
|
+
* <p>Possible values are <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
6596
|
+
* <p>
|
|
6597
|
+
* <b>RDS for PostgreSQL</b>
|
|
6598
|
+
* </p>
|
|
6599
|
+
* <p>Possible values are <code>postgresql</code> and <code>upgrade</code>.</p>
|
|
6600
|
+
* <p>
|
|
6601
|
+
* <b>Aurora MySQL</b>
|
|
6602
|
+
* </p>
|
|
6603
|
+
* <p>Possible values are <code>audit</code>, <code>error</code>, <code>general</code>, and <code>slowquery</code>.</p>
|
|
6604
|
+
* <p>
|
|
6605
|
+
* <b>Aurora PostgreSQL</b>
|
|
6606
|
+
* </p>
|
|
6607
|
+
* <p>Possible value is <code>postgresql</code>.</p>
|
|
6608
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon RDS, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Relational Database
|
|
6609
|
+
* Service User Guide</i>.</p>
|
|
6610
|
+
* <p>For more information about exporting CloudWatch Logs for Amazon Aurora, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch">Publishing Database Logs to Amazon CloudWatch Logs</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
6611
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
6568
6612
|
*/
|
|
6569
6613
|
EnableCloudwatchLogsExports?: string[];
|
|
6570
6614
|
/**
|
|
@@ -6597,7 +6641,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
6597
6641
|
DeletionProtection?: boolean;
|
|
6598
6642
|
/**
|
|
6599
6643
|
* <p>A value that indicates whether to copy all tags from the restored DB cluster to snapshots of the restored DB cluster. The default is not to copy them.</p>
|
|
6600
|
-
* <p>Valid for: Aurora DB clusters
|
|
6644
|
+
* <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
6601
6645
|
*/
|
|
6602
6646
|
CopyTagsToSnapshot?: boolean;
|
|
6603
6647
|
/**
|
|
@@ -6722,9 +6766,6 @@ export interface RestoreDBClusterToPointInTimeResult {
|
|
|
6722
6766
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
6723
6767
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
6724
6768
|
* </p>
|
|
6725
|
-
* <note>
|
|
6726
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
6727
|
-
* </note>
|
|
6728
6769
|
*/
|
|
6729
6770
|
DBCluster?: DBCluster;
|
|
6730
6771
|
}
|
|
@@ -8152,9 +8193,6 @@ export interface StartDBClusterResult {
|
|
|
8152
8193
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
8153
8194
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
8154
8195
|
* </p>
|
|
8155
|
-
* <note>
|
|
8156
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
8157
|
-
* </note>
|
|
8158
8196
|
*/
|
|
8159
8197
|
DBCluster?: DBCluster;
|
|
8160
8198
|
}
|
|
@@ -8465,9 +8503,6 @@ export interface StopDBClusterResult {
|
|
|
8465
8503
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html">
|
|
8466
8504
|
* Multi-AZ deployments with two readable standby DB instances</a> in the <i>Amazon RDS User Guide.</i>
|
|
8467
8505
|
* </p>
|
|
8468
|
-
* <note>
|
|
8469
|
-
* <p>The Multi-AZ DB clusters feature is in preview and is subject to change.</p>
|
|
8470
|
-
* </note>
|
|
8471
8506
|
*/
|
|
8472
8507
|
DBCluster?: DBCluster;
|
|
8473
8508
|
}
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddRoleToDBClusterCommandInput, AddRoleToDBClusterCommandOutput } from "./commands/AddRoleToDBClusterCommand";
|
|
10
10
|
import { AddRoleToDBInstanceCommandInput, AddRoleToDBInstanceCommandOutput } from "./commands/AddRoleToDBInstanceCommand";
|
|
11
11
|
import { AddSourceIdentifierToSubscriptionCommandInput, AddSourceIdentifierToSubscriptionCommandOutput } from "./commands/AddSourceIdentifierToSubscriptionCommand";
|
|
@@ -157,7 +157,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
157
157
|
|
|
158
158
|
urlParser?: __UrlParser;
|
|
159
159
|
|
|
160
|
-
bodyLengthChecker?:
|
|
160
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
161
161
|
|
|
162
162
|
streamCollector?: __StreamCollector;
|
|
163
163
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.
|
|
4
|
+
"version": "3.54.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,38 +18,38 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-sdk-rds": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
40
|
+
"@aws-sdk/types": "3.54.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
44
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
44
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
52
|
+
"@aws-sdk/util-waiter": "3.54.0",
|
|
53
53
|
"entities": "2.2.0",
|
|
54
54
|
"fast-xml-parser": "3.19.0",
|
|
55
55
|
"tslib": "^2.3.0"
|