@aws-sdk/client-elastic-load-balancing 3.169.0 → 3.171.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ElasticLoadBalancing.d.ts +545 -150
  3. package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +279 -102
  4. package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/AttachLoadBalancerToSubnetsCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/ConfigureHealthCheckCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/CreateAppCookieStickinessPolicyCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/CreateLBCookieStickinessPolicyCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/CreateLoadBalancerCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/CreateLoadBalancerListenersCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/CreateLoadBalancerPolicyCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DeleteLoadBalancerCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/DeleteLoadBalancerListenersCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DeleteLoadBalancerPolicyCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/DescribeInstanceHealthCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/DescribeLoadBalancerAttributesCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/DescribeLoadBalancerPoliciesCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/DescribeLoadBalancersCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +39 -17
  25. package/dist-types/ts3.4/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/ModifyLoadBalancerAttributesCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +39 -17
  31. package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +39 -17
  32. package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +39 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +7 -7
  36. package/dist-types/ts3.4/models/ElasticLoadBalancingServiceException.d.ts +7 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +745 -932
  39. package/dist-types/ts3.4/pagination/DescribeLoadBalancersPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  41. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  42. package/dist-types/ts3.4/protocols/Aws_query.d.ts +353 -89
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  47. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  48. package/dist-types/ts3.4/waiters/waitForAnyInstanceInService.d.ts +11 -7
  49. package/package.json +35 -35
