@aws-sdk/client-rds 3.975.0 → 3.978.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/index.js +228 -173
- package/dist-es/RDS.js +107 -1
- package/dist-types/RDS.d.ts +349 -1
- package/dist-types/ts3.4/RDS.d.ts +384 -1
- package/package.json +18 -18
package/dist-types/RDS.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { AddRoleToDBClusterCommandInput, AddRoleToDBClusterCommandOutput } from "./commands/AddRoleToDBClusterCommand";
|
|
3
4
|
import { AddRoleToDBInstanceCommandInput, AddRoleToDBInstanceCommandOutput } from "./commands/AddRoleToDBInstanceCommand";
|
|
4
5
|
import { AddSourceIdentifierToSubscriptionCommandInput, AddSourceIdentifierToSubscriptionCommandOutput } from "./commands/AddSourceIdentifierToSubscriptionCommand";
|
|
@@ -1178,6 +1179,353 @@ export interface RDS {
|
|
|
1178
1179
|
switchoverReadReplica(args: SwitchoverReadReplicaCommandInput, options?: __HttpHandlerOptions): Promise<SwitchoverReadReplicaCommandOutput>;
|
|
1179
1180
|
switchoverReadReplica(args: SwitchoverReadReplicaCommandInput, cb: (err: any, data?: SwitchoverReadReplicaCommandOutput) => void): void;
|
|
1180
1181
|
switchoverReadReplica(args: SwitchoverReadReplicaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SwitchoverReadReplicaCommandOutput) => void): void;
|
|
1182
|
+
/**
|
|
1183
|
+
* @see {@link DescribeBlueGreenDeploymentsCommand}
|
|
1184
|
+
* @param args - command input.
|
|
1185
|
+
* @param paginationConfig - optional pagination config.
|
|
1186
|
+
* @returns AsyncIterable of {@link DescribeBlueGreenDeploymentsCommandOutput}.
|
|
1187
|
+
*/
|
|
1188
|
+
paginateDescribeBlueGreenDeployments(args?: DescribeBlueGreenDeploymentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeBlueGreenDeploymentsCommandOutput>;
|
|
1189
|
+
/**
|
|
1190
|
+
* @see {@link DescribeCertificatesCommand}
|
|
1191
|
+
* @param args - command input.
|
|
1192
|
+
* @param paginationConfig - optional pagination config.
|
|
1193
|
+
* @returns AsyncIterable of {@link DescribeCertificatesCommandOutput}.
|
|
1194
|
+
*/
|
|
1195
|
+
paginateDescribeCertificates(args?: DescribeCertificatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCertificatesCommandOutput>;
|
|
1196
|
+
/**
|
|
1197
|
+
* @see {@link DescribeDBClusterAutomatedBackupsCommand}
|
|
1198
|
+
* @param args - command input.
|
|
1199
|
+
* @param paginationConfig - optional pagination config.
|
|
1200
|
+
* @returns AsyncIterable of {@link DescribeDBClusterAutomatedBackupsCommandOutput}.
|
|
1201
|
+
*/
|
|
1202
|
+
paginateDescribeDBClusterAutomatedBackups(args?: DescribeDBClusterAutomatedBackupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClusterAutomatedBackupsCommandOutput>;
|
|
1203
|
+
/**
|
|
1204
|
+
* @see {@link DescribeDBClusterBacktracksCommand}
|
|
1205
|
+
* @param args - command input.
|
|
1206
|
+
* @param paginationConfig - optional pagination config.
|
|
1207
|
+
* @returns AsyncIterable of {@link DescribeDBClusterBacktracksCommandOutput}.
|
|
1208
|
+
*/
|
|
1209
|
+
paginateDescribeDBClusterBacktracks(args: DescribeDBClusterBacktracksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClusterBacktracksCommandOutput>;
|
|
1210
|
+
/**
|
|
1211
|
+
* @see {@link DescribeDBClusterEndpointsCommand}
|
|
1212
|
+
* @param args - command input.
|
|
1213
|
+
* @param paginationConfig - optional pagination config.
|
|
1214
|
+
* @returns AsyncIterable of {@link DescribeDBClusterEndpointsCommandOutput}.
|
|
1215
|
+
*/
|
|
1216
|
+
paginateDescribeDBClusterEndpoints(args?: DescribeDBClusterEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClusterEndpointsCommandOutput>;
|
|
1217
|
+
/**
|
|
1218
|
+
* @see {@link DescribeDBClusterParameterGroupsCommand}
|
|
1219
|
+
* @param args - command input.
|
|
1220
|
+
* @param paginationConfig - optional pagination config.
|
|
1221
|
+
* @returns AsyncIterable of {@link DescribeDBClusterParameterGroupsCommandOutput}.
|
|
1222
|
+
*/
|
|
1223
|
+
paginateDescribeDBClusterParameterGroups(args?: DescribeDBClusterParameterGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClusterParameterGroupsCommandOutput>;
|
|
1224
|
+
/**
|
|
1225
|
+
* @see {@link DescribeDBClusterParametersCommand}
|
|
1226
|
+
* @param args - command input.
|
|
1227
|
+
* @param paginationConfig - optional pagination config.
|
|
1228
|
+
* @returns AsyncIterable of {@link DescribeDBClusterParametersCommandOutput}.
|
|
1229
|
+
*/
|
|
1230
|
+
paginateDescribeDBClusterParameters(args: DescribeDBClusterParametersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClusterParametersCommandOutput>;
|
|
1231
|
+
/**
|
|
1232
|
+
* @see {@link DescribeDBClustersCommand}
|
|
1233
|
+
* @param args - command input.
|
|
1234
|
+
* @param paginationConfig - optional pagination config.
|
|
1235
|
+
* @returns AsyncIterable of {@link DescribeDBClustersCommandOutput}.
|
|
1236
|
+
*/
|
|
1237
|
+
paginateDescribeDBClusters(args?: DescribeDBClustersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClustersCommandOutput>;
|
|
1238
|
+
/**
|
|
1239
|
+
* @see {@link DescribeDBClusterSnapshotsCommand}
|
|
1240
|
+
* @param args - command input.
|
|
1241
|
+
* @param paginationConfig - optional pagination config.
|
|
1242
|
+
* @returns AsyncIterable of {@link DescribeDBClusterSnapshotsCommandOutput}.
|
|
1243
|
+
*/
|
|
1244
|
+
paginateDescribeDBClusterSnapshots(args?: DescribeDBClusterSnapshotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBClusterSnapshotsCommandOutput>;
|
|
1245
|
+
/**
|
|
1246
|
+
* @see {@link DescribeDBEngineVersionsCommand}
|
|
1247
|
+
* @param args - command input.
|
|
1248
|
+
* @param paginationConfig - optional pagination config.
|
|
1249
|
+
* @returns AsyncIterable of {@link DescribeDBEngineVersionsCommandOutput}.
|
|
1250
|
+
*/
|
|
1251
|
+
paginateDescribeDBEngineVersions(args?: DescribeDBEngineVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBEngineVersionsCommandOutput>;
|
|
1252
|
+
/**
|
|
1253
|
+
* @see {@link DescribeDBInstanceAutomatedBackupsCommand}
|
|
1254
|
+
* @param args - command input.
|
|
1255
|
+
* @param paginationConfig - optional pagination config.
|
|
1256
|
+
* @returns AsyncIterable of {@link DescribeDBInstanceAutomatedBackupsCommandOutput}.
|
|
1257
|
+
*/
|
|
1258
|
+
paginateDescribeDBInstanceAutomatedBackups(args?: DescribeDBInstanceAutomatedBackupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBInstanceAutomatedBackupsCommandOutput>;
|
|
1259
|
+
/**
|
|
1260
|
+
* @see {@link DescribeDBInstancesCommand}
|
|
1261
|
+
* @param args - command input.
|
|
1262
|
+
* @param paginationConfig - optional pagination config.
|
|
1263
|
+
* @returns AsyncIterable of {@link DescribeDBInstancesCommandOutput}.
|
|
1264
|
+
*/
|
|
1265
|
+
paginateDescribeDBInstances(args?: DescribeDBInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBInstancesCommandOutput>;
|
|
1266
|
+
/**
|
|
1267
|
+
* @see {@link DescribeDBLogFilesCommand}
|
|
1268
|
+
* @param args - command input.
|
|
1269
|
+
* @param paginationConfig - optional pagination config.
|
|
1270
|
+
* @returns AsyncIterable of {@link DescribeDBLogFilesCommandOutput}.
|
|
1271
|
+
*/
|
|
1272
|
+
paginateDescribeDBLogFiles(args: DescribeDBLogFilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBLogFilesCommandOutput>;
|
|
1273
|
+
/**
|
|
1274
|
+
* @see {@link DescribeDBMajorEngineVersionsCommand}
|
|
1275
|
+
* @param args - command input.
|
|
1276
|
+
* @param paginationConfig - optional pagination config.
|
|
1277
|
+
* @returns AsyncIterable of {@link DescribeDBMajorEngineVersionsCommandOutput}.
|
|
1278
|
+
*/
|
|
1279
|
+
paginateDescribeDBMajorEngineVersions(args?: DescribeDBMajorEngineVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBMajorEngineVersionsCommandOutput>;
|
|
1280
|
+
/**
|
|
1281
|
+
* @see {@link DescribeDBParameterGroupsCommand}
|
|
1282
|
+
* @param args - command input.
|
|
1283
|
+
* @param paginationConfig - optional pagination config.
|
|
1284
|
+
* @returns AsyncIterable of {@link DescribeDBParameterGroupsCommandOutput}.
|
|
1285
|
+
*/
|
|
1286
|
+
paginateDescribeDBParameterGroups(args?: DescribeDBParameterGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBParameterGroupsCommandOutput>;
|
|
1287
|
+
/**
|
|
1288
|
+
* @see {@link DescribeDBParametersCommand}
|
|
1289
|
+
* @param args - command input.
|
|
1290
|
+
* @param paginationConfig - optional pagination config.
|
|
1291
|
+
* @returns AsyncIterable of {@link DescribeDBParametersCommandOutput}.
|
|
1292
|
+
*/
|
|
1293
|
+
paginateDescribeDBParameters(args: DescribeDBParametersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBParametersCommandOutput>;
|
|
1294
|
+
/**
|
|
1295
|
+
* @see {@link DescribeDBProxiesCommand}
|
|
1296
|
+
* @param args - command input.
|
|
1297
|
+
* @param paginationConfig - optional pagination config.
|
|
1298
|
+
* @returns AsyncIterable of {@link DescribeDBProxiesCommandOutput}.
|
|
1299
|
+
*/
|
|
1300
|
+
paginateDescribeDBProxies(args?: DescribeDBProxiesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBProxiesCommandOutput>;
|
|
1301
|
+
/**
|
|
1302
|
+
* @see {@link DescribeDBProxyEndpointsCommand}
|
|
1303
|
+
* @param args - command input.
|
|
1304
|
+
* @param paginationConfig - optional pagination config.
|
|
1305
|
+
* @returns AsyncIterable of {@link DescribeDBProxyEndpointsCommandOutput}.
|
|
1306
|
+
*/
|
|
1307
|
+
paginateDescribeDBProxyEndpoints(args?: DescribeDBProxyEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBProxyEndpointsCommandOutput>;
|
|
1308
|
+
/**
|
|
1309
|
+
* @see {@link DescribeDBProxyTargetGroupsCommand}
|
|
1310
|
+
* @param args - command input.
|
|
1311
|
+
* @param paginationConfig - optional pagination config.
|
|
1312
|
+
* @returns AsyncIterable of {@link DescribeDBProxyTargetGroupsCommandOutput}.
|
|
1313
|
+
*/
|
|
1314
|
+
paginateDescribeDBProxyTargetGroups(args: DescribeDBProxyTargetGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBProxyTargetGroupsCommandOutput>;
|
|
1315
|
+
/**
|
|
1316
|
+
* @see {@link DescribeDBProxyTargetsCommand}
|
|
1317
|
+
* @param args - command input.
|
|
1318
|
+
* @param paginationConfig - optional pagination config.
|
|
1319
|
+
* @returns AsyncIterable of {@link DescribeDBProxyTargetsCommandOutput}.
|
|
1320
|
+
*/
|
|
1321
|
+
paginateDescribeDBProxyTargets(args: DescribeDBProxyTargetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBProxyTargetsCommandOutput>;
|
|
1322
|
+
/**
|
|
1323
|
+
* @see {@link DescribeDBRecommendationsCommand}
|
|
1324
|
+
* @param args - command input.
|
|
1325
|
+
* @param paginationConfig - optional pagination config.
|
|
1326
|
+
* @returns AsyncIterable of {@link DescribeDBRecommendationsCommandOutput}.
|
|
1327
|
+
*/
|
|
1328
|
+
paginateDescribeDBRecommendations(args?: DescribeDBRecommendationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBRecommendationsCommandOutput>;
|
|
1329
|
+
/**
|
|
1330
|
+
* @see {@link DescribeDBSecurityGroupsCommand}
|
|
1331
|
+
* @param args - command input.
|
|
1332
|
+
* @param paginationConfig - optional pagination config.
|
|
1333
|
+
* @returns AsyncIterable of {@link DescribeDBSecurityGroupsCommandOutput}.
|
|
1334
|
+
*/
|
|
1335
|
+
paginateDescribeDBSecurityGroups(args?: DescribeDBSecurityGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBSecurityGroupsCommandOutput>;
|
|
1336
|
+
/**
|
|
1337
|
+
* @see {@link DescribeDBSnapshotsCommand}
|
|
1338
|
+
* @param args - command input.
|
|
1339
|
+
* @param paginationConfig - optional pagination config.
|
|
1340
|
+
* @returns AsyncIterable of {@link DescribeDBSnapshotsCommandOutput}.
|
|
1341
|
+
*/
|
|
1342
|
+
paginateDescribeDBSnapshots(args?: DescribeDBSnapshotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBSnapshotsCommandOutput>;
|
|
1343
|
+
/**
|
|
1344
|
+
* @see {@link DescribeDBSnapshotTenantDatabasesCommand}
|
|
1345
|
+
* @param args - command input.
|
|
1346
|
+
* @param paginationConfig - optional pagination config.
|
|
1347
|
+
* @returns AsyncIterable of {@link DescribeDBSnapshotTenantDatabasesCommandOutput}.
|
|
1348
|
+
*/
|
|
1349
|
+
paginateDescribeDBSnapshotTenantDatabases(args?: DescribeDBSnapshotTenantDatabasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBSnapshotTenantDatabasesCommandOutput>;
|
|
1350
|
+
/**
|
|
1351
|
+
* @see {@link DescribeDBSubnetGroupsCommand}
|
|
1352
|
+
* @param args - command input.
|
|
1353
|
+
* @param paginationConfig - optional pagination config.
|
|
1354
|
+
* @returns AsyncIterable of {@link DescribeDBSubnetGroupsCommandOutput}.
|
|
1355
|
+
*/
|
|
1356
|
+
paginateDescribeDBSubnetGroups(args?: DescribeDBSubnetGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDBSubnetGroupsCommandOutput>;
|
|
1357
|
+
/**
|
|
1358
|
+
* @see {@link DescribeEngineDefaultClusterParametersCommand}
|
|
1359
|
+
* @param args - command input.
|
|
1360
|
+
* @param paginationConfig - optional pagination config.
|
|
1361
|
+
* @returns AsyncIterable of {@link DescribeEngineDefaultClusterParametersCommandOutput}.
|
|
1362
|
+
*/
|
|
1363
|
+
paginateDescribeEngineDefaultClusterParameters(args: DescribeEngineDefaultClusterParametersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEngineDefaultClusterParametersCommandOutput>;
|
|
1364
|
+
/**
|
|
1365
|
+
* @see {@link DescribeEngineDefaultParametersCommand}
|
|
1366
|
+
* @param args - command input.
|
|
1367
|
+
* @param paginationConfig - optional pagination config.
|
|
1368
|
+
* @returns AsyncIterable of {@link DescribeEngineDefaultParametersCommandOutput}.
|
|
1369
|
+
*/
|
|
1370
|
+
paginateDescribeEngineDefaultParameters(args: DescribeEngineDefaultParametersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEngineDefaultParametersCommandOutput>;
|
|
1371
|
+
/**
|
|
1372
|
+
* @see {@link DescribeEventsCommand}
|
|
1373
|
+
* @param args - command input.
|
|
1374
|
+
* @param paginationConfig - optional pagination config.
|
|
1375
|
+
* @returns AsyncIterable of {@link DescribeEventsCommandOutput}.
|
|
1376
|
+
*/
|
|
1377
|
+
paginateDescribeEvents(args?: DescribeEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEventsCommandOutput>;
|
|
1378
|
+
/**
|
|
1379
|
+
* @see {@link DescribeEventSubscriptionsCommand}
|
|
1380
|
+
* @param args - command input.
|
|
1381
|
+
* @param paginationConfig - optional pagination config.
|
|
1382
|
+
* @returns AsyncIterable of {@link DescribeEventSubscriptionsCommandOutput}.
|
|
1383
|
+
*/
|
|
1384
|
+
paginateDescribeEventSubscriptions(args?: DescribeEventSubscriptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEventSubscriptionsCommandOutput>;
|
|
1385
|
+
/**
|
|
1386
|
+
* @see {@link DescribeExportTasksCommand}
|
|
1387
|
+
* @param args - command input.
|
|
1388
|
+
* @param paginationConfig - optional pagination config.
|
|
1389
|
+
* @returns AsyncIterable of {@link DescribeExportTasksCommandOutput}.
|
|
1390
|
+
*/
|
|
1391
|
+
paginateDescribeExportTasks(args?: DescribeExportTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeExportTasksCommandOutput>;
|
|
1392
|
+
/**
|
|
1393
|
+
* @see {@link DescribeGlobalClustersCommand}
|
|
1394
|
+
* @param args - command input.
|
|
1395
|
+
* @param paginationConfig - optional pagination config.
|
|
1396
|
+
* @returns AsyncIterable of {@link DescribeGlobalClustersCommandOutput}.
|
|
1397
|
+
*/
|
|
1398
|
+
paginateDescribeGlobalClusters(args?: DescribeGlobalClustersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeGlobalClustersCommandOutput>;
|
|
1399
|
+
/**
|
|
1400
|
+
* @see {@link DescribeIntegrationsCommand}
|
|
1401
|
+
* @param args - command input.
|
|
1402
|
+
* @param paginationConfig - optional pagination config.
|
|
1403
|
+
* @returns AsyncIterable of {@link DescribeIntegrationsCommandOutput}.
|
|
1404
|
+
*/
|
|
1405
|
+
paginateDescribeIntegrations(args?: DescribeIntegrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIntegrationsCommandOutput>;
|
|
1406
|
+
/**
|
|
1407
|
+
* @see {@link DescribeOptionGroupOptionsCommand}
|
|
1408
|
+
* @param args - command input.
|
|
1409
|
+
* @param paginationConfig - optional pagination config.
|
|
1410
|
+
* @returns AsyncIterable of {@link DescribeOptionGroupOptionsCommandOutput}.
|
|
1411
|
+
*/
|
|
1412
|
+
paginateDescribeOptionGroupOptions(args: DescribeOptionGroupOptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeOptionGroupOptionsCommandOutput>;
|
|
1413
|
+
/**
|
|
1414
|
+
* @see {@link DescribeOptionGroupsCommand}
|
|
1415
|
+
* @param args - command input.
|
|
1416
|
+
* @param paginationConfig - optional pagination config.
|
|
1417
|
+
* @returns AsyncIterable of {@link DescribeOptionGroupsCommandOutput}.
|
|
1418
|
+
*/
|
|
1419
|
+
paginateDescribeOptionGroups(args?: DescribeOptionGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeOptionGroupsCommandOutput>;
|
|
1420
|
+
/**
|
|
1421
|
+
* @see {@link DescribeOrderableDBInstanceOptionsCommand}
|
|
1422
|
+
* @param args - command input.
|
|
1423
|
+
* @param paginationConfig - optional pagination config.
|
|
1424
|
+
* @returns AsyncIterable of {@link DescribeOrderableDBInstanceOptionsCommandOutput}.
|
|
1425
|
+
*/
|
|
1426
|
+
paginateDescribeOrderableDBInstanceOptions(args: DescribeOrderableDBInstanceOptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeOrderableDBInstanceOptionsCommandOutput>;
|
|
1427
|
+
/**
|
|
1428
|
+
* @see {@link DescribePendingMaintenanceActionsCommand}
|
|
1429
|
+
* @param args - command input.
|
|
1430
|
+
* @param paginationConfig - optional pagination config.
|
|
1431
|
+
* @returns AsyncIterable of {@link DescribePendingMaintenanceActionsCommandOutput}.
|
|
1432
|
+
*/
|
|
1433
|
+
paginateDescribePendingMaintenanceActions(args?: DescribePendingMaintenanceActionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribePendingMaintenanceActionsCommandOutput>;
|
|
1434
|
+
/**
|
|
1435
|
+
* @see {@link DescribeReservedDBInstancesCommand}
|
|
1436
|
+
* @param args - command input.
|
|
1437
|
+
* @param paginationConfig - optional pagination config.
|
|
1438
|
+
* @returns AsyncIterable of {@link DescribeReservedDBInstancesCommandOutput}.
|
|
1439
|
+
*/
|
|
1440
|
+
paginateDescribeReservedDBInstances(args?: DescribeReservedDBInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeReservedDBInstancesCommandOutput>;
|
|
1441
|
+
/**
|
|
1442
|
+
* @see {@link DescribeReservedDBInstancesOfferingsCommand}
|
|
1443
|
+
* @param args - command input.
|
|
1444
|
+
* @param paginationConfig - optional pagination config.
|
|
1445
|
+
* @returns AsyncIterable of {@link DescribeReservedDBInstancesOfferingsCommandOutput}.
|
|
1446
|
+
*/
|
|
1447
|
+
paginateDescribeReservedDBInstancesOfferings(args?: DescribeReservedDBInstancesOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeReservedDBInstancesOfferingsCommandOutput>;
|
|
1448
|
+
/**
|
|
1449
|
+
* @see {@link DescribeSourceRegionsCommand}
|
|
1450
|
+
* @param args - command input.
|
|
1451
|
+
* @param paginationConfig - optional pagination config.
|
|
1452
|
+
* @returns AsyncIterable of {@link DescribeSourceRegionsCommandOutput}.
|
|
1453
|
+
*/
|
|
1454
|
+
paginateDescribeSourceRegions(args?: DescribeSourceRegionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSourceRegionsCommandOutput>;
|
|
1455
|
+
/**
|
|
1456
|
+
* @see {@link DescribeTenantDatabasesCommand}
|
|
1457
|
+
* @param args - command input.
|
|
1458
|
+
* @param paginationConfig - optional pagination config.
|
|
1459
|
+
* @returns AsyncIterable of {@link DescribeTenantDatabasesCommandOutput}.
|
|
1460
|
+
*/
|
|
1461
|
+
paginateDescribeTenantDatabases(args?: DescribeTenantDatabasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTenantDatabasesCommandOutput>;
|
|
1462
|
+
/**
|
|
1463
|
+
* @see {@link DownloadDBLogFilePortionCommand}
|
|
1464
|
+
* @param args - command input.
|
|
1465
|
+
* @param paginationConfig - optional pagination config.
|
|
1466
|
+
* @returns AsyncIterable of {@link DownloadDBLogFilePortionCommandOutput}.
|
|
1467
|
+
*/
|
|
1468
|
+
paginateDownloadDBLogFilePortion(args: DownloadDBLogFilePortionCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DownloadDBLogFilePortionCommandOutput>;
|
|
1469
|
+
/**
|
|
1470
|
+
* @see {@link DescribeDBClustersCommand}
|
|
1471
|
+
* @param args - command input.
|
|
1472
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1473
|
+
*/
|
|
1474
|
+
waitUntilDBClusterAvailable(args: DescribeDBClustersCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1475
|
+
/**
|
|
1476
|
+
* @see {@link DescribeDBClustersCommand}
|
|
1477
|
+
* @param args - command input.
|
|
1478
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1479
|
+
*/
|
|
1480
|
+
waitUntilDBClusterDeleted(args: DescribeDBClustersCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1481
|
+
/**
|
|
1482
|
+
* @see {@link DescribeDBClusterSnapshotsCommand}
|
|
1483
|
+
* @param args - command input.
|
|
1484
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1485
|
+
*/
|
|
1486
|
+
waitUntilDBClusterSnapshotAvailable(args: DescribeDBClusterSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1487
|
+
/**
|
|
1488
|
+
* @see {@link DescribeDBClusterSnapshotsCommand}
|
|
1489
|
+
* @param args - command input.
|
|
1490
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1491
|
+
*/
|
|
1492
|
+
waitUntilDBClusterSnapshotDeleted(args: DescribeDBClusterSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1493
|
+
/**
|
|
1494
|
+
* @see {@link DescribeDBInstancesCommand}
|
|
1495
|
+
* @param args - command input.
|
|
1496
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1497
|
+
*/
|
|
1498
|
+
waitUntilDBInstanceAvailable(args: DescribeDBInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1499
|
+
/**
|
|
1500
|
+
* @see {@link DescribeDBInstancesCommand}
|
|
1501
|
+
* @param args - command input.
|
|
1502
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1503
|
+
*/
|
|
1504
|
+
waitUntilDBInstanceDeleted(args: DescribeDBInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1505
|
+
/**
|
|
1506
|
+
* @see {@link DescribeDBSnapshotsCommand}
|
|
1507
|
+
* @param args - command input.
|
|
1508
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1509
|
+
*/
|
|
1510
|
+
waitUntilDBSnapshotAvailable(args: DescribeDBSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1511
|
+
/**
|
|
1512
|
+
* @see {@link DescribeDBSnapshotsCommand}
|
|
1513
|
+
* @param args - command input.
|
|
1514
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1515
|
+
*/
|
|
1516
|
+
waitUntilDBSnapshotDeleted(args: DescribeDBSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1517
|
+
/**
|
|
1518
|
+
* @see {@link DescribeTenantDatabasesCommand}
|
|
1519
|
+
* @param args - command input.
|
|
1520
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1521
|
+
*/
|
|
1522
|
+
waitUntilTenantDatabaseAvailable(args: DescribeTenantDatabasesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1523
|
+
/**
|
|
1524
|
+
* @see {@link DescribeTenantDatabasesCommand}
|
|
1525
|
+
* @param args - command input.
|
|
1526
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1527
|
+
*/
|
|
1528
|
+
waitUntilTenantDatabaseDeleted(args: DescribeTenantDatabasesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RDS>, "client">): Promise<WaiterResult>;
|
|
1181
1529
|
}
|
|
1182
1530
|
/**
|
|
1183
1531
|
* <fullname>Amazon Relational Database Service</fullname> <p/> <p>Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.</p> <p>Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, Db2, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.</p> <p>This interface reference for Amazon RDS contains documentation for a programming or command line interface you can use to manage Amazon RDS. Amazon RDS is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.</p> <p> <b>Amazon RDS API Reference</b> </p> <ul> <li> <p>For the alphabetical list of API actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Operations.html">API Actions</a>.</p> </li> <li> <p>For the alphabetical list of data types, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Types.html">Data Types</a>.</p> </li> <li> <p>For a list of common query parameters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/CommonParameters.html">Common Parameters</a>.</p> </li> <li> <p>For descriptions of the error codes, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/CommonErrors.html">Common Errors</a>.</p> </li> </ul> <p> <b>Amazon RDS User Guide</b> </p> <ul> <li> <p>For a summary of the Amazon RDS interfaces, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html#Welcome.Interfaces">Available RDS Interfaces</a>.</p> </li> <li> <p>For more information about how to use the Query API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Using_the_Query_API.html">Using the Query API</a>.</p> </li> </ul>
|