@aws-sdk/client-rds 3.381.0 → 3.385.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/README.md +16 -0
- package/dist-cjs/RDS.js +4 -0
- package/dist-cjs/commands/DeleteDBClusterAutomatedBackupCommand.js +46 -0
- package/dist-cjs/commands/DescribeDBClusterAutomatedBackupsCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +40 -1
- package/dist-cjs/protocols/Aws_query.js +301 -6
- package/dist-es/RDS.js +4 -0
- package/dist-es/commands/DeleteDBClusterAutomatedBackupCommand.js +42 -0
- package/dist-es/commands/DescribeDBClusterAutomatedBackupsCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +36 -0
- package/dist-es/protocols/Aws_query.js +292 -1
- package/dist-types/RDS.d.ts +14 -0
- package/dist-types/RDSClient.d.ts +4 -2
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +110 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +122 -0
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBLogFilesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBParameterGroupsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +5 -1
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +1319 -285
- package/dist-types/models/models_1.d.ts +1156 -2
- package/dist-types/protocols/Aws_query.d.ts +18 -0
- package/dist-types/ts3.4/RDS.d.ts +40 -0
- package/dist-types/ts3.4/RDSClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBInstancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBLogFilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBParameterGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -48
- package/dist-types/ts3.4/models/models_1.d.ts +47 -1
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +5 -5
|
@@ -1168,6 +1168,42 @@ export class InvalidCustomDBEngineVersionStateFault extends __BaseException {
|
|
|
1168
1168
|
Object.setPrototypeOf(this, InvalidCustomDBEngineVersionStateFault.prototype);
|
|
1169
1169
|
}
|
|
1170
1170
|
}
|
|
1171
|
+
export class DBClusterAutomatedBackupQuotaExceededFault extends __BaseException {
|
|
1172
|
+
constructor(opts) {
|
|
1173
|
+
super({
|
|
1174
|
+
name: "DBClusterAutomatedBackupQuotaExceededFault",
|
|
1175
|
+
$fault: "client",
|
|
1176
|
+
...opts,
|
|
1177
|
+
});
|
|
1178
|
+
this.name = "DBClusterAutomatedBackupQuotaExceededFault";
|
|
1179
|
+
this.$fault = "client";
|
|
1180
|
+
Object.setPrototypeOf(this, DBClusterAutomatedBackupQuotaExceededFault.prototype);
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
export class DBClusterAutomatedBackupNotFoundFault extends __BaseException {
|
|
1184
|
+
constructor(opts) {
|
|
1185
|
+
super({
|
|
1186
|
+
name: "DBClusterAutomatedBackupNotFoundFault",
|
|
1187
|
+
$fault: "client",
|
|
1188
|
+
...opts,
|
|
1189
|
+
});
|
|
1190
|
+
this.name = "DBClusterAutomatedBackupNotFoundFault";
|
|
1191
|
+
this.$fault = "client";
|
|
1192
|
+
Object.setPrototypeOf(this, DBClusterAutomatedBackupNotFoundFault.prototype);
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
export class InvalidDBClusterAutomatedBackupStateFault extends __BaseException {
|
|
1196
|
+
constructor(opts) {
|
|
1197
|
+
super({
|
|
1198
|
+
name: "InvalidDBClusterAutomatedBackupStateFault",
|
|
1199
|
+
$fault: "client",
|
|
1200
|
+
...opts,
|
|
1201
|
+
});
|
|
1202
|
+
this.name = "InvalidDBClusterAutomatedBackupStateFault";
|
|
1203
|
+
this.$fault = "client";
|
|
1204
|
+
Object.setPrototypeOf(this, InvalidDBClusterAutomatedBackupStateFault.prototype);
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1171
1207
|
export class DBClusterEndpointNotFoundFault extends __BaseException {
|
|
1172
1208
|
constructor(opts) {
|
|
1173
1209
|
super({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
2
2
|
import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, getValueFromTextNode as __getValueFromTextNode, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeFloat as __serializeFloat, strictParseFloat as __strictParseFloat, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, withBaseException, } from "@smithy/smithy-client";
|
|
3
3
|
import { XMLParser } from "fast-xml-parser";
|
|
4
|
-
import { AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault, AuthorizationQuotaExceededFault, BackupPolicyNotFoundFault, BlueGreenDeploymentAlreadyExistsFault, BlueGreenDeploymentNotFoundFault, CertificateNotFoundFault, CreateCustomDBEngineVersionFault, CustomAvailabilityZoneNotFoundFault, CustomDBEngineVersionAlreadyExistsFault, CustomDBEngineVersionNotFoundFault, CustomDBEngineVersionQuotaExceededFault, DBClusterAlreadyExistsFault, DBClusterBacktrackNotFoundFault, DBClusterEndpointAlreadyExistsFault, DBClusterEndpointNotFoundFault, DBClusterEndpointQuotaExceededFault, DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault, DBClusterRoleAlreadyExistsFault, DBClusterRoleQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault, DBInstanceAutomatedBackupNotFoundFault, DBInstanceAutomatedBackupQuotaExceededFault, DBInstanceNotFoundFault, DBInstanceRoleAlreadyExistsFault, DBInstanceRoleQuotaExceededFault, DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault, DBProxyAlreadyExistsFault, DBProxyEndpointAlreadyExistsFault, DBProxyEndpointNotFoundFault, DBProxyEndpointQuotaExceededFault, DBProxyNotFoundFault, DBProxyQuotaExceededFault, DBProxyTargetGroupNotFoundFault, DBProxyTargetNotFoundFault, DBSecurityGroupAlreadyExistsFault, DBSecurityGroupNotFoundFault, DBSecurityGroupNotSupportedFault, DBSecurityGroupQuotaExceededFault, DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault, DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotAllowedFault, DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault, DomainNotFoundFault, Ec2ImagePropertiesNotSupportedFault, EventSubscriptionQuotaExceededFault, ExportTaskNotFoundFault, GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault, InstanceQuotaExceededFault, InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault, InvalidBlueGreenDeploymentStateFault, InvalidCustomDBEngineVersionStateFault, InvalidDBClusterEndpointStateFault, InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault, InvalidDBInstanceAutomatedBackupStateFault, InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault, InvalidDBProxyEndpointStateFault, InvalidDBProxyStateFault, InvalidDBSecurityGroupStateFault, InvalidDBSnapshotStateFault, InvalidDBSubnetGroupFault, InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault, InvalidExportTaskStateFault, InvalidGlobalClusterStateFault, InvalidOptionGroupStateFault, InvalidSubnet, InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault, NetworkTypeNotSupported, OptionGroupAlreadyExistsFault, OptionGroupNotFoundFault, OptionGroupQuotaExceededFault, ProvisionedIopsNotAvailableInAZFault, ResourceNotFoundFault, SnapshotQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceClusterNotSupportedFault, SourceDatabaseNotSupportedFault, SourceNotFoundFault, StorageQuotaExceededFault, StorageTypeNotSupportedFault, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault, } from "../models/models_0";
|
|
4
|
+
import { AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault, AuthorizationQuotaExceededFault, BackupPolicyNotFoundFault, BlueGreenDeploymentAlreadyExistsFault, BlueGreenDeploymentNotFoundFault, CertificateNotFoundFault, CreateCustomDBEngineVersionFault, CustomAvailabilityZoneNotFoundFault, CustomDBEngineVersionAlreadyExistsFault, CustomDBEngineVersionNotFoundFault, CustomDBEngineVersionQuotaExceededFault, DBClusterAlreadyExistsFault, DBClusterAutomatedBackupNotFoundFault, DBClusterAutomatedBackupQuotaExceededFault, DBClusterBacktrackNotFoundFault, DBClusterEndpointAlreadyExistsFault, DBClusterEndpointNotFoundFault, DBClusterEndpointQuotaExceededFault, DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault, DBClusterRoleAlreadyExistsFault, DBClusterRoleQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault, DBInstanceAutomatedBackupNotFoundFault, DBInstanceAutomatedBackupQuotaExceededFault, DBInstanceNotFoundFault, DBInstanceRoleAlreadyExistsFault, DBInstanceRoleQuotaExceededFault, DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault, DBProxyAlreadyExistsFault, DBProxyEndpointAlreadyExistsFault, DBProxyEndpointNotFoundFault, DBProxyEndpointQuotaExceededFault, DBProxyNotFoundFault, DBProxyQuotaExceededFault, DBProxyTargetGroupNotFoundFault, DBProxyTargetNotFoundFault, DBSecurityGroupAlreadyExistsFault, DBSecurityGroupNotFoundFault, DBSecurityGroupNotSupportedFault, DBSecurityGroupQuotaExceededFault, DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault, DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotAllowedFault, DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault, DomainNotFoundFault, Ec2ImagePropertiesNotSupportedFault, EventSubscriptionQuotaExceededFault, ExportTaskNotFoundFault, GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault, InstanceQuotaExceededFault, InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault, InvalidBlueGreenDeploymentStateFault, InvalidCustomDBEngineVersionStateFault, InvalidDBClusterAutomatedBackupStateFault, InvalidDBClusterEndpointStateFault, InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault, InvalidDBInstanceAutomatedBackupStateFault, InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault, InvalidDBProxyEndpointStateFault, InvalidDBProxyStateFault, InvalidDBSecurityGroupStateFault, InvalidDBSnapshotStateFault, InvalidDBSubnetGroupFault, InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault, InvalidExportTaskStateFault, InvalidGlobalClusterStateFault, InvalidOptionGroupStateFault, InvalidSubnet, InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault, NetworkTypeNotSupported, OptionGroupAlreadyExistsFault, OptionGroupNotFoundFault, OptionGroupQuotaExceededFault, ProvisionedIopsNotAvailableInAZFault, ResourceNotFoundFault, SnapshotQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceClusterNotSupportedFault, SourceDatabaseNotSupportedFault, SourceNotFoundFault, StorageQuotaExceededFault, StorageTypeNotSupportedFault, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault, } from "../models/models_0";
|
|
5
5
|
import { DBClusterRoleNotFoundFault, DBInstanceRoleNotFoundFault, DBLogFileNotFoundFault, DBProxyTargetAlreadyRegisteredFault, DBUpgradeDependencyFailureFault, ExportTaskAlreadyExistsFault, IamRoleMissingPermissionsFault, IamRoleNotFoundFault, InsufficientAvailableIPsInSubnetFault, InsufficientDBClusterCapacityFault, InvalidDBClusterCapacityFault, InvalidExportOnlyFault, InvalidExportSourceStateFault, InvalidRestoreFault, InvalidS3BucketFault, PointInTimeRestoreNotEnabledFault, ReservedDBInstanceAlreadyExistsFault, ReservedDBInstanceNotFoundFault, ReservedDBInstanceQuotaExceededFault, ReservedDBInstancesOfferingNotFoundFault, SharedSnapshotQuotaExceededFault, StorageTypeNotAvailableFault, SubnetAlreadyInUse, } from "../models/models_1";
|
|
6
6
|
import { RDSServiceException as __BaseException } from "../models/RDSServiceException";
|
|
7
7
|
export const se_AddRoleToDBClusterCommand = async (input, context) => {
|
|
@@ -334,6 +334,16 @@ export const se_DeleteDBClusterCommand = async (input, context) => {
|
|
|
334
334
|
});
|
|
335
335
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
336
336
|
};
|
|
337
|
+
export const se_DeleteDBClusterAutomatedBackupCommand = async (input, context) => {
|
|
338
|
+
const headers = SHARED_HEADERS;
|
|
339
|
+
let body;
|
|
340
|
+
body = buildFormUrlencodedString({
|
|
341
|
+
...se_DeleteDBClusterAutomatedBackupMessage(input, context),
|
|
342
|
+
Action: "DeleteDBClusterAutomatedBackup",
|
|
343
|
+
Version: "2014-10-31",
|
|
344
|
+
});
|
|
345
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
346
|
+
};
|
|
337
347
|
export const se_DeleteDBClusterEndpointCommand = async (input, context) => {
|
|
338
348
|
const headers = SHARED_HEADERS;
|
|
339
349
|
let body;
|
|
@@ -514,6 +524,16 @@ export const se_DescribeCertificatesCommand = async (input, context) => {
|
|
|
514
524
|
});
|
|
515
525
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
516
526
|
};
|
|
527
|
+
export const se_DescribeDBClusterAutomatedBackupsCommand = async (input, context) => {
|
|
528
|
+
const headers = SHARED_HEADERS;
|
|
529
|
+
let body;
|
|
530
|
+
body = buildFormUrlencodedString({
|
|
531
|
+
...se_DescribeDBClusterAutomatedBackupsMessage(input, context),
|
|
532
|
+
Action: "DescribeDBClusterAutomatedBackups",
|
|
533
|
+
Version: "2014-10-31",
|
|
534
|
+
});
|
|
535
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
536
|
+
};
|
|
517
537
|
export const se_DescribeDBClusterBacktracksCommand = async (input, context) => {
|
|
518
538
|
const headers = SHARED_HEADERS;
|
|
519
539
|
let body;
|
|
@@ -2884,6 +2904,9 @@ const de_DeleteDBClusterCommandError = async (output, context) => {
|
|
|
2884
2904
|
};
|
|
2885
2905
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
2886
2906
|
switch (errorCode) {
|
|
2907
|
+
case "DBClusterAutomatedBackupQuotaExceededFault":
|
|
2908
|
+
case "com.amazonaws.rds#DBClusterAutomatedBackupQuotaExceededFault":
|
|
2909
|
+
throw await de_DBClusterAutomatedBackupQuotaExceededFaultRes(parsedOutput, context);
|
|
2887
2910
|
case "DBClusterNotFoundFault":
|
|
2888
2911
|
case "com.amazonaws.rds#DBClusterNotFoundFault":
|
|
2889
2912
|
throw await de_DBClusterNotFoundFaultRes(parsedOutput, context);
|
|
@@ -2908,6 +2931,41 @@ const de_DeleteDBClusterCommandError = async (output, context) => {
|
|
|
2908
2931
|
});
|
|
2909
2932
|
}
|
|
2910
2933
|
};
|
|
2934
|
+
export const de_DeleteDBClusterAutomatedBackupCommand = async (output, context) => {
|
|
2935
|
+
if (output.statusCode >= 300) {
|
|
2936
|
+
return de_DeleteDBClusterAutomatedBackupCommandError(output, context);
|
|
2937
|
+
}
|
|
2938
|
+
const data = await parseBody(output.body, context);
|
|
2939
|
+
let contents = {};
|
|
2940
|
+
contents = de_DeleteDBClusterAutomatedBackupResult(data.DeleteDBClusterAutomatedBackupResult, context);
|
|
2941
|
+
const response = {
|
|
2942
|
+
$metadata: deserializeMetadata(output),
|
|
2943
|
+
...contents,
|
|
2944
|
+
};
|
|
2945
|
+
return response;
|
|
2946
|
+
};
|
|
2947
|
+
const de_DeleteDBClusterAutomatedBackupCommandError = async (output, context) => {
|
|
2948
|
+
const parsedOutput = {
|
|
2949
|
+
...output,
|
|
2950
|
+
body: await parseErrorBody(output.body, context),
|
|
2951
|
+
};
|
|
2952
|
+
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
2953
|
+
switch (errorCode) {
|
|
2954
|
+
case "DBClusterAutomatedBackupNotFoundFault":
|
|
2955
|
+
case "com.amazonaws.rds#DBClusterAutomatedBackupNotFoundFault":
|
|
2956
|
+
throw await de_DBClusterAutomatedBackupNotFoundFaultRes(parsedOutput, context);
|
|
2957
|
+
case "InvalidDBClusterAutomatedBackupStateFault":
|
|
2958
|
+
case "com.amazonaws.rds#InvalidDBClusterAutomatedBackupStateFault":
|
|
2959
|
+
throw await de_InvalidDBClusterAutomatedBackupStateFaultRes(parsedOutput, context);
|
|
2960
|
+
default:
|
|
2961
|
+
const parsedBody = parsedOutput.body;
|
|
2962
|
+
return throwDefaultError({
|
|
2963
|
+
output,
|
|
2964
|
+
parsedBody: parsedBody.Error,
|
|
2965
|
+
errorCode,
|
|
2966
|
+
});
|
|
2967
|
+
}
|
|
2968
|
+
};
|
|
2911
2969
|
export const de_DeleteDBClusterEndpointCommand = async (output, context) => {
|
|
2912
2970
|
if (output.statusCode >= 300) {
|
|
2913
2971
|
return de_DeleteDBClusterEndpointCommandError(output, context);
|
|
@@ -3532,6 +3590,38 @@ const de_DescribeCertificatesCommandError = async (output, context) => {
|
|
|
3532
3590
|
});
|
|
3533
3591
|
}
|
|
3534
3592
|
};
|
|
3593
|
+
export const de_DescribeDBClusterAutomatedBackupsCommand = async (output, context) => {
|
|
3594
|
+
if (output.statusCode >= 300) {
|
|
3595
|
+
return de_DescribeDBClusterAutomatedBackupsCommandError(output, context);
|
|
3596
|
+
}
|
|
3597
|
+
const data = await parseBody(output.body, context);
|
|
3598
|
+
let contents = {};
|
|
3599
|
+
contents = de_DBClusterAutomatedBackupMessage(data.DescribeDBClusterAutomatedBackupsResult, context);
|
|
3600
|
+
const response = {
|
|
3601
|
+
$metadata: deserializeMetadata(output),
|
|
3602
|
+
...contents,
|
|
3603
|
+
};
|
|
3604
|
+
return response;
|
|
3605
|
+
};
|
|
3606
|
+
const de_DescribeDBClusterAutomatedBackupsCommandError = async (output, context) => {
|
|
3607
|
+
const parsedOutput = {
|
|
3608
|
+
...output,
|
|
3609
|
+
body: await parseErrorBody(output.body, context),
|
|
3610
|
+
};
|
|
3611
|
+
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
3612
|
+
switch (errorCode) {
|
|
3613
|
+
case "DBClusterAutomatedBackupNotFoundFault":
|
|
3614
|
+
case "com.amazonaws.rds#DBClusterAutomatedBackupNotFoundFault":
|
|
3615
|
+
throw await de_DBClusterAutomatedBackupNotFoundFaultRes(parsedOutput, context);
|
|
3616
|
+
default:
|
|
3617
|
+
const parsedBody = parsedOutput.body;
|
|
3618
|
+
return throwDefaultError({
|
|
3619
|
+
output,
|
|
3620
|
+
parsedBody: parsedBody.Error,
|
|
3621
|
+
errorCode,
|
|
3622
|
+
});
|
|
3623
|
+
}
|
|
3624
|
+
};
|
|
3535
3625
|
export const de_DescribeDBClusterBacktracksCommand = async (output, context) => {
|
|
3536
3626
|
if (output.statusCode >= 300) {
|
|
3537
3627
|
return de_DescribeDBClusterBacktracksCommandError(output, context);
|
|
@@ -6304,6 +6394,9 @@ const de_RestoreDBClusterToPointInTimeCommandError = async (output, context) =>
|
|
|
6304
6394
|
case "DBClusterAlreadyExistsFault":
|
|
6305
6395
|
case "com.amazonaws.rds#DBClusterAlreadyExistsFault":
|
|
6306
6396
|
throw await de_DBClusterAlreadyExistsFaultRes(parsedOutput, context);
|
|
6397
|
+
case "DBClusterAutomatedBackupNotFoundFault":
|
|
6398
|
+
case "com.amazonaws.rds#DBClusterAutomatedBackupNotFoundFault":
|
|
6399
|
+
throw await de_DBClusterAutomatedBackupNotFoundFaultRes(parsedOutput, context);
|
|
6307
6400
|
case "DBClusterNotFoundFault":
|
|
6308
6401
|
case "com.amazonaws.rds#DBClusterNotFoundFault":
|
|
6309
6402
|
throw await de_DBClusterNotFoundFaultRes(parsedOutput, context);
|
|
@@ -7276,6 +7369,24 @@ const de_DBClusterAlreadyExistsFaultRes = async (parsedOutput, context) => {
|
|
|
7276
7369
|
});
|
|
7277
7370
|
return __decorateServiceException(exception, body);
|
|
7278
7371
|
};
|
|
7372
|
+
const de_DBClusterAutomatedBackupNotFoundFaultRes = async (parsedOutput, context) => {
|
|
7373
|
+
const body = parsedOutput.body;
|
|
7374
|
+
const deserialized = de_DBClusterAutomatedBackupNotFoundFault(body.Error, context);
|
|
7375
|
+
const exception = new DBClusterAutomatedBackupNotFoundFault({
|
|
7376
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
7377
|
+
...deserialized,
|
|
7378
|
+
});
|
|
7379
|
+
return __decorateServiceException(exception, body);
|
|
7380
|
+
};
|
|
7381
|
+
const de_DBClusterAutomatedBackupQuotaExceededFaultRes = async (parsedOutput, context) => {
|
|
7382
|
+
const body = parsedOutput.body;
|
|
7383
|
+
const deserialized = de_DBClusterAutomatedBackupQuotaExceededFault(body.Error, context);
|
|
7384
|
+
const exception = new DBClusterAutomatedBackupQuotaExceededFault({
|
|
7385
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
7386
|
+
...deserialized,
|
|
7387
|
+
});
|
|
7388
|
+
return __decorateServiceException(exception, body);
|
|
7389
|
+
};
|
|
7279
7390
|
const de_DBClusterBacktrackNotFoundFaultRes = async (parsedOutput, context) => {
|
|
7280
7391
|
const body = parsedOutput.body;
|
|
7281
7392
|
const deserialized = de_DBClusterBacktrackNotFoundFault(body.Error, context);
|
|
@@ -7834,6 +7945,15 @@ const de_InvalidCustomDBEngineVersionStateFaultRes = async (parsedOutput, contex
|
|
|
7834
7945
|
});
|
|
7835
7946
|
return __decorateServiceException(exception, body);
|
|
7836
7947
|
};
|
|
7948
|
+
const de_InvalidDBClusterAutomatedBackupStateFaultRes = async (parsedOutput, context) => {
|
|
7949
|
+
const body = parsedOutput.body;
|
|
7950
|
+
const deserialized = de_InvalidDBClusterAutomatedBackupStateFault(body.Error, context);
|
|
7951
|
+
const exception = new InvalidDBClusterAutomatedBackupStateFault({
|
|
7952
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
7953
|
+
...deserialized,
|
|
7954
|
+
});
|
|
7955
|
+
return __decorateServiceException(exception, body);
|
|
7956
|
+
};
|
|
7837
7957
|
const de_InvalidDBClusterCapacityFaultRes = async (parsedOutput, context) => {
|
|
7838
7958
|
const body = parsedOutput.body;
|
|
7839
7959
|
const deserialized = de_InvalidDBClusterCapacityFault(body.Error, context);
|
|
@@ -9672,6 +9792,13 @@ const se_DeleteCustomDBEngineVersionMessage = (input, context) => {
|
|
|
9672
9792
|
}
|
|
9673
9793
|
return entries;
|
|
9674
9794
|
};
|
|
9795
|
+
const se_DeleteDBClusterAutomatedBackupMessage = (input, context) => {
|
|
9796
|
+
const entries = {};
|
|
9797
|
+
if (input.DbClusterResourceId != null) {
|
|
9798
|
+
entries["DbClusterResourceId"] = input.DbClusterResourceId;
|
|
9799
|
+
}
|
|
9800
|
+
return entries;
|
|
9801
|
+
};
|
|
9675
9802
|
const se_DeleteDBClusterEndpointMessage = (input, context) => {
|
|
9676
9803
|
const entries = {};
|
|
9677
9804
|
if (input.DBClusterEndpointIdentifier != null) {
|
|
@@ -9690,6 +9817,9 @@ const se_DeleteDBClusterMessage = (input, context) => {
|
|
|
9690
9817
|
if (input.FinalDBSnapshotIdentifier != null) {
|
|
9691
9818
|
entries["FinalDBSnapshotIdentifier"] = input.FinalDBSnapshotIdentifier;
|
|
9692
9819
|
}
|
|
9820
|
+
if (input.DeleteAutomatedBackups != null) {
|
|
9821
|
+
entries["DeleteAutomatedBackups"] = input.DeleteAutomatedBackups;
|
|
9822
|
+
}
|
|
9693
9823
|
return entries;
|
|
9694
9824
|
};
|
|
9695
9825
|
const se_DeleteDBClusterParameterGroupMessage = (input, context) => {
|
|
@@ -9875,6 +10005,32 @@ const se_DescribeCertificatesMessage = (input, context) => {
|
|
|
9875
10005
|
}
|
|
9876
10006
|
return entries;
|
|
9877
10007
|
};
|
|
10008
|
+
const se_DescribeDBClusterAutomatedBackupsMessage = (input, context) => {
|
|
10009
|
+
const entries = {};
|
|
10010
|
+
if (input.DbClusterResourceId != null) {
|
|
10011
|
+
entries["DbClusterResourceId"] = input.DbClusterResourceId;
|
|
10012
|
+
}
|
|
10013
|
+
if (input.DBClusterIdentifier != null) {
|
|
10014
|
+
entries["DBClusterIdentifier"] = input.DBClusterIdentifier;
|
|
10015
|
+
}
|
|
10016
|
+
if (input.Filters != null) {
|
|
10017
|
+
const memberEntries = se_FilterList(input.Filters, context);
|
|
10018
|
+
if (input.Filters?.length === 0) {
|
|
10019
|
+
entries.Filters = [];
|
|
10020
|
+
}
|
|
10021
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
10022
|
+
const loc = `Filters.${key}`;
|
|
10023
|
+
entries[loc] = value;
|
|
10024
|
+
});
|
|
10025
|
+
}
|
|
10026
|
+
if (input.MaxRecords != null) {
|
|
10027
|
+
entries["MaxRecords"] = input.MaxRecords;
|
|
10028
|
+
}
|
|
10029
|
+
if (input.Marker != null) {
|
|
10030
|
+
entries["Marker"] = input.Marker;
|
|
10031
|
+
}
|
|
10032
|
+
return entries;
|
|
10033
|
+
};
|
|
9878
10034
|
const se_DescribeDBClusterBacktracksMessage = (input, context) => {
|
|
9879
10035
|
const entries = {};
|
|
9880
10036
|
if (input.DBClusterIdentifier != null) {
|
|
@@ -10042,6 +10198,9 @@ const se_DescribeDBClusterSnapshotsMessage = (input, context) => {
|
|
|
10042
10198
|
if (input.IncludePublic != null) {
|
|
10043
10199
|
entries["IncludePublic"] = input.IncludePublic;
|
|
10044
10200
|
}
|
|
10201
|
+
if (input.DbClusterResourceId != null) {
|
|
10202
|
+
entries["DbClusterResourceId"] = input.DbClusterResourceId;
|
|
10203
|
+
}
|
|
10045
10204
|
return entries;
|
|
10046
10205
|
};
|
|
10047
10206
|
const se_DescribeDBEngineVersionsMessage = (input, context) => {
|
|
@@ -12464,6 +12623,9 @@ const se_RestoreDBClusterToPointInTimeMessage = (input, context) => {
|
|
|
12464
12623
|
if (input.NetworkType != null) {
|
|
12465
12624
|
entries["NetworkType"] = input.NetworkType;
|
|
12466
12625
|
}
|
|
12626
|
+
if (input.SourceDbClusterResourceId != null) {
|
|
12627
|
+
entries["SourceDbClusterResourceId"] = input.SourceDbClusterResourceId;
|
|
12628
|
+
}
|
|
12467
12629
|
return entries;
|
|
12468
12630
|
};
|
|
12469
12631
|
const se_RestoreDBInstanceFromDBSnapshotMessage = (input, context) => {
|
|
@@ -14070,6 +14232,118 @@ const de_DBClusterAlreadyExistsFault = (output, context) => {
|
|
|
14070
14232
|
}
|
|
14071
14233
|
return contents;
|
|
14072
14234
|
};
|
|
14235
|
+
const de_DBClusterAutomatedBackup = (output, context) => {
|
|
14236
|
+
const contents = {};
|
|
14237
|
+
if (output["Engine"] !== undefined) {
|
|
14238
|
+
contents.Engine = __expectString(output["Engine"]);
|
|
14239
|
+
}
|
|
14240
|
+
if (output["VpcId"] !== undefined) {
|
|
14241
|
+
contents.VpcId = __expectString(output["VpcId"]);
|
|
14242
|
+
}
|
|
14243
|
+
if (output["DBClusterAutomatedBackupsArn"] !== undefined) {
|
|
14244
|
+
contents.DBClusterAutomatedBackupsArn = __expectString(output["DBClusterAutomatedBackupsArn"]);
|
|
14245
|
+
}
|
|
14246
|
+
if (output["DBClusterIdentifier"] !== undefined) {
|
|
14247
|
+
contents.DBClusterIdentifier = __expectString(output["DBClusterIdentifier"]);
|
|
14248
|
+
}
|
|
14249
|
+
if (output["RestoreWindow"] !== undefined) {
|
|
14250
|
+
contents.RestoreWindow = de_RestoreWindow(output["RestoreWindow"], context);
|
|
14251
|
+
}
|
|
14252
|
+
if (output["MasterUsername"] !== undefined) {
|
|
14253
|
+
contents.MasterUsername = __expectString(output["MasterUsername"]);
|
|
14254
|
+
}
|
|
14255
|
+
if (output["DbClusterResourceId"] !== undefined) {
|
|
14256
|
+
contents.DbClusterResourceId = __expectString(output["DbClusterResourceId"]);
|
|
14257
|
+
}
|
|
14258
|
+
if (output["Region"] !== undefined) {
|
|
14259
|
+
contents.Region = __expectString(output["Region"]);
|
|
14260
|
+
}
|
|
14261
|
+
if (output["LicenseModel"] !== undefined) {
|
|
14262
|
+
contents.LicenseModel = __expectString(output["LicenseModel"]);
|
|
14263
|
+
}
|
|
14264
|
+
if (output["Status"] !== undefined) {
|
|
14265
|
+
contents.Status = __expectString(output["Status"]);
|
|
14266
|
+
}
|
|
14267
|
+
if (output["IAMDatabaseAuthenticationEnabled"] !== undefined) {
|
|
14268
|
+
contents.IAMDatabaseAuthenticationEnabled = __parseBoolean(output["IAMDatabaseAuthenticationEnabled"]);
|
|
14269
|
+
}
|
|
14270
|
+
if (output["ClusterCreateTime"] !== undefined) {
|
|
14271
|
+
contents.ClusterCreateTime = __expectNonNull(__parseRfc3339DateTimeWithOffset(output["ClusterCreateTime"]));
|
|
14272
|
+
}
|
|
14273
|
+
if (output["StorageEncrypted"] !== undefined) {
|
|
14274
|
+
contents.StorageEncrypted = __parseBoolean(output["StorageEncrypted"]);
|
|
14275
|
+
}
|
|
14276
|
+
if (output["AllocatedStorage"] !== undefined) {
|
|
14277
|
+
contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
|
|
14278
|
+
}
|
|
14279
|
+
if (output["EngineVersion"] !== undefined) {
|
|
14280
|
+
contents.EngineVersion = __expectString(output["EngineVersion"]);
|
|
14281
|
+
}
|
|
14282
|
+
if (output["DBClusterArn"] !== undefined) {
|
|
14283
|
+
contents.DBClusterArn = __expectString(output["DBClusterArn"]);
|
|
14284
|
+
}
|
|
14285
|
+
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
14286
|
+
contents.BackupRetentionPeriod = __strictParseInt32(output["BackupRetentionPeriod"]);
|
|
14287
|
+
}
|
|
14288
|
+
if (output["EngineMode"] !== undefined) {
|
|
14289
|
+
contents.EngineMode = __expectString(output["EngineMode"]);
|
|
14290
|
+
}
|
|
14291
|
+
if (output.AvailabilityZones === "") {
|
|
14292
|
+
contents.AvailabilityZones = [];
|
|
14293
|
+
}
|
|
14294
|
+
else if (output["AvailabilityZones"] !== undefined &&
|
|
14295
|
+
output["AvailabilityZones"]["AvailabilityZone"] !== undefined) {
|
|
14296
|
+
contents.AvailabilityZones = de_AvailabilityZones(__getArrayIfSingleItem(output["AvailabilityZones"]["AvailabilityZone"]), context);
|
|
14297
|
+
}
|
|
14298
|
+
if (output["Port"] !== undefined) {
|
|
14299
|
+
contents.Port = __strictParseInt32(output["Port"]);
|
|
14300
|
+
}
|
|
14301
|
+
if (output["KmsKeyId"] !== undefined) {
|
|
14302
|
+
contents.KmsKeyId = __expectString(output["KmsKeyId"]);
|
|
14303
|
+
}
|
|
14304
|
+
if (output["StorageType"] !== undefined) {
|
|
14305
|
+
contents.StorageType = __expectString(output["StorageType"]);
|
|
14306
|
+
}
|
|
14307
|
+
if (output["Iops"] !== undefined) {
|
|
14308
|
+
contents.Iops = __strictParseInt32(output["Iops"]);
|
|
14309
|
+
}
|
|
14310
|
+
return contents;
|
|
14311
|
+
};
|
|
14312
|
+
const de_DBClusterAutomatedBackupList = (output, context) => {
|
|
14313
|
+
return (output || [])
|
|
14314
|
+
.filter((e) => e != null)
|
|
14315
|
+
.map((entry) => {
|
|
14316
|
+
return de_DBClusterAutomatedBackup(entry, context);
|
|
14317
|
+
});
|
|
14318
|
+
};
|
|
14319
|
+
const de_DBClusterAutomatedBackupMessage = (output, context) => {
|
|
14320
|
+
const contents = {};
|
|
14321
|
+
if (output["Marker"] !== undefined) {
|
|
14322
|
+
contents.Marker = __expectString(output["Marker"]);
|
|
14323
|
+
}
|
|
14324
|
+
if (output.DBClusterAutomatedBackups === "") {
|
|
14325
|
+
contents.DBClusterAutomatedBackups = [];
|
|
14326
|
+
}
|
|
14327
|
+
else if (output["DBClusterAutomatedBackups"] !== undefined &&
|
|
14328
|
+
output["DBClusterAutomatedBackups"]["DBClusterAutomatedBackup"] !== undefined) {
|
|
14329
|
+
contents.DBClusterAutomatedBackups = de_DBClusterAutomatedBackupList(__getArrayIfSingleItem(output["DBClusterAutomatedBackups"]["DBClusterAutomatedBackup"]), context);
|
|
14330
|
+
}
|
|
14331
|
+
return contents;
|
|
14332
|
+
};
|
|
14333
|
+
const de_DBClusterAutomatedBackupNotFoundFault = (output, context) => {
|
|
14334
|
+
const contents = {};
|
|
14335
|
+
if (output["message"] !== undefined) {
|
|
14336
|
+
contents.message = __expectString(output["message"]);
|
|
14337
|
+
}
|
|
14338
|
+
return contents;
|
|
14339
|
+
};
|
|
14340
|
+
const de_DBClusterAutomatedBackupQuotaExceededFault = (output, context) => {
|
|
14341
|
+
const contents = {};
|
|
14342
|
+
if (output["message"] !== undefined) {
|
|
14343
|
+
contents.message = __expectString(output["message"]);
|
|
14344
|
+
}
|
|
14345
|
+
return contents;
|
|
14346
|
+
};
|
|
14073
14347
|
const de_DBClusterBacktrack = (output, context) => {
|
|
14074
14348
|
const contents = {};
|
|
14075
14349
|
if (output["DBClusterIdentifier"] !== undefined) {
|
|
@@ -14481,6 +14755,9 @@ const de_DBClusterSnapshot = (output, context) => {
|
|
|
14481
14755
|
if (output["StorageType"] !== undefined) {
|
|
14482
14756
|
contents.StorageType = __expectString(output["StorageType"]);
|
|
14483
14757
|
}
|
|
14758
|
+
if (output["DbClusterResourceId"] !== undefined) {
|
|
14759
|
+
contents.DbClusterResourceId = __expectString(output["DbClusterResourceId"]);
|
|
14760
|
+
}
|
|
14484
14761
|
return contents;
|
|
14485
14762
|
};
|
|
14486
14763
|
const de_DBClusterSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -15961,6 +16238,13 @@ const de_DeleteBlueGreenDeploymentResponse = (output, context) => {
|
|
|
15961
16238
|
}
|
|
15962
16239
|
return contents;
|
|
15963
16240
|
};
|
|
16241
|
+
const de_DeleteDBClusterAutomatedBackupResult = (output, context) => {
|
|
16242
|
+
const contents = {};
|
|
16243
|
+
if (output["DBClusterAutomatedBackup"] !== undefined) {
|
|
16244
|
+
contents.DBClusterAutomatedBackup = de_DBClusterAutomatedBackup(output["DBClusterAutomatedBackup"], context);
|
|
16245
|
+
}
|
|
16246
|
+
return contents;
|
|
16247
|
+
};
|
|
15964
16248
|
const de_DeleteDBClusterResult = (output, context) => {
|
|
15965
16249
|
const contents = {};
|
|
15966
16250
|
if (output["DBCluster"] !== undefined) {
|
|
@@ -16746,6 +17030,13 @@ const de_InvalidCustomDBEngineVersionStateFault = (output, context) => {
|
|
|
16746
17030
|
}
|
|
16747
17031
|
return contents;
|
|
16748
17032
|
};
|
|
17033
|
+
const de_InvalidDBClusterAutomatedBackupStateFault = (output, context) => {
|
|
17034
|
+
const contents = {};
|
|
17035
|
+
if (output["message"] !== undefined) {
|
|
17036
|
+
contents.message = __expectString(output["message"]);
|
|
17037
|
+
}
|
|
17038
|
+
return contents;
|
|
17039
|
+
};
|
|
16749
17040
|
const de_InvalidDBClusterCapacityFault = (output, context) => {
|
|
16750
17041
|
const contents = {};
|
|
16751
17042
|
if (output["message"] !== undefined) {
|
package/dist-types/RDS.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ import { CreateGlobalClusterCommandInput, CreateGlobalClusterCommandOutput } fro
|
|
|
31
31
|
import { CreateOptionGroupCommandInput, CreateOptionGroupCommandOutput } from "./commands/CreateOptionGroupCommand";
|
|
32
32
|
import { DeleteBlueGreenDeploymentCommandInput, DeleteBlueGreenDeploymentCommandOutput } from "./commands/DeleteBlueGreenDeploymentCommand";
|
|
33
33
|
import { DeleteCustomDBEngineVersionCommandInput, DeleteCustomDBEngineVersionCommandOutput } from "./commands/DeleteCustomDBEngineVersionCommand";
|
|
34
|
+
import { DeleteDBClusterAutomatedBackupCommandInput, DeleteDBClusterAutomatedBackupCommandOutput } from "./commands/DeleteDBClusterAutomatedBackupCommand";
|
|
34
35
|
import { DeleteDBClusterCommandInput, DeleteDBClusterCommandOutput } from "./commands/DeleteDBClusterCommand";
|
|
35
36
|
import { DeleteDBClusterEndpointCommandInput, DeleteDBClusterEndpointCommandOutput } from "./commands/DeleteDBClusterEndpointCommand";
|
|
36
37
|
import { DeleteDBClusterParameterGroupCommandInput, DeleteDBClusterParameterGroupCommandOutput } from "./commands/DeleteDBClusterParameterGroupCommand";
|
|
@@ -50,6 +51,7 @@ import { DeregisterDBProxyTargetsCommandInput, DeregisterDBProxyTargetsCommandOu
|
|
|
50
51
|
import { DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput } from "./commands/DescribeAccountAttributesCommand";
|
|
51
52
|
import { DescribeBlueGreenDeploymentsCommandInput, DescribeBlueGreenDeploymentsCommandOutput } from "./commands/DescribeBlueGreenDeploymentsCommand";
|
|
52
53
|
import { DescribeCertificatesCommandInput, DescribeCertificatesCommandOutput } from "./commands/DescribeCertificatesCommand";
|
|
54
|
+
import { DescribeDBClusterAutomatedBackupsCommandInput, DescribeDBClusterAutomatedBackupsCommandOutput } from "./commands/DescribeDBClusterAutomatedBackupsCommand";
|
|
53
55
|
import { DescribeDBClusterBacktracksCommandInput, DescribeDBClusterBacktracksCommandOutput } from "./commands/DescribeDBClusterBacktracksCommand";
|
|
54
56
|
import { DescribeDBClusterEndpointsCommandInput, DescribeDBClusterEndpointsCommandOutput } from "./commands/DescribeDBClusterEndpointsCommand";
|
|
55
57
|
import { DescribeDBClusterParameterGroupsCommandInput, DescribeDBClusterParameterGroupsCommandOutput } from "./commands/DescribeDBClusterParameterGroupsCommand";
|
|
@@ -340,6 +342,12 @@ export interface RDS {
|
|
|
340
342
|
deleteDBCluster(args: DeleteDBClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDBClusterCommandOutput>;
|
|
341
343
|
deleteDBCluster(args: DeleteDBClusterCommandInput, cb: (err: any, data?: DeleteDBClusterCommandOutput) => void): void;
|
|
342
344
|
deleteDBCluster(args: DeleteDBClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDBClusterCommandOutput) => void): void;
|
|
345
|
+
/**
|
|
346
|
+
* @see {@link DeleteDBClusterAutomatedBackupCommand}
|
|
347
|
+
*/
|
|
348
|
+
deleteDBClusterAutomatedBackup(args: DeleteDBClusterAutomatedBackupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDBClusterAutomatedBackupCommandOutput>;
|
|
349
|
+
deleteDBClusterAutomatedBackup(args: DeleteDBClusterAutomatedBackupCommandInput, cb: (err: any, data?: DeleteDBClusterAutomatedBackupCommandOutput) => void): void;
|
|
350
|
+
deleteDBClusterAutomatedBackup(args: DeleteDBClusterAutomatedBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDBClusterAutomatedBackupCommandOutput) => void): void;
|
|
343
351
|
/**
|
|
344
352
|
* @see {@link DeleteDBClusterEndpointCommand}
|
|
345
353
|
*/
|
|
@@ -448,6 +456,12 @@ export interface RDS {
|
|
|
448
456
|
describeCertificates(args: DescribeCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificatesCommandOutput>;
|
|
449
457
|
describeCertificates(args: DescribeCertificatesCommandInput, cb: (err: any, data?: DescribeCertificatesCommandOutput) => void): void;
|
|
450
458
|
describeCertificates(args: DescribeCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificatesCommandOutput) => void): void;
|
|
459
|
+
/**
|
|
460
|
+
* @see {@link DescribeDBClusterAutomatedBackupsCommand}
|
|
461
|
+
*/
|
|
462
|
+
describeDBClusterAutomatedBackups(args: DescribeDBClusterAutomatedBackupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDBClusterAutomatedBackupsCommandOutput>;
|
|
463
|
+
describeDBClusterAutomatedBackups(args: DescribeDBClusterAutomatedBackupsCommandInput, cb: (err: any, data?: DescribeDBClusterAutomatedBackupsCommandOutput) => void): void;
|
|
464
|
+
describeDBClusterAutomatedBackups(args: DescribeDBClusterAutomatedBackupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDBClusterAutomatedBackupsCommandOutput) => void): void;
|
|
451
465
|
/**
|
|
452
466
|
* @see {@link DescribeDBClusterBacktracksCommand}
|
|
453
467
|
*/
|
|
@@ -40,6 +40,7 @@ import { CreateGlobalClusterCommandInput, CreateGlobalClusterCommandOutput } fro
|
|
|
40
40
|
import { CreateOptionGroupCommandInput, CreateOptionGroupCommandOutput } from "./commands/CreateOptionGroupCommand";
|
|
41
41
|
import { DeleteBlueGreenDeploymentCommandInput, DeleteBlueGreenDeploymentCommandOutput } from "./commands/DeleteBlueGreenDeploymentCommand";
|
|
42
42
|
import { DeleteCustomDBEngineVersionCommandInput, DeleteCustomDBEngineVersionCommandOutput } from "./commands/DeleteCustomDBEngineVersionCommand";
|
|
43
|
+
import { DeleteDBClusterAutomatedBackupCommandInput, DeleteDBClusterAutomatedBackupCommandOutput } from "./commands/DeleteDBClusterAutomatedBackupCommand";
|
|
43
44
|
import { DeleteDBClusterCommandInput, DeleteDBClusterCommandOutput } from "./commands/DeleteDBClusterCommand";
|
|
44
45
|
import { DeleteDBClusterEndpointCommandInput, DeleteDBClusterEndpointCommandOutput } from "./commands/DeleteDBClusterEndpointCommand";
|
|
45
46
|
import { DeleteDBClusterParameterGroupCommandInput, DeleteDBClusterParameterGroupCommandOutput } from "./commands/DeleteDBClusterParameterGroupCommand";
|
|
@@ -59,6 +60,7 @@ import { DeregisterDBProxyTargetsCommandInput, DeregisterDBProxyTargetsCommandOu
|
|
|
59
60
|
import { DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput } from "./commands/DescribeAccountAttributesCommand";
|
|
60
61
|
import { DescribeBlueGreenDeploymentsCommandInput, DescribeBlueGreenDeploymentsCommandOutput } from "./commands/DescribeBlueGreenDeploymentsCommand";
|
|
61
62
|
import { DescribeCertificatesCommandInput, DescribeCertificatesCommandOutput } from "./commands/DescribeCertificatesCommand";
|
|
63
|
+
import { DescribeDBClusterAutomatedBackupsCommandInput, DescribeDBClusterAutomatedBackupsCommandOutput } from "./commands/DescribeDBClusterAutomatedBackupsCommand";
|
|
62
64
|
import { DescribeDBClusterBacktracksCommandInput, DescribeDBClusterBacktracksCommandOutput } from "./commands/DescribeDBClusterBacktracksCommand";
|
|
63
65
|
import { DescribeDBClusterEndpointsCommandInput, DescribeDBClusterEndpointsCommandOutput } from "./commands/DescribeDBClusterEndpointsCommand";
|
|
64
66
|
import { DescribeDBClusterParameterGroupsCommandInput, DescribeDBClusterParameterGroupsCommandOutput } from "./commands/DescribeDBClusterParameterGroupsCommand";
|
|
@@ -154,11 +156,11 @@ export { __Client };
|
|
|
154
156
|
/**
|
|
155
157
|
* @public
|
|
156
158
|
*/
|
|
157
|
-
export type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateBlueGreenDeploymentCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteBlueGreenDeploymentCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeBlueGreenDeploymentsCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput | SwitchoverBlueGreenDeploymentCommandInput | SwitchoverReadReplicaCommandInput;
|
|
159
|
+
export type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateBlueGreenDeploymentCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateOptionGroupCommandInput | DeleteBlueGreenDeploymentCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterAutomatedBackupCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteOptionGroupCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeBlueGreenDeploymentsCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterAutomatedBackupsCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeValidDBInstanceModificationsCommandInput | DownloadDBLogFilePortionCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput | SwitchoverBlueGreenDeploymentCommandInput | SwitchoverReadReplicaCommandInput;
|
|
158
160
|
/**
|
|
159
161
|
* @public
|
|
160
162
|
*/
|
|
161
|
-
export type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateBlueGreenDeploymentCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteBlueGreenDeploymentCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeBlueGreenDeploymentsCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput | SwitchoverBlueGreenDeploymentCommandOutput | SwitchoverReadReplicaCommandOutput;
|
|
163
|
+
export type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateBlueGreenDeploymentCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateOptionGroupCommandOutput | DeleteBlueGreenDeploymentCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterAutomatedBackupCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteOptionGroupCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeBlueGreenDeploymentsCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterAutomatedBackupsCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DownloadDBLogFilePortionCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput | SwitchoverBlueGreenDeploymentCommandOutput | SwitchoverReadReplicaCommandOutput;
|
|
162
164
|
/**
|
|
163
165
|
* @public
|
|
164
166
|
*/
|