@aws-sdk/client-rds 3.46.0 → 3.48.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 +39 -0
- package/dist-cjs/endpoints.js +0 -28
- package/dist-cjs/models/models_0.js +4 -594
- package/dist-cjs/models/models_1.js +3 -141
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/endpoints.js +0 -28
- package/dist-es/models/models_0.js +0 -392
- package/dist-es/models/models_1.js +0 -92
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/RDS.d.ts +13 -10
- package/dist-types/RDSClient.d.ts +5 -1
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +3 -3
- package/dist-types/commands/DescribeEventCategoriesCommand.d.ts +7 -4
- package/dist-types/commands/DescribeEventsCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +19 -597
- package/dist-types/models/models_1.d.ts +11 -148
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/RDSClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -392
- package/dist-types/ts3.4/models/models_1.d.ts +1 -93
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +37 -37
|
@@ -657,8 +657,8 @@ export declare namespace DescribeEngineDefaultParametersResult {
|
|
|
657
657
|
*/
|
|
658
658
|
export interface DescribeEventCategoriesMessage {
|
|
659
659
|
/**
|
|
660
|
-
* <p>The type of source that is generating the events
|
|
661
|
-
* <p>Valid values: <code>db-instance</code> | <code>db-cluster</code> | <code>db-parameter-group</code> | <code>db-security-group</code> | <code>db-snapshot</code> | <code>db-cluster-snapshot</code>
|
|
660
|
+
* <p>The type of source that is generating the events. For RDS Proxy events, specify <code>db-proxy</code>.</p>
|
|
661
|
+
* <p>Valid values: <code>db-instance</code> | <code>db-cluster</code> | <code>db-parameter-group</code> | <code>db-security-group</code> | <code>db-snapshot</code> | <code>db-cluster-snapshot</code> | <code>db-proxy</code>
|
|
662
662
|
* </p>
|
|
663
663
|
*/
|
|
664
664
|
SourceType?: string;
|
|
@@ -707,7 +707,7 @@ export declare namespace EventCategoriesMessage {
|
|
|
707
707
|
*/
|
|
708
708
|
const filterSensitiveLog: (obj: EventCategoriesMessage) => any;
|
|
709
709
|
}
|
|
710
|
-
export declare type SourceType = "custom-engine-version" | "db-cluster" | "db-cluster-snapshot" | "db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot";
|
|
710
|
+
export declare type SourceType = "custom-engine-version" | "db-cluster" | "db-cluster-snapshot" | "db-instance" | "db-parameter-group" | "db-proxy" | "db-security-group" | "db-snapshot";
|
|
711
711
|
/**
|
|
712
712
|
* <p></p>
|
|
713
713
|
*/
|
|
@@ -738,6 +738,9 @@ export interface DescribeEventsMessage {
|
|
|
738
738
|
* <p>If the source type is a DB cluster snapshot, a <code>DBClusterSnapshotIdentifier</code> value must be supplied.</p>
|
|
739
739
|
* </li>
|
|
740
740
|
* <li>
|
|
741
|
+
* <p>If the source type is an RDS Proxy, a <code>DBProxyName</code> value must be supplied.</p>
|
|
742
|
+
* </li>
|
|
743
|
+
* <li>
|
|
741
744
|
* <p>Can't end with a hyphen or contain two consecutive hyphens.</p>
|
|
742
745
|
* </li>
|
|
743
746
|
* </ul>
|
|
@@ -2214,12 +2217,6 @@ export interface ReservedDBInstanceNotFoundFault extends __SmithyException, $Met
|
|
|
2214
2217
|
$fault: "client";
|
|
2215
2218
|
message?: string;
|
|
2216
2219
|
}
|
|
2217
|
-
export declare namespace ReservedDBInstanceNotFoundFault {
|
|
2218
|
-
/**
|
|
2219
|
-
* @internal
|
|
2220
|
-
*/
|
|
2221
|
-
const filterSensitiveLog: (obj: ReservedDBInstanceNotFoundFault) => any;
|
|
2222
|
-
}
|
|
2223
2220
|
/**
|
|
2224
2221
|
* <p></p>
|
|
2225
2222
|
*/
|
|
@@ -2374,12 +2371,6 @@ export interface ReservedDBInstancesOfferingNotFoundFault extends __SmithyExcept
|
|
|
2374
2371
|
$fault: "client";
|
|
2375
2372
|
message?: string;
|
|
2376
2373
|
}
|
|
2377
|
-
export declare namespace ReservedDBInstancesOfferingNotFoundFault {
|
|
2378
|
-
/**
|
|
2379
|
-
* @internal
|
|
2380
|
-
*/
|
|
2381
|
-
const filterSensitiveLog: (obj: ReservedDBInstancesOfferingNotFoundFault) => any;
|
|
2382
|
-
}
|
|
2383
2374
|
/**
|
|
2384
2375
|
* <p></p>
|
|
2385
2376
|
*/
|
|
@@ -2631,12 +2622,6 @@ export interface DBLogFileNotFoundFault extends __SmithyException, $MetadataBear
|
|
|
2631
2622
|
$fault: "client";
|
|
2632
2623
|
message?: string;
|
|
2633
2624
|
}
|
|
2634
|
-
export declare namespace DBLogFileNotFoundFault {
|
|
2635
|
-
/**
|
|
2636
|
-
* @internal
|
|
2637
|
-
*/
|
|
2638
|
-
const filterSensitiveLog: (obj: DBLogFileNotFoundFault) => any;
|
|
2639
|
-
}
|
|
2640
2625
|
/**
|
|
2641
2626
|
* <p>This data type is used as a response element to <code>DownloadDBLogFilePortion</code>.</p>
|
|
2642
2627
|
*/
|
|
@@ -2901,12 +2886,6 @@ export interface InstallationMediaAlreadyExistsFault extends __SmithyException,
|
|
|
2901
2886
|
$fault: "client";
|
|
2902
2887
|
message?: string;
|
|
2903
2888
|
}
|
|
2904
|
-
export declare namespace InstallationMediaAlreadyExistsFault {
|
|
2905
|
-
/**
|
|
2906
|
-
* @internal
|
|
2907
|
-
*/
|
|
2908
|
-
const filterSensitiveLog: (obj: InstallationMediaAlreadyExistsFault) => any;
|
|
2909
|
-
}
|
|
2910
2889
|
/**
|
|
2911
2890
|
* <p></p>
|
|
2912
2891
|
*/
|
|
@@ -3017,12 +2996,6 @@ export interface InvalidDBClusterCapacityFault extends __SmithyException, $Metad
|
|
|
3017
2996
|
$fault: "client";
|
|
3018
2997
|
message?: string;
|
|
3019
2998
|
}
|
|
3020
|
-
export declare namespace InvalidDBClusterCapacityFault {
|
|
3021
|
-
/**
|
|
3022
|
-
* @internal
|
|
3023
|
-
*/
|
|
3024
|
-
const filterSensitiveLog: (obj: InvalidDBClusterCapacityFault) => any;
|
|
3025
|
-
}
|
|
3026
2999
|
export interface ModifyCurrentDBClusterCapacityMessage {
|
|
3027
3000
|
/**
|
|
3028
3001
|
* <p>The DB cluster identifier for the cluster being modified. This parameter isn't case-sensitive.</p>
|
|
@@ -3694,12 +3667,6 @@ export interface SharedSnapshotQuotaExceededFault extends __SmithyException, $Me
|
|
|
3694
3667
|
$fault: "client";
|
|
3695
3668
|
message?: string;
|
|
3696
3669
|
}
|
|
3697
|
-
export declare namespace SharedSnapshotQuotaExceededFault {
|
|
3698
|
-
/**
|
|
3699
|
-
* @internal
|
|
3700
|
-
*/
|
|
3701
|
-
const filterSensitiveLog: (obj: SharedSnapshotQuotaExceededFault) => any;
|
|
3702
|
-
}
|
|
3703
3670
|
/**
|
|
3704
3671
|
* <p>The DB upgrade failed because a resource the DB depends on can't be
|
|
3705
3672
|
* modified.</p>
|
|
@@ -3709,12 +3676,6 @@ export interface DBUpgradeDependencyFailureFault extends __SmithyException, $Met
|
|
|
3709
3676
|
$fault: "client";
|
|
3710
3677
|
message?: string;
|
|
3711
3678
|
}
|
|
3712
|
-
export declare namespace DBUpgradeDependencyFailureFault {
|
|
3713
|
-
/**
|
|
3714
|
-
* @internal
|
|
3715
|
-
*/
|
|
3716
|
-
const filterSensitiveLog: (obj: DBUpgradeDependencyFailureFault) => any;
|
|
3717
|
-
}
|
|
3718
3679
|
/**
|
|
3719
3680
|
* <p></p>
|
|
3720
3681
|
*/
|
|
@@ -4590,7 +4551,7 @@ export declare namespace ModifyDBProxyEndpointResponse {
|
|
|
4590
4551
|
*/
|
|
4591
4552
|
export interface ConnectionPoolConfiguration {
|
|
4592
4553
|
/**
|
|
4593
|
-
* <p>The maximum size of the connection pool for each target in a target group.
|
|
4554
|
+
* <p>The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the
|
|
4594
4555
|
* <code>max_connections</code> setting for the RDS DB instance or Aurora DB cluster used by the target group.</p>
|
|
4595
4556
|
* <p>Default: 100</p>
|
|
4596
4557
|
* <p>Constraints: between 1 and 100</p>
|
|
@@ -4599,10 +4560,8 @@ export interface ConnectionPoolConfiguration {
|
|
|
4599
4560
|
/**
|
|
4600
4561
|
* <p>
|
|
4601
4562
|
* Controls how actively the proxy closes idle database connections in the connection pool.
|
|
4602
|
-
*
|
|
4603
|
-
* A low value causes the proxy to close idle
|
|
4604
|
-
* database connections to the connection pool. For Aurora MySQL, it is expressed as a percentage of the
|
|
4605
|
-
* <code>max_connections</code> setting for the RDS DB instance or Aurora DB cluster used by the target group.
|
|
4563
|
+
* The value is expressed as a percentage of the <code>max_connections</code> setting for the RDS DB instance or Aurora DB cluster used by the target group.
|
|
4564
|
+
* With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database.
|
|
4606
4565
|
* </p>
|
|
4607
4566
|
* <p>Default: 50</p>
|
|
4608
4567
|
* <p>Constraints: between 0 and <code>MaxConnectionsPercent</code>
|
|
@@ -4875,12 +4834,6 @@ export interface SubnetAlreadyInUse extends __SmithyException, $MetadataBearer {
|
|
|
4875
4834
|
$fault: "client";
|
|
4876
4835
|
message?: string;
|
|
4877
4836
|
}
|
|
4878
|
-
export declare namespace SubnetAlreadyInUse {
|
|
4879
|
-
/**
|
|
4880
|
-
* @internal
|
|
4881
|
-
*/
|
|
4882
|
-
const filterSensitiveLog: (obj: SubnetAlreadyInUse) => any;
|
|
4883
|
-
}
|
|
4884
4837
|
/**
|
|
4885
4838
|
* <p></p>
|
|
4886
4839
|
*/
|
|
@@ -4894,8 +4847,8 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
4894
4847
|
*/
|
|
4895
4848
|
SnsTopicArn?: string;
|
|
4896
4849
|
/**
|
|
4897
|
-
* <p>The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. If this value isn't specified, all events are returned.</p>
|
|
4898
|
-
* <p>Valid values: <code>db-instance</code> | <code>db-cluster</code> | <code>db-parameter-group</code> | <code>db-security-group</code> | <code>db-snapshot</code> | <code>db-cluster-snapshot</code>
|
|
4850
|
+
* <p>The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. For RDS Proxy events, specify <code>db-proxy</code>. If this value isn't specified, all events are returned.</p>
|
|
4851
|
+
* <p>Valid values: <code>db-instance</code> | <code>db-cluster</code> | <code>db-parameter-group</code> | <code>db-security-group</code> | <code>db-snapshot</code> | <code>db-cluster-snapshot</code> | <code>db-proxy</code>
|
|
4899
4852
|
* </p>
|
|
4900
4853
|
*/
|
|
4901
4854
|
SourceType?: string;
|
|
@@ -5296,12 +5249,6 @@ export interface ReservedDBInstanceAlreadyExistsFault extends __SmithyException,
|
|
|
5296
5249
|
$fault: "client";
|
|
5297
5250
|
message?: string;
|
|
5298
5251
|
}
|
|
5299
|
-
export declare namespace ReservedDBInstanceAlreadyExistsFault {
|
|
5300
|
-
/**
|
|
5301
|
-
* @internal
|
|
5302
|
-
*/
|
|
5303
|
-
const filterSensitiveLog: (obj: ReservedDBInstanceAlreadyExistsFault) => any;
|
|
5304
|
-
}
|
|
5305
5252
|
/**
|
|
5306
5253
|
* <p>Request would exceed the user's DB Instance quota.</p>
|
|
5307
5254
|
*/
|
|
@@ -5310,12 +5257,6 @@ export interface ReservedDBInstanceQuotaExceededFault extends __SmithyException,
|
|
|
5310
5257
|
$fault: "client";
|
|
5311
5258
|
message?: string;
|
|
5312
5259
|
}
|
|
5313
|
-
export declare namespace ReservedDBInstanceQuotaExceededFault {
|
|
5314
|
-
/**
|
|
5315
|
-
* @internal
|
|
5316
|
-
*/
|
|
5317
|
-
const filterSensitiveLog: (obj: ReservedDBInstanceQuotaExceededFault) => any;
|
|
5318
|
-
}
|
|
5319
5260
|
export interface RebootDBClusterMessage {
|
|
5320
5261
|
/**
|
|
5321
5262
|
* <p>The DB cluster identifier. This parameter is stored as a lowercase string.</p>
|
|
@@ -5422,12 +5363,6 @@ export interface DBProxyTargetAlreadyRegisteredFault extends __SmithyException,
|
|
|
5422
5363
|
$fault: "client";
|
|
5423
5364
|
message?: string;
|
|
5424
5365
|
}
|
|
5425
|
-
export declare namespace DBProxyTargetAlreadyRegisteredFault {
|
|
5426
|
-
/**
|
|
5427
|
-
* @internal
|
|
5428
|
-
*/
|
|
5429
|
-
const filterSensitiveLog: (obj: DBProxyTargetAlreadyRegisteredFault) => any;
|
|
5430
|
-
}
|
|
5431
5366
|
/**
|
|
5432
5367
|
* <p>The requested operation can't be performed because there aren't enough available IP addresses
|
|
5433
5368
|
* in the proxy's subnets. Add more CIDR blocks to the VPC or remove IP address that aren't required
|
|
@@ -5438,12 +5373,6 @@ export interface InsufficientAvailableIPsInSubnetFault extends __SmithyException
|
|
|
5438
5373
|
$fault: "client";
|
|
5439
5374
|
message?: string;
|
|
5440
5375
|
}
|
|
5441
|
-
export declare namespace InsufficientAvailableIPsInSubnetFault {
|
|
5442
|
-
/**
|
|
5443
|
-
* @internal
|
|
5444
|
-
*/
|
|
5445
|
-
const filterSensitiveLog: (obj: InsufficientAvailableIPsInSubnetFault) => any;
|
|
5446
|
-
}
|
|
5447
5376
|
export interface RegisterDBProxyTargetsRequest {
|
|
5448
5377
|
/**
|
|
5449
5378
|
* <p>The identifier of the <code>DBProxy</code> that is associated with the <code>DBProxyTargetGroup</code>.</p>
|
|
@@ -5520,12 +5449,6 @@ export interface DBClusterRoleNotFoundFault extends __SmithyException, $Metadata
|
|
|
5520
5449
|
$fault: "client";
|
|
5521
5450
|
message?: string;
|
|
5522
5451
|
}
|
|
5523
|
-
export declare namespace DBClusterRoleNotFoundFault {
|
|
5524
|
-
/**
|
|
5525
|
-
* @internal
|
|
5526
|
-
*/
|
|
5527
|
-
const filterSensitiveLog: (obj: DBClusterRoleNotFoundFault) => any;
|
|
5528
|
-
}
|
|
5529
5452
|
export interface RemoveRoleFromDBClusterMessage {
|
|
5530
5453
|
/**
|
|
5531
5454
|
* <p>The name of the DB cluster to disassociate the IAM role from.</p>
|
|
@@ -5557,12 +5480,6 @@ export interface DBInstanceRoleNotFoundFault extends __SmithyException, $Metadat
|
|
|
5557
5480
|
$fault: "client";
|
|
5558
5481
|
message?: string;
|
|
5559
5482
|
}
|
|
5560
|
-
export declare namespace DBInstanceRoleNotFoundFault {
|
|
5561
|
-
/**
|
|
5562
|
-
* @internal
|
|
5563
|
-
*/
|
|
5564
|
-
const filterSensitiveLog: (obj: DBInstanceRoleNotFoundFault) => any;
|
|
5565
|
-
}
|
|
5566
5483
|
export interface RemoveRoleFromDBInstanceMessage {
|
|
5567
5484
|
/**
|
|
5568
5485
|
* <p>The name of the DB instance to disassociate the IAM role from.</p>
|
|
@@ -5735,12 +5652,6 @@ export interface InvalidS3BucketFault extends __SmithyException, $MetadataBearer
|
|
|
5735
5652
|
$fault: "client";
|
|
5736
5653
|
message?: string;
|
|
5737
5654
|
}
|
|
5738
|
-
export declare namespace InvalidS3BucketFault {
|
|
5739
|
-
/**
|
|
5740
|
-
* @internal
|
|
5741
|
-
*/
|
|
5742
|
-
const filterSensitiveLog: (obj: InvalidS3BucketFault) => any;
|
|
5743
|
-
}
|
|
5744
5655
|
export interface RestoreDBClusterFromS3Message {
|
|
5745
5656
|
/**
|
|
5746
5657
|
* <p>A list of Availability Zones (AZs) where instances in the restored DB cluster can be created.</p>
|
|
@@ -6073,12 +5984,6 @@ export interface InsufficientDBClusterCapacityFault extends __SmithyException, $
|
|
|
6073
5984
|
$fault: "client";
|
|
6074
5985
|
message?: string;
|
|
6075
5986
|
}
|
|
6076
|
-
export declare namespace InsufficientDBClusterCapacityFault {
|
|
6077
|
-
/**
|
|
6078
|
-
* @internal
|
|
6079
|
-
*/
|
|
6080
|
-
const filterSensitiveLog: (obj: InsufficientDBClusterCapacityFault) => any;
|
|
6081
|
-
}
|
|
6082
5987
|
/**
|
|
6083
5988
|
* <p>Cannot restore from VPC backup to non-VPC DB instance.</p>
|
|
6084
5989
|
*/
|
|
@@ -6087,12 +5992,6 @@ export interface InvalidRestoreFault extends __SmithyException, $MetadataBearer
|
|
|
6087
5992
|
$fault: "client";
|
|
6088
5993
|
message?: string;
|
|
6089
5994
|
}
|
|
6090
|
-
export declare namespace InvalidRestoreFault {
|
|
6091
|
-
/**
|
|
6092
|
-
* @internal
|
|
6093
|
-
*/
|
|
6094
|
-
const filterSensitiveLog: (obj: InvalidRestoreFault) => any;
|
|
6095
|
-
}
|
|
6096
5995
|
/**
|
|
6097
5996
|
* <p></p>
|
|
6098
5997
|
*/
|
|
@@ -7609,12 +7508,6 @@ export interface PointInTimeRestoreNotEnabledFault extends __SmithyException, $M
|
|
|
7609
7508
|
$fault: "client";
|
|
7610
7509
|
message?: string;
|
|
7611
7510
|
}
|
|
7612
|
-
export declare namespace PointInTimeRestoreNotEnabledFault {
|
|
7613
|
-
/**
|
|
7614
|
-
* @internal
|
|
7615
|
-
*/
|
|
7616
|
-
const filterSensitiveLog: (obj: PointInTimeRestoreNotEnabledFault) => any;
|
|
7617
|
-
}
|
|
7618
7511
|
/**
|
|
7619
7512
|
* <p></p>
|
|
7620
7513
|
*/
|
|
@@ -8294,12 +8187,6 @@ export interface ExportTaskAlreadyExistsFault extends __SmithyException, $Metada
|
|
|
8294
8187
|
$fault: "client";
|
|
8295
8188
|
message?: string;
|
|
8296
8189
|
}
|
|
8297
|
-
export declare namespace ExportTaskAlreadyExistsFault {
|
|
8298
|
-
/**
|
|
8299
|
-
* @internal
|
|
8300
|
-
*/
|
|
8301
|
-
const filterSensitiveLog: (obj: ExportTaskAlreadyExistsFault) => any;
|
|
8302
|
-
}
|
|
8303
8190
|
/**
|
|
8304
8191
|
* <p>The IAM role requires additional permissions to export to an Amazon S3 bucket.</p>
|
|
8305
8192
|
*/
|
|
@@ -8308,12 +8195,6 @@ export interface IamRoleMissingPermissionsFault extends __SmithyException, $Meta
|
|
|
8308
8195
|
$fault: "client";
|
|
8309
8196
|
message?: string;
|
|
8310
8197
|
}
|
|
8311
|
-
export declare namespace IamRoleMissingPermissionsFault {
|
|
8312
|
-
/**
|
|
8313
|
-
* @internal
|
|
8314
|
-
*/
|
|
8315
|
-
const filterSensitiveLog: (obj: IamRoleMissingPermissionsFault) => any;
|
|
8316
|
-
}
|
|
8317
8198
|
/**
|
|
8318
8199
|
* <p>The IAM role is missing for exporting to an Amazon S3 bucket.</p>
|
|
8319
8200
|
*/
|
|
@@ -8322,12 +8203,6 @@ export interface IamRoleNotFoundFault extends __SmithyException, $MetadataBearer
|
|
|
8322
8203
|
$fault: "client";
|
|
8323
8204
|
message?: string;
|
|
8324
8205
|
}
|
|
8325
|
-
export declare namespace IamRoleNotFoundFault {
|
|
8326
|
-
/**
|
|
8327
|
-
* @internal
|
|
8328
|
-
*/
|
|
8329
|
-
const filterSensitiveLog: (obj: IamRoleNotFoundFault) => any;
|
|
8330
|
-
}
|
|
8331
8206
|
/**
|
|
8332
8207
|
* <p>The export is invalid for exporting to an Amazon S3 bucket.</p>
|
|
8333
8208
|
*/
|
|
@@ -8336,12 +8211,6 @@ export interface InvalidExportOnlyFault extends __SmithyException, $MetadataBear
|
|
|
8336
8211
|
$fault: "client";
|
|
8337
8212
|
message?: string;
|
|
8338
8213
|
}
|
|
8339
|
-
export declare namespace InvalidExportOnlyFault {
|
|
8340
|
-
/**
|
|
8341
|
-
* @internal
|
|
8342
|
-
*/
|
|
8343
|
-
const filterSensitiveLog: (obj: InvalidExportOnlyFault) => any;
|
|
8344
|
-
}
|
|
8345
8214
|
/**
|
|
8346
8215
|
* <p>The state of the export snapshot is invalid for exporting to an Amazon S3 bucket.</p>
|
|
8347
8216
|
*/
|
|
@@ -8350,12 +8219,6 @@ export interface InvalidExportSourceStateFault extends __SmithyException, $Metad
|
|
|
8350
8219
|
$fault: "client";
|
|
8351
8220
|
message?: string;
|
|
8352
8221
|
}
|
|
8353
|
-
export declare namespace InvalidExportSourceStateFault {
|
|
8354
|
-
/**
|
|
8355
|
-
* @internal
|
|
8356
|
-
*/
|
|
8357
|
-
const filterSensitiveLog: (obj: InvalidExportSourceStateFault) => any;
|
|
8358
|
-
}
|
|
8359
8222
|
export interface StartExportTaskMessage {
|
|
8360
8223
|
/**
|
|
8361
8224
|
* <p>A unique identifier for the snapshot export task. This ID isn't an identifier for
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { RDSClientConfig } from "./RDSClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { RDSClientConfig } from "./RDSClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
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";
|
|
9
9
|
import { AddRoleToDBClusterCommandInput, AddRoleToDBClusterCommandOutput } from "./commands/AddRoleToDBClusterCommand";
|
|
10
10
|
import { AddRoleToDBInstanceCommandInput, AddRoleToDBInstanceCommandOutput } from "./commands/AddRoleToDBInstanceCommand";
|
|
@@ -192,6 +192,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
192
192
|
regionInfoProvider?: RegionInfoProvider;
|
|
193
193
|
|
|
194
194
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
195
|
+
|
|
196
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
195
197
|
}
|
|
196
198
|
declare type RDSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
197
199
|
|