@@ -83,6 +83,11 @@ import {
8383 CreateClusterSubnetGroupCommandInput ,
8484 CreateClusterSubnetGroupCommandOutput ,
8585} from "./commands/CreateClusterSubnetGroupCommand" ;
86+ import {
87+ CreateCustomDomainAssociationCommand ,
88+ CreateCustomDomainAssociationCommandInput ,
89+ CreateCustomDomainAssociationCommandOutput ,
90+ } from "./commands/CreateCustomDomainAssociationCommand" ;
8691import {
8792 CreateEndpointAccessCommand ,
8893 CreateEndpointAccessCommandInput ,
@@ -159,6 +164,11 @@ import {
159164 DeleteClusterSubnetGroupCommandInput ,
160165 DeleteClusterSubnetGroupCommandOutput ,
161166} from "./commands/DeleteClusterSubnetGroupCommand" ;
167+ import {
168+ DeleteCustomDomainAssociationCommand ,
169+ DeleteCustomDomainAssociationCommandInput ,
170+ DeleteCustomDomainAssociationCommandOutput ,
171+ } from "./commands/DeleteCustomDomainAssociationCommand" ;
162172import {
163173 DeleteEndpointAccessCommand ,
164174 DeleteEndpointAccessCommandInput ,
@@ -260,6 +270,11 @@ import {
260270 DescribeClusterVersionsCommandInput ,
261271 DescribeClusterVersionsCommandOutput ,
262272} from "./commands/DescribeClusterVersionsCommand" ;
273+ import {
274+ DescribeCustomDomainAssociationsCommand ,
275+ DescribeCustomDomainAssociationsCommandInput ,
276+ DescribeCustomDomainAssociationsCommandOutput ,
277+ } from "./commands/DescribeCustomDomainAssociationsCommand" ;
263278import {
264279 DescribeDataSharesCommand ,
265280 DescribeDataSharesCommandInput ,
@@ -485,6 +500,11 @@ import {
485500 ModifyClusterSubnetGroupCommandInput ,
486501 ModifyClusterSubnetGroupCommandOutput ,
487502} from "./commands/ModifyClusterSubnetGroupCommand" ;
503+ import {
504+ ModifyCustomDomainAssociationCommand ,
505+ ModifyCustomDomainAssociationCommandInput ,
506+ ModifyCustomDomainAssociationCommandOutput ,
507+ } from "./commands/ModifyCustomDomainAssociationCommand" ;
488508import {
489509 ModifyEndpointAccessCommand ,
490510 ModifyEndpointAccessCommandInput ,
@@ -605,6 +625,7 @@ const commands = {
605625 CreateClusterSecurityGroupCommand,
606626 CreateClusterSnapshotCommand,
607627 CreateClusterSubnetGroupCommand,
628+ CreateCustomDomainAssociationCommand,
608629 CreateEndpointAccessCommand,
609630 CreateEventSubscriptionCommand,
610631 CreateHsmClientCertificateCommand,
@@ -621,6 +642,7 @@ const commands = {
621642 DeleteClusterSecurityGroupCommand,
622643 DeleteClusterSnapshotCommand,
623644 DeleteClusterSubnetGroupCommand,
645+ DeleteCustomDomainAssociationCommand,
624646 DeleteEndpointAccessCommand,
625647 DeleteEventSubscriptionCommand,
626648 DeleteHsmClientCertificateCommand,
@@ -642,6 +664,7 @@ const commands = {
642664 DescribeClusterSubnetGroupsCommand,
643665 DescribeClusterTracksCommand,
644666 DescribeClusterVersionsCommand,
667+ DescribeCustomDomainAssociationsCommand,
645668 DescribeDataSharesCommand,
646669 DescribeDataSharesForConsumerCommand,
647670 DescribeDataSharesForProducerCommand,
@@ -687,6 +710,7 @@ const commands = {
687710 ModifyClusterSnapshotCommand,
688711 ModifyClusterSnapshotScheduleCommand,
689712 ModifyClusterSubnetGroupCommand,
713+ ModifyCustomDomainAssociationCommand,
690714 ModifyEndpointAccessCommand,
691715 ModifyEventSubscriptionCommand,
692716 ModifyScheduledActionCommand,
@@ -981,6 +1005,23 @@ export interface Redshift {
9811005 cb : ( err : any , data ?: CreateClusterSubnetGroupCommandOutput ) => void
9821006 ) : void ;
9831007
1008+ /**
1009+ * @see {@link CreateCustomDomainAssociationCommand }
1010+ */
1011+ createCustomDomainAssociation (
1012+ args : CreateCustomDomainAssociationCommandInput ,
1013+ options ?: __HttpHandlerOptions
1014+ ) : Promise < CreateCustomDomainAssociationCommandOutput > ;
1015+ createCustomDomainAssociation (
1016+ args : CreateCustomDomainAssociationCommandInput ,
1017+ cb : ( err : any , data ?: CreateCustomDomainAssociationCommandOutput ) => void
1018+ ) : void ;
1019+ createCustomDomainAssociation (
1020+ args : CreateCustomDomainAssociationCommandInput ,
1021+ options : __HttpHandlerOptions ,
1022+ cb : ( err : any , data ?: CreateCustomDomainAssociationCommandOutput ) => void
1023+ ) : void ;
1024+
9841025 /**
9851026 * @see {@link CreateEndpointAccessCommand }
9861027 */
@@ -1241,6 +1282,23 @@ export interface Redshift {
12411282 cb : ( err : any , data ?: DeleteClusterSubnetGroupCommandOutput ) => void
12421283 ) : void ;
12431284
1285+ /**
1286+ * @see {@link DeleteCustomDomainAssociationCommand }
1287+ */
1288+ deleteCustomDomainAssociation (
1289+ args : DeleteCustomDomainAssociationCommandInput ,
1290+ options ?: __HttpHandlerOptions
1291+ ) : Promise < DeleteCustomDomainAssociationCommandOutput > ;
1292+ deleteCustomDomainAssociation (
1293+ args : DeleteCustomDomainAssociationCommandInput ,
1294+ cb : ( err : any , data ?: DeleteCustomDomainAssociationCommandOutput ) => void
1295+ ) : void ;
1296+ deleteCustomDomainAssociation (
1297+ args : DeleteCustomDomainAssociationCommandInput ,
1298+ options : __HttpHandlerOptions ,
1299+ cb : ( err : any , data ?: DeleteCustomDomainAssociationCommandOutput ) => void
1300+ ) : void ;
1301+
12441302 /**
12451303 * @see {@link DeleteEndpointAccessCommand }
12461304 */
@@ -1586,6 +1644,23 @@ export interface Redshift {
15861644 cb : ( err : any , data ?: DescribeClusterVersionsCommandOutput ) => void
15871645 ) : void ;
15881646
1647+ /**
1648+ * @see {@link DescribeCustomDomainAssociationsCommand }
1649+ */
1650+ describeCustomDomainAssociations (
1651+ args : DescribeCustomDomainAssociationsCommandInput ,
1652+ options ?: __HttpHandlerOptions
1653+ ) : Promise < DescribeCustomDomainAssociationsCommandOutput > ;
1654+ describeCustomDomainAssociations (
1655+ args : DescribeCustomDomainAssociationsCommandInput ,
1656+ cb : ( err : any , data ?: DescribeCustomDomainAssociationsCommandOutput ) => void
1657+ ) : void ;
1658+ describeCustomDomainAssociations (
1659+ args : DescribeCustomDomainAssociationsCommandInput ,
1660+ options : __HttpHandlerOptions ,
1661+ cb : ( err : any , data ?: DescribeCustomDomainAssociationsCommandOutput ) => void
1662+ ) : void ;
1663+
15891664 /**
15901665 * @see {@link DescribeDataSharesCommand }
15911666 */
@@ -2321,6 +2396,23 @@ export interface Redshift {
23212396 cb : ( err : any , data ?: ModifyClusterSubnetGroupCommandOutput ) => void
23222397 ) : void ;
23232398
2399+ /**
2400+ * @see {@link ModifyCustomDomainAssociationCommand }
2401+ */
2402+ modifyCustomDomainAssociation (
2403+ args : ModifyCustomDomainAssociationCommandInput ,
2404+ options ?: __HttpHandlerOptions
2405+ ) : Promise < ModifyCustomDomainAssociationCommandOutput > ;
2406+ modifyCustomDomainAssociation (
2407+ args : ModifyCustomDomainAssociationCommandInput ,
2408+ cb : ( err : any , data ?: ModifyCustomDomainAssociationCommandOutput ) => void
2409+ ) : void ;
2410+ modifyCustomDomainAssociation (
2411+ args : ModifyCustomDomainAssociationCommandInput ,
2412+ options : __HttpHandlerOptions ,
2413+ cb : ( err : any , data ?: ModifyCustomDomainAssociationCommandOutput ) => void
2414+ ) : void ;
2415+
23242416 /**
23252417 * @see {@link ModifyEndpointAccessCommand }
23262418 */
0 commit comments