@aws-sdk/client-elastic-load-balancing-v2 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ElasticLoadBalancingV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +523 -3
- package/dist-cjs/protocols/Aws_query.js +398 -1419
- package/dist-es/index.js +1 -0
- package/dist-es/models/ElasticLoadBalancingV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +483 -1
- package/dist-es/protocols/Aws_query.js +816 -1475
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ElasticLoadBalancingV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +261 -112
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ElasticLoadBalancingV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +157 -94
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddListenerCertificatesCommandInput, AddListenerCertificatesCommandOutput } from "./commands/AddListenerCertificatesCommand";
|
|
10
10
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
11
11
|
import { CreateListenerCommandInput, CreateListenerCommandOutput } from "./commands/CreateListenerCommand";
|
|
@@ -62,7 +62,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
62
62
|
* A function that can calculate the length of a request body.
|
|
63
63
|
* @internal
|
|
64
64
|
*/
|
|
65
|
-
bodyLengthChecker?:
|
|
65
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
66
66
|
/**
|
|
67
67
|
* A function that converts a stream into an array of bytes.
|
|
68
68
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ElasticLoadBalancingV2 service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ElasticLoadBalancingV2ServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ElasticLoadBalancingV2ServiceException as __BaseException } from "./ElasticLoadBalancingV2ServiceException";
|
|
2
3
|
export declare enum AuthenticateCognitoActionConditionalBehaviorEnum {
|
|
3
4
|
ALLOW = "allow",
|
|
4
5
|
AUTHENTICATE = "authenticate",
|
|
@@ -432,26 +433,38 @@ export declare namespace AddListenerCertificatesOutput {
|
|
|
432
433
|
/**
|
|
433
434
|
* <p>The specified certificate does not exist.</p>
|
|
434
435
|
*/
|
|
435
|
-
export
|
|
436
|
-
name: "CertificateNotFoundException";
|
|
437
|
-
$fault: "client";
|
|
436
|
+
export declare class CertificateNotFoundException extends __BaseException {
|
|
437
|
+
readonly name: "CertificateNotFoundException";
|
|
438
|
+
readonly $fault: "client";
|
|
438
439
|
Message?: string;
|
|
440
|
+
/**
|
|
441
|
+
* @internal
|
|
442
|
+
*/
|
|
443
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
|
|
439
444
|
}
|
|
440
445
|
/**
|
|
441
446
|
* <p>The specified listener does not exist.</p>
|
|
442
447
|
*/
|
|
443
|
-
export
|
|
444
|
-
name: "ListenerNotFoundException";
|
|
445
|
-
$fault: "client";
|
|
448
|
+
export declare class ListenerNotFoundException extends __BaseException {
|
|
449
|
+
readonly name: "ListenerNotFoundException";
|
|
450
|
+
readonly $fault: "client";
|
|
446
451
|
Message?: string;
|
|
452
|
+
/**
|
|
453
|
+
* @internal
|
|
454
|
+
*/
|
|
455
|
+
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
447
456
|
}
|
|
448
457
|
/**
|
|
449
458
|
* <p>You've reached the limit on the number of certificates per load balancer.</p>
|
|
450
459
|
*/
|
|
451
|
-
export
|
|
452
|
-
name: "TooManyCertificatesException";
|
|
453
|
-
$fault: "client";
|
|
460
|
+
export declare class TooManyCertificatesException extends __BaseException {
|
|
461
|
+
readonly name: "TooManyCertificatesException";
|
|
462
|
+
readonly $fault: "client";
|
|
454
463
|
Message?: string;
|
|
464
|
+
/**
|
|
465
|
+
* @internal
|
|
466
|
+
*/
|
|
467
|
+
constructor(opts: __ExceptionOptionType<TooManyCertificatesException, __BaseException>);
|
|
455
468
|
}
|
|
456
469
|
/**
|
|
457
470
|
* <p>Information about a tag.</p>
|
|
@@ -499,58 +512,86 @@ export declare namespace AddTagsOutput {
|
|
|
499
512
|
/**
|
|
500
513
|
* <p>A tag key was specified more than once.</p>
|
|
501
514
|
*/
|
|
502
|
-
export
|
|
503
|
-
name: "DuplicateTagKeysException";
|
|
504
|
-
$fault: "client";
|
|
515
|
+
export declare class DuplicateTagKeysException extends __BaseException {
|
|
516
|
+
readonly name: "DuplicateTagKeysException";
|
|
517
|
+
readonly $fault: "client";
|
|
505
518
|
Message?: string;
|
|
519
|
+
/**
|
|
520
|
+
* @internal
|
|
521
|
+
*/
|
|
522
|
+
constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
|
|
506
523
|
}
|
|
507
524
|
/**
|
|
508
525
|
* <p>The specified load balancer does not exist.</p>
|
|
509
526
|
*/
|
|
510
|
-
export
|
|
511
|
-
name: "LoadBalancerNotFoundException";
|
|
512
|
-
$fault: "client";
|
|
527
|
+
export declare class LoadBalancerNotFoundException extends __BaseException {
|
|
528
|
+
readonly name: "LoadBalancerNotFoundException";
|
|
529
|
+
readonly $fault: "client";
|
|
513
530
|
Message?: string;
|
|
531
|
+
/**
|
|
532
|
+
* @internal
|
|
533
|
+
*/
|
|
534
|
+
constructor(opts: __ExceptionOptionType<LoadBalancerNotFoundException, __BaseException>);
|
|
514
535
|
}
|
|
515
536
|
/**
|
|
516
537
|
* <p>The specified rule does not exist.</p>
|
|
517
538
|
*/
|
|
518
|
-
export
|
|
519
|
-
name: "RuleNotFoundException";
|
|
520
|
-
$fault: "client";
|
|
539
|
+
export declare class RuleNotFoundException extends __BaseException {
|
|
540
|
+
readonly name: "RuleNotFoundException";
|
|
541
|
+
readonly $fault: "client";
|
|
521
542
|
Message?: string;
|
|
543
|
+
/**
|
|
544
|
+
* @internal
|
|
545
|
+
*/
|
|
546
|
+
constructor(opts: __ExceptionOptionType<RuleNotFoundException, __BaseException>);
|
|
522
547
|
}
|
|
523
548
|
/**
|
|
524
549
|
* <p>The specified target group does not exist.</p>
|
|
525
550
|
*/
|
|
526
|
-
export
|
|
527
|
-
name: "TargetGroupNotFoundException";
|
|
528
|
-
$fault: "client";
|
|
551
|
+
export declare class TargetGroupNotFoundException extends __BaseException {
|
|
552
|
+
readonly name: "TargetGroupNotFoundException";
|
|
553
|
+
readonly $fault: "client";
|
|
529
554
|
Message?: string;
|
|
555
|
+
/**
|
|
556
|
+
* @internal
|
|
557
|
+
*/
|
|
558
|
+
constructor(opts: __ExceptionOptionType<TargetGroupNotFoundException, __BaseException>);
|
|
530
559
|
}
|
|
531
560
|
/**
|
|
532
561
|
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
533
562
|
*/
|
|
534
|
-
export
|
|
535
|
-
name: "TooManyTagsException";
|
|
536
|
-
$fault: "client";
|
|
563
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
564
|
+
readonly name: "TooManyTagsException";
|
|
565
|
+
readonly $fault: "client";
|
|
537
566
|
Message?: string;
|
|
567
|
+
/**
|
|
568
|
+
* @internal
|
|
569
|
+
*/
|
|
570
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
538
571
|
}
|
|
539
572
|
/**
|
|
540
573
|
* <p>The specified allocation ID does not exist.</p>
|
|
541
574
|
*/
|
|
542
|
-
export
|
|
543
|
-
name: "AllocationIdNotFoundException";
|
|
544
|
-
$fault: "client";
|
|
575
|
+
export declare class AllocationIdNotFoundException extends __BaseException {
|
|
576
|
+
readonly name: "AllocationIdNotFoundException";
|
|
577
|
+
readonly $fault: "client";
|
|
545
578
|
Message?: string;
|
|
579
|
+
/**
|
|
580
|
+
* @internal
|
|
581
|
+
*/
|
|
582
|
+
constructor(opts: __ExceptionOptionType<AllocationIdNotFoundException, __BaseException>);
|
|
546
583
|
}
|
|
547
584
|
/**
|
|
548
585
|
* <p>The specified ALPN policy is not supported.</p>
|
|
549
586
|
*/
|
|
550
|
-
export
|
|
551
|
-
name: "ALPNPolicyNotSupportedException";
|
|
552
|
-
$fault: "client";
|
|
587
|
+
export declare class ALPNPolicyNotSupportedException extends __BaseException {
|
|
588
|
+
readonly name: "ALPNPolicyNotSupportedException";
|
|
589
|
+
readonly $fault: "client";
|
|
553
590
|
Message?: string;
|
|
591
|
+
/**
|
|
592
|
+
* @internal
|
|
593
|
+
*/
|
|
594
|
+
constructor(opts: __ExceptionOptionType<ALPNPolicyNotSupportedException, __BaseException>);
|
|
554
595
|
}
|
|
555
596
|
/**
|
|
556
597
|
* <p>Information about a static IP address for a load balancer.</p>
|
|
@@ -613,10 +654,14 @@ export declare namespace AvailabilityZone {
|
|
|
613
654
|
/**
|
|
614
655
|
* <p>The specified Availability Zone is not supported.</p>
|
|
615
656
|
*/
|
|
616
|
-
export
|
|
617
|
-
name: "AvailabilityZoneNotSupportedException";
|
|
618
|
-
$fault: "client";
|
|
657
|
+
export declare class AvailabilityZoneNotSupportedException extends __BaseException {
|
|
658
|
+
readonly name: "AvailabilityZoneNotSupportedException";
|
|
659
|
+
readonly $fault: "client";
|
|
619
660
|
Message?: string;
|
|
661
|
+
/**
|
|
662
|
+
* @internal
|
|
663
|
+
*/
|
|
664
|
+
constructor(opts: __ExceptionOptionType<AvailabilityZoneNotSupportedException, __BaseException>);
|
|
620
665
|
}
|
|
621
666
|
/**
|
|
622
667
|
* <p>Information about a cipher used in a policy.</p>
|
|
@@ -778,101 +823,149 @@ export declare namespace CreateListenerOutput {
|
|
|
778
823
|
/**
|
|
779
824
|
* <p>A listener with the specified port already exists.</p>
|
|
780
825
|
*/
|
|
781
|
-
export
|
|
782
|
-
name: "DuplicateListenerException";
|
|
783
|
-
$fault: "client";
|
|
826
|
+
export declare class DuplicateListenerException extends __BaseException {
|
|
827
|
+
readonly name: "DuplicateListenerException";
|
|
828
|
+
readonly $fault: "client";
|
|
784
829
|
Message?: string;
|
|
830
|
+
/**
|
|
831
|
+
* @internal
|
|
832
|
+
*/
|
|
833
|
+
constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
|
|
785
834
|
}
|
|
786
835
|
/**
|
|
787
836
|
* <p>The specified configuration is not valid with this protocol.</p>
|
|
788
837
|
*/
|
|
789
|
-
export
|
|
790
|
-
name: "IncompatibleProtocolsException";
|
|
791
|
-
$fault: "client";
|
|
838
|
+
export declare class IncompatibleProtocolsException extends __BaseException {
|
|
839
|
+
readonly name: "IncompatibleProtocolsException";
|
|
840
|
+
readonly $fault: "client";
|
|
792
841
|
Message?: string;
|
|
842
|
+
/**
|
|
843
|
+
* @internal
|
|
844
|
+
*/
|
|
845
|
+
constructor(opts: __ExceptionOptionType<IncompatibleProtocolsException, __BaseException>);
|
|
793
846
|
}
|
|
794
847
|
/**
|
|
795
848
|
* <p>The requested configuration is not valid.</p>
|
|
796
849
|
*/
|
|
797
|
-
export
|
|
798
|
-
name: "InvalidConfigurationRequestException";
|
|
799
|
-
$fault: "client";
|
|
850
|
+
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
851
|
+
readonly name: "InvalidConfigurationRequestException";
|
|
852
|
+
readonly $fault: "client";
|
|
800
853
|
Message?: string;
|
|
854
|
+
/**
|
|
855
|
+
* @internal
|
|
856
|
+
*/
|
|
857
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
|
|
801
858
|
}
|
|
802
859
|
/**
|
|
803
860
|
* <p>The requested action is not valid.</p>
|
|
804
861
|
*/
|
|
805
|
-
export
|
|
806
|
-
name: "InvalidLoadBalancerActionException";
|
|
807
|
-
$fault: "client";
|
|
862
|
+
export declare class InvalidLoadBalancerActionException extends __BaseException {
|
|
863
|
+
readonly name: "InvalidLoadBalancerActionException";
|
|
864
|
+
readonly $fault: "client";
|
|
808
865
|
Message?: string;
|
|
866
|
+
/**
|
|
867
|
+
* @internal
|
|
868
|
+
*/
|
|
869
|
+
constructor(opts: __ExceptionOptionType<InvalidLoadBalancerActionException, __BaseException>);
|
|
809
870
|
}
|
|
810
871
|
/**
|
|
811
872
|
* <p>The specified SSL policy does not exist.</p>
|
|
812
873
|
*/
|
|
813
|
-
export
|
|
814
|
-
name: "SSLPolicyNotFoundException";
|
|
815
|
-
$fault: "client";
|
|
874
|
+
export declare class SSLPolicyNotFoundException extends __BaseException {
|
|
875
|
+
readonly name: "SSLPolicyNotFoundException";
|
|
876
|
+
readonly $fault: "client";
|
|
816
877
|
Message?: string;
|
|
878
|
+
/**
|
|
879
|
+
* @internal
|
|
880
|
+
*/
|
|
881
|
+
constructor(opts: __ExceptionOptionType<SSLPolicyNotFoundException, __BaseException>);
|
|
817
882
|
}
|
|
818
883
|
/**
|
|
819
884
|
* <p>You've reached the limit on the number of load balancers per target group.</p>
|
|
820
885
|
*/
|
|
821
|
-
export
|
|
822
|
-
name: "TargetGroupAssociationLimitException";
|
|
823
|
-
$fault: "client";
|
|
886
|
+
export declare class TargetGroupAssociationLimitException extends __BaseException {
|
|
887
|
+
readonly name: "TargetGroupAssociationLimitException";
|
|
888
|
+
readonly $fault: "client";
|
|
824
889
|
Message?: string;
|
|
890
|
+
/**
|
|
891
|
+
* @internal
|
|
892
|
+
*/
|
|
893
|
+
constructor(opts: __ExceptionOptionType<TargetGroupAssociationLimitException, __BaseException>);
|
|
825
894
|
}
|
|
826
895
|
/**
|
|
827
896
|
* <p>You've reached the limit on the number of actions per rule.</p>
|
|
828
897
|
*/
|
|
829
|
-
export
|
|
830
|
-
name: "TooManyActionsException";
|
|
831
|
-
$fault: "client";
|
|
898
|
+
export declare class TooManyActionsException extends __BaseException {
|
|
899
|
+
readonly name: "TooManyActionsException";
|
|
900
|
+
readonly $fault: "client";
|
|
832
901
|
Message?: string;
|
|
902
|
+
/**
|
|
903
|
+
* @internal
|
|
904
|
+
*/
|
|
905
|
+
constructor(opts: __ExceptionOptionType<TooManyActionsException, __BaseException>);
|
|
833
906
|
}
|
|
834
907
|
/**
|
|
835
908
|
* <p>You've reached the limit on the number of listeners per load balancer.</p>
|
|
836
909
|
*/
|
|
837
|
-
export
|
|
838
|
-
name: "TooManyListenersException";
|
|
839
|
-
$fault: "client";
|
|
910
|
+
export declare class TooManyListenersException extends __BaseException {
|
|
911
|
+
readonly name: "TooManyListenersException";
|
|
912
|
+
readonly $fault: "client";
|
|
840
913
|
Message?: string;
|
|
914
|
+
/**
|
|
915
|
+
* @internal
|
|
916
|
+
*/
|
|
917
|
+
constructor(opts: __ExceptionOptionType<TooManyListenersException, __BaseException>);
|
|
841
918
|
}
|
|
842
919
|
/**
|
|
843
920
|
* <p>You've reached the limit on the number of times a target can be registered with a load
|
|
844
921
|
* balancer.</p>
|
|
845
922
|
*/
|
|
846
|
-
export
|
|
847
|
-
name: "TooManyRegistrationsForTargetIdException";
|
|
848
|
-
$fault: "client";
|
|
923
|
+
export declare class TooManyRegistrationsForTargetIdException extends __BaseException {
|
|
924
|
+
readonly name: "TooManyRegistrationsForTargetIdException";
|
|
925
|
+
readonly $fault: "client";
|
|
849
926
|
Message?: string;
|
|
927
|
+
/**
|
|
928
|
+
* @internal
|
|
929
|
+
*/
|
|
930
|
+
constructor(opts: __ExceptionOptionType<TooManyRegistrationsForTargetIdException, __BaseException>);
|
|
850
931
|
}
|
|
851
932
|
/**
|
|
852
933
|
* <p>You've reached the limit on the number of targets.</p>
|
|
853
934
|
*/
|
|
854
|
-
export
|
|
855
|
-
name: "TooManyTargetsException";
|
|
856
|
-
$fault: "client";
|
|
935
|
+
export declare class TooManyTargetsException extends __BaseException {
|
|
936
|
+
readonly name: "TooManyTargetsException";
|
|
937
|
+
readonly $fault: "client";
|
|
857
938
|
Message?: string;
|
|
939
|
+
/**
|
|
940
|
+
* @internal
|
|
941
|
+
*/
|
|
942
|
+
constructor(opts: __ExceptionOptionType<TooManyTargetsException, __BaseException>);
|
|
858
943
|
}
|
|
859
944
|
/**
|
|
860
945
|
* <p>You've reached the limit on the number of unique target groups per load balancer across
|
|
861
946
|
* all listeners. If a target group is used by multiple actions for a load balancer, it is
|
|
862
947
|
* counted as only one use.</p>
|
|
863
948
|
*/
|
|
864
|
-
export
|
|
865
|
-
name: "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
866
|
-
$fault: "client";
|
|
949
|
+
export declare class TooManyUniqueTargetGroupsPerLoadBalancerException extends __BaseException {
|
|
950
|
+
readonly name: "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
951
|
+
readonly $fault: "client";
|
|
867
952
|
Message?: string;
|
|
953
|
+
/**
|
|
954
|
+
* @internal
|
|
955
|
+
*/
|
|
956
|
+
constructor(opts: __ExceptionOptionType<TooManyUniqueTargetGroupsPerLoadBalancerException, __BaseException>);
|
|
868
957
|
}
|
|
869
958
|
/**
|
|
870
959
|
* <p>The specified protocol is not supported.</p>
|
|
871
960
|
*/
|
|
872
|
-
export
|
|
873
|
-
name: "UnsupportedProtocolException";
|
|
874
|
-
$fault: "client";
|
|
961
|
+
export declare class UnsupportedProtocolException extends __BaseException {
|
|
962
|
+
readonly name: "UnsupportedProtocolException";
|
|
963
|
+
readonly $fault: "client";
|
|
875
964
|
Message?: string;
|
|
965
|
+
/**
|
|
966
|
+
* @internal
|
|
967
|
+
*/
|
|
968
|
+
constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
|
|
876
969
|
}
|
|
877
970
|
export declare enum IpAddressType {
|
|
878
971
|
DUALSTACK = "dualstack",
|
|
@@ -1113,67 +1206,99 @@ export declare namespace CreateLoadBalancerOutput {
|
|
|
1113
1206
|
/**
|
|
1114
1207
|
* <p>A load balancer with the specified name already exists.</p>
|
|
1115
1208
|
*/
|
|
1116
|
-
export
|
|
1117
|
-
name: "DuplicateLoadBalancerNameException";
|
|
1118
|
-
$fault: "client";
|
|
1209
|
+
export declare class DuplicateLoadBalancerNameException extends __BaseException {
|
|
1210
|
+
readonly name: "DuplicateLoadBalancerNameException";
|
|
1211
|
+
readonly $fault: "client";
|
|
1119
1212
|
Message?: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* @internal
|
|
1215
|
+
*/
|
|
1216
|
+
constructor(opts: __ExceptionOptionType<DuplicateLoadBalancerNameException, __BaseException>);
|
|
1120
1217
|
}
|
|
1121
1218
|
/**
|
|
1122
1219
|
* <p>The requested scheme is not valid.</p>
|
|
1123
1220
|
*/
|
|
1124
|
-
export
|
|
1125
|
-
name: "InvalidSchemeException";
|
|
1126
|
-
$fault: "client";
|
|
1221
|
+
export declare class InvalidSchemeException extends __BaseException {
|
|
1222
|
+
readonly name: "InvalidSchemeException";
|
|
1223
|
+
readonly $fault: "client";
|
|
1127
1224
|
Message?: string;
|
|
1225
|
+
/**
|
|
1226
|
+
* @internal
|
|
1227
|
+
*/
|
|
1228
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
|
|
1128
1229
|
}
|
|
1129
1230
|
/**
|
|
1130
1231
|
* <p>The specified security group does not exist.</p>
|
|
1131
1232
|
*/
|
|
1132
|
-
export
|
|
1133
|
-
name: "InvalidSecurityGroupException";
|
|
1134
|
-
$fault: "client";
|
|
1233
|
+
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
1234
|
+
readonly name: "InvalidSecurityGroupException";
|
|
1235
|
+
readonly $fault: "client";
|
|
1135
1236
|
Message?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* @internal
|
|
1239
|
+
*/
|
|
1240
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
|
|
1136
1241
|
}
|
|
1137
1242
|
/**
|
|
1138
1243
|
* <p>The specified subnet is out of available addresses.</p>
|
|
1139
1244
|
*/
|
|
1140
|
-
export
|
|
1141
|
-
name: "InvalidSubnetException";
|
|
1142
|
-
$fault: "client";
|
|
1245
|
+
export declare class InvalidSubnetException extends __BaseException {
|
|
1246
|
+
readonly name: "InvalidSubnetException";
|
|
1247
|
+
readonly $fault: "client";
|
|
1143
1248
|
Message?: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* @internal
|
|
1251
|
+
*/
|
|
1252
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
|
|
1144
1253
|
}
|
|
1145
1254
|
/**
|
|
1146
1255
|
* <p>This operation is not allowed.</p>
|
|
1147
1256
|
*/
|
|
1148
|
-
export
|
|
1149
|
-
name: "OperationNotPermittedException";
|
|
1150
|
-
$fault: "client";
|
|
1257
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
1258
|
+
readonly name: "OperationNotPermittedException";
|
|
1259
|
+
readonly $fault: "client";
|
|
1151
1260
|
Message?: string;
|
|
1261
|
+
/**
|
|
1262
|
+
* @internal
|
|
1263
|
+
*/
|
|
1264
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
1152
1265
|
}
|
|
1153
1266
|
/**
|
|
1154
1267
|
* <p>A specified resource is in use.</p>
|
|
1155
1268
|
*/
|
|
1156
|
-
export
|
|
1157
|
-
name: "ResourceInUseException";
|
|
1158
|
-
$fault: "client";
|
|
1269
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
1270
|
+
readonly name: "ResourceInUseException";
|
|
1271
|
+
readonly $fault: "client";
|
|
1159
1272
|
Message?: string;
|
|
1273
|
+
/**
|
|
1274
|
+
* @internal
|
|
1275
|
+
*/
|
|
1276
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1160
1277
|
}
|
|
1161
1278
|
/**
|
|
1162
1279
|
* <p>The specified subnet does not exist.</p>
|
|
1163
1280
|
*/
|
|
1164
|
-
export
|
|
1165
|
-
name: "SubnetNotFoundException";
|
|
1166
|
-
$fault: "client";
|
|
1281
|
+
export declare class SubnetNotFoundException extends __BaseException {
|
|
1282
|
+
readonly name: "SubnetNotFoundException";
|
|
1283
|
+
readonly $fault: "client";
|
|
1167
1284
|
Message?: string;
|
|
1285
|
+
/**
|
|
1286
|
+
* @internal
|
|
1287
|
+
*/
|
|
1288
|
+
constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
|
|
1168
1289
|
}
|
|
1169
1290
|
/**
|
|
1170
1291
|
* <p>You've reached the limit on the number of load balancers for your Amazon Web Services
|
|
1171
1292
|
* account.</p>
|
|
1172
1293
|
*/
|
|
1173
|
-
export
|
|
1174
|
-
name: "TooManyLoadBalancersException";
|
|
1175
|
-
$fault: "client";
|
|
1294
|
+
export declare class TooManyLoadBalancersException extends __BaseException {
|
|
1295
|
+
readonly name: "TooManyLoadBalancersException";
|
|
1296
|
+
readonly $fault: "client";
|
|
1176
1297
|
Message?: string;
|
|
1298
|
+
/**
|
|
1299
|
+
* @internal
|
|
1300
|
+
*/
|
|
1301
|
+
constructor(opts: __ExceptionOptionType<TooManyLoadBalancersException, __BaseException>);
|
|
1177
1302
|
}
|
|
1178
1303
|
/**
|
|
1179
1304
|
* <p>Information about a host header condition.</p>
|
|
@@ -1541,27 +1666,39 @@ export declare namespace CreateRuleOutput {
|
|
|
1541
1666
|
/**
|
|
1542
1667
|
* <p>The specified priority is in use.</p>
|
|
1543
1668
|
*/
|
|
1544
|
-
export
|
|
1545
|
-
name: "PriorityInUseException";
|
|
1546
|
-
$fault: "client";
|
|
1669
|
+
export declare class PriorityInUseException extends __BaseException {
|
|
1670
|
+
readonly name: "PriorityInUseException";
|
|
1671
|
+
readonly $fault: "client";
|
|
1547
1672
|
Message?: string;
|
|
1673
|
+
/**
|
|
1674
|
+
* @internal
|
|
1675
|
+
*/
|
|
1676
|
+
constructor(opts: __ExceptionOptionType<PriorityInUseException, __BaseException>);
|
|
1548
1677
|
}
|
|
1549
1678
|
/**
|
|
1550
1679
|
* <p>You've reached the limit on the number of rules per load balancer.</p>
|
|
1551
1680
|
*/
|
|
1552
|
-
export
|
|
1553
|
-
name: "TooManyRulesException";
|
|
1554
|
-
$fault: "client";
|
|
1681
|
+
export declare class TooManyRulesException extends __BaseException {
|
|
1682
|
+
readonly name: "TooManyRulesException";
|
|
1683
|
+
readonly $fault: "client";
|
|
1555
1684
|
Message?: string;
|
|
1685
|
+
/**
|
|
1686
|
+
* @internal
|
|
1687
|
+
*/
|
|
1688
|
+
constructor(opts: __ExceptionOptionType<TooManyRulesException, __BaseException>);
|
|
1556
1689
|
}
|
|
1557
1690
|
/**
|
|
1558
1691
|
* <p>You've reached the limit on the number of target groups for your Amazon Web Services
|
|
1559
1692
|
* account.</p>
|
|
1560
1693
|
*/
|
|
1561
|
-
export
|
|
1562
|
-
name: "TooManyTargetGroupsException";
|
|
1563
|
-
$fault: "client";
|
|
1694
|
+
export declare class TooManyTargetGroupsException extends __BaseException {
|
|
1695
|
+
readonly name: "TooManyTargetGroupsException";
|
|
1696
|
+
readonly $fault: "client";
|
|
1564
1697
|
Message?: string;
|
|
1698
|
+
/**
|
|
1699
|
+
* @internal
|
|
1700
|
+
*/
|
|
1701
|
+
constructor(opts: __ExceptionOptionType<TooManyTargetGroupsException, __BaseException>);
|
|
1565
1702
|
}
|
|
1566
1703
|
export declare enum TargetGroupIpAddressTypeEnum {
|
|
1567
1704
|
IPV4 = "ipv4",
|
|
@@ -1854,10 +1991,14 @@ export declare namespace CreateTargetGroupOutput {
|
|
|
1854
1991
|
/**
|
|
1855
1992
|
* <p>A target group with the specified name already exists.</p>
|
|
1856
1993
|
*/
|
|
1857
|
-
export
|
|
1858
|
-
name: "DuplicateTargetGroupNameException";
|
|
1859
|
-
$fault: "client";
|
|
1994
|
+
export declare class DuplicateTargetGroupNameException extends __BaseException {
|
|
1995
|
+
readonly name: "DuplicateTargetGroupNameException";
|
|
1996
|
+
readonly $fault: "client";
|
|
1860
1997
|
Message?: string;
|
|
1998
|
+
/**
|
|
1999
|
+
* @internal
|
|
2000
|
+
*/
|
|
2001
|
+
constructor(opts: __ExceptionOptionType<DuplicateTargetGroupNameException, __BaseException>);
|
|
1861
2002
|
}
|
|
1862
2003
|
export interface DeleteListenerInput {
|
|
1863
2004
|
/**
|
|
@@ -2009,10 +2150,14 @@ export declare namespace DeregisterTargetsOutput {
|
|
|
2009
2150
|
* <p>The specified target does not exist, is not in the same VPC as the target group, or has an
|
|
2010
2151
|
* unsupported instance type.</p>
|
|
2011
2152
|
*/
|
|
2012
|
-
export
|
|
2013
|
-
name: "InvalidTargetException";
|
|
2014
|
-
$fault: "client";
|
|
2153
|
+
export declare class InvalidTargetException extends __BaseException {
|
|
2154
|
+
readonly name: "InvalidTargetException";
|
|
2155
|
+
readonly $fault: "client";
|
|
2015
2156
|
Message?: string;
|
|
2157
|
+
/**
|
|
2158
|
+
* @internal
|
|
2159
|
+
*/
|
|
2160
|
+
constructor(opts: __ExceptionOptionType<InvalidTargetException, __BaseException>);
|
|
2016
2161
|
}
|
|
2017
2162
|
export interface DescribeAccountLimitsInput {
|
|
2018
2163
|
/**
|
|
@@ -2942,10 +3087,14 @@ export declare namespace DescribeTargetHealthOutput {
|
|
|
2942
3087
|
* <p>The health of the specified targets could not be retrieved due to an internal
|
|
2943
3088
|
* error.</p>
|
|
2944
3089
|
*/
|
|
2945
|
-
export
|
|
2946
|
-
name: "HealthUnavailableException";
|
|
2947
|
-
$fault: "server";
|
|
3090
|
+
export declare class HealthUnavailableException extends __BaseException {
|
|
3091
|
+
readonly name: "HealthUnavailableException";
|
|
3092
|
+
readonly $fault: "server";
|
|
2948
3093
|
Message?: string;
|
|
3094
|
+
/**
|
|
3095
|
+
* @internal
|
|
3096
|
+
*/
|
|
3097
|
+
constructor(opts: __ExceptionOptionType<HealthUnavailableException, __BaseException>);
|
|
2949
3098
|
}
|
|
2950
3099
|
export interface ModifyListenerInput {
|
|
2951
3100
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|