@@ -1,932 +1,745 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
3
-
4
- export interface AccessLog {
5
-
6
- Enabled: boolean | undefined;
7
-
8
- S3BucketName?: string;
9
-
10
- EmitInterval?: number;
11
-
12
- S3BucketPrefix?: string;
13
- }
14
-
15
- export declare class AccessPointNotFoundException extends __BaseException {
16
- readonly name: "AccessPointNotFoundException";
17
- readonly $fault: "client";
18
- Message?: string;
19
-
20
- constructor(opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>);
21
- }
22
-
23
- export interface AddAvailabilityZonesInput {
24
-
25
- LoadBalancerName: string | undefined;
26
-
27
- AvailabilityZones: string[] | undefined;
28
- }
29
-
30
- export interface AddAvailabilityZonesOutput {
31
-
32
- AvailabilityZones?: string[];
33
- }
34
-
35
- export interface AdditionalAttribute {
36
-
37
- Key?: string;
38
-
39
- Value?: string;
40
- }
41
-
42
- export interface Tag {
43
-
44
- Key: string | undefined;
45
-
46
- Value?: string;
47
- }
48
-
49
- export interface AddTagsInput {
50
-
51
- LoadBalancerNames: string[] | undefined;
52
-
53
- Tags: Tag[] | undefined;
54
- }
55
-
56
- export interface AddTagsOutput {
57
- }
58
-
59
- export declare class DuplicateTagKeysException extends __BaseException {
60
- readonly name: "DuplicateTagKeysException";
61
- readonly $fault: "client";
62
- Message?: string;
63
-
64
- constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
65
- }
66
-
67
- export declare class TooManyTagsException extends __BaseException {
68
- readonly name: "TooManyTagsException";
69
- readonly $fault: "client";
70
- Message?: string;
71
-
72
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
73
- }
74
-
75
- export interface AppCookieStickinessPolicy {
76
-
77
- PolicyName?: string;
78
-
79
- CookieName?: string;
80
- }
81
-
82
- export interface ApplySecurityGroupsToLoadBalancerInput {
83
-
84
- LoadBalancerName: string | undefined;
85
-
86
- SecurityGroups: string[] | undefined;
87
- }
88
-
89
- export interface ApplySecurityGroupsToLoadBalancerOutput {
90
-
91
- SecurityGroups?: string[];
92
- }
93
-
94
- export declare class InvalidConfigurationRequestException extends __BaseException {
95
- readonly name: "InvalidConfigurationRequestException";
96
- readonly $fault: "client";
97
- Message?: string;
98
-
99
- constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
100
- }
101
-
102
- export declare class InvalidSecurityGroupException extends __BaseException {
103
- readonly name: "InvalidSecurityGroupException";
104
- readonly $fault: "client";
105
- Message?: string;
106
-
107
- constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
108
- }
109
-
110
- export interface AttachLoadBalancerToSubnetsInput {
111
-
112
- LoadBalancerName: string | undefined;
113
-
114
- Subnets: string[] | undefined;
115
- }
116
-
117
- export interface AttachLoadBalancerToSubnetsOutput {
118
-
119
- Subnets?: string[];
120
- }
121
-
122
- export declare class InvalidSubnetException extends __BaseException {
123
- readonly name: "InvalidSubnetException";
124
- readonly $fault: "client";
125
- Message?: string;
126
-
127
- constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
128
- }
129
-
130
- export declare class SubnetNotFoundException extends __BaseException {
131
- readonly name: "SubnetNotFoundException";
132
- readonly $fault: "client";
133
- Message?: string;
134
-
135
- constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
136
- }
137
-
138
- export interface BackendServerDescription {
139
-
140
- InstancePort?: number;
141
-
142
- PolicyNames?: string[];
143
- }
144
-
145
- export declare class CertificateNotFoundException extends __BaseException {
146
- readonly name: "CertificateNotFoundException";
147
- readonly $fault: "client";
148
- Message?: string;
149
-
150
- constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
151
- }
152
-
153
- export interface HealthCheck {
154
-
155
- Target: string | undefined;
156
-
157
- Interval: number | undefined;
158
-
159
- Timeout: number | undefined;
160
-
161
- UnhealthyThreshold: number | undefined;
162
-
163
- HealthyThreshold: number | undefined;
164
- }
165
-
166
- export interface ConfigureHealthCheckInput {
167
-
168
- LoadBalancerName: string | undefined;
169
-
170
- HealthCheck: HealthCheck | undefined;
171
- }
172
-
173
- export interface ConfigureHealthCheckOutput {
174
-
175
- HealthCheck?: HealthCheck;
176
- }
177
-
178
- export interface ConnectionDraining {
179
-
180
- Enabled: boolean | undefined;
181
-
182
- Timeout?: number;
183
- }
184
-
185
- export interface ConnectionSettings {
186
-
187
- IdleTimeout: number | undefined;
188
- }
189
-
190
- export interface Listener {
191
-
192
- Protocol: string | undefined;
193
-
194
- LoadBalancerPort: number | undefined;
195
-
196
- InstanceProtocol?: string;
197
-
198
- InstancePort: number | undefined;
199
-
200
- SSLCertificateId?: string;
201
- }
202
-
203
- export interface CreateAccessPointInput {
204
-
205
- LoadBalancerName: string | undefined;
206
-
207
- Listeners: Listener[] | undefined;
208
-
209
- AvailabilityZones?: string[];
210
-
211
- Subnets?: string[];
212
-
213
- SecurityGroups?: string[];
214
-
215
- Scheme?: string;
216
-
217
- Tags?: Tag[];
218
- }
219
-
220
- export interface CreateAccessPointOutput {
221
-
222
- DNSName?: string;
223
- }
224
-
225
- export interface CreateAppCookieStickinessPolicyInput {
226
-
227
- LoadBalancerName: string | undefined;
228
-
229
- PolicyName: string | undefined;
230
-
231
- CookieName: string | undefined;
232
- }
233
-
234
- export interface CreateAppCookieStickinessPolicyOutput {
235
- }
236
-
237
- export declare class DuplicatePolicyNameException extends __BaseException {
238
- readonly name: "DuplicatePolicyNameException";
239
- readonly $fault: "client";
240
- Message?: string;
241
-
242
- constructor(opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>);
243
- }
244
-
245
- export declare class TooManyPoliciesException extends __BaseException {
246
- readonly name: "TooManyPoliciesException";
247
- readonly $fault: "client";
248
- Message?: string;
249
-
250
- constructor(opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>);
251
- }
252
-
253
- export interface CreateLBCookieStickinessPolicyInput {
254
-
255
- LoadBalancerName: string | undefined;
256
-
257
- PolicyName: string | undefined;
258
-
259
- CookieExpirationPeriod?: number;
260
- }
261
-
262
- export interface CreateLBCookieStickinessPolicyOutput {
263
- }
264
-
265
- export declare class DuplicateAccessPointNameException extends __BaseException {
266
- readonly name: "DuplicateAccessPointNameException";
267
- readonly $fault: "client";
268
- Message?: string;
269
-
270
- constructor(opts: __ExceptionOptionType<DuplicateAccessPointNameException, __BaseException>);
271
- }
272
-
273
- export declare class InvalidSchemeException extends __BaseException {
274
- readonly name: "InvalidSchemeException";
275
- readonly $fault: "client";
276
- Message?: string;
277
-
278
- constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
279
- }
280
-
281
- export declare class OperationNotPermittedException extends __BaseException {
282
- readonly name: "OperationNotPermittedException";
283
- readonly $fault: "client";
284
- Message?: string;
285
-
286
- constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
287
- }
288
-
289
- export declare class TooManyAccessPointsException extends __BaseException {
290
- readonly name: "TooManyAccessPointsException";
291
- readonly $fault: "client";
292
- Message?: string;
293
-
294
- constructor(opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>);
295
- }
296
-
297
- export declare class UnsupportedProtocolException extends __BaseException {
298
- readonly name: "UnsupportedProtocolException";
299
- readonly $fault: "client";
300
- Message?: string;
301
-
302
- constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
303
- }
304
-
305
- export interface CreateLoadBalancerListenerInput {
306
-
307
- LoadBalancerName: string | undefined;
308
-
309
- Listeners: Listener[] | undefined;
310
- }
311
-
312
- export interface CreateLoadBalancerListenerOutput {
313
- }
314
-
315
- export declare class DuplicateListenerException extends __BaseException {
316
- readonly name: "DuplicateListenerException";
317
- readonly $fault: "client";
318
- Message?: string;
319
-
320
- constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
321
- }
322
-
323
- export interface PolicyAttribute {
324
-
325
- AttributeName?: string;
326
-
327
- AttributeValue?: string;
328
- }
329
-
330
- export interface CreateLoadBalancerPolicyInput {
331
-
332
- LoadBalancerName: string | undefined;
333
-
334
- PolicyName: string | undefined;
335
-
336
- PolicyTypeName: string | undefined;
337
-
338
- PolicyAttributes?: PolicyAttribute[];
339
- }
340
-
341
- export interface CreateLoadBalancerPolicyOutput {
342
- }
343
-
344
- export declare class PolicyTypeNotFoundException extends __BaseException {
345
- readonly name: "PolicyTypeNotFoundException";
346
- readonly $fault: "client";
347
- Message?: string;
348
-
349
- constructor(opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>);
350
- }
351
-
352
- export interface CrossZoneLoadBalancing {
353
-
354
- Enabled: boolean | undefined;
355
- }
356
-
357
- export interface DeleteAccessPointInput {
358
-
359
- LoadBalancerName: string | undefined;
360
- }
361
-
362
- export interface DeleteAccessPointOutput {
363
- }
364
-
365
- export interface DeleteLoadBalancerListenerInput {
366
-
367
- LoadBalancerName: string | undefined;
368
-
369
- LoadBalancerPorts: number[] | undefined;
370
- }
371
-
372
- export interface DeleteLoadBalancerListenerOutput {
373
- }
374
-
375
- export interface DeleteLoadBalancerPolicyInput {
376
-
377
- LoadBalancerName: string | undefined;
378
-
379
- PolicyName: string | undefined;
380
- }
381
-
382
- export interface DeleteLoadBalancerPolicyOutput {
383
- }
384
-
385
- export declare class DependencyThrottleException extends __BaseException {
386
- readonly name: "DependencyThrottleException";
387
- readonly $fault: "client";
388
- Message?: string;
389
-
390
- constructor(opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>);
391
- }
392
-
393
- export interface Instance {
394
-
395
- InstanceId?: string;
396
- }
397
-
398
- export interface DeregisterEndPointsInput {
399
-
400
- LoadBalancerName: string | undefined;
401
-
402
- Instances: Instance[] | undefined;
403
- }
404
-
405
- export interface DeregisterEndPointsOutput {
406
-
407
- Instances?: Instance[];
408
- }
409
-
410
- export declare class InvalidEndPointException extends __BaseException {
411
- readonly name: "InvalidEndPointException";
412
- readonly $fault: "client";
413
- Message?: string;
414
-
415
- constructor(opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>);
416
- }
417
-
418
- export interface DescribeAccessPointsInput {
419
-
420
- LoadBalancerNames?: string[];
421
-
422
- Marker?: string;
423
-
424
- PageSize?: number;
425
- }
426
-
427
- export interface ListenerDescription {
428
-
429
- Listener?: Listener;
430
-
431
- PolicyNames?: string[];
432
- }
433
-
434
- export interface LBCookieStickinessPolicy {
435
-
436
- PolicyName?: string;
437
-
438
- CookieExpirationPeriod?: number;
439
- }
440
-
441
- export interface Policies {
442
-
443
- AppCookieStickinessPolicies?: AppCookieStickinessPolicy[];
444
-
445
- LBCookieStickinessPolicies?: LBCookieStickinessPolicy[];
446
-
447
- OtherPolicies?: string[];
448
- }
449
-
450
- export interface SourceSecurityGroup {
451
-
452
- OwnerAlias?: string;
453
-
454
- GroupName?: string;
455
- }
456
-
457
- export interface LoadBalancerDescription {
458
-
459
- LoadBalancerName?: string;
460
-
461
- DNSName?: string;
462
-
463
- CanonicalHostedZoneName?: string;
464
-
465
- CanonicalHostedZoneNameID?: string;
466
-
467
- ListenerDescriptions?: ListenerDescription[];
468
-
469
- Policies?: Policies;
470
-
471
- BackendServerDescriptions?: BackendServerDescription[];
472
-
473
- AvailabilityZones?: string[];
474
-
475
- Subnets?: string[];
476
-
477
- VPCId?: string;
478
-
479
- Instances?: Instance[];
480
-
481
- HealthCheck?: HealthCheck;
482
-
483
- SourceSecurityGroup?: SourceSecurityGroup;
484
-
485
- SecurityGroups?: string[];
486
-
487
- CreatedTime?: Date;
488
-
489
- Scheme?: string;
490
- }
491
-
492
- export interface DescribeAccessPointsOutput {
493
-
494
- LoadBalancerDescriptions?: LoadBalancerDescription[];
495
-
496
- NextMarker?: string;
497
- }
498
- export interface DescribeAccountLimitsInput {
499
-
500
- Marker?: string;
501
-
502
- PageSize?: number;
503
- }
504
-
505
- export interface Limit {
506
-
507
- Name?: string;
508
-
509
- Max?: string;
510
- }
511
- export interface DescribeAccountLimitsOutput {
512
-
513
- Limits?: Limit[];
514
-
515
- NextMarker?: string;
516
- }
517
-
518
- export interface DescribeEndPointStateInput {
519
-
520
- LoadBalancerName: string | undefined;
521
-
522
- Instances?: Instance[];
523
- }
524
-
525
- export interface InstanceState {
526
-
527
- InstanceId?: string;
528
-
529
- State?: string;
530
-
531
- ReasonCode?: string;
532
-
533
- Description?: string;
534
- }
535
-
536
- export interface DescribeEndPointStateOutput {
537
-
538
- InstanceStates?: InstanceState[];
539
- }
540
-
541
- export interface DescribeLoadBalancerAttributesInput {
542
-
543
- LoadBalancerName: string | undefined;
544
- }
545
-
546
- export interface LoadBalancerAttributes {
547
-
548
- CrossZoneLoadBalancing?: CrossZoneLoadBalancing;
549
-
550
- AccessLog?: AccessLog;
551
-
552
- ConnectionDraining?: ConnectionDraining;
553
-
554
- ConnectionSettings?: ConnectionSettings;
555
-
556
- AdditionalAttributes?: AdditionalAttribute[];
557
- }
558
-
559
- export interface DescribeLoadBalancerAttributesOutput {
560
-
561
- LoadBalancerAttributes?: LoadBalancerAttributes;
562
- }
563
-
564
- export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
565
- readonly name: "LoadBalancerAttributeNotFoundException";
566
- readonly $fault: "client";
567
- Message?: string;
568
-
569
- constructor(opts: __ExceptionOptionType<LoadBalancerAttributeNotFoundException, __BaseException>);
570
- }
571
-
572
- export interface DescribeLoadBalancerPoliciesInput {
573
-
574
- LoadBalancerName?: string;
575
-
576
- PolicyNames?: string[];
577
- }
578
-
579
- export interface PolicyAttributeDescription {
580
-
581
- AttributeName?: string;
582
-
583
- AttributeValue?: string;
584
- }
585
-
586
- export interface PolicyDescription {
587
-
588
- PolicyName?: string;
589
-
590
- PolicyTypeName?: string;
591
-
592
- PolicyAttributeDescriptions?: PolicyAttributeDescription[];
593
- }
594
-
595
- export interface DescribeLoadBalancerPoliciesOutput {
596
-
597
- PolicyDescriptions?: PolicyDescription[];
598
- }
599
-
600
- export declare class PolicyNotFoundException extends __BaseException {
601
- readonly name: "PolicyNotFoundException";
602
- readonly $fault: "client";
603
- Message?: string;
604
-
605
- constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
606
- }
607
-
608
- export interface DescribeLoadBalancerPolicyTypesInput {
609
-
610
- PolicyTypeNames?: string[];
611
- }
612
-
613
- export interface PolicyAttributeTypeDescription {
614
-
615
- AttributeName?: string;
616
-
617
- AttributeType?: string;
618
-
619
- Description?: string;
620
-
621
- DefaultValue?: string;
622
-
623
- Cardinality?: string;
624
- }
625
-
626
- export interface PolicyTypeDescription {
627
-
628
- PolicyTypeName?: string;
629
-
630
- Description?: string;
631
-
632
- PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
633
- }
634
-
635
- export interface DescribeLoadBalancerPolicyTypesOutput {
636
-
637
- PolicyTypeDescriptions?: PolicyTypeDescription[];
638
- }
639
-
640
- export interface DescribeTagsInput {
641
-
642
- LoadBalancerNames: string[] | undefined;
643
- }
644
-
645
- export interface TagDescription {
646
-
647
- LoadBalancerName?: string;
648
-
649
- Tags?: Tag[];
650
- }
651
-
652
- export interface DescribeTagsOutput {
653
-
654
- TagDescriptions?: TagDescription[];
655
- }
656
-
657
- export interface DetachLoadBalancerFromSubnetsInput {
658
-
659
- LoadBalancerName: string | undefined;
660
-
661
- Subnets: string[] | undefined;
662
- }
663
-
664
- export interface DetachLoadBalancerFromSubnetsOutput {
665
-
666
- Subnets?: string[];
667
- }
668
-
669
- export interface RemoveAvailabilityZonesInput {
670
-
671
- LoadBalancerName: string | undefined;
672
-
673
- AvailabilityZones: string[] | undefined;
674
- }
675
-
676
- export interface RemoveAvailabilityZonesOutput {
677
-
678
- AvailabilityZones?: string[];
679
- }
680
-
681
- export interface ModifyLoadBalancerAttributesInput {
682
-
683
- LoadBalancerName: string | undefined;
684
-
685
- LoadBalancerAttributes: LoadBalancerAttributes | undefined;
686
- }
687
-
688
- export interface ModifyLoadBalancerAttributesOutput {
689
-
690
- LoadBalancerName?: string;
691
-
692
- LoadBalancerAttributes?: LoadBalancerAttributes;
693
- }
694
-
695
- export interface RegisterEndPointsInput {
696
-
697
- LoadBalancerName: string | undefined;
698
-
699
- Instances: Instance[] | undefined;
700
- }
701
-
702
- export interface RegisterEndPointsOutput {
703
-
704
- Instances?: Instance[];
705
- }
706
-
707
- export interface TagKeyOnly {
708
-
709
- Key?: string;
710
- }
711
-
712
- export interface RemoveTagsInput {
713
-
714
- LoadBalancerNames: string[] | undefined;
715
-
716
- Tags: TagKeyOnly[] | undefined;
717
- }
718
-
719
- export interface RemoveTagsOutput {
720
- }
721
-
722
- export declare class ListenerNotFoundException extends __BaseException {
723
- readonly name: "ListenerNotFoundException";
724
- readonly $fault: "client";
725
- Message?: string;
726
-
727
- constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
728
- }
729
-
730
- export interface SetLoadBalancerListenerSSLCertificateInput {
731
-
732
- LoadBalancerName: string | undefined;
733
-
734
- LoadBalancerPort: number | undefined;
735
-
736
- SSLCertificateId: string | undefined;
737
- }
738
-
739
- export interface SetLoadBalancerListenerSSLCertificateOutput {
740
- }
741
-
742
- export interface SetLoadBalancerPoliciesForBackendServerInput {
743
-
744
- LoadBalancerName: string | undefined;
745
-
746
- InstancePort: number | undefined;
747
-
748
- PolicyNames: string[] | undefined;
749
- }
750
-
751
- export interface SetLoadBalancerPoliciesForBackendServerOutput {
752
- }
753
-
754
- export interface SetLoadBalancerPoliciesOfListenerInput {
755
-
756
- LoadBalancerName: string | undefined;
757
-
758
- LoadBalancerPort: number | undefined;
759
-
760
- PolicyNames: string[] | undefined;
761
- }
762
-
763
- export interface SetLoadBalancerPoliciesOfListenerOutput {
764
- }
765
-
766
- export declare const AccessLogFilterSensitiveLog: (obj: AccessLog) => any;
767
-
768
- export declare const AddAvailabilityZonesInputFilterSensitiveLog: (obj: AddAvailabilityZonesInput) => any;
769
-
770
- export declare const AddAvailabilityZonesOutputFilterSensitiveLog: (obj: AddAvailabilityZonesOutput) => any;
771
-
772
- export declare const AdditionalAttributeFilterSensitiveLog: (obj: AdditionalAttribute) => any;
773
-
774
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
775
-
776
- export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
777
-
778
- export declare const AddTagsOutputFilterSensitiveLog: (obj: AddTagsOutput) => any;
779
-
780
- export declare const AppCookieStickinessPolicyFilterSensitiveLog: (obj: AppCookieStickinessPolicy) => any;
781
-
782
- export declare const ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog: (obj: ApplySecurityGroupsToLoadBalancerInput) => any;
783
-
784
- export declare const ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog: (obj: ApplySecurityGroupsToLoadBalancerOutput) => any;
785
-
786
- export declare const AttachLoadBalancerToSubnetsInputFilterSensitiveLog: (obj: AttachLoadBalancerToSubnetsInput) => any;
787
-
788
- export declare const AttachLoadBalancerToSubnetsOutputFilterSensitiveLog: (obj: AttachLoadBalancerToSubnetsOutput) => any;
789
-
790
- export declare const BackendServerDescriptionFilterSensitiveLog: (obj: BackendServerDescription) => any;
791
-
792
- export declare const HealthCheckFilterSensitiveLog: (obj: HealthCheck) => any;
793
-
794
- export declare const ConfigureHealthCheckInputFilterSensitiveLog: (obj: ConfigureHealthCheckInput) => any;
795
-
796
- export declare const ConfigureHealthCheckOutputFilterSensitiveLog: (obj: ConfigureHealthCheckOutput) => any;
797
-
798
- export declare const ConnectionDrainingFilterSensitiveLog: (obj: ConnectionDraining) => any;
799
-
800
- export declare const ConnectionSettingsFilterSensitiveLog: (obj: ConnectionSettings) => any;
801
-
802
- export declare const ListenerFilterSensitiveLog: (obj: Listener) => any;
803
-
804
- export declare const CreateAccessPointInputFilterSensitiveLog: (obj: CreateAccessPointInput) => any;
805
-
806
- export declare const CreateAccessPointOutputFilterSensitiveLog: (obj: CreateAccessPointOutput) => any;
807
-
808
- export declare const CreateAppCookieStickinessPolicyInputFilterSensitiveLog: (obj: CreateAppCookieStickinessPolicyInput) => any;
809
-
810
- export declare const CreateAppCookieStickinessPolicyOutputFilterSensitiveLog: (obj: CreateAppCookieStickinessPolicyOutput) => any;
811
-
812
- export declare const CreateLBCookieStickinessPolicyInputFilterSensitiveLog: (obj: CreateLBCookieStickinessPolicyInput) => any;
813
-
814
- export declare const CreateLBCookieStickinessPolicyOutputFilterSensitiveLog: (obj: CreateLBCookieStickinessPolicyOutput) => any;
815
-
816
- export declare const CreateLoadBalancerListenerInputFilterSensitiveLog: (obj: CreateLoadBalancerListenerInput) => any;
817
-
818
- export declare const CreateLoadBalancerListenerOutputFilterSensitiveLog: (obj: CreateLoadBalancerListenerOutput) => any;
819
-
820
- export declare const PolicyAttributeFilterSensitiveLog: (obj: PolicyAttribute) => any;
821
-
822
- export declare const CreateLoadBalancerPolicyInputFilterSensitiveLog: (obj: CreateLoadBalancerPolicyInput) => any;
823
-
824
- export declare const CreateLoadBalancerPolicyOutputFilterSensitiveLog: (obj: CreateLoadBalancerPolicyOutput) => any;
825
-
826
- export declare const CrossZoneLoadBalancingFilterSensitiveLog: (obj: CrossZoneLoadBalancing) => any;
827
-
828
- export declare const DeleteAccessPointInputFilterSensitiveLog: (obj: DeleteAccessPointInput) => any;
829
-
830
- export declare const DeleteAccessPointOutputFilterSensitiveLog: (obj: DeleteAccessPointOutput) => any;
831
-
832
- export declare const DeleteLoadBalancerListenerInputFilterSensitiveLog: (obj: DeleteLoadBalancerListenerInput) => any;
833
-
834
- export declare const DeleteLoadBalancerListenerOutputFilterSensitiveLog: (obj: DeleteLoadBalancerListenerOutput) => any;
835
-
836
- export declare const DeleteLoadBalancerPolicyInputFilterSensitiveLog: (obj: DeleteLoadBalancerPolicyInput) => any;
837
-
838
- export declare const DeleteLoadBalancerPolicyOutputFilterSensitiveLog: (obj: DeleteLoadBalancerPolicyOutput) => any;
839
-
840
- export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
841
-
842
- export declare const DeregisterEndPointsInputFilterSensitiveLog: (obj: DeregisterEndPointsInput) => any;
843
-
844
- export declare const DeregisterEndPointsOutputFilterSensitiveLog: (obj: DeregisterEndPointsOutput) => any;
845
-
846
- export declare const DescribeAccessPointsInputFilterSensitiveLog: (obj: DescribeAccessPointsInput) => any;
847
-
848
- export declare const ListenerDescriptionFilterSensitiveLog: (obj: ListenerDescription) => any;
849
-
850
- export declare const LBCookieStickinessPolicyFilterSensitiveLog: (obj: LBCookieStickinessPolicy) => any;
851
-
852
- export declare const PoliciesFilterSensitiveLog: (obj: Policies) => any;
853
-
854
- export declare const SourceSecurityGroupFilterSensitiveLog: (obj: SourceSecurityGroup) => any;
855
-
856
- export declare const LoadBalancerDescriptionFilterSensitiveLog: (obj: LoadBalancerDescription) => any;
857
-
858
- export declare const DescribeAccessPointsOutputFilterSensitiveLog: (obj: DescribeAccessPointsOutput) => any;
859
-
860
- export declare const DescribeAccountLimitsInputFilterSensitiveLog: (obj: DescribeAccountLimitsInput) => any;
861
-
862
- export declare const LimitFilterSensitiveLog: (obj: Limit) => any;
863
-
864
- export declare const DescribeAccountLimitsOutputFilterSensitiveLog: (obj: DescribeAccountLimitsOutput) => any;
865
-
866
- export declare const DescribeEndPointStateInputFilterSensitiveLog: (obj: DescribeEndPointStateInput) => any;
867
-
868
- export declare const InstanceStateFilterSensitiveLog: (obj: InstanceState) => any;
869
-
870
- export declare const DescribeEndPointStateOutputFilterSensitiveLog: (obj: DescribeEndPointStateOutput) => any;
871
-
872
- export declare const DescribeLoadBalancerAttributesInputFilterSensitiveLog: (obj: DescribeLoadBalancerAttributesInput) => any;
873
-
874
- export declare const LoadBalancerAttributesFilterSensitiveLog: (obj: LoadBalancerAttributes) => any;
875
-
876
- export declare const DescribeLoadBalancerAttributesOutputFilterSensitiveLog: (obj: DescribeLoadBalancerAttributesOutput) => any;
877
-
878
- export declare const DescribeLoadBalancerPoliciesInputFilterSensitiveLog: (obj: DescribeLoadBalancerPoliciesInput) => any;
879
-
880
- export declare const PolicyAttributeDescriptionFilterSensitiveLog: (obj: PolicyAttributeDescription) => any;
881
-
882
- export declare const PolicyDescriptionFilterSensitiveLog: (obj: PolicyDescription) => any;
883
-
884
- export declare const DescribeLoadBalancerPoliciesOutputFilterSensitiveLog: (obj: DescribeLoadBalancerPoliciesOutput) => any;
885
-
886
- export declare const DescribeLoadBalancerPolicyTypesInputFilterSensitiveLog: (obj: DescribeLoadBalancerPolicyTypesInput) => any;
887
-
888
- export declare const PolicyAttributeTypeDescriptionFilterSensitiveLog: (obj: PolicyAttributeTypeDescription) => any;
889
-
890
- export declare const PolicyTypeDescriptionFilterSensitiveLog: (obj: PolicyTypeDescription) => any;
891
-
892
- export declare const DescribeLoadBalancerPolicyTypesOutputFilterSensitiveLog: (obj: DescribeLoadBalancerPolicyTypesOutput) => any;
893
-
894
- export declare const DescribeTagsInputFilterSensitiveLog: (obj: DescribeTagsInput) => any;
895
-
896
- export declare const TagDescriptionFilterSensitiveLog: (obj: TagDescription) => any;
897
-
898
- export declare const DescribeTagsOutputFilterSensitiveLog: (obj: DescribeTagsOutput) => any;
899
-
900
- export declare const DetachLoadBalancerFromSubnetsInputFilterSensitiveLog: (obj: DetachLoadBalancerFromSubnetsInput) => any;
901
-
902
- export declare const DetachLoadBalancerFromSubnetsOutputFilterSensitiveLog: (obj: DetachLoadBalancerFromSubnetsOutput) => any;
903
-
904
- export declare const RemoveAvailabilityZonesInputFilterSensitiveLog: (obj: RemoveAvailabilityZonesInput) => any;
905
-
906
- export declare const RemoveAvailabilityZonesOutputFilterSensitiveLog: (obj: RemoveAvailabilityZonesOutput) => any;
907
-
908
- export declare const ModifyLoadBalancerAttributesInputFilterSensitiveLog: (obj: ModifyLoadBalancerAttributesInput) => any;
909
-
910
- export declare const ModifyLoadBalancerAttributesOutputFilterSensitiveLog: (obj: ModifyLoadBalancerAttributesOutput) => any;
911
-
912
- export declare const RegisterEndPointsInputFilterSensitiveLog: (obj: RegisterEndPointsInput) => any;
913
-
914
- export declare const RegisterEndPointsOutputFilterSensitiveLog: (obj: RegisterEndPointsOutput) => any;
915
-
916
- export declare const TagKeyOnlyFilterSensitiveLog: (obj: TagKeyOnly) => any;
917
-
918
- export declare const RemoveTagsInputFilterSensitiveLog: (obj: RemoveTagsInput) => any;
919
-
920
- export declare const RemoveTagsOutputFilterSensitiveLog: (obj: RemoveTagsOutput) => any;
921
-
922
- export declare const SetLoadBalancerListenerSSLCertificateInputFilterSensitiveLog: (obj: SetLoadBalancerListenerSSLCertificateInput) => any;
923
-
924
- export declare const SetLoadBalancerListenerSSLCertificateOutputFilterSensitiveLog: (obj: SetLoadBalancerListenerSSLCertificateOutput) => any;
925
-
926
- export declare const SetLoadBalancerPoliciesForBackendServerInputFilterSensitiveLog: (obj: SetLoadBalancerPoliciesForBackendServerInput) => any;
927
-
928
- export declare const SetLoadBalancerPoliciesForBackendServerOutputFilterSensitiveLog: (obj: SetLoadBalancerPoliciesForBackendServerOutput) => any;
929
-
930
- export declare const SetLoadBalancerPoliciesOfListenerInputFilterSensitiveLog: (obj: SetLoadBalancerPoliciesOfListenerInput) => any;
931
-
932
- export declare const SetLoadBalancerPoliciesOfListenerOutputFilterSensitiveLog: (obj: SetLoadBalancerPoliciesOfListenerOutput) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
3
+ export interface AccessLog {
4
+ Enabled: boolean | undefined;
5
+ S3BucketName?: string;
6
+ EmitInterval?: number;
7
+ S3BucketPrefix?: string;
8
+ }
9
+ export declare class AccessPointNotFoundException extends __BaseException {
10
+ readonly name: "AccessPointNotFoundException";
11
+ readonly $fault: "client";
12
+ Message?: string;
13
+ constructor(
14
+ opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>
15
+ );
16
+ }
17
+ export interface AddAvailabilityZonesInput {
18
+ LoadBalancerName: string | undefined;
19
+ AvailabilityZones: string[] | undefined;
20
+ }
21
+ export interface AddAvailabilityZonesOutput {
22
+ AvailabilityZones?: string[];
23
+ }
24
+ export interface AdditionalAttribute {
25
+ Key?: string;
26
+ Value?: string;
27
+ }
28
+ export interface Tag {
29
+ Key: string | undefined;
30
+ Value?: string;
31
+ }
32
+ export interface AddTagsInput {
33
+ LoadBalancerNames: string[] | undefined;
34
+ Tags: Tag[] | undefined;
35
+ }
36
+ export interface AddTagsOutput {}
37
+ export declare class DuplicateTagKeysException extends __BaseException {
38
+ readonly name: "DuplicateTagKeysException";
39
+ readonly $fault: "client";
40
+ Message?: string;
41
+ constructor(
42
+ opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>
43
+ );
44
+ }
45
+ export declare class TooManyTagsException extends __BaseException {
46
+ readonly name: "TooManyTagsException";
47
+ readonly $fault: "client";
48
+ Message?: string;
49
+ constructor(
50
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
51
+ );
52
+ }
53
+ export interface AppCookieStickinessPolicy {
54
+ PolicyName?: string;
55
+ CookieName?: string;
56
+ }
57
+ export interface ApplySecurityGroupsToLoadBalancerInput {
58
+ LoadBalancerName: string | undefined;
59
+ SecurityGroups: string[] | undefined;
60
+ }
61
+ export interface ApplySecurityGroupsToLoadBalancerOutput {
62
+ SecurityGroups?: string[];
63
+ }
64
+ export declare class InvalidConfigurationRequestException extends __BaseException {
65
+ readonly name: "InvalidConfigurationRequestException";
66
+ readonly $fault: "client";
67
+ Message?: string;
68
+ constructor(
69
+ opts: __ExceptionOptionType<
70
+ InvalidConfigurationRequestException,
71
+ __BaseException
72
+ >
73
+ );
74
+ }
75
+ export declare class InvalidSecurityGroupException extends __BaseException {
76
+ readonly name: "InvalidSecurityGroupException";
77
+ readonly $fault: "client";
78
+ Message?: string;
79
+ constructor(
80
+ opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>
81
+ );
82
+ }
83
+ export interface AttachLoadBalancerToSubnetsInput {
84
+ LoadBalancerName: string | undefined;
85
+ Subnets: string[] | undefined;
86
+ }
87
+ export interface AttachLoadBalancerToSubnetsOutput {
88
+ Subnets?: string[];
89
+ }
90
+ export declare class InvalidSubnetException extends __BaseException {
91
+ readonly name: "InvalidSubnetException";
92
+ readonly $fault: "client";
93
+ Message?: string;
94
+ constructor(
95
+ opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>
96
+ );
97
+ }
98
+ export declare class SubnetNotFoundException extends __BaseException {
99
+ readonly name: "SubnetNotFoundException";
100
+ readonly $fault: "client";
101
+ Message?: string;
102
+ constructor(
103
+ opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>
104
+ );
105
+ }
106
+ export interface BackendServerDescription {
107
+ InstancePort?: number;
108
+ PolicyNames?: string[];
109
+ }
110
+ export declare class CertificateNotFoundException extends __BaseException {
111
+ readonly name: "CertificateNotFoundException";
112
+ readonly $fault: "client";
113
+ Message?: string;
114
+ constructor(
115
+ opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>
116
+ );
117
+ }
118
+ export interface HealthCheck {
119
+ Target: string | undefined;
120
+ Interval: number | undefined;
121
+ Timeout: number | undefined;
122
+ UnhealthyThreshold: number | undefined;
123
+ HealthyThreshold: number | undefined;
124
+ }
125
+ export interface ConfigureHealthCheckInput {
126
+ LoadBalancerName: string | undefined;
127
+ HealthCheck: HealthCheck | undefined;
128
+ }
129
+ export interface ConfigureHealthCheckOutput {
130
+ HealthCheck?: HealthCheck;
131
+ }
132
+ export interface ConnectionDraining {
133
+ Enabled: boolean | undefined;
134
+ Timeout?: number;
135
+ }
136
+ export interface ConnectionSettings {
137
+ IdleTimeout: number | undefined;
138
+ }
139
+ export interface Listener {
140
+ Protocol: string | undefined;
141
+ LoadBalancerPort: number | undefined;
142
+ InstanceProtocol?: string;
143
+ InstancePort: number | undefined;
144
+ SSLCertificateId?: string;
145
+ }
146
+ export interface CreateAccessPointInput {
147
+ LoadBalancerName: string | undefined;
148
+ Listeners: Listener[] | undefined;
149
+ AvailabilityZones?: string[];
150
+ Subnets?: string[];
151
+ SecurityGroups?: string[];
152
+ Scheme?: string;
153
+ Tags?: Tag[];
154
+ }
155
+ export interface CreateAccessPointOutput {
156
+ DNSName?: string;
157
+ }
158
+ export interface CreateAppCookieStickinessPolicyInput {
159
+ LoadBalancerName: string | undefined;
160
+ PolicyName: string | undefined;
161
+ CookieName: string | undefined;
162
+ }
163
+ export interface CreateAppCookieStickinessPolicyOutput {}
164
+ export declare class DuplicatePolicyNameException extends __BaseException {
165
+ readonly name: "DuplicatePolicyNameException";
166
+ readonly $fault: "client";
167
+ Message?: string;
168
+ constructor(
169
+ opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>
170
+ );
171
+ }
172
+ export declare class TooManyPoliciesException extends __BaseException {
173
+ readonly name: "TooManyPoliciesException";
174
+ readonly $fault: "client";
175
+ Message?: string;
176
+ constructor(
177
+ opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>
178
+ );
179
+ }
180
+ export interface CreateLBCookieStickinessPolicyInput {
181
+ LoadBalancerName: string | undefined;
182
+ PolicyName: string | undefined;
183
+ CookieExpirationPeriod?: number;
184
+ }
185
+ export interface CreateLBCookieStickinessPolicyOutput {}
186
+ export declare class DuplicateAccessPointNameException extends __BaseException {
187
+ readonly name: "DuplicateAccessPointNameException";
188
+ readonly $fault: "client";
189
+ Message?: string;
190
+ constructor(
191
+ opts: __ExceptionOptionType<
192
+ DuplicateAccessPointNameException,
193
+ __BaseException
194
+ >
195
+ );
196
+ }
197
+ export declare class InvalidSchemeException extends __BaseException {
198
+ readonly name: "InvalidSchemeException";
199
+ readonly $fault: "client";
200
+ Message?: string;
201
+ constructor(
202
+ opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>
203
+ );
204
+ }
205
+ export declare class OperationNotPermittedException extends __BaseException {
206
+ readonly name: "OperationNotPermittedException";
207
+ readonly $fault: "client";
208
+ Message?: string;
209
+ constructor(
210
+ opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
211
+ );
212
+ }
213
+ export declare class TooManyAccessPointsException extends __BaseException {
214
+ readonly name: "TooManyAccessPointsException";
215
+ readonly $fault: "client";
216
+ Message?: string;
217
+ constructor(
218
+ opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>
219
+ );
220
+ }
221
+ export declare class UnsupportedProtocolException extends __BaseException {
222
+ readonly name: "UnsupportedProtocolException";
223
+ readonly $fault: "client";
224
+ Message?: string;
225
+ constructor(
226
+ opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>
227
+ );
228
+ }
229
+ export interface CreateLoadBalancerListenerInput {
230
+ LoadBalancerName: string | undefined;
231
+ Listeners: Listener[] | undefined;
232
+ }
233
+ export interface CreateLoadBalancerListenerOutput {}
234
+ export declare class DuplicateListenerException extends __BaseException {
235
+ readonly name: "DuplicateListenerException";
236
+ readonly $fault: "client";
237
+ Message?: string;
238
+ constructor(
239
+ opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>
240
+ );
241
+ }
242
+ export interface PolicyAttribute {
243
+ AttributeName?: string;
244
+ AttributeValue?: string;
245
+ }
246
+ export interface CreateLoadBalancerPolicyInput {
247
+ LoadBalancerName: string | undefined;
248
+ PolicyName: string | undefined;
249
+ PolicyTypeName: string | undefined;
250
+ PolicyAttributes?: PolicyAttribute[];
251
+ }
252
+ export interface CreateLoadBalancerPolicyOutput {}
253
+ export declare class PolicyTypeNotFoundException extends __BaseException {
254
+ readonly name: "PolicyTypeNotFoundException";
255
+ readonly $fault: "client";
256
+ Message?: string;
257
+ constructor(
258
+ opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>
259
+ );
260
+ }
261
+ export interface CrossZoneLoadBalancing {
262
+ Enabled: boolean | undefined;
263
+ }
264
+ export interface DeleteAccessPointInput {
265
+ LoadBalancerName: string | undefined;
266
+ }
267
+ export interface DeleteAccessPointOutput {}
268
+ export interface DeleteLoadBalancerListenerInput {
269
+ LoadBalancerName: string | undefined;
270
+ LoadBalancerPorts: number[] | undefined;
271
+ }
272
+ export interface DeleteLoadBalancerListenerOutput {}
273
+ export interface DeleteLoadBalancerPolicyInput {
274
+ LoadBalancerName: string | undefined;
275
+ PolicyName: string | undefined;
276
+ }
277
+ export interface DeleteLoadBalancerPolicyOutput {}
278
+ export declare class DependencyThrottleException extends __BaseException {
279
+ readonly name: "DependencyThrottleException";
280
+ readonly $fault: "client";
281
+ Message?: string;
282
+ constructor(
283
+ opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>
284
+ );
285
+ }
286
+ export interface Instance {
287
+ InstanceId?: string;
288
+ }
289
+ export interface DeregisterEndPointsInput {
290
+ LoadBalancerName: string | undefined;
291
+ Instances: Instance[] | undefined;
292
+ }
293
+ export interface DeregisterEndPointsOutput {
294
+ Instances?: Instance[];
295
+ }
296
+ export declare class InvalidEndPointException extends __BaseException {
297
+ readonly name: "InvalidEndPointException";
298
+ readonly $fault: "client";
299
+ Message?: string;
300
+ constructor(
301
+ opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>
302
+ );
303
+ }
304
+ export interface DescribeAccessPointsInput {
305
+ LoadBalancerNames?: string[];
306
+ Marker?: string;
307
+ PageSize?: number;
308
+ }
309
+ export interface ListenerDescription {
310
+ Listener?: Listener;
311
+ PolicyNames?: string[];
312
+ }
313
+ export interface LBCookieStickinessPolicy {
314
+ PolicyName?: string;
315
+ CookieExpirationPeriod?: number;
316
+ }
317
+ export interface Policies {
318
+ AppCookieStickinessPolicies?: AppCookieStickinessPolicy[];
319
+ LBCookieStickinessPolicies?: LBCookieStickinessPolicy[];
320
+ OtherPolicies?: string[];
321
+ }
322
+ export interface SourceSecurityGroup {
323
+ OwnerAlias?: string;
324
+ GroupName?: string;
325
+ }
326
+ export interface LoadBalancerDescription {
327
+ LoadBalancerName?: string;
328
+ DNSName?: string;
329
+ CanonicalHostedZoneName?: string;
330
+ CanonicalHostedZoneNameID?: string;
331
+ ListenerDescriptions?: ListenerDescription[];
332
+ Policies?: Policies;
333
+ BackendServerDescriptions?: BackendServerDescription[];
334
+ AvailabilityZones?: string[];
335
+ Subnets?: string[];
336
+ VPCId?: string;
337
+ Instances?: Instance[];
338
+ HealthCheck?: HealthCheck;
339
+ SourceSecurityGroup?: SourceSecurityGroup;
340
+ SecurityGroups?: string[];
341
+ CreatedTime?: Date;
342
+ Scheme?: string;
343
+ }
344
+ export interface DescribeAccessPointsOutput {
345
+ LoadBalancerDescriptions?: LoadBalancerDescription[];
346
+ NextMarker?: string;
347
+ }
348
+ export interface DescribeAccountLimitsInput {
349
+ Marker?: string;
350
+ PageSize?: number;
351
+ }
352
+ export interface Limit {
353
+ Name?: string;
354
+ Max?: string;
355
+ }
356
+ export interface DescribeAccountLimitsOutput {
357
+ Limits?: Limit[];
358
+ NextMarker?: string;
359
+ }
360
+ export interface DescribeEndPointStateInput {
361
+ LoadBalancerName: string | undefined;
362
+ Instances?: Instance[];
363
+ }
364
+ export interface InstanceState {
365
+ InstanceId?: string;
366
+ State?: string;
367
+ ReasonCode?: string;
368
+ Description?: string;
369
+ }
370
+ export interface DescribeEndPointStateOutput {
371
+ InstanceStates?: InstanceState[];
372
+ }
373
+ export interface DescribeLoadBalancerAttributesInput {
374
+ LoadBalancerName: string | undefined;
375
+ }
376
+ export interface LoadBalancerAttributes {
377
+ CrossZoneLoadBalancing?: CrossZoneLoadBalancing;
378
+ AccessLog?: AccessLog;
379
+ ConnectionDraining?: ConnectionDraining;
380
+ ConnectionSettings?: ConnectionSettings;
381
+ AdditionalAttributes?: AdditionalAttribute[];
382
+ }
383
+ export interface DescribeLoadBalancerAttributesOutput {
384
+ LoadBalancerAttributes?: LoadBalancerAttributes;
385
+ }
386
+ export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
387
+ readonly name: "LoadBalancerAttributeNotFoundException";
388
+ readonly $fault: "client";
389
+ Message?: string;
390
+ constructor(
391
+ opts: __ExceptionOptionType<
392
+ LoadBalancerAttributeNotFoundException,
393
+ __BaseException
394
+ >
395
+ );
396
+ }
397
+ export interface DescribeLoadBalancerPoliciesInput {
398
+ LoadBalancerName?: string;
399
+ PolicyNames?: string[];
400
+ }
401
+ export interface PolicyAttributeDescription {
402
+ AttributeName?: string;
403
+ AttributeValue?: string;
404
+ }
405
+ export interface PolicyDescription {
406
+ PolicyName?: string;
407
+ PolicyTypeName?: string;
408
+ PolicyAttributeDescriptions?: PolicyAttributeDescription[];
409
+ }
410
+ export interface DescribeLoadBalancerPoliciesOutput {
411
+ PolicyDescriptions?: PolicyDescription[];
412
+ }
413
+ export declare class PolicyNotFoundException extends __BaseException {
414
+ readonly name: "PolicyNotFoundException";
415
+ readonly $fault: "client";
416
+ Message?: string;
417
+ constructor(
418
+ opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
419
+ );
420
+ }
421
+ export interface DescribeLoadBalancerPolicyTypesInput {
422
+ PolicyTypeNames?: string[];
423
+ }
424
+ export interface PolicyAttributeTypeDescription {
425
+ AttributeName?: string;
426
+ AttributeType?: string;
427
+ Description?: string;
428
+ DefaultValue?: string;
429
+ Cardinality?: string;
430
+ }
431
+ export interface PolicyTypeDescription {
432
+ PolicyTypeName?: string;
433
+ Description?: string;
434
+ PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
435
+ }
436
+ export interface DescribeLoadBalancerPolicyTypesOutput {
437
+ PolicyTypeDescriptions?: PolicyTypeDescription[];
438
+ }
439
+ export interface DescribeTagsInput {
440
+ LoadBalancerNames: string[] | undefined;
441
+ }
442
+ export interface TagDescription {
443
+ LoadBalancerName?: string;
444
+ Tags?: Tag[];
445
+ }
446
+ export interface DescribeTagsOutput {
447
+ TagDescriptions?: TagDescription[];
448
+ }
449
+ export interface DetachLoadBalancerFromSubnetsInput {
450
+ LoadBalancerName: string | undefined;
451
+ Subnets: string[] | undefined;
452
+ }
453
+ export interface DetachLoadBalancerFromSubnetsOutput {
454
+ Subnets?: string[];
455
+ }
456
+ export interface RemoveAvailabilityZonesInput {
457
+ LoadBalancerName: string | undefined;
458
+ AvailabilityZones: string[] | undefined;
459
+ }
460
+ export interface RemoveAvailabilityZonesOutput {
461
+ AvailabilityZones?: string[];
462
+ }
463
+ export interface ModifyLoadBalancerAttributesInput {
464
+ LoadBalancerName: string | undefined;
465
+ LoadBalancerAttributes: LoadBalancerAttributes | undefined;
466
+ }
467
+ export interface ModifyLoadBalancerAttributesOutput {
468
+ LoadBalancerName?: string;
469
+ LoadBalancerAttributes?: LoadBalancerAttributes;
470
+ }
471
+ export interface RegisterEndPointsInput {
472
+ LoadBalancerName: string | undefined;
473
+ Instances: Instance[] | undefined;
474
+ }
475
+ export interface RegisterEndPointsOutput {
476
+ Instances?: Instance[];
477
+ }
478
+ export interface TagKeyOnly {
479
+ Key?: string;
480
+ }
481
+ export interface RemoveTagsInput {
482
+ LoadBalancerNames: string[] | undefined;
483
+ Tags: TagKeyOnly[] | undefined;
484
+ }
485
+ export interface RemoveTagsOutput {}
486
+ export declare class ListenerNotFoundException extends __BaseException {
487
+ readonly name: "ListenerNotFoundException";
488
+ readonly $fault: "client";
489
+ Message?: string;
490
+ constructor(
491
+ opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>
492
+ );
493
+ }
494
+ export interface SetLoadBalancerListenerSSLCertificateInput {
495
+ LoadBalancerName: string | undefined;
496
+ LoadBalancerPort: number | undefined;
497
+ SSLCertificateId: string | undefined;
498
+ }
499
+ export interface SetLoadBalancerListenerSSLCertificateOutput {}
500
+ export interface SetLoadBalancerPoliciesForBackendServerInput {
501
+ LoadBalancerName: string | undefined;
502
+ InstancePort: number | undefined;
503
+ PolicyNames: string[] | undefined;
504
+ }
505
+ export interface SetLoadBalancerPoliciesForBackendServerOutput {}
506
+ export interface SetLoadBalancerPoliciesOfListenerInput {
507
+ LoadBalancerName: string | undefined;
508
+ LoadBalancerPort: number | undefined;
509
+ PolicyNames: string[] | undefined;
510
+ }
511
+ export interface SetLoadBalancerPoliciesOfListenerOutput {}
512
+ export declare const AccessLogFilterSensitiveLog: (obj: AccessLog) => any;
513
+ export declare const AddAvailabilityZonesInputFilterSensitiveLog: (
514
+ obj: AddAvailabilityZonesInput
515
+ ) => any;
516
+ export declare const AddAvailabilityZonesOutputFilterSensitiveLog: (
517
+ obj: AddAvailabilityZonesOutput
518
+ ) => any;
519
+ export declare const AdditionalAttributeFilterSensitiveLog: (
520
+ obj: AdditionalAttribute
521
+ ) => any;
522
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
523
+ export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
524
+ export declare const AddTagsOutputFilterSensitiveLog: (
525
+ obj: AddTagsOutput
526
+ ) => any;
527
+ export declare const AppCookieStickinessPolicyFilterSensitiveLog: (
528
+ obj: AppCookieStickinessPolicy
529
+ ) => any;
530
+ export declare const ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog: (
531
+ obj: ApplySecurityGroupsToLoadBalancerInput
532
+ ) => any;
533
+ export declare const ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog: (
534
+ obj: ApplySecurityGroupsToLoadBalancerOutput
535
+ ) => any;
536
+ export declare const AttachLoadBalancerToSubnetsInputFilterSensitiveLog: (
537
+ obj: AttachLoadBalancerToSubnetsInput
538
+ ) => any;
539
+ export declare const AttachLoadBalancerToSubnetsOutputFilterSensitiveLog: (
540
+ obj: AttachLoadBalancerToSubnetsOutput
541
+ ) => any;
542
+ export declare const BackendServerDescriptionFilterSensitiveLog: (
543
+ obj: BackendServerDescription
544
+ ) => any;
545
+ export declare const HealthCheckFilterSensitiveLog: (obj: HealthCheck) => any;
546
+ export declare const ConfigureHealthCheckInputFilterSensitiveLog: (
547
+ obj: ConfigureHealthCheckInput
548
+ ) => any;
549
+ export declare const ConfigureHealthCheckOutputFilterSensitiveLog: (
550
+ obj: ConfigureHealthCheckOutput
551
+ ) => any;
552
+ export declare const ConnectionDrainingFilterSensitiveLog: (
553
+ obj: ConnectionDraining
554
+ ) => any;
555
+ export declare const ConnectionSettingsFilterSensitiveLog: (
556
+ obj: ConnectionSettings
557
+ ) => any;
558
+ export declare const ListenerFilterSensitiveLog: (obj: Listener) => any;
559
+ export declare const CreateAccessPointInputFilterSensitiveLog: (
560
+ obj: CreateAccessPointInput
561
+ ) => any;
562
+ export declare const CreateAccessPointOutputFilterSensitiveLog: (
563
+ obj: CreateAccessPointOutput
564
+ ) => any;
565
+ export declare const CreateAppCookieStickinessPolicyInputFilterSensitiveLog: (
566
+ obj: CreateAppCookieStickinessPolicyInput
567
+ ) => any;
568
+ export declare const CreateAppCookieStickinessPolicyOutputFilterSensitiveLog: (
569
+ obj: CreateAppCookieStickinessPolicyOutput
570
+ ) => any;
571
+ export declare const CreateLBCookieStickinessPolicyInputFilterSensitiveLog: (
572
+ obj: CreateLBCookieStickinessPolicyInput
573
+ ) => any;
574
+ export declare const CreateLBCookieStickinessPolicyOutputFilterSensitiveLog: (
575
+ obj: CreateLBCookieStickinessPolicyOutput
576
+ ) => any;
577
+ export declare const CreateLoadBalancerListenerInputFilterSensitiveLog: (
578
+ obj: CreateLoadBalancerListenerInput
579
+ ) => any;
580
+ export declare const CreateLoadBalancerListenerOutputFilterSensitiveLog: (
581
+ obj: CreateLoadBalancerListenerOutput
582
+ ) => any;
583
+ export declare const PolicyAttributeFilterSensitiveLog: (
584
+ obj: PolicyAttribute
585
+ ) => any;
586
+ export declare const CreateLoadBalancerPolicyInputFilterSensitiveLog: (
587
+ obj: CreateLoadBalancerPolicyInput
588
+ ) => any;
589
+ export declare const CreateLoadBalancerPolicyOutputFilterSensitiveLog: (
590
+ obj: CreateLoadBalancerPolicyOutput
591
+ ) => any;
592
+ export declare const CrossZoneLoadBalancingFilterSensitiveLog: (
593
+ obj: CrossZoneLoadBalancing
594
+ ) => any;
595
+ export declare const DeleteAccessPointInputFilterSensitiveLog: (
596
+ obj: DeleteAccessPointInput
597
+ ) => any;
598
+ export declare const DeleteAccessPointOutputFilterSensitiveLog: (
599
+ obj: DeleteAccessPointOutput
600
+ ) => any;
601
+ export declare const DeleteLoadBalancerListenerInputFilterSensitiveLog: (
602
+ obj: DeleteLoadBalancerListenerInput
603
+ ) => any;
604
+ export declare const DeleteLoadBalancerListenerOutputFilterSensitiveLog: (
605
+ obj: DeleteLoadBalancerListenerOutput
606
+ ) => any;
607
+ export declare const DeleteLoadBalancerPolicyInputFilterSensitiveLog: (
608
+ obj: DeleteLoadBalancerPolicyInput
609
+ ) => any;
610
+ export declare const DeleteLoadBalancerPolicyOutputFilterSensitiveLog: (
611
+ obj: DeleteLoadBalancerPolicyOutput
612
+ ) => any;
613
+ export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
614
+ export declare const DeregisterEndPointsInputFilterSensitiveLog: (
615
+ obj: DeregisterEndPointsInput
616
+ ) => any;
617
+ export declare const DeregisterEndPointsOutputFilterSensitiveLog: (
618
+ obj: DeregisterEndPointsOutput
619
+ ) => any;
620
+ export declare const DescribeAccessPointsInputFilterSensitiveLog: (
621
+ obj: DescribeAccessPointsInput
622
+ ) => any;
623
+ export declare const ListenerDescriptionFilterSensitiveLog: (
624
+ obj: ListenerDescription
625
+ ) => any;
626
+ export declare const LBCookieStickinessPolicyFilterSensitiveLog: (
627
+ obj: LBCookieStickinessPolicy
628
+ ) => any;
629
+ export declare const PoliciesFilterSensitiveLog: (obj: Policies) => any;
630
+ export declare const SourceSecurityGroupFilterSensitiveLog: (
631
+ obj: SourceSecurityGroup
632
+ ) => any;
633
+ export declare const LoadBalancerDescriptionFilterSensitiveLog: (
634
+ obj: LoadBalancerDescription
635
+ ) => any;
636
+ export declare const DescribeAccessPointsOutputFilterSensitiveLog: (
637
+ obj: DescribeAccessPointsOutput
638
+ ) => any;
639
+ export declare const DescribeAccountLimitsInputFilterSensitiveLog: (
640
+ obj: DescribeAccountLimitsInput
641
+ ) => any;
642
+ export declare const LimitFilterSensitiveLog: (obj: Limit) => any;
643
+ export declare const DescribeAccountLimitsOutputFilterSensitiveLog: (
644
+ obj: DescribeAccountLimitsOutput
645
+ ) => any;
646
+ export declare const DescribeEndPointStateInputFilterSensitiveLog: (
647
+ obj: DescribeEndPointStateInput
648
+ ) => any;
649
+ export declare const InstanceStateFilterSensitiveLog: (
650
+ obj: InstanceState
651
+ ) => any;
652
+ export declare const DescribeEndPointStateOutputFilterSensitiveLog: (
653
+ obj: DescribeEndPointStateOutput
654
+ ) => any;
655
+ export declare const DescribeLoadBalancerAttributesInputFilterSensitiveLog: (
656
+ obj: DescribeLoadBalancerAttributesInput
657
+ ) => any;
658
+ export declare const LoadBalancerAttributesFilterSensitiveLog: (
659
+ obj: LoadBalancerAttributes
660
+ ) => any;
661
+ export declare const DescribeLoadBalancerAttributesOutputFilterSensitiveLog: (
662
+ obj: DescribeLoadBalancerAttributesOutput
663
+ ) => any;
664
+ export declare const DescribeLoadBalancerPoliciesInputFilterSensitiveLog: (
665
+ obj: DescribeLoadBalancerPoliciesInput
666
+ ) => any;
667
+ export declare const PolicyAttributeDescriptionFilterSensitiveLog: (
668
+ obj: PolicyAttributeDescription
669
+ ) => any;
670
+ export declare const PolicyDescriptionFilterSensitiveLog: (
671
+ obj: PolicyDescription
672
+ ) => any;
673
+ export declare const DescribeLoadBalancerPoliciesOutputFilterSensitiveLog: (
674
+ obj: DescribeLoadBalancerPoliciesOutput
675
+ ) => any;
676
+ export declare const DescribeLoadBalancerPolicyTypesInputFilterSensitiveLog: (
677
+ obj: DescribeLoadBalancerPolicyTypesInput
678
+ ) => any;
679
+ export declare const PolicyAttributeTypeDescriptionFilterSensitiveLog: (
680
+ obj: PolicyAttributeTypeDescription
681
+ ) => any;
682
+ export declare const PolicyTypeDescriptionFilterSensitiveLog: (
683
+ obj: PolicyTypeDescription
684
+ ) => any;
685
+ export declare const DescribeLoadBalancerPolicyTypesOutputFilterSensitiveLog: (
686
+ obj: DescribeLoadBalancerPolicyTypesOutput
687
+ ) => any;
688
+ export declare const DescribeTagsInputFilterSensitiveLog: (
689
+ obj: DescribeTagsInput
690
+ ) => any;
691
+ export declare const TagDescriptionFilterSensitiveLog: (
692
+ obj: TagDescription
693
+ ) => any;
694
+ export declare const DescribeTagsOutputFilterSensitiveLog: (
695
+ obj: DescribeTagsOutput
696
+ ) => any;
697
+ export declare const DetachLoadBalancerFromSubnetsInputFilterSensitiveLog: (
698
+ obj: DetachLoadBalancerFromSubnetsInput
699
+ ) => any;
700
+ export declare const DetachLoadBalancerFromSubnetsOutputFilterSensitiveLog: (
701
+ obj: DetachLoadBalancerFromSubnetsOutput
702
+ ) => any;
703
+ export declare const RemoveAvailabilityZonesInputFilterSensitiveLog: (
704
+ obj: RemoveAvailabilityZonesInput
705
+ ) => any;
706
+ export declare const RemoveAvailabilityZonesOutputFilterSensitiveLog: (
707
+ obj: RemoveAvailabilityZonesOutput
708
+ ) => any;
709
+ export declare const ModifyLoadBalancerAttributesInputFilterSensitiveLog: (
710
+ obj: ModifyLoadBalancerAttributesInput
711
+ ) => any;
712
+ export declare const ModifyLoadBalancerAttributesOutputFilterSensitiveLog: (
713
+ obj: ModifyLoadBalancerAttributesOutput
714
+ ) => any;
715
+ export declare const RegisterEndPointsInputFilterSensitiveLog: (
716
+ obj: RegisterEndPointsInput
717
+ ) => any;
718
+ export declare const RegisterEndPointsOutputFilterSensitiveLog: (
719
+ obj: RegisterEndPointsOutput
720
+ ) => any;
721
+ export declare const TagKeyOnlyFilterSensitiveLog: (obj: TagKeyOnly) => any;
722
+ export declare const RemoveTagsInputFilterSensitiveLog: (
723
+ obj: RemoveTagsInput
724
+ ) => any;
725
+ export declare const RemoveTagsOutputFilterSensitiveLog: (
726
+ obj: RemoveTagsOutput
727
+ ) => any;
728
+ export declare const SetLoadBalancerListenerSSLCertificateInputFilterSensitiveLog: (
729
+ obj: SetLoadBalancerListenerSSLCertificateInput
730
+ ) => any;
731
+ export declare const SetLoadBalancerListenerSSLCertificateOutputFilterSensitiveLog: (
732
+ obj: SetLoadBalancerListenerSSLCertificateOutput
733
+ ) => any;
734
+ export declare const SetLoadBalancerPoliciesForBackendServerInputFilterSensitiveLog: (
735
+ obj: SetLoadBalancerPoliciesForBackendServerInput
736
+ ) => any;
737
+ export declare const SetLoadBalancerPoliciesForBackendServerOutputFilterSensitiveLog: (
738
+ obj: SetLoadBalancerPoliciesForBackendServerOutput
739
+ ) => any;
740
+ export declare const SetLoadBalancerPoliciesOfListenerInputFilterSensitiveLog: (
741
+ obj: SetLoadBalancerPoliciesOfListenerInput
742
+ ) => any;
743
+ export declare const SetLoadBalancerPoliciesOfListenerOutputFilterSensitiveLog: (
744
+ obj: SetLoadBalancerPoliciesOfListenerOutput
745
+ ) => any;