@@ -127,6 +127,11 @@ import {
127127 CreateDBSecurityGroupCommandInput ,
128128 CreateDBSecurityGroupCommandOutput ,
129129} from "./commands/CreateDBSecurityGroupCommand" ;
130+ import {
131+ CreateDBShardGroupCommand ,
132+ CreateDBShardGroupCommandInput ,
133+ CreateDBShardGroupCommandOutput ,
134+ } from "./commands/CreateDBShardGroupCommand" ;
130135import {
131136 CreateDBSnapshotCommand ,
132137 CreateDBSnapshotCommandInput ,
@@ -227,6 +232,11 @@ import {
227232 DeleteDBSecurityGroupCommandInput ,
228233 DeleteDBSecurityGroupCommandOutput ,
229234} from "./commands/DeleteDBSecurityGroupCommand" ;
235+ import {
236+ DeleteDBShardGroupCommand ,
237+ DeleteDBShardGroupCommandInput ,
238+ DeleteDBShardGroupCommandOutput ,
239+ } from "./commands/DeleteDBShardGroupCommand" ;
230240import {
231241 DeleteDBSnapshotCommand ,
232242 DeleteDBSnapshotCommandInput ,
@@ -382,6 +392,11 @@ import {
382392 DescribeDBSecurityGroupsCommandInput ,
383393 DescribeDBSecurityGroupsCommandOutput ,
384394} from "./commands/DescribeDBSecurityGroupsCommand" ;
395+ import {
396+ DescribeDBShardGroupsCommand ,
397+ DescribeDBShardGroupsCommandInput ,
398+ DescribeDBShardGroupsCommandOutput ,
399+ } from "./commands/DescribeDBShardGroupsCommand" ;
385400import {
386401 DescribeDBSnapshotAttributesCommand ,
387402 DescribeDBSnapshotAttributesCommandInput ,
@@ -587,6 +602,11 @@ import {
587602 ModifyDBRecommendationCommandInput ,
588603 ModifyDBRecommendationCommandOutput ,
589604} from "./commands/ModifyDBRecommendationCommand" ;
605+ import {
606+ ModifyDBShardGroupCommand ,
607+ ModifyDBShardGroupCommandInput ,
608+ ModifyDBShardGroupCommandOutput ,
609+ } from "./commands/ModifyDBShardGroupCommand" ;
590610import {
591611 ModifyDBSnapshotAttributeCommand ,
592612 ModifyDBSnapshotAttributeCommandInput ,
@@ -647,6 +667,11 @@ import {
647667 RebootDBInstanceCommandInput ,
648668 RebootDBInstanceCommandOutput ,
649669} from "./commands/RebootDBInstanceCommand" ;
670+ import {
671+ RebootDBShardGroupCommand ,
672+ RebootDBShardGroupCommandInput ,
673+ RebootDBShardGroupCommandOutput ,
674+ } from "./commands/RebootDBShardGroupCommand" ;
650675import {
651676 RegisterDBProxyTargetsCommand ,
652677 RegisterDBProxyTargetsCommandInput ,
@@ -810,6 +835,7 @@ const commands = {
810835 CreateDBProxyCommand,
811836 CreateDBProxyEndpointCommand,
812837 CreateDBSecurityGroupCommand,
838+ CreateDBShardGroupCommand,
813839 CreateDBSnapshotCommand,
814840 CreateDBSubnetGroupCommand,
815841 CreateEventSubscriptionCommand,
@@ -830,6 +856,7 @@ const commands = {
830856 DeleteDBProxyCommand,
831857 DeleteDBProxyEndpointCommand,
832858 DeleteDBSecurityGroupCommand,
859+ DeleteDBShardGroupCommand,
833860 DeleteDBSnapshotCommand,
834861 DeleteDBSubnetGroupCommand,
835862 DeleteEventSubscriptionCommand,
@@ -861,6 +888,7 @@ const commands = {
861888 DescribeDBProxyTargetsCommand,
862889 DescribeDBRecommendationsCommand,
863890 DescribeDBSecurityGroupsCommand,
891+ DescribeDBShardGroupsCommand,
864892 DescribeDBSnapshotAttributesCommand,
865893 DescribeDBSnapshotsCommand,
866894 DescribeDBSnapshotTenantDatabasesCommand,
@@ -902,6 +930,7 @@ const commands = {
902930 ModifyDBProxyEndpointCommand,
903931 ModifyDBProxyTargetGroupCommand,
904932 ModifyDBRecommendationCommand,
933+ ModifyDBShardGroupCommand,
905934 ModifyDBSnapshotCommand,
906935 ModifyDBSnapshotAttributeCommand,
907936 ModifyDBSubnetGroupCommand,
@@ -914,6 +943,7 @@ const commands = {
914943 PurchaseReservedDBInstancesOfferingCommand,
915944 RebootDBClusterCommand,
916945 RebootDBInstanceCommand,
946+ RebootDBShardGroupCommand,
917947 RegisterDBProxyTargetsCommand,
918948 RemoveFromGlobalClusterCommand,
919949 RemoveRoleFromDBClusterCommand,
@@ -1354,6 +1384,23 @@ export interface RDS {
13541384 cb : ( err : any , data ?: CreateDBSecurityGroupCommandOutput ) => void
13551385 ) : void ;
13561386
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+
13571404 /**
13581405 * @see {@link CreateDBSnapshotCommand }
13591406 */
@@ -1685,6 +1732,23 @@ export interface RDS {
16851732 cb : ( err : any , data ?: DeleteDBSecurityGroupCommandOutput ) => void
16861733 ) : void ;
16871734
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+
16881752 /**
16891753 * @see {@link DeleteDBSnapshotCommand }
16901754 */
@@ -2212,6 +2276,23 @@ export interface RDS {
22122276 cb : ( err : any , data ?: DescribeDBSecurityGroupsCommandOutput ) => void
22132277 ) : void ;
22142278
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+
22152296 /**
22162297 * @see {@link DescribeDBSnapshotAttributesCommand }
22172298 */
@@ -2897,6 +2978,23 @@ export interface RDS {
28972978 cb : ( err : any , data ?: ModifyDBRecommendationCommandOutput ) => void
28982979 ) : void ;
28992980
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+
29002998 /**
29012999 * @see {@link ModifyDBSnapshotCommand }
29023000 */
@@ -3098,6 +3196,23 @@ export interface RDS {
30983196 cb : ( err : any , data ?: RebootDBInstanceCommandOutput ) => void
30993197 ) : void ;
31003198
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+
31013216 /**
31023217 * @see {@link RegisterDBProxyTargetsCommand }
31033218 */
0 commit comments