@@ -127,6 +127,11 @@ import {
127
127
CreateDBSecurityGroupCommandInput ,
128
128
CreateDBSecurityGroupCommandOutput ,
129
129
} from "./commands/CreateDBSecurityGroupCommand" ;
130
+ import {
131
+ CreateDBShardGroupCommand ,
132
+ CreateDBShardGroupCommandInput ,
133
+ CreateDBShardGroupCommandOutput ,
134
+ } from "./commands/CreateDBShardGroupCommand" ;
130
135
import {
131
136
CreateDBSnapshotCommand ,
132
137
CreateDBSnapshotCommandInput ,
@@ -227,6 +232,11 @@ import {
227
232
DeleteDBSecurityGroupCommandInput ,
228
233
DeleteDBSecurityGroupCommandOutput ,
229
234
} from "./commands/DeleteDBSecurityGroupCommand" ;
235
+ import {
236
+ DeleteDBShardGroupCommand ,
237
+ DeleteDBShardGroupCommandInput ,
238
+ DeleteDBShardGroupCommandOutput ,
239
+ } from "./commands/DeleteDBShardGroupCommand" ;
230
240
import {
231
241
DeleteDBSnapshotCommand ,
232
242
DeleteDBSnapshotCommandInput ,
@@ -382,6 +392,11 @@ import {
382
392
DescribeDBSecurityGroupsCommandInput ,
383
393
DescribeDBSecurityGroupsCommandOutput ,
384
394
} from "./commands/DescribeDBSecurityGroupsCommand" ;
395
+ import {
396
+ DescribeDBShardGroupsCommand ,
397
+ DescribeDBShardGroupsCommandInput ,
398
+ DescribeDBShardGroupsCommandOutput ,
399
+ } from "./commands/DescribeDBShardGroupsCommand" ;
385
400
import {
386
401
DescribeDBSnapshotAttributesCommand ,
387
402
DescribeDBSnapshotAttributesCommandInput ,
@@ -587,6 +602,11 @@ import {
587
602
ModifyDBRecommendationCommandInput ,
588
603
ModifyDBRecommendationCommandOutput ,
589
604
} from "./commands/ModifyDBRecommendationCommand" ;
605
+ import {
606
+ ModifyDBShardGroupCommand ,
607
+ ModifyDBShardGroupCommandInput ,
608
+ ModifyDBShardGroupCommandOutput ,
609
+ } from "./commands/ModifyDBShardGroupCommand" ;
590
610
import {
591
611
ModifyDBSnapshotAttributeCommand ,
592
612
ModifyDBSnapshotAttributeCommandInput ,
@@ -647,6 +667,11 @@ import {
647
667
RebootDBInstanceCommandInput ,
648
668
RebootDBInstanceCommandOutput ,
649
669
} from "./commands/RebootDBInstanceCommand" ;
670
+ import {
671
+ RebootDBShardGroupCommand ,
672
+ RebootDBShardGroupCommandInput ,
673
+ RebootDBShardGroupCommandOutput ,
674
+ } from "./commands/RebootDBShardGroupCommand" ;
650
675
import {
651
676
RegisterDBProxyTargetsCommand ,
652
677
RegisterDBProxyTargetsCommandInput ,
@@ -810,6 +835,7 @@ const commands = {
810
835
CreateDBProxyCommand,
811
836
CreateDBProxyEndpointCommand,
812
837
CreateDBSecurityGroupCommand,
838
+ CreateDBShardGroupCommand,
813
839
CreateDBSnapshotCommand,
814
840
CreateDBSubnetGroupCommand,
815
841
CreateEventSubscriptionCommand,
@@ -830,6 +856,7 @@ const commands = {
830
856
DeleteDBProxyCommand,
831
857
DeleteDBProxyEndpointCommand,
832
858
DeleteDBSecurityGroupCommand,
859
+ DeleteDBShardGroupCommand,
833
860
DeleteDBSnapshotCommand,
834
861
DeleteDBSubnetGroupCommand,
835
862
DeleteEventSubscriptionCommand,
@@ -861,6 +888,7 @@ const commands = {
861
888
DescribeDBProxyTargetsCommand,
862
889
DescribeDBRecommendationsCommand,
863
890
DescribeDBSecurityGroupsCommand,
891
+ DescribeDBShardGroupsCommand,
864
892
DescribeDBSnapshotAttributesCommand,
865
893
DescribeDBSnapshotsCommand,
866
894
DescribeDBSnapshotTenantDatabasesCommand,
@@ -902,6 +930,7 @@ const commands = {
902
930
ModifyDBProxyEndpointCommand,
903
931
ModifyDBProxyTargetGroupCommand,
904
932
ModifyDBRecommendationCommand,
933
+ ModifyDBShardGroupCommand,
905
934
ModifyDBSnapshotCommand,
906
935
ModifyDBSnapshotAttributeCommand,
907
936
ModifyDBSubnetGroupCommand,
@@ -914,6 +943,7 @@ const commands = {
914
943
PurchaseReservedDBInstancesOfferingCommand,
915
944
RebootDBClusterCommand,
916
945
RebootDBInstanceCommand,
946
+ RebootDBShardGroupCommand,
917
947
RegisterDBProxyTargetsCommand,
918
948
RemoveFromGlobalClusterCommand,
919
949
RemoveRoleFromDBClusterCommand,
@@ -1354,6 +1384,23 @@ export interface RDS {
1354
1384
cb : ( err : any , data ?: CreateDBSecurityGroupCommandOutput ) => void
1355
1385
) : void ;
1356
1386
1387
+ /**
1388
+ * @see {@link CreateDBShardGroupCommand }
1389
+ */
1390
+ createDBShardGroup (
1391
+ args : CreateDBShardGroupCommandInput ,
1392
+ options ?: __HttpHandlerOptions
1393
+ ) : Promise < CreateDBShardGroupCommandOutput > ;
1394
+ createDBShardGroup (
1395
+ args : CreateDBShardGroupCommandInput ,
1396
+ cb : ( err : any , data ?: CreateDBShardGroupCommandOutput ) => void
1397
+ ) : void ;
1398
+ createDBShardGroup (
1399
+ args : CreateDBShardGroupCommandInput ,
1400
+ options : __HttpHandlerOptions ,
1401
+ cb : ( err : any , data ?: CreateDBShardGroupCommandOutput ) => void
1402
+ ) : void ;
1403
+
1357
1404
/**
1358
1405
* @see {@link CreateDBSnapshotCommand }
1359
1406
*/
@@ -1685,6 +1732,23 @@ export interface RDS {
1685
1732
cb : ( err : any , data ?: DeleteDBSecurityGroupCommandOutput ) => void
1686
1733
) : void ;
1687
1734
1735
+ /**
1736
+ * @see {@link DeleteDBShardGroupCommand }
1737
+ */
1738
+ deleteDBShardGroup (
1739
+ args : DeleteDBShardGroupCommandInput ,
1740
+ options ?: __HttpHandlerOptions
1741
+ ) : Promise < DeleteDBShardGroupCommandOutput > ;
1742
+ deleteDBShardGroup (
1743
+ args : DeleteDBShardGroupCommandInput ,
1744
+ cb : ( err : any , data ?: DeleteDBShardGroupCommandOutput ) => void
1745
+ ) : void ;
1746
+ deleteDBShardGroup (
1747
+ args : DeleteDBShardGroupCommandInput ,
1748
+ options : __HttpHandlerOptions ,
1749
+ cb : ( err : any , data ?: DeleteDBShardGroupCommandOutput ) => void
1750
+ ) : void ;
1751
+
1688
1752
/**
1689
1753
* @see {@link DeleteDBSnapshotCommand }
1690
1754
*/
@@ -2212,6 +2276,23 @@ export interface RDS {
2212
2276
cb : ( err : any , data ?: DescribeDBSecurityGroupsCommandOutput ) => void
2213
2277
) : void ;
2214
2278
2279
+ /**
2280
+ * @see {@link DescribeDBShardGroupsCommand }
2281
+ */
2282
+ describeDBShardGroups (
2283
+ args : DescribeDBShardGroupsCommandInput ,
2284
+ options ?: __HttpHandlerOptions
2285
+ ) : Promise < DescribeDBShardGroupsCommandOutput > ;
2286
+ describeDBShardGroups (
2287
+ args : DescribeDBShardGroupsCommandInput ,
2288
+ cb : ( err : any , data ?: DescribeDBShardGroupsCommandOutput ) => void
2289
+ ) : void ;
2290
+ describeDBShardGroups (
2291
+ args : DescribeDBShardGroupsCommandInput ,
2292
+ options : __HttpHandlerOptions ,
2293
+ cb : ( err : any , data ?: DescribeDBShardGroupsCommandOutput ) => void
2294
+ ) : void ;
2295
+
2215
2296
/**
2216
2297
* @see {@link DescribeDBSnapshotAttributesCommand }
2217
2298
*/
@@ -2897,6 +2978,23 @@ export interface RDS {
2897
2978
cb : ( err : any , data ?: ModifyDBRecommendationCommandOutput ) => void
2898
2979
) : void ;
2899
2980
2981
+ /**
2982
+ * @see {@link ModifyDBShardGroupCommand }
2983
+ */
2984
+ modifyDBShardGroup (
2985
+ args : ModifyDBShardGroupCommandInput ,
2986
+ options ?: __HttpHandlerOptions
2987
+ ) : Promise < ModifyDBShardGroupCommandOutput > ;
2988
+ modifyDBShardGroup (
2989
+ args : ModifyDBShardGroupCommandInput ,
2990
+ cb : ( err : any , data ?: ModifyDBShardGroupCommandOutput ) => void
2991
+ ) : void ;
2992
+ modifyDBShardGroup (
2993
+ args : ModifyDBShardGroupCommandInput ,
2994
+ options : __HttpHandlerOptions ,
2995
+ cb : ( err : any , data ?: ModifyDBShardGroupCommandOutput ) => void
2996
+ ) : void ;
2997
+
2900
2998
/**
2901
2999
* @see {@link ModifyDBSnapshotCommand }
2902
3000
*/
@@ -3098,6 +3196,23 @@ export interface RDS {
3098
3196
cb : ( err : any , data ?: RebootDBInstanceCommandOutput ) => void
3099
3197
) : void ;
3100
3198
3199
+ /**
3200
+ * @see {@link RebootDBShardGroupCommand }
3201
+ */
3202
+ rebootDBShardGroup (
3203
+ args : RebootDBShardGroupCommandInput ,
3204
+ options ?: __HttpHandlerOptions
3205
+ ) : Promise < RebootDBShardGroupCommandOutput > ;
3206
+ rebootDBShardGroup (
3207
+ args : RebootDBShardGroupCommandInput ,
3208
+ cb : ( err : any , data ?: RebootDBShardGroupCommandOutput ) => void
3209
+ ) : void ;
3210
+ rebootDBShardGroup (
3211
+ args : RebootDBShardGroupCommandInput ,
3212
+ options : __HttpHandlerOptions ,
3213
+ cb : ( err : any , data ?: RebootDBShardGroupCommandOutput ) => void
3214
+ ) : void ;
3215
+
3101
3216
/**
3102
3217
* @see {@link RegisterDBProxyTargetsCommand }
3103
3218
*/
0 commit comments