@@ -70,6 +70,11 @@ import {
70
70
DescribeAccountLimitsCommandInput ,
71
71
DescribeAccountLimitsCommandOutput ,
72
72
} from "./commands/DescribeAccountLimitsCommand" ;
73
+ import {
74
+ DescribeListenerAttributesCommand ,
75
+ DescribeListenerAttributesCommandInput ,
76
+ DescribeListenerAttributesCommandOutput ,
77
+ } from "./commands/DescribeListenerAttributesCommand" ;
73
78
import {
74
79
DescribeListenerCertificatesCommand ,
75
80
DescribeListenerCertificatesCommandInput ,
@@ -150,6 +155,11 @@ import {
150
155
GetTrustStoreRevocationContentCommandInput ,
151
156
GetTrustStoreRevocationContentCommandOutput ,
152
157
} from "./commands/GetTrustStoreRevocationContentCommand" ;
158
+ import {
159
+ ModifyListenerAttributesCommand ,
160
+ ModifyListenerAttributesCommandInput ,
161
+ ModifyListenerAttributesCommandOutput ,
162
+ } from "./commands/ModifyListenerAttributesCommand" ;
153
163
import {
154
164
ModifyListenerCommand ,
155
165
ModifyListenerCommandInput ,
@@ -227,6 +237,7 @@ const commands = {
227
237
DeleteTrustStoreCommand,
228
238
DeregisterTargetsCommand,
229
239
DescribeAccountLimitsCommand,
240
+ DescribeListenerAttributesCommand,
230
241
DescribeListenerCertificatesCommand,
231
242
DescribeListenersCommand,
232
243
DescribeLoadBalancerAttributesCommand,
@@ -244,6 +255,7 @@ const commands = {
244
255
GetTrustStoreCaCertificatesBundleCommand,
245
256
GetTrustStoreRevocationContentCommand,
246
257
ModifyListenerCommand,
258
+ ModifyListenerAttributesCommand,
247
259
ModifyLoadBalancerAttributesCommand,
248
260
ModifyRuleCommand,
249
261
ModifyTargetGroupCommand,
@@ -509,6 +521,23 @@ export interface ElasticLoadBalancingV2 {
509
521
cb : ( err : any , data ?: DescribeAccountLimitsCommandOutput ) => void
510
522
) : void ;
511
523
524
+ /**
525
+ * @see {@link DescribeListenerAttributesCommand }
526
+ */
527
+ describeListenerAttributes (
528
+ args : DescribeListenerAttributesCommandInput ,
529
+ options ?: __HttpHandlerOptions
530
+ ) : Promise < DescribeListenerAttributesCommandOutput > ;
531
+ describeListenerAttributes (
532
+ args : DescribeListenerAttributesCommandInput ,
533
+ cb : ( err : any , data ?: DescribeListenerAttributesCommandOutput ) => void
534
+ ) : void ;
535
+ describeListenerAttributes (
536
+ args : DescribeListenerAttributesCommandInput ,
537
+ options : __HttpHandlerOptions ,
538
+ cb : ( err : any , data ?: DescribeListenerAttributesCommandOutput ) => void
539
+ ) : void ;
540
+
512
541
/**
513
542
* @see {@link DescribeListenerCertificatesCommand }
514
543
*/
@@ -789,6 +818,23 @@ export interface ElasticLoadBalancingV2 {
789
818
cb : ( err : any , data ?: ModifyListenerCommandOutput ) => void
790
819
) : void ;
791
820
821
+ /**
822
+ * @see {@link ModifyListenerAttributesCommand }
823
+ */
824
+ modifyListenerAttributes (
825
+ args : ModifyListenerAttributesCommandInput ,
826
+ options ?: __HttpHandlerOptions
827
+ ) : Promise < ModifyListenerAttributesCommandOutput > ;
828
+ modifyListenerAttributes (
829
+ args : ModifyListenerAttributesCommandInput ,
830
+ cb : ( err : any , data ?: ModifyListenerAttributesCommandOutput ) => void
831
+ ) : void ;
832
+ modifyListenerAttributes (
833
+ args : ModifyListenerAttributesCommandInput ,
834
+ options : __HttpHandlerOptions ,
835
+ cb : ( err : any , data ?: ModifyListenerAttributesCommandOutput ) => void
836
+ ) : void ;
837
+
792
838
/**
793
839
* @see {@link ModifyLoadBalancerAttributesCommand }
794
840
*/
0 commit comments