@aws-sdk/client-rds 3.427.0 → 3.429.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/dist-cjs/protocols/Aws_query.js +36 -0
- package/dist-es/protocols/Aws_query.js +36 -0
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +3 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +3 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeValidDBInstanceModificationsCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +3 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +2 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +3 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +3 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +3 -0
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +2 -0
- package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +57 -27
- package/dist-types/models/models_1.d.ts +48 -18
- package/dist-types/ts3.4/models/models_0.d.ts +33 -27
- package/dist-types/ts3.4/models/models_1.d.ts +24 -18
- package/package.json +33 -33
|
@@ -315,7 +315,7 @@ export interface ExportTask {
|
|
|
315
315
|
TotalExtractedDataInGB?: number;
|
|
316
316
|
FailureCause?: string;
|
|
317
317
|
WarningMessage?: string;
|
|
318
|
-
SourceType?: ExportSourceType
|
|
318
|
+
SourceType?: ExportSourceType;
|
|
319
319
|
}
|
|
320
320
|
export declare class ExportTaskNotFoundFault extends __BaseException {
|
|
321
321
|
readonly name: "ExportTaskNotFoundFault";
|
|
@@ -517,6 +517,7 @@ export interface DBSnapshot {
|
|
|
517
517
|
SnapshotTarget?: string;
|
|
518
518
|
StorageThroughput?: number;
|
|
519
519
|
DBSystemId?: string;
|
|
520
|
+
DedicatedLogVolume?: boolean;
|
|
520
521
|
}
|
|
521
522
|
export interface CopyDBSnapshotResult {
|
|
522
523
|
DBSnapshot?: DBSnapshot;
|
|
@@ -997,15 +998,15 @@ export interface DBCluster {
|
|
|
997
998
|
ScalingConfigurationInfo?: ScalingConfigurationInfo;
|
|
998
999
|
DeletionProtection?: boolean;
|
|
999
1000
|
HttpEndpointEnabled?: boolean;
|
|
1000
|
-
ActivityStreamMode?: ActivityStreamMode
|
|
1001
|
-
ActivityStreamStatus?: ActivityStreamStatus
|
|
1001
|
+
ActivityStreamMode?: ActivityStreamMode;
|
|
1002
|
+
ActivityStreamStatus?: ActivityStreamStatus;
|
|
1002
1003
|
ActivityStreamKmsKeyId?: string;
|
|
1003
1004
|
ActivityStreamKinesisStreamName?: string;
|
|
1004
1005
|
CopyTagsToSnapshot?: boolean;
|
|
1005
1006
|
CrossAccountClone?: boolean;
|
|
1006
1007
|
DomainMemberships?: DomainMembership[];
|
|
1007
1008
|
TagList?: Tag[];
|
|
1008
|
-
GlobalWriteForwardingStatus?: WriteForwardingStatus
|
|
1009
|
+
GlobalWriteForwardingStatus?: WriteForwardingStatus;
|
|
1009
1010
|
GlobalWriteForwardingRequested?: boolean;
|
|
1010
1011
|
PendingModifiedValues?: ClusterPendingModifiedValues;
|
|
1011
1012
|
DBClusterInstanceClass?: string;
|
|
@@ -1023,7 +1024,7 @@ export interface DBCluster {
|
|
|
1023
1024
|
DBSystemId?: string;
|
|
1024
1025
|
MasterUserSecret?: MasterUserSecret;
|
|
1025
1026
|
IOOptimizedNextAllowedModificationTime?: Date;
|
|
1026
|
-
LocalWriteForwardingStatus?: LocalWriteForwardingStatus
|
|
1027
|
+
LocalWriteForwardingStatus?: LocalWriteForwardingStatus;
|
|
1027
1028
|
AwsBackupRecoveryPointArn?: string;
|
|
1028
1029
|
}
|
|
1029
1030
|
export interface CreateDBClusterResult {
|
|
@@ -1249,6 +1250,7 @@ export interface CreateDBInstanceMessage {
|
|
|
1249
1250
|
MasterUserSecretKmsKeyId?: string;
|
|
1250
1251
|
CACertificateIdentifier?: string;
|
|
1251
1252
|
DBSystemId?: string;
|
|
1253
|
+
DedicatedLogVolume?: boolean;
|
|
1252
1254
|
}
|
|
1253
1255
|
export interface DBInstanceRole {
|
|
1254
1256
|
RoleArn?: string;
|
|
@@ -1319,10 +1321,11 @@ export interface PendingModifiedValues {
|
|
|
1319
1321
|
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
|
|
1320
1322
|
ProcessorFeatures?: ProcessorFeature[];
|
|
1321
1323
|
IAMDatabaseAuthenticationEnabled?: boolean;
|
|
1322
|
-
AutomationMode?: AutomationMode
|
|
1324
|
+
AutomationMode?: AutomationMode;
|
|
1323
1325
|
ResumeFullAutomationModeTime?: Date;
|
|
1324
1326
|
StorageThroughput?: number;
|
|
1325
1327
|
Engine?: string;
|
|
1328
|
+
DedicatedLogVolume?: boolean;
|
|
1326
1329
|
}
|
|
1327
1330
|
export declare const ReplicaMode: {
|
|
1328
1331
|
readonly MOUNTED: "mounted";
|
|
@@ -1362,7 +1365,7 @@ export interface DBInstance {
|
|
|
1362
1365
|
ReadReplicaSourceDBInstanceIdentifier?: string;
|
|
1363
1366
|
ReadReplicaDBInstanceIdentifiers?: string[];
|
|
1364
1367
|
ReadReplicaDBClusterIdentifiers?: string[];
|
|
1365
|
-
ReplicaMode?: ReplicaMode
|
|
1368
|
+
ReplicaMode?: ReplicaMode;
|
|
1366
1369
|
LicenseModel?: string;
|
|
1367
1370
|
Iops?: number;
|
|
1368
1371
|
OptionGroupMemberships?: OptionGroupMembership[];
|
|
@@ -1401,23 +1404,24 @@ export interface DBInstance {
|
|
|
1401
1404
|
DBInstanceAutomatedBackupsReplications?: DBInstanceAutomatedBackupsReplication[];
|
|
1402
1405
|
CustomerOwnedIpEnabled?: boolean;
|
|
1403
1406
|
AwsBackupRecoveryPointArn?: string;
|
|
1404
|
-
ActivityStreamStatus?: ActivityStreamStatus
|
|
1407
|
+
ActivityStreamStatus?: ActivityStreamStatus;
|
|
1405
1408
|
ActivityStreamKmsKeyId?: string;
|
|
1406
1409
|
ActivityStreamKinesisStreamName?: string;
|
|
1407
|
-
ActivityStreamMode?: ActivityStreamMode
|
|
1410
|
+
ActivityStreamMode?: ActivityStreamMode;
|
|
1408
1411
|
ActivityStreamEngineNativeAuditFieldsIncluded?: boolean;
|
|
1409
|
-
AutomationMode?: AutomationMode
|
|
1412
|
+
AutomationMode?: AutomationMode;
|
|
1410
1413
|
ResumeFullAutomationModeTime?: Date;
|
|
1411
1414
|
CustomIamInstanceProfile?: string;
|
|
1412
1415
|
BackupTarget?: string;
|
|
1413
1416
|
NetworkType?: string;
|
|
1414
|
-
ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus
|
|
1417
|
+
ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus;
|
|
1415
1418
|
StorageThroughput?: number;
|
|
1416
1419
|
DBSystemId?: string;
|
|
1417
1420
|
MasterUserSecret?: MasterUserSecret;
|
|
1418
1421
|
CertificateDetails?: CertificateDetails;
|
|
1419
1422
|
ReadReplicaSourceDBClusterIdentifier?: string;
|
|
1420
1423
|
PercentProgress?: string;
|
|
1424
|
+
DedicatedLogVolume?: boolean;
|
|
1421
1425
|
}
|
|
1422
1426
|
export interface CreateDBInstanceResult {
|
|
1423
1427
|
DBInstance?: DBInstance;
|
|
@@ -1498,7 +1502,7 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
1498
1502
|
DomainOu?: string;
|
|
1499
1503
|
DomainAuthSecretArn?: string;
|
|
1500
1504
|
DomainDnsIps?: string[];
|
|
1501
|
-
ReplicaMode?: ReplicaMode
|
|
1505
|
+
ReplicaMode?: ReplicaMode;
|
|
1502
1506
|
MaxAllocatedStorage?: number;
|
|
1503
1507
|
CustomIamInstanceProfile?: string;
|
|
1504
1508
|
NetworkType?: string;
|
|
@@ -1506,6 +1510,7 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
1506
1510
|
EnableCustomerOwnedIp?: boolean;
|
|
1507
1511
|
AllocatedStorage?: number;
|
|
1508
1512
|
SourceDBClusterIdentifier?: string;
|
|
1513
|
+
DedicatedLogVolume?: boolean;
|
|
1509
1514
|
}
|
|
1510
1515
|
export interface CreateDBInstanceReadReplicaResult {
|
|
1511
1516
|
DBInstance?: DBInstance;
|
|
@@ -1554,10 +1559,10 @@ export type IAMAuthMode = (typeof IAMAuthMode)[keyof typeof IAMAuthMode];
|
|
|
1554
1559
|
export interface UserAuthConfig {
|
|
1555
1560
|
Description?: string;
|
|
1556
1561
|
UserName?: string;
|
|
1557
|
-
AuthScheme?: AuthScheme
|
|
1562
|
+
AuthScheme?: AuthScheme;
|
|
1558
1563
|
SecretArn?: string;
|
|
1559
|
-
IAMAuth?: IAMAuthMode
|
|
1560
|
-
ClientPasswordAuthType?: ClientPasswordAuthType
|
|
1564
|
+
IAMAuth?: IAMAuthMode;
|
|
1565
|
+
ClientPasswordAuthType?: ClientPasswordAuthType;
|
|
1561
1566
|
}
|
|
1562
1567
|
export declare const EngineFamily: {
|
|
1563
1568
|
readonly MYSQL: "MYSQL";
|
|
@@ -1567,7 +1572,7 @@ export declare const EngineFamily: {
|
|
|
1567
1572
|
export type EngineFamily = (typeof EngineFamily)[keyof typeof EngineFamily];
|
|
1568
1573
|
export interface CreateDBProxyRequest {
|
|
1569
1574
|
DBProxyName: string | undefined;
|
|
1570
|
-
EngineFamily: EngineFamily |
|
|
1575
|
+
EngineFamily: EngineFamily | undefined;
|
|
1571
1576
|
Auth: UserAuthConfig[] | undefined;
|
|
1572
1577
|
RoleArn: string | undefined;
|
|
1573
1578
|
VpcSubnetIds: string[] | undefined;
|
|
@@ -1580,10 +1585,10 @@ export interface CreateDBProxyRequest {
|
|
|
1580
1585
|
export interface UserAuthConfigInfo {
|
|
1581
1586
|
Description?: string;
|
|
1582
1587
|
UserName?: string;
|
|
1583
|
-
AuthScheme?: AuthScheme
|
|
1588
|
+
AuthScheme?: AuthScheme;
|
|
1584
1589
|
SecretArn?: string;
|
|
1585
|
-
IAMAuth?: IAMAuthMode
|
|
1586
|
-
ClientPasswordAuthType?: ClientPasswordAuthType
|
|
1590
|
+
IAMAuth?: IAMAuthMode;
|
|
1591
|
+
ClientPasswordAuthType?: ClientPasswordAuthType;
|
|
1587
1592
|
}
|
|
1588
1593
|
export declare const DBProxyStatus: {
|
|
1589
1594
|
readonly AVAILABLE: "available";
|
|
@@ -1600,7 +1605,7 @@ export type DBProxyStatus = (typeof DBProxyStatus)[keyof typeof DBProxyStatus];
|
|
|
1600
1605
|
export interface DBProxy {
|
|
1601
1606
|
DBProxyName?: string;
|
|
1602
1607
|
DBProxyArn?: string;
|
|
1603
|
-
Status?: DBProxyStatus
|
|
1608
|
+
Status?: DBProxyStatus;
|
|
1604
1609
|
EngineFamily?: string;
|
|
1605
1610
|
VpcId?: string;
|
|
1606
1611
|
VpcSecurityGroupIds?: string[];
|
|
@@ -1642,7 +1647,7 @@ export interface CreateDBProxyEndpointRequest {
|
|
|
1642
1647
|
DBProxyEndpointName: string | undefined;
|
|
1643
1648
|
VpcSubnetIds: string[] | undefined;
|
|
1644
1649
|
VpcSecurityGroupIds?: string[];
|
|
1645
|
-
TargetRole?: DBProxyEndpointTargetRole
|
|
1650
|
+
TargetRole?: DBProxyEndpointTargetRole;
|
|
1646
1651
|
Tags?: Tag[];
|
|
1647
1652
|
}
|
|
1648
1653
|
export declare const DBProxyEndpointStatus: {
|
|
@@ -1659,13 +1664,13 @@ export interface DBProxyEndpoint {
|
|
|
1659
1664
|
DBProxyEndpointName?: string;
|
|
1660
1665
|
DBProxyEndpointArn?: string;
|
|
1661
1666
|
DBProxyName?: string;
|
|
1662
|
-
Status?: DBProxyEndpointStatus
|
|
1667
|
+
Status?: DBProxyEndpointStatus;
|
|
1663
1668
|
VpcId?: string;
|
|
1664
1669
|
VpcSecurityGroupIds?: string[];
|
|
1665
1670
|
VpcSubnetIds?: string[];
|
|
1666
1671
|
Endpoint?: string;
|
|
1667
1672
|
CreatedDate?: Date;
|
|
1668
|
-
TargetRole?: DBProxyEndpointTargetRole
|
|
1673
|
+
TargetRole?: DBProxyEndpointTargetRole;
|
|
1669
1674
|
IsDefault?: boolean;
|
|
1670
1675
|
}
|
|
1671
1676
|
export interface CreateDBProxyEndpointResponse {
|
|
@@ -1857,7 +1862,7 @@ export declare const FailoverStatus: {
|
|
|
1857
1862
|
export type FailoverStatus =
|
|
1858
1863
|
(typeof FailoverStatus)[keyof typeof FailoverStatus];
|
|
1859
1864
|
export interface FailoverState {
|
|
1860
|
-
Status?: FailoverStatus
|
|
1865
|
+
Status?: FailoverStatus;
|
|
1861
1866
|
FromDbClusterArn?: string;
|
|
1862
1867
|
ToDbClusterArn?: string;
|
|
1863
1868
|
IsDataLossAllowed?: boolean;
|
|
@@ -1872,8 +1877,8 @@ export interface GlobalClusterMember {
|
|
|
1872
1877
|
DBClusterArn?: string;
|
|
1873
1878
|
Readers?: string[];
|
|
1874
1879
|
IsWriter?: boolean;
|
|
1875
|
-
GlobalWriteForwardingStatus?: WriteForwardingStatus
|
|
1876
|
-
SynchronizationStatus?: GlobalClusterMemberSynchronizationStatus
|
|
1880
|
+
GlobalWriteForwardingStatus?: WriteForwardingStatus;
|
|
1881
|
+
SynchronizationStatus?: GlobalClusterMemberSynchronizationStatus;
|
|
1877
1882
|
}
|
|
1878
1883
|
export interface GlobalCluster {
|
|
1879
1884
|
GlobalClusterIdentifier?: string;
|
|
@@ -2139,6 +2144,7 @@ export interface DBInstanceAutomatedBackup {
|
|
|
2139
2144
|
BackupTarget?: string;
|
|
2140
2145
|
StorageThroughput?: number;
|
|
2141
2146
|
AwsBackupRecoveryPointArn?: string;
|
|
2147
|
+
DedicatedLogVolume?: boolean;
|
|
2142
2148
|
}
|
|
2143
2149
|
export interface DeleteDBInstanceAutomatedBackupResult {
|
|
2144
2150
|
DBInstanceAutomatedBackup?: DBInstanceAutomatedBackup;
|
|
@@ -2354,7 +2360,7 @@ export interface Parameter {
|
|
|
2354
2360
|
AllowedValues?: string;
|
|
2355
2361
|
IsModifiable?: boolean;
|
|
2356
2362
|
MinimumEngineVersion?: string;
|
|
2357
|
-
ApplyMethod?: ApplyMethod
|
|
2363
|
+
ApplyMethod?: ApplyMethod;
|
|
2358
2364
|
SupportedEngineModes?: string[];
|
|
2359
2365
|
}
|
|
2360
2366
|
export interface DBClusterParameterGroupDetails {
|
|
@@ -185,8 +185,8 @@ export declare const TargetState: {
|
|
|
185
185
|
};
|
|
186
186
|
export type TargetState = (typeof TargetState)[keyof typeof TargetState];
|
|
187
187
|
export interface TargetHealth {
|
|
188
|
-
State?: TargetState
|
|
189
|
-
Reason?: TargetHealthReason
|
|
188
|
+
State?: TargetState;
|
|
189
|
+
Reason?: TargetHealthReason;
|
|
190
190
|
Description?: string;
|
|
191
191
|
}
|
|
192
192
|
export declare const TargetType: {
|
|
@@ -201,8 +201,8 @@ export interface DBProxyTarget {
|
|
|
201
201
|
TrackedClusterId?: string;
|
|
202
202
|
RdsResourceId?: string;
|
|
203
203
|
Port?: number;
|
|
204
|
-
Type?: TargetType
|
|
205
|
-
Role?: TargetRole
|
|
204
|
+
Type?: TargetType;
|
|
205
|
+
Role?: TargetRole;
|
|
206
206
|
TargetHealth?: TargetHealth;
|
|
207
207
|
}
|
|
208
208
|
export interface DescribeDBProxyTargetsResponse {
|
|
@@ -306,7 +306,7 @@ export declare const SourceType: {
|
|
|
306
306
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
307
307
|
export interface DescribeEventsMessage {
|
|
308
308
|
SourceIdentifier?: string;
|
|
309
|
-
SourceType?: SourceType
|
|
309
|
+
SourceType?: SourceType;
|
|
310
310
|
StartTime?: Date;
|
|
311
311
|
EndTime?: Date;
|
|
312
312
|
Duration?: number;
|
|
@@ -317,7 +317,7 @@ export interface DescribeEventsMessage {
|
|
|
317
317
|
}
|
|
318
318
|
export interface Event {
|
|
319
319
|
SourceIdentifier?: string;
|
|
320
|
-
SourceType?: SourceType
|
|
320
|
+
SourceType?: SourceType;
|
|
321
321
|
Message?: string;
|
|
322
322
|
EventCategories?: string[];
|
|
323
323
|
Date?: Date;
|
|
@@ -343,7 +343,7 @@ export interface DescribeExportTasksMessage {
|
|
|
343
343
|
Filters?: Filter[];
|
|
344
344
|
Marker?: string;
|
|
345
345
|
MaxRecords?: number;
|
|
346
|
-
SourceType?: ExportSourceType
|
|
346
|
+
SourceType?: ExportSourceType;
|
|
347
347
|
}
|
|
348
348
|
export interface ExportTasksMessage {
|
|
349
349
|
Marker?: string;
|
|
@@ -471,6 +471,7 @@ export interface OrderableDBInstanceOption {
|
|
|
471
471
|
MaxStorageThroughputPerDbInstance?: number;
|
|
472
472
|
MinStorageThroughputPerIops?: number;
|
|
473
473
|
MaxStorageThroughputPerIops?: number;
|
|
474
|
+
SupportsDedicatedLogVolume?: boolean;
|
|
474
475
|
}
|
|
475
476
|
export interface OrderableDBInstanceOptionsMessage {
|
|
476
477
|
OrderableDBInstanceOptions?: OrderableDBInstanceOption[];
|
|
@@ -612,6 +613,7 @@ export interface ValidStorageOptions {
|
|
|
612
613
|
export interface ValidDBInstanceModificationsMessage {
|
|
613
614
|
Storage?: ValidStorageOptions[];
|
|
614
615
|
ValidProcessorFeatures?: AvailableProcessorFeature[];
|
|
616
|
+
SupportsDedicatedLogVolume?: boolean;
|
|
615
617
|
}
|
|
616
618
|
export interface DescribeValidDBInstanceModificationsResult {
|
|
617
619
|
ValidDBInstanceModificationsMessage?: ValidDBInstanceModificationsMessage;
|
|
@@ -665,15 +667,15 @@ export type AuditPolicyState =
|
|
|
665
667
|
(typeof AuditPolicyState)[keyof typeof AuditPolicyState];
|
|
666
668
|
export interface ModifyActivityStreamRequest {
|
|
667
669
|
ResourceArn?: string;
|
|
668
|
-
AuditPolicyState?: AuditPolicyState
|
|
670
|
+
AuditPolicyState?: AuditPolicyState;
|
|
669
671
|
}
|
|
670
672
|
export interface ModifyActivityStreamResponse {
|
|
671
673
|
KmsKeyId?: string;
|
|
672
674
|
KinesisStreamName?: string;
|
|
673
|
-
Status?: ActivityStreamStatus
|
|
674
|
-
Mode?: ActivityStreamMode
|
|
675
|
+
Status?: ActivityStreamStatus;
|
|
676
|
+
Mode?: ActivityStreamMode;
|
|
675
677
|
EngineNativeAuditFieldsIncluded?: boolean;
|
|
676
|
-
PolicyStatus?: ActivityStreamPolicyStatus
|
|
678
|
+
PolicyStatus?: ActivityStreamPolicyStatus;
|
|
677
679
|
}
|
|
678
680
|
export interface ModifyCertificatesMessage {
|
|
679
681
|
CertificateIdentifier?: string;
|
|
@@ -713,7 +715,7 @@ export interface ModifyCustomDBEngineVersionMessage {
|
|
|
713
715
|
Engine: string | undefined;
|
|
714
716
|
EngineVersion: string | undefined;
|
|
715
717
|
Description?: string;
|
|
716
|
-
Status?: CustomEngineVersionStatus
|
|
718
|
+
Status?: CustomEngineVersionStatus;
|
|
717
719
|
}
|
|
718
720
|
export interface CloudwatchLogsExportConfiguration {
|
|
719
721
|
EnableLogTypes?: string[];
|
|
@@ -864,10 +866,10 @@ export interface ModifyDBInstanceMessage {
|
|
|
864
866
|
DeletionProtection?: boolean;
|
|
865
867
|
MaxAllocatedStorage?: number;
|
|
866
868
|
CertificateRotationRestart?: boolean;
|
|
867
|
-
ReplicaMode?: ReplicaMode
|
|
869
|
+
ReplicaMode?: ReplicaMode;
|
|
868
870
|
EnableCustomerOwnedIp?: boolean;
|
|
869
871
|
AwsBackupRecoveryPointArn?: string;
|
|
870
|
-
AutomationMode?: AutomationMode
|
|
872
|
+
AutomationMode?: AutomationMode;
|
|
871
873
|
ResumeFullAutomationModeMinutes?: number;
|
|
872
874
|
NetworkType?: string;
|
|
873
875
|
StorageThroughput?: number;
|
|
@@ -875,6 +877,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
875
877
|
RotateMasterUserPassword?: boolean;
|
|
876
878
|
MasterUserSecretKmsKeyId?: string;
|
|
877
879
|
Engine?: string;
|
|
880
|
+
DedicatedLogVolume?: boolean;
|
|
878
881
|
}
|
|
879
882
|
export interface ModifyDBInstanceResult {
|
|
880
883
|
DBInstance?: DBInstance;
|
|
@@ -1298,6 +1301,7 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
|
|
|
1298
1301
|
StorageThroughput?: number;
|
|
1299
1302
|
DBClusterSnapshotIdentifier?: string;
|
|
1300
1303
|
AllocatedStorage?: number;
|
|
1304
|
+
DedicatedLogVolume?: boolean;
|
|
1301
1305
|
}
|
|
1302
1306
|
export interface RestoreDBInstanceFromDBSnapshotResult {
|
|
1303
1307
|
DBInstance?: DBInstance;
|
|
@@ -1351,6 +1355,7 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
1351
1355
|
StorageThroughput?: number;
|
|
1352
1356
|
ManageMasterUserPassword?: boolean;
|
|
1353
1357
|
MasterUserSecretKmsKeyId?: string;
|
|
1358
|
+
DedicatedLogVolume?: boolean;
|
|
1354
1359
|
}
|
|
1355
1360
|
export interface RestoreDBInstanceFromS3Result {
|
|
1356
1361
|
DBInstance?: DBInstance;
|
|
@@ -1409,6 +1414,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
1409
1414
|
NetworkType?: string;
|
|
1410
1415
|
StorageThroughput?: number;
|
|
1411
1416
|
AllocatedStorage?: number;
|
|
1417
|
+
DedicatedLogVolume?: boolean;
|
|
1412
1418
|
}
|
|
1413
1419
|
export interface RestoreDBInstanceToPointInTimeResult {
|
|
1414
1420
|
DBInstance?: DBInstance;
|
|
@@ -1425,7 +1431,7 @@ export interface RevokeDBSecurityGroupIngressResult {
|
|
|
1425
1431
|
}
|
|
1426
1432
|
export interface StartActivityStreamRequest {
|
|
1427
1433
|
ResourceArn: string | undefined;
|
|
1428
|
-
Mode: ActivityStreamMode |
|
|
1434
|
+
Mode: ActivityStreamMode | undefined;
|
|
1429
1435
|
KmsKeyId: string | undefined;
|
|
1430
1436
|
ApplyImmediately?: boolean;
|
|
1431
1437
|
EngineNativeAuditFieldsIncluded?: boolean;
|
|
@@ -1433,8 +1439,8 @@ export interface StartActivityStreamRequest {
|
|
|
1433
1439
|
export interface StartActivityStreamResponse {
|
|
1434
1440
|
KmsKeyId?: string;
|
|
1435
1441
|
KinesisStreamName?: string;
|
|
1436
|
-
Status?: ActivityStreamStatus
|
|
1437
|
-
Mode?: ActivityStreamMode
|
|
1442
|
+
Status?: ActivityStreamStatus;
|
|
1443
|
+
Mode?: ActivityStreamMode;
|
|
1438
1444
|
ApplyImmediately?: boolean;
|
|
1439
1445
|
EngineNativeAuditFieldsIncluded?: boolean;
|
|
1440
1446
|
}
|
|
@@ -1510,7 +1516,7 @@ export interface StopActivityStreamRequest {
|
|
|
1510
1516
|
export interface StopActivityStreamResponse {
|
|
1511
1517
|
KmsKeyId?: string;
|
|
1512
1518
|
KinesisStreamName?: string;
|
|
1513
|
-
Status?: ActivityStreamStatus
|
|
1519
|
+
Status?: ActivityStreamStatus;
|
|
1514
1520
|
}
|
|
1515
1521
|
export interface StopDBClusterMessage {
|
|
1516
1522
|
DBClusterIdentifier: string | undefined;
|
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.429.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",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.
|
|
47
|
-
"@smithy/node-http-handler": "^2.1.
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.1.
|
|
50
|
-
"@smithy/types": "^2.3.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-sdk-rds": "3.429.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
33
|
+
"@aws-sdk/types": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
37
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
39
|
+
"@smithy/hash-node": "^2.0.11",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
46
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
47
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
49
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
50
|
+
"@smithy/types": "^2.3.5",
|
|
51
|
+
"@smithy/url-parser": "^2.0.11",
|
|
52
52
|
"@smithy/util-base64": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-retry": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
57
|
+
"@smithy/util-retry": "^2.0.4",
|
|
58
58
|
"@smithy/util-utf8": "^2.0.0",
|
|
59
|
-
"@smithy/util-waiter": "^2.0.
|
|
59
|
+
"@smithy/util-waiter": "^2.0.11",
|
|
60
60
|
"fast-xml-parser": "4.2.5",
|
|
61
61
|
"tslib": "^2.5.0"
|
|
62
62
|
},
|