@aws-sdk/client-elastic-load-balancing 3.296.0 → 3.297.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/protocols/Aws_query.js +63 -246
- package/dist-es/protocols/Aws_query.js +63 -246
- package/dist-types/ElasticLoadBalancing.d.ts +30 -0
- package/dist-types/ElasticLoadBalancingClient.d.ts +24 -4
- package/dist-types/commands/AddTagsCommand.d.ts +16 -0
- package/dist-types/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/AttachLoadBalancerToSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/ConfigureHealthCheckCommand.d.ts +16 -0
- package/dist-types/commands/CreateAppCookieStickinessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/CreateLBCookieStickinessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerListenersCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerListenersCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInstanceHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +16 -0
- package/dist-types/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
- package/dist-types/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +16 -0
- package/dist-types/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +16 -0
- package/dist-types/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +16 -0
- package/dist-types/models/ElasticLoadBalancingServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +110 -0
- package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>Information about the <code>AccessLog</code> attribute.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface AccessLog {
|
|
@@ -24,6 +25,7 @@ export interface AccessLog {
|
|
|
24
25
|
S3BucketPrefix?: string;
|
|
25
26
|
}
|
|
26
27
|
/**
|
|
28
|
+
* @public
|
|
27
29
|
* <p>The specified load balancer does not exist.</p>
|
|
28
30
|
*/
|
|
29
31
|
export declare class AccessPointNotFoundException extends __BaseException {
|
|
@@ -36,6 +38,7 @@ export declare class AccessPointNotFoundException extends __BaseException {
|
|
|
36
38
|
constructor(opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>);
|
|
37
39
|
}
|
|
38
40
|
/**
|
|
41
|
+
* @public
|
|
39
42
|
* <p>Contains the parameters for EnableAvailabilityZonesForLoadBalancer.</p>
|
|
40
43
|
*/
|
|
41
44
|
export interface AddAvailabilityZonesInput {
|
|
@@ -49,6 +52,7 @@ export interface AddAvailabilityZonesInput {
|
|
|
49
52
|
AvailabilityZones: string[] | undefined;
|
|
50
53
|
}
|
|
51
54
|
/**
|
|
55
|
+
* @public
|
|
52
56
|
* <p>Contains the output of EnableAvailabilityZonesForLoadBalancer.</p>
|
|
53
57
|
*/
|
|
54
58
|
export interface AddAvailabilityZonesOutput {
|
|
@@ -58,6 +62,7 @@ export interface AddAvailabilityZonesOutput {
|
|
|
58
62
|
AvailabilityZones?: string[];
|
|
59
63
|
}
|
|
60
64
|
/**
|
|
65
|
+
* @public
|
|
61
66
|
* <p>Information about additional load balancer attributes.</p>
|
|
62
67
|
*/
|
|
63
68
|
export interface AdditionalAttribute {
|
|
@@ -80,6 +85,7 @@ export interface AdditionalAttribute {
|
|
|
80
85
|
Value?: string;
|
|
81
86
|
}
|
|
82
87
|
/**
|
|
88
|
+
* @public
|
|
83
89
|
* <p>Information about a tag.</p>
|
|
84
90
|
*/
|
|
85
91
|
export interface Tag {
|
|
@@ -93,6 +99,7 @@ export interface Tag {
|
|
|
93
99
|
Value?: string;
|
|
94
100
|
}
|
|
95
101
|
/**
|
|
102
|
+
* @public
|
|
96
103
|
* <p>Contains the parameters for AddTags.</p>
|
|
97
104
|
*/
|
|
98
105
|
export interface AddTagsInput {
|
|
@@ -106,11 +113,13 @@ export interface AddTagsInput {
|
|
|
106
113
|
Tags: Tag[] | undefined;
|
|
107
114
|
}
|
|
108
115
|
/**
|
|
116
|
+
* @public
|
|
109
117
|
* <p>Contains the output of AddTags.</p>
|
|
110
118
|
*/
|
|
111
119
|
export interface AddTagsOutput {
|
|
112
120
|
}
|
|
113
121
|
/**
|
|
122
|
+
* @public
|
|
114
123
|
* <p>A tag key was specified more than once.</p>
|
|
115
124
|
*/
|
|
116
125
|
export declare class DuplicateTagKeysException extends __BaseException {
|
|
@@ -123,6 +132,7 @@ export declare class DuplicateTagKeysException extends __BaseException {
|
|
|
123
132
|
constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
|
|
124
133
|
}
|
|
125
134
|
/**
|
|
135
|
+
* @public
|
|
126
136
|
* <p>The quota for the number of tags that can be assigned to a load balancer has been reached.</p>
|
|
127
137
|
*/
|
|
128
138
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -135,6 +145,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
135
145
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
136
146
|
}
|
|
137
147
|
/**
|
|
148
|
+
* @public
|
|
138
149
|
* <p>Information about a policy for application-controlled session stickiness.</p>
|
|
139
150
|
*/
|
|
140
151
|
export interface AppCookieStickinessPolicy {
|
|
@@ -148,6 +159,7 @@ export interface AppCookieStickinessPolicy {
|
|
|
148
159
|
CookieName?: string;
|
|
149
160
|
}
|
|
150
161
|
/**
|
|
162
|
+
* @public
|
|
151
163
|
* <p>Contains the parameters for ApplySecurityGroupsToLoadBalancer.</p>
|
|
152
164
|
*/
|
|
153
165
|
export interface ApplySecurityGroupsToLoadBalancerInput {
|
|
@@ -161,6 +173,7 @@ export interface ApplySecurityGroupsToLoadBalancerInput {
|
|
|
161
173
|
SecurityGroups: string[] | undefined;
|
|
162
174
|
}
|
|
163
175
|
/**
|
|
176
|
+
* @public
|
|
164
177
|
* <p>Contains the output of ApplySecurityGroupsToLoadBalancer.</p>
|
|
165
178
|
*/
|
|
166
179
|
export interface ApplySecurityGroupsToLoadBalancerOutput {
|
|
@@ -170,6 +183,7 @@ export interface ApplySecurityGroupsToLoadBalancerOutput {
|
|
|
170
183
|
SecurityGroups?: string[];
|
|
171
184
|
}
|
|
172
185
|
/**
|
|
186
|
+
* @public
|
|
173
187
|
* <p>The requested configuration change is not valid.</p>
|
|
174
188
|
*/
|
|
175
189
|
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
@@ -182,6 +196,7 @@ export declare class InvalidConfigurationRequestException extends __BaseExceptio
|
|
|
182
196
|
constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
|
|
183
197
|
}
|
|
184
198
|
/**
|
|
199
|
+
* @public
|
|
185
200
|
* <p>One or more of the specified security groups do not exist.</p>
|
|
186
201
|
*/
|
|
187
202
|
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
@@ -194,6 +209,7 @@ export declare class InvalidSecurityGroupException extends __BaseException {
|
|
|
194
209
|
constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
|
|
195
210
|
}
|
|
196
211
|
/**
|
|
212
|
+
* @public
|
|
197
213
|
* <p>Contains the parameters for AttachLoaBalancerToSubnets.</p>
|
|
198
214
|
*/
|
|
199
215
|
export interface AttachLoadBalancerToSubnetsInput {
|
|
@@ -207,6 +223,7 @@ export interface AttachLoadBalancerToSubnetsInput {
|
|
|
207
223
|
Subnets: string[] | undefined;
|
|
208
224
|
}
|
|
209
225
|
/**
|
|
226
|
+
* @public
|
|
210
227
|
* <p>Contains the output of AttachLoadBalancerToSubnets.</p>
|
|
211
228
|
*/
|
|
212
229
|
export interface AttachLoadBalancerToSubnetsOutput {
|
|
@@ -216,6 +233,7 @@ export interface AttachLoadBalancerToSubnetsOutput {
|
|
|
216
233
|
Subnets?: string[];
|
|
217
234
|
}
|
|
218
235
|
/**
|
|
236
|
+
* @public
|
|
219
237
|
* <p>The specified VPC has no associated Internet gateway.</p>
|
|
220
238
|
*/
|
|
221
239
|
export declare class InvalidSubnetException extends __BaseException {
|
|
@@ -228,6 +246,7 @@ export declare class InvalidSubnetException extends __BaseException {
|
|
|
228
246
|
constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
|
|
229
247
|
}
|
|
230
248
|
/**
|
|
249
|
+
* @public
|
|
231
250
|
* <p>One or more of the specified subnets do not exist.</p>
|
|
232
251
|
*/
|
|
233
252
|
export declare class SubnetNotFoundException extends __BaseException {
|
|
@@ -240,6 +259,7 @@ export declare class SubnetNotFoundException extends __BaseException {
|
|
|
240
259
|
constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
|
|
241
260
|
}
|
|
242
261
|
/**
|
|
262
|
+
* @public
|
|
243
263
|
* <p>Information about the configuration of an EC2 instance.</p>
|
|
244
264
|
*/
|
|
245
265
|
export interface BackendServerDescription {
|
|
@@ -253,6 +273,7 @@ export interface BackendServerDescription {
|
|
|
253
273
|
PolicyNames?: string[];
|
|
254
274
|
}
|
|
255
275
|
/**
|
|
276
|
+
* @public
|
|
256
277
|
* <p>The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM)
|
|
257
278
|
* or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might
|
|
258
279
|
* indicate that the certificate is not fully available yet.</p>
|
|
@@ -267,6 +288,7 @@ export declare class CertificateNotFoundException extends __BaseException {
|
|
|
267
288
|
constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
|
|
268
289
|
}
|
|
269
290
|
/**
|
|
291
|
+
* @public
|
|
270
292
|
* <p>Information about a health check.</p>
|
|
271
293
|
*/
|
|
272
294
|
export interface HealthCheck {
|
|
@@ -297,6 +319,7 @@ export interface HealthCheck {
|
|
|
297
319
|
HealthyThreshold: number | undefined;
|
|
298
320
|
}
|
|
299
321
|
/**
|
|
322
|
+
* @public
|
|
300
323
|
* <p>Contains the parameters for ConfigureHealthCheck.</p>
|
|
301
324
|
*/
|
|
302
325
|
export interface ConfigureHealthCheckInput {
|
|
@@ -310,6 +333,7 @@ export interface ConfigureHealthCheckInput {
|
|
|
310
333
|
HealthCheck: HealthCheck | undefined;
|
|
311
334
|
}
|
|
312
335
|
/**
|
|
336
|
+
* @public
|
|
313
337
|
* <p>Contains the output of ConfigureHealthCheck.</p>
|
|
314
338
|
*/
|
|
315
339
|
export interface ConfigureHealthCheckOutput {
|
|
@@ -319,6 +343,7 @@ export interface ConfigureHealthCheckOutput {
|
|
|
319
343
|
HealthCheck?: HealthCheck;
|
|
320
344
|
}
|
|
321
345
|
/**
|
|
346
|
+
* @public
|
|
322
347
|
* <p>Information about the <code>ConnectionDraining</code> attribute.</p>
|
|
323
348
|
*/
|
|
324
349
|
export interface ConnectionDraining {
|
|
@@ -332,6 +357,7 @@ export interface ConnectionDraining {
|
|
|
332
357
|
Timeout?: number;
|
|
333
358
|
}
|
|
334
359
|
/**
|
|
360
|
+
* @public
|
|
335
361
|
* <p>Information about the <code>ConnectionSettings</code> attribute.</p>
|
|
336
362
|
*/
|
|
337
363
|
export interface ConnectionSettings {
|
|
@@ -341,6 +367,7 @@ export interface ConnectionSettings {
|
|
|
341
367
|
IdleTimeout: number | undefined;
|
|
342
368
|
}
|
|
343
369
|
/**
|
|
370
|
+
* @public
|
|
344
371
|
* <p>Information about a listener.</p>
|
|
345
372
|
* <p>For information about the protocols and the ports supported by Elastic Load Balancing, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html">Listeners for Your Classic Load Balancer</a>
|
|
346
373
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -374,6 +401,7 @@ export interface Listener {
|
|
|
374
401
|
SSLCertificateId?: string;
|
|
375
402
|
}
|
|
376
403
|
/**
|
|
404
|
+
* @public
|
|
377
405
|
* <p>Contains the parameters for CreateLoadBalancer.</p>
|
|
378
406
|
*/
|
|
379
407
|
export interface CreateAccessPointInput {
|
|
@@ -420,6 +448,7 @@ export interface CreateAccessPointInput {
|
|
|
420
448
|
Tags?: Tag[];
|
|
421
449
|
}
|
|
422
450
|
/**
|
|
451
|
+
* @public
|
|
423
452
|
* <p>Contains the output for CreateLoadBalancer.</p>
|
|
424
453
|
*/
|
|
425
454
|
export interface CreateAccessPointOutput {
|
|
@@ -429,6 +458,7 @@ export interface CreateAccessPointOutput {
|
|
|
429
458
|
DNSName?: string;
|
|
430
459
|
}
|
|
431
460
|
/**
|
|
461
|
+
* @public
|
|
432
462
|
* <p>Contains the parameters for CreateAppCookieStickinessPolicy.</p>
|
|
433
463
|
*/
|
|
434
464
|
export interface CreateAppCookieStickinessPolicyInput {
|
|
@@ -446,11 +476,13 @@ export interface CreateAppCookieStickinessPolicyInput {
|
|
|
446
476
|
CookieName: string | undefined;
|
|
447
477
|
}
|
|
448
478
|
/**
|
|
479
|
+
* @public
|
|
449
480
|
* <p>Contains the output for CreateAppCookieStickinessPolicy.</p>
|
|
450
481
|
*/
|
|
451
482
|
export interface CreateAppCookieStickinessPolicyOutput {
|
|
452
483
|
}
|
|
453
484
|
/**
|
|
485
|
+
* @public
|
|
454
486
|
* <p>A policy with the specified name already exists for this load balancer.</p>
|
|
455
487
|
*/
|
|
456
488
|
export declare class DuplicatePolicyNameException extends __BaseException {
|
|
@@ -463,6 +495,7 @@ export declare class DuplicatePolicyNameException extends __BaseException {
|
|
|
463
495
|
constructor(opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>);
|
|
464
496
|
}
|
|
465
497
|
/**
|
|
498
|
+
* @public
|
|
466
499
|
* <p>The quota for the number of policies for this load balancer has been reached.</p>
|
|
467
500
|
*/
|
|
468
501
|
export declare class TooManyPoliciesException extends __BaseException {
|
|
@@ -475,6 +508,7 @@ export declare class TooManyPoliciesException extends __BaseException {
|
|
|
475
508
|
constructor(opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>);
|
|
476
509
|
}
|
|
477
510
|
/**
|
|
511
|
+
* @public
|
|
478
512
|
* <p>Contains the parameters for CreateLBCookieStickinessPolicy.</p>
|
|
479
513
|
*/
|
|
480
514
|
export interface CreateLBCookieStickinessPolicyInput {
|
|
@@ -492,11 +526,13 @@ export interface CreateLBCookieStickinessPolicyInput {
|
|
|
492
526
|
CookieExpirationPeriod?: number;
|
|
493
527
|
}
|
|
494
528
|
/**
|
|
529
|
+
* @public
|
|
495
530
|
* <p>Contains the output for CreateLBCookieStickinessPolicy.</p>
|
|
496
531
|
*/
|
|
497
532
|
export interface CreateLBCookieStickinessPolicyOutput {
|
|
498
533
|
}
|
|
499
534
|
/**
|
|
535
|
+
* @public
|
|
500
536
|
* <p>The specified load balancer name already exists for this account.</p>
|
|
501
537
|
*/
|
|
502
538
|
export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
@@ -509,6 +545,7 @@ export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
|
509
545
|
constructor(opts: __ExceptionOptionType<DuplicateAccessPointNameException, __BaseException>);
|
|
510
546
|
}
|
|
511
547
|
/**
|
|
548
|
+
* @public
|
|
512
549
|
* <p>The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.</p>
|
|
513
550
|
*/
|
|
514
551
|
export declare class InvalidSchemeException extends __BaseException {
|
|
@@ -521,6 +558,7 @@ export declare class InvalidSchemeException extends __BaseException {
|
|
|
521
558
|
constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
|
|
522
559
|
}
|
|
523
560
|
/**
|
|
561
|
+
* @public
|
|
524
562
|
* <p>This operation is not allowed.</p>
|
|
525
563
|
*/
|
|
526
564
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
@@ -533,6 +571,7 @@ export declare class OperationNotPermittedException extends __BaseException {
|
|
|
533
571
|
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
534
572
|
}
|
|
535
573
|
/**
|
|
574
|
+
* @public
|
|
536
575
|
* <p>The quota for the number of load balancers has been reached.</p>
|
|
537
576
|
*/
|
|
538
577
|
export declare class TooManyAccessPointsException extends __BaseException {
|
|
@@ -545,6 +584,7 @@ export declare class TooManyAccessPointsException extends __BaseException {
|
|
|
545
584
|
constructor(opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>);
|
|
546
585
|
}
|
|
547
586
|
/**
|
|
587
|
+
* @public
|
|
548
588
|
* <p>The specified protocol or signature version is not supported.</p>
|
|
549
589
|
*/
|
|
550
590
|
export declare class UnsupportedProtocolException extends __BaseException {
|
|
@@ -557,6 +597,7 @@ export declare class UnsupportedProtocolException extends __BaseException {
|
|
|
557
597
|
constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
|
|
558
598
|
}
|
|
559
599
|
/**
|
|
600
|
+
* @public
|
|
560
601
|
* <p>Contains the parameters for CreateLoadBalancerListeners.</p>
|
|
561
602
|
*/
|
|
562
603
|
export interface CreateLoadBalancerListenerInput {
|
|
@@ -570,11 +611,13 @@ export interface CreateLoadBalancerListenerInput {
|
|
|
570
611
|
Listeners: Listener[] | undefined;
|
|
571
612
|
}
|
|
572
613
|
/**
|
|
614
|
+
* @public
|
|
573
615
|
* <p>Contains the parameters for CreateLoadBalancerListener.</p>
|
|
574
616
|
*/
|
|
575
617
|
export interface CreateLoadBalancerListenerOutput {
|
|
576
618
|
}
|
|
577
619
|
/**
|
|
620
|
+
* @public
|
|
578
621
|
* <p>A listener already exists for the specified load balancer name and port, but with a different instance port, protocol, or SSL certificate.</p>
|
|
579
622
|
*/
|
|
580
623
|
export declare class DuplicateListenerException extends __BaseException {
|
|
@@ -587,6 +630,7 @@ export declare class DuplicateListenerException extends __BaseException {
|
|
|
587
630
|
constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
|
|
588
631
|
}
|
|
589
632
|
/**
|
|
633
|
+
* @public
|
|
590
634
|
* <p>Information about a policy attribute.</p>
|
|
591
635
|
*/
|
|
592
636
|
export interface PolicyAttribute {
|
|
@@ -600,6 +644,7 @@ export interface PolicyAttribute {
|
|
|
600
644
|
AttributeValue?: string;
|
|
601
645
|
}
|
|
602
646
|
/**
|
|
647
|
+
* @public
|
|
603
648
|
* <p>Contains the parameters for CreateLoadBalancerPolicy.</p>
|
|
604
649
|
*/
|
|
605
650
|
export interface CreateLoadBalancerPolicyInput {
|
|
@@ -622,11 +667,13 @@ export interface CreateLoadBalancerPolicyInput {
|
|
|
622
667
|
PolicyAttributes?: PolicyAttribute[];
|
|
623
668
|
}
|
|
624
669
|
/**
|
|
670
|
+
* @public
|
|
625
671
|
* <p>Contains the output of CreateLoadBalancerPolicy.</p>
|
|
626
672
|
*/
|
|
627
673
|
export interface CreateLoadBalancerPolicyOutput {
|
|
628
674
|
}
|
|
629
675
|
/**
|
|
676
|
+
* @public
|
|
630
677
|
* <p>One or more of the specified policy types do not exist.</p>
|
|
631
678
|
*/
|
|
632
679
|
export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
@@ -639,6 +686,7 @@ export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
|
639
686
|
constructor(opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>);
|
|
640
687
|
}
|
|
641
688
|
/**
|
|
689
|
+
* @public
|
|
642
690
|
* <p>Information about the <code>CrossZoneLoadBalancing</code> attribute.</p>
|
|
643
691
|
*/
|
|
644
692
|
export interface CrossZoneLoadBalancing {
|
|
@@ -648,6 +696,7 @@ export interface CrossZoneLoadBalancing {
|
|
|
648
696
|
Enabled: boolean | undefined;
|
|
649
697
|
}
|
|
650
698
|
/**
|
|
699
|
+
* @public
|
|
651
700
|
* <p>Contains the parameters for DeleteLoadBalancer.</p>
|
|
652
701
|
*/
|
|
653
702
|
export interface DeleteAccessPointInput {
|
|
@@ -657,11 +706,13 @@ export interface DeleteAccessPointInput {
|
|
|
657
706
|
LoadBalancerName: string | undefined;
|
|
658
707
|
}
|
|
659
708
|
/**
|
|
709
|
+
* @public
|
|
660
710
|
* <p>Contains the output of DeleteLoadBalancer.</p>
|
|
661
711
|
*/
|
|
662
712
|
export interface DeleteAccessPointOutput {
|
|
663
713
|
}
|
|
664
714
|
/**
|
|
715
|
+
* @public
|
|
665
716
|
* <p>Contains the parameters for DeleteLoadBalancerListeners.</p>
|
|
666
717
|
*/
|
|
667
718
|
export interface DeleteLoadBalancerListenerInput {
|
|
@@ -675,11 +726,13 @@ export interface DeleteLoadBalancerListenerInput {
|
|
|
675
726
|
LoadBalancerPorts: number[] | undefined;
|
|
676
727
|
}
|
|
677
728
|
/**
|
|
729
|
+
* @public
|
|
678
730
|
* <p>Contains the output of DeleteLoadBalancerListeners.</p>
|
|
679
731
|
*/
|
|
680
732
|
export interface DeleteLoadBalancerListenerOutput {
|
|
681
733
|
}
|
|
682
734
|
/**
|
|
735
|
+
* @public
|
|
683
736
|
* <p>Contains the parameters for DeleteLoadBalancerPolicy.</p>
|
|
684
737
|
*/
|
|
685
738
|
export interface DeleteLoadBalancerPolicyInput {
|
|
@@ -693,11 +746,13 @@ export interface DeleteLoadBalancerPolicyInput {
|
|
|
693
746
|
PolicyName: string | undefined;
|
|
694
747
|
}
|
|
695
748
|
/**
|
|
749
|
+
* @public
|
|
696
750
|
* <p>Contains the output of DeleteLoadBalancerPolicy.</p>
|
|
697
751
|
*/
|
|
698
752
|
export interface DeleteLoadBalancerPolicyOutput {
|
|
699
753
|
}
|
|
700
754
|
/**
|
|
755
|
+
* @public
|
|
701
756
|
* <p>A request made by Elastic Load Balancing to another service exceeds the maximum request rate permitted for your account.</p>
|
|
702
757
|
*/
|
|
703
758
|
export declare class DependencyThrottleException extends __BaseException {
|
|
@@ -710,6 +765,7 @@ export declare class DependencyThrottleException extends __BaseException {
|
|
|
710
765
|
constructor(opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>);
|
|
711
766
|
}
|
|
712
767
|
/**
|
|
768
|
+
* @public
|
|
713
769
|
* <p>The ID of an EC2 instance.</p>
|
|
714
770
|
*/
|
|
715
771
|
export interface Instance {
|
|
@@ -719,6 +775,7 @@ export interface Instance {
|
|
|
719
775
|
InstanceId?: string;
|
|
720
776
|
}
|
|
721
777
|
/**
|
|
778
|
+
* @public
|
|
722
779
|
* <p>Contains the parameters for DeregisterInstancesFromLoadBalancer.</p>
|
|
723
780
|
*/
|
|
724
781
|
export interface DeregisterEndPointsInput {
|
|
@@ -732,6 +789,7 @@ export interface DeregisterEndPointsInput {
|
|
|
732
789
|
Instances: Instance[] | undefined;
|
|
733
790
|
}
|
|
734
791
|
/**
|
|
792
|
+
* @public
|
|
735
793
|
* <p>Contains the output of DeregisterInstancesFromLoadBalancer.</p>
|
|
736
794
|
*/
|
|
737
795
|
export interface DeregisterEndPointsOutput {
|
|
@@ -741,6 +799,7 @@ export interface DeregisterEndPointsOutput {
|
|
|
741
799
|
Instances?: Instance[];
|
|
742
800
|
}
|
|
743
801
|
/**
|
|
802
|
+
* @public
|
|
744
803
|
* <p>The specified endpoint is not valid.</p>
|
|
745
804
|
*/
|
|
746
805
|
export declare class InvalidEndPointException extends __BaseException {
|
|
@@ -753,6 +812,7 @@ export declare class InvalidEndPointException extends __BaseException {
|
|
|
753
812
|
constructor(opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>);
|
|
754
813
|
}
|
|
755
814
|
/**
|
|
815
|
+
* @public
|
|
756
816
|
* <p>Contains the parameters for DescribeLoadBalancers.</p>
|
|
757
817
|
*/
|
|
758
818
|
export interface DescribeAccessPointsInput {
|
|
@@ -770,6 +830,7 @@ export interface DescribeAccessPointsInput {
|
|
|
770
830
|
PageSize?: number;
|
|
771
831
|
}
|
|
772
832
|
/**
|
|
833
|
+
* @public
|
|
773
834
|
* <p>The policies enabled for a listener.</p>
|
|
774
835
|
*/
|
|
775
836
|
export interface ListenerDescription {
|
|
@@ -783,6 +844,7 @@ export interface ListenerDescription {
|
|
|
783
844
|
PolicyNames?: string[];
|
|
784
845
|
}
|
|
785
846
|
/**
|
|
847
|
+
* @public
|
|
786
848
|
* <p>Information about a policy for duration-based session stickiness.</p>
|
|
787
849
|
*/
|
|
788
850
|
export interface LBCookieStickinessPolicy {
|
|
@@ -796,6 +858,7 @@ export interface LBCookieStickinessPolicy {
|
|
|
796
858
|
CookieExpirationPeriod?: number;
|
|
797
859
|
}
|
|
798
860
|
/**
|
|
861
|
+
* @public
|
|
799
862
|
* <p>The policies for a load balancer.</p>
|
|
800
863
|
*/
|
|
801
864
|
export interface Policies {
|
|
@@ -813,6 +876,7 @@ export interface Policies {
|
|
|
813
876
|
OtherPolicies?: string[];
|
|
814
877
|
}
|
|
815
878
|
/**
|
|
879
|
+
* @public
|
|
816
880
|
* <p>Information about a source security group.</p>
|
|
817
881
|
*/
|
|
818
882
|
export interface SourceSecurityGroup {
|
|
@@ -826,6 +890,7 @@ export interface SourceSecurityGroup {
|
|
|
826
890
|
GroupName?: string;
|
|
827
891
|
}
|
|
828
892
|
/**
|
|
893
|
+
* @public
|
|
829
894
|
* <p>Information about a load balancer.</p>
|
|
830
895
|
*/
|
|
831
896
|
export interface LoadBalancerDescription {
|
|
@@ -902,6 +967,7 @@ export interface LoadBalancerDescription {
|
|
|
902
967
|
Scheme?: string;
|
|
903
968
|
}
|
|
904
969
|
/**
|
|
970
|
+
* @public
|
|
905
971
|
* <p>Contains the parameters for DescribeLoadBalancers.</p>
|
|
906
972
|
*/
|
|
907
973
|
export interface DescribeAccessPointsOutput {
|
|
@@ -914,6 +980,9 @@ export interface DescribeAccessPointsOutput {
|
|
|
914
980
|
*/
|
|
915
981
|
NextMarker?: string;
|
|
916
982
|
}
|
|
983
|
+
/**
|
|
984
|
+
* @public
|
|
985
|
+
*/
|
|
917
986
|
export interface DescribeAccountLimitsInput {
|
|
918
987
|
/**
|
|
919
988
|
* <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
|
|
@@ -925,6 +994,7 @@ export interface DescribeAccountLimitsInput {
|
|
|
925
994
|
PageSize?: number;
|
|
926
995
|
}
|
|
927
996
|
/**
|
|
997
|
+
* @public
|
|
928
998
|
* <p>Information about an Elastic Load Balancing resource limit for your AWS account.</p>
|
|
929
999
|
*/
|
|
930
1000
|
export interface Limit {
|
|
@@ -948,6 +1018,9 @@ export interface Limit {
|
|
|
948
1018
|
*/
|
|
949
1019
|
Max?: string;
|
|
950
1020
|
}
|
|
1021
|
+
/**
|
|
1022
|
+
* @public
|
|
1023
|
+
*/
|
|
951
1024
|
export interface DescribeAccountLimitsOutput {
|
|
952
1025
|
/**
|
|
953
1026
|
* <p>Information about the limits.</p>
|
|
@@ -959,6 +1032,7 @@ export interface DescribeAccountLimitsOutput {
|
|
|
959
1032
|
NextMarker?: string;
|
|
960
1033
|
}
|
|
961
1034
|
/**
|
|
1035
|
+
* @public
|
|
962
1036
|
* <p>Contains the parameters for DescribeInstanceHealth.</p>
|
|
963
1037
|
*/
|
|
964
1038
|
export interface DescribeEndPointStateInput {
|
|
@@ -972,6 +1046,7 @@ export interface DescribeEndPointStateInput {
|
|
|
972
1046
|
Instances?: Instance[];
|
|
973
1047
|
}
|
|
974
1048
|
/**
|
|
1049
|
+
* @public
|
|
975
1050
|
* <p>Information about the state of an EC2 instance.</p>
|
|
976
1051
|
*/
|
|
977
1052
|
export interface InstanceState {
|
|
@@ -1060,6 +1135,7 @@ export interface InstanceState {
|
|
|
1060
1135
|
Description?: string;
|
|
1061
1136
|
}
|
|
1062
1137
|
/**
|
|
1138
|
+
* @public
|
|
1063
1139
|
* <p>Contains the output for DescribeInstanceHealth.</p>
|
|
1064
1140
|
*/
|
|
1065
1141
|
export interface DescribeEndPointStateOutput {
|
|
@@ -1069,6 +1145,7 @@ export interface DescribeEndPointStateOutput {
|
|
|
1069
1145
|
InstanceStates?: InstanceState[];
|
|
1070
1146
|
}
|
|
1071
1147
|
/**
|
|
1148
|
+
* @public
|
|
1072
1149
|
* <p>Contains the parameters for DescribeLoadBalancerAttributes.</p>
|
|
1073
1150
|
*/
|
|
1074
1151
|
export interface DescribeLoadBalancerAttributesInput {
|
|
@@ -1078,6 +1155,7 @@ export interface DescribeLoadBalancerAttributesInput {
|
|
|
1078
1155
|
LoadBalancerName: string | undefined;
|
|
1079
1156
|
}
|
|
1080
1157
|
/**
|
|
1158
|
+
* @public
|
|
1081
1159
|
* <p>The attributes for a load balancer.</p>
|
|
1082
1160
|
*/
|
|
1083
1161
|
export interface LoadBalancerAttributes {
|
|
@@ -1112,6 +1190,7 @@ export interface LoadBalancerAttributes {
|
|
|
1112
1190
|
AdditionalAttributes?: AdditionalAttribute[];
|
|
1113
1191
|
}
|
|
1114
1192
|
/**
|
|
1193
|
+
* @public
|
|
1115
1194
|
* <p>Contains the output of DescribeLoadBalancerAttributes.</p>
|
|
1116
1195
|
*/
|
|
1117
1196
|
export interface DescribeLoadBalancerAttributesOutput {
|
|
@@ -1121,6 +1200,7 @@ export interface DescribeLoadBalancerAttributesOutput {
|
|
|
1121
1200
|
LoadBalancerAttributes?: LoadBalancerAttributes;
|
|
1122
1201
|
}
|
|
1123
1202
|
/**
|
|
1203
|
+
* @public
|
|
1124
1204
|
* <p>The specified load balancer attribute does not exist.</p>
|
|
1125
1205
|
*/
|
|
1126
1206
|
export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
@@ -1133,6 +1213,7 @@ export declare class LoadBalancerAttributeNotFoundException extends __BaseExcept
|
|
|
1133
1213
|
constructor(opts: __ExceptionOptionType<LoadBalancerAttributeNotFoundException, __BaseException>);
|
|
1134
1214
|
}
|
|
1135
1215
|
/**
|
|
1216
|
+
* @public
|
|
1136
1217
|
* <p>Contains the parameters for DescribeLoadBalancerPolicies.</p>
|
|
1137
1218
|
*/
|
|
1138
1219
|
export interface DescribeLoadBalancerPoliciesInput {
|
|
@@ -1146,6 +1227,7 @@ export interface DescribeLoadBalancerPoliciesInput {
|
|
|
1146
1227
|
PolicyNames?: string[];
|
|
1147
1228
|
}
|
|
1148
1229
|
/**
|
|
1230
|
+
* @public
|
|
1149
1231
|
* <p>Information about a policy attribute.</p>
|
|
1150
1232
|
*/
|
|
1151
1233
|
export interface PolicyAttributeDescription {
|
|
@@ -1159,6 +1241,7 @@ export interface PolicyAttributeDescription {
|
|
|
1159
1241
|
AttributeValue?: string;
|
|
1160
1242
|
}
|
|
1161
1243
|
/**
|
|
1244
|
+
* @public
|
|
1162
1245
|
* <p>Information about a policy.</p>
|
|
1163
1246
|
*/
|
|
1164
1247
|
export interface PolicyDescription {
|
|
@@ -1176,6 +1259,7 @@ export interface PolicyDescription {
|
|
|
1176
1259
|
PolicyAttributeDescriptions?: PolicyAttributeDescription[];
|
|
1177
1260
|
}
|
|
1178
1261
|
/**
|
|
1262
|
+
* @public
|
|
1179
1263
|
* <p>Contains the output of DescribeLoadBalancerPolicies.</p>
|
|
1180
1264
|
*/
|
|
1181
1265
|
export interface DescribeLoadBalancerPoliciesOutput {
|
|
@@ -1185,6 +1269,7 @@ export interface DescribeLoadBalancerPoliciesOutput {
|
|
|
1185
1269
|
PolicyDescriptions?: PolicyDescription[];
|
|
1186
1270
|
}
|
|
1187
1271
|
/**
|
|
1272
|
+
* @public
|
|
1188
1273
|
* <p>One or more of the specified policies do not exist.</p>
|
|
1189
1274
|
*/
|
|
1190
1275
|
export declare class PolicyNotFoundException extends __BaseException {
|
|
@@ -1197,6 +1282,7 @@ export declare class PolicyNotFoundException extends __BaseException {
|
|
|
1197
1282
|
constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
|
|
1198
1283
|
}
|
|
1199
1284
|
/**
|
|
1285
|
+
* @public
|
|
1200
1286
|
* <p>Contains the parameters for DescribeLoadBalancerPolicyTypes.</p>
|
|
1201
1287
|
*/
|
|
1202
1288
|
export interface DescribeLoadBalancerPolicyTypesInput {
|
|
@@ -1206,6 +1292,7 @@ export interface DescribeLoadBalancerPolicyTypesInput {
|
|
|
1206
1292
|
PolicyTypeNames?: string[];
|
|
1207
1293
|
}
|
|
1208
1294
|
/**
|
|
1295
|
+
* @public
|
|
1209
1296
|
* <p>Information about a policy attribute type.</p>
|
|
1210
1297
|
*/
|
|
1211
1298
|
export interface PolicyAttributeTypeDescription {
|
|
@@ -1246,6 +1333,7 @@ export interface PolicyAttributeTypeDescription {
|
|
|
1246
1333
|
Cardinality?: string;
|
|
1247
1334
|
}
|
|
1248
1335
|
/**
|
|
1336
|
+
* @public
|
|
1249
1337
|
* <p>Information about a policy type.</p>
|
|
1250
1338
|
*/
|
|
1251
1339
|
export interface PolicyTypeDescription {
|
|
@@ -1263,6 +1351,7 @@ export interface PolicyTypeDescription {
|
|
|
1263
1351
|
PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
|
|
1264
1352
|
}
|
|
1265
1353
|
/**
|
|
1354
|
+
* @public
|
|
1266
1355
|
* <p>Contains the output of DescribeLoadBalancerPolicyTypes.</p>
|
|
1267
1356
|
*/
|
|
1268
1357
|
export interface DescribeLoadBalancerPolicyTypesOutput {
|
|
@@ -1272,6 +1361,7 @@ export interface DescribeLoadBalancerPolicyTypesOutput {
|
|
|
1272
1361
|
PolicyTypeDescriptions?: PolicyTypeDescription[];
|
|
1273
1362
|
}
|
|
1274
1363
|
/**
|
|
1364
|
+
* @public
|
|
1275
1365
|
* <p>Contains the parameters for DescribeTags.</p>
|
|
1276
1366
|
*/
|
|
1277
1367
|
export interface DescribeTagsInput {
|
|
@@ -1281,6 +1371,7 @@ export interface DescribeTagsInput {
|
|
|
1281
1371
|
LoadBalancerNames: string[] | undefined;
|
|
1282
1372
|
}
|
|
1283
1373
|
/**
|
|
1374
|
+
* @public
|
|
1284
1375
|
* <p>The tags associated with a load balancer.</p>
|
|
1285
1376
|
*/
|
|
1286
1377
|
export interface TagDescription {
|
|
@@ -1294,6 +1385,7 @@ export interface TagDescription {
|
|
|
1294
1385
|
Tags?: Tag[];
|
|
1295
1386
|
}
|
|
1296
1387
|
/**
|
|
1388
|
+
* @public
|
|
1297
1389
|
* <p>Contains the output for DescribeTags.</p>
|
|
1298
1390
|
*/
|
|
1299
1391
|
export interface DescribeTagsOutput {
|
|
@@ -1303,6 +1395,7 @@ export interface DescribeTagsOutput {
|
|
|
1303
1395
|
TagDescriptions?: TagDescription[];
|
|
1304
1396
|
}
|
|
1305
1397
|
/**
|
|
1398
|
+
* @public
|
|
1306
1399
|
* <p>Contains the parameters for DetachLoadBalancerFromSubnets.</p>
|
|
1307
1400
|
*/
|
|
1308
1401
|
export interface DetachLoadBalancerFromSubnetsInput {
|
|
@@ -1316,6 +1409,7 @@ export interface DetachLoadBalancerFromSubnetsInput {
|
|
|
1316
1409
|
Subnets: string[] | undefined;
|
|
1317
1410
|
}
|
|
1318
1411
|
/**
|
|
1412
|
+
* @public
|
|
1319
1413
|
* <p>Contains the output of DetachLoadBalancerFromSubnets.</p>
|
|
1320
1414
|
*/
|
|
1321
1415
|
export interface DetachLoadBalancerFromSubnetsOutput {
|
|
@@ -1325,6 +1419,7 @@ export interface DetachLoadBalancerFromSubnetsOutput {
|
|
|
1325
1419
|
Subnets?: string[];
|
|
1326
1420
|
}
|
|
1327
1421
|
/**
|
|
1422
|
+
* @public
|
|
1328
1423
|
* <p>Contains the parameters for DisableAvailabilityZonesForLoadBalancer.</p>
|
|
1329
1424
|
*/
|
|
1330
1425
|
export interface RemoveAvailabilityZonesInput {
|
|
@@ -1338,6 +1433,7 @@ export interface RemoveAvailabilityZonesInput {
|
|
|
1338
1433
|
AvailabilityZones: string[] | undefined;
|
|
1339
1434
|
}
|
|
1340
1435
|
/**
|
|
1436
|
+
* @public
|
|
1341
1437
|
* <p>Contains the output for DisableAvailabilityZonesForLoadBalancer.</p>
|
|
1342
1438
|
*/
|
|
1343
1439
|
export interface RemoveAvailabilityZonesOutput {
|
|
@@ -1347,6 +1443,7 @@ export interface RemoveAvailabilityZonesOutput {
|
|
|
1347
1443
|
AvailabilityZones?: string[];
|
|
1348
1444
|
}
|
|
1349
1445
|
/**
|
|
1446
|
+
* @public
|
|
1350
1447
|
* <p>Contains the parameters for ModifyLoadBalancerAttributes.</p>
|
|
1351
1448
|
*/
|
|
1352
1449
|
export interface ModifyLoadBalancerAttributesInput {
|
|
@@ -1360,6 +1457,7 @@ export interface ModifyLoadBalancerAttributesInput {
|
|
|
1360
1457
|
LoadBalancerAttributes: LoadBalancerAttributes | undefined;
|
|
1361
1458
|
}
|
|
1362
1459
|
/**
|
|
1460
|
+
* @public
|
|
1363
1461
|
* <p>Contains the output of ModifyLoadBalancerAttributes.</p>
|
|
1364
1462
|
*/
|
|
1365
1463
|
export interface ModifyLoadBalancerAttributesOutput {
|
|
@@ -1373,6 +1471,7 @@ export interface ModifyLoadBalancerAttributesOutput {
|
|
|
1373
1471
|
LoadBalancerAttributes?: LoadBalancerAttributes;
|
|
1374
1472
|
}
|
|
1375
1473
|
/**
|
|
1474
|
+
* @public
|
|
1376
1475
|
* <p>Contains the parameters for RegisterInstancesWithLoadBalancer.</p>
|
|
1377
1476
|
*/
|
|
1378
1477
|
export interface RegisterEndPointsInput {
|
|
@@ -1386,6 +1485,7 @@ export interface RegisterEndPointsInput {
|
|
|
1386
1485
|
Instances: Instance[] | undefined;
|
|
1387
1486
|
}
|
|
1388
1487
|
/**
|
|
1488
|
+
* @public
|
|
1389
1489
|
* <p>Contains the output of RegisterInstancesWithLoadBalancer.</p>
|
|
1390
1490
|
*/
|
|
1391
1491
|
export interface RegisterEndPointsOutput {
|
|
@@ -1395,6 +1495,7 @@ export interface RegisterEndPointsOutput {
|
|
|
1395
1495
|
Instances?: Instance[];
|
|
1396
1496
|
}
|
|
1397
1497
|
/**
|
|
1498
|
+
* @public
|
|
1398
1499
|
* <p>The key of a tag.</p>
|
|
1399
1500
|
*/
|
|
1400
1501
|
export interface TagKeyOnly {
|
|
@@ -1404,6 +1505,7 @@ export interface TagKeyOnly {
|
|
|
1404
1505
|
Key?: string;
|
|
1405
1506
|
}
|
|
1406
1507
|
/**
|
|
1508
|
+
* @public
|
|
1407
1509
|
* <p>Contains the parameters for RemoveTags.</p>
|
|
1408
1510
|
*/
|
|
1409
1511
|
export interface RemoveTagsInput {
|
|
@@ -1417,11 +1519,13 @@ export interface RemoveTagsInput {
|
|
|
1417
1519
|
Tags: TagKeyOnly[] | undefined;
|
|
1418
1520
|
}
|
|
1419
1521
|
/**
|
|
1522
|
+
* @public
|
|
1420
1523
|
* <p>Contains the output of RemoveTags.</p>
|
|
1421
1524
|
*/
|
|
1422
1525
|
export interface RemoveTagsOutput {
|
|
1423
1526
|
}
|
|
1424
1527
|
/**
|
|
1528
|
+
* @public
|
|
1425
1529
|
* <p>The load balancer does not have a listener configured at the specified port.</p>
|
|
1426
1530
|
*/
|
|
1427
1531
|
export declare class ListenerNotFoundException extends __BaseException {
|
|
@@ -1434,6 +1538,7 @@ export declare class ListenerNotFoundException extends __BaseException {
|
|
|
1434
1538
|
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
1435
1539
|
}
|
|
1436
1540
|
/**
|
|
1541
|
+
* @public
|
|
1437
1542
|
* <p>Contains the parameters for SetLoadBalancerListenerSSLCertificate.</p>
|
|
1438
1543
|
*/
|
|
1439
1544
|
export interface SetLoadBalancerListenerSSLCertificateInput {
|
|
@@ -1451,11 +1556,13 @@ export interface SetLoadBalancerListenerSSLCertificateInput {
|
|
|
1451
1556
|
SSLCertificateId: string | undefined;
|
|
1452
1557
|
}
|
|
1453
1558
|
/**
|
|
1559
|
+
* @public
|
|
1454
1560
|
* <p>Contains the output of SetLoadBalancerListenerSSLCertificate.</p>
|
|
1455
1561
|
*/
|
|
1456
1562
|
export interface SetLoadBalancerListenerSSLCertificateOutput {
|
|
1457
1563
|
}
|
|
1458
1564
|
/**
|
|
1565
|
+
* @public
|
|
1459
1566
|
* <p>Contains the parameters for SetLoadBalancerPoliciesForBackendServer.</p>
|
|
1460
1567
|
*/
|
|
1461
1568
|
export interface SetLoadBalancerPoliciesForBackendServerInput {
|
|
@@ -1473,11 +1580,13 @@ export interface SetLoadBalancerPoliciesForBackendServerInput {
|
|
|
1473
1580
|
PolicyNames: string[] | undefined;
|
|
1474
1581
|
}
|
|
1475
1582
|
/**
|
|
1583
|
+
* @public
|
|
1476
1584
|
* <p>Contains the output of SetLoadBalancerPoliciesForBackendServer.</p>
|
|
1477
1585
|
*/
|
|
1478
1586
|
export interface SetLoadBalancerPoliciesForBackendServerOutput {
|
|
1479
1587
|
}
|
|
1480
1588
|
/**
|
|
1589
|
+
* @public
|
|
1481
1590
|
* <p>Contains the parameters for SetLoadBalancePoliciesOfListener.</p>
|
|
1482
1591
|
*/
|
|
1483
1592
|
export interface SetLoadBalancerPoliciesOfListenerInput {
|
|
@@ -1495,6 +1604,7 @@ export interface SetLoadBalancerPoliciesOfListenerInput {
|
|
|
1495
1604
|
PolicyNames: string[] | undefined;
|
|
1496
1605
|
}
|
|
1497
1606
|
/**
|
|
1607
|
+
* @public
|
|
1498
1608
|
* <p>Contains the output of SetLoadBalancePoliciesOfListener.</p>
|
|
1499
1609
|
*/
|
|
1500
1610
|
export interface SetLoadBalancerPoliciesOfListenerOutput {
|