@aws-sdk/client-elastic-load-balancing-v2 3.289.0 → 3.292.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddListenerCertificatesCommand.d.ts +10 -0
- package/dist-types/commands/AddTagsCommand.d.ts +19 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +58 -0
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +41 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +50 -0
- package/dist-types/commands/CreateTargetGroupCommand.d.ts +14 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +7 -0
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +10 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +7 -0
- package/dist-types/commands/DeleteTargetGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeListenersCommand.d.ts +10 -0
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +4 -0
- package/dist-types/commands/DescribeRulesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeTargetHealthCommand.d.ts +12 -0
- package/dist-types/commands/ModifyListenerCommand.d.ts +55 -0
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +7 -0
- package/dist-types/commands/ModifyRuleCommand.d.ts +37 -0
- package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +7 -0
- package/dist-types/commands/ModifyTargetGroupCommand.d.ts +7 -0
- package/dist-types/commands/RegisterTargetsCommand.d.ts +15 -0
- package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +7 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +10 -0
- package/dist-types/commands/SetRulePrioritiesCommand.d.ts +10 -0
- package/dist-types/commands/SetSecurityGroupsCommand.d.ts +10 -0
- package/dist-types/commands/SetSubnetsCommand.d.ts +19 -0
- package/package.json +36 -41
|
@@ -35,6 +35,16 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi
|
|
|
35
35
|
* @see {@link AddListenerCertificatesCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link CertificateNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified certificate does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
42
|
+
* <p>The specified listener does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link TooManyCertificatesException} (client fault)
|
|
45
|
+
* <p>You've reached the limit on the number of certificates per load balancer.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
38
48
|
*/
|
|
39
49
|
export declare class AddListenerCertificatesCommand extends $Command<AddListenerCertificatesCommandInput, AddListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
40
50
|
readonly input: AddListenerCertificatesCommandInput;
|
|
@@ -33,6 +33,25 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
33
33
|
* @see {@link AddTagsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link DuplicateTagKeysException} (client fault)
|
|
37
|
+
* <p>A tag key was specified more than once.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified listener does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified load balancer does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
46
|
+
* <p>The specified rule does not exist.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
49
|
+
* <p>The specified target group does not exist.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
52
|
+
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
36
55
|
* @example To add tags to a load balancer
|
|
37
56
|
* ```javascript
|
|
38
57
|
* // This example adds the specified tags to the specified load balancer.
|
|
@@ -53,6 +53,64 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
|
|
|
53
53
|
* @see {@link CreateListenerCommandOutput} for command's `response` shape.
|
|
54
54
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
55
55
|
*
|
|
56
|
+
* @throws {@link ALPNPolicyNotSupportedException} (client fault)
|
|
57
|
+
* <p>The specified ALPN policy is not supported.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link CertificateNotFoundException} (client fault)
|
|
60
|
+
* <p>The specified certificate does not exist.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link DuplicateListenerException} (client fault)
|
|
63
|
+
* <p>A listener with the specified port already exists.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link IncompatibleProtocolsException} (client fault)
|
|
66
|
+
* <p>The specified configuration is not valid with this protocol.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
69
|
+
* <p>The requested configuration is not valid.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InvalidLoadBalancerActionException} (client fault)
|
|
72
|
+
* <p>The requested action is not valid.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
75
|
+
* <p>The specified load balancer does not exist.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link SSLPolicyNotFoundException} (client fault)
|
|
78
|
+
* <p>The specified SSL policy does not exist.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link TargetGroupAssociationLimitException} (client fault)
|
|
81
|
+
* <p>You've reached the limit on the number of load balancers per target group.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
84
|
+
* <p>The specified target group does not exist.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link TooManyActionsException} (client fault)
|
|
87
|
+
* <p>You've reached the limit on the number of actions per rule.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link TooManyCertificatesException} (client fault)
|
|
90
|
+
* <p>You've reached the limit on the number of certificates per load balancer.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link TooManyListenersException} (client fault)
|
|
93
|
+
* <p>You've reached the limit on the number of listeners per load balancer.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link TooManyRegistrationsForTargetIdException} (client fault)
|
|
96
|
+
* <p>You've reached the limit on the number of times a target can be registered with a load
|
|
97
|
+
* balancer.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
100
|
+
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link TooManyTargetsException} (client fault)
|
|
103
|
+
* <p>You've reached the limit on the number of targets.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link TooManyUniqueTargetGroupsPerLoadBalancerException} (client fault)
|
|
106
|
+
* <p>You've reached the limit on the number of unique target groups per load balancer across
|
|
107
|
+
* all listeners. If a target group is used by multiple actions for a load balancer, it is
|
|
108
|
+
* counted as only one use.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
111
|
+
* <p>The specified protocol is not supported.</p>
|
|
112
|
+
*
|
|
113
|
+
*
|
|
56
114
|
* @example To create an HTTP listener
|
|
57
115
|
* ```javascript
|
|
58
116
|
* // This example creates an HTTP listener for the specified load balancer that forwards requests to the specified target group.
|
|
@@ -52,6 +52,47 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu
|
|
|
52
52
|
* @see {@link CreateLoadBalancerCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link AllocationIdNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified allocation ID does not exist.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AvailabilityZoneNotSupportedException} (client fault)
|
|
59
|
+
* <p>The specified Availability Zone is not supported.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link DuplicateLoadBalancerNameException} (client fault)
|
|
62
|
+
* <p>A load balancer with the specified name already exists.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link DuplicateTagKeysException} (client fault)
|
|
65
|
+
* <p>A tag key was specified more than once.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
68
|
+
* <p>The requested configuration is not valid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InvalidSchemeException} (client fault)
|
|
71
|
+
* <p>The requested scheme is not valid.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InvalidSecurityGroupException} (client fault)
|
|
74
|
+
* <p>The specified security group does not exist.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InvalidSubnetException} (client fault)
|
|
77
|
+
* <p>The specified subnet is out of available addresses.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
80
|
+
* <p>This operation is not allowed.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
83
|
+
* <p>A specified resource is in use.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link SubnetNotFoundException} (client fault)
|
|
86
|
+
* <p>The specified subnet does not exist.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link TooManyLoadBalancersException} (client fault)
|
|
89
|
+
* <p>You've reached the limit on the number of load balancers for your Amazon Web Services
|
|
90
|
+
* account.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
93
|
+
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
94
|
+
*
|
|
95
|
+
*
|
|
55
96
|
* @example To create an Internet-facing load balancer
|
|
56
97
|
* ```javascript
|
|
57
98
|
* // This example creates an Internet-facing load balancer and enables the Availability Zones for the specified subnets.
|
|
@@ -34,6 +34,56 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
|
|
|
34
34
|
* @see {@link CreateRuleCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link IncompatibleProtocolsException} (client fault)
|
|
38
|
+
* <p>The specified configuration is not valid with this protocol.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
41
|
+
* <p>The requested configuration is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidLoadBalancerActionException} (client fault)
|
|
44
|
+
* <p>The requested action is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
47
|
+
* <p>The specified listener does not exist.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link PriorityInUseException} (client fault)
|
|
50
|
+
* <p>The specified priority is in use.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TargetGroupAssociationLimitException} (client fault)
|
|
53
|
+
* <p>You've reached the limit on the number of load balancers per target group.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified target group does not exist.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link TooManyActionsException} (client fault)
|
|
59
|
+
* <p>You've reached the limit on the number of actions per rule.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link TooManyRegistrationsForTargetIdException} (client fault)
|
|
62
|
+
* <p>You've reached the limit on the number of times a target can be registered with a load
|
|
63
|
+
* balancer.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link TooManyRulesException} (client fault)
|
|
66
|
+
* <p>You've reached the limit on the number of rules per load balancer.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
69
|
+
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link TooManyTargetGroupsException} (client fault)
|
|
72
|
+
* <p>You've reached the limit on the number of target groups for your Amazon Web Services
|
|
73
|
+
* account.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link TooManyTargetsException} (client fault)
|
|
76
|
+
* <p>You've reached the limit on the number of targets.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link TooManyUniqueTargetGroupsPerLoadBalancerException} (client fault)
|
|
79
|
+
* <p>You've reached the limit on the number of unique target groups per load balancer across
|
|
80
|
+
* all listeners. If a target group is used by multiple actions for a load balancer, it is
|
|
81
|
+
* counted as only one use.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
84
|
+
* <p>The specified protocol is not supported.</p>
|
|
85
|
+
*
|
|
86
|
+
*
|
|
37
87
|
* @example To create a rule
|
|
38
88
|
* ```javascript
|
|
39
89
|
* // This example creates a rule that forwards requests to the specified target group if the URL contains the specified pattern (for example, /img/*).
|
|
@@ -52,6 +52,20 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
|
|
|
52
52
|
* @see {@link CreateTargetGroupCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link DuplicateTargetGroupNameException} (client fault)
|
|
56
|
+
* <p>A target group with the specified name already exists.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
59
|
+
* <p>The requested configuration is not valid.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
62
|
+
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link TooManyTargetGroupsException} (client fault)
|
|
65
|
+
* <p>You've reached the limit on the number of target groups for your Amazon Web Services
|
|
66
|
+
* account.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
55
69
|
* @example To create a target group
|
|
56
70
|
* ```javascript
|
|
57
71
|
* // This example creates a target group that you can use to route traffic to targets using HTTP on port 80. This target group uses the default health check configuration.
|
|
@@ -31,6 +31,13 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met
|
|
|
31
31
|
* @see {@link DeleteListenerCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
35
|
+
* <p>The specified listener does not exist.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
38
|
+
* <p>A specified resource is in use.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
34
41
|
* @example To delete a listener
|
|
35
42
|
* ```javascript
|
|
36
43
|
* // This example deletes the specified listener.
|
|
@@ -35,6 +35,16 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu
|
|
|
35
35
|
* @see {@link DeleteLoadBalancerCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified load balancer does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
42
|
+
* <p>This operation is not allowed.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
45
|
+
* <p>A specified resource is in use.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
38
48
|
* @example To delete a load balancer
|
|
39
49
|
* ```javascript
|
|
40
50
|
* // This example deletes the specified load balancer.
|
|
@@ -30,6 +30,13 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea
|
|
|
30
30
|
* @see {@link DeleteRuleCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
34
|
+
* <p>This operation is not allowed.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified rule does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
* @example To delete a rule
|
|
34
41
|
* ```javascript
|
|
35
42
|
* // This example deletes the specified rule.
|
|
@@ -33,6 +33,10 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput,
|
|
|
33
33
|
* @see {@link DeleteTargetGroupCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
37
|
+
* <p>A specified resource is in use.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
36
40
|
* @example To delete a target group
|
|
37
41
|
* ```javascript
|
|
38
42
|
* // This example deletes the specified target group.
|
|
@@ -30,6 +30,14 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput,
|
|
|
30
30
|
* @see {@link DeregisterTargetsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidTargetException} (client fault)
|
|
34
|
+
* <p>The specified target does not exist, is not in the same VPC as the target group, or has an
|
|
35
|
+
* unsupported instance type.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified target group does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
* @example To deregister a target from a target group
|
|
34
42
|
* ```javascript
|
|
35
43
|
* // This example deregisters the specified instance from the specified target group.
|
|
@@ -51,6 +51,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
51
51
|
* @see {@link DescribeAccountLimitsCommandOutput} for command's `response` shape.
|
|
52
52
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
53
53
|
*
|
|
54
|
+
*
|
|
54
55
|
*/
|
|
55
56
|
export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
56
57
|
readonly input: DescribeAccountLimitsCommandInput;
|
|
@@ -36,6 +36,10 @@ export interface DescribeListenerCertificatesCommandOutput extends DescribeListe
|
|
|
36
36
|
* @see {@link DescribeListenerCertificatesCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified listener does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
39
43
|
*/
|
|
40
44
|
export declare class DescribeListenerCertificatesCommand extends $Command<DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
41
45
|
readonly input: DescribeListenerCertificatesCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput,
|
|
|
31
31
|
* @see {@link DescribeListenersCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
35
|
+
* <p>The specified listener does not exist.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified load balancer does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
41
|
+
* <p>The specified protocol is not supported.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
* @example To describe a listener
|
|
35
45
|
* ```javascript
|
|
36
46
|
* // This example describes the specified listener.
|
|
@@ -51,6 +51,10 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
|
|
|
51
51
|
* @see {@link DescribeLoadBalancerAttributesCommandOutput} for command's `response` shape.
|
|
52
52
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
53
53
|
*
|
|
54
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
55
|
+
* <p>The specified load balancer does not exist.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
54
58
|
* @example To describe load balancer attributes
|
|
55
59
|
* ```javascript
|
|
56
60
|
* // This example describes the attributes of the specified load balancer.
|
|
@@ -29,6 +29,10 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeLoadBalancer
|
|
|
29
29
|
* @see {@link DescribeLoadBalancersCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
33
|
+
* <p>The specified load balancer does not exist.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
* @example To describe a load balancer
|
|
33
37
|
* ```javascript
|
|
34
38
|
* // This example describes the specified load balancer.
|
|
@@ -30,6 +30,16 @@ export interface DescribeRulesCommandOutput extends DescribeRulesOutput, __Metad
|
|
|
30
30
|
* @see {@link DescribeRulesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
34
|
+
* <p>The specified listener does not exist.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified rule does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
40
|
+
* <p>The specified protocol is not supported.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
* @example To describe a rule
|
|
34
44
|
* ```javascript
|
|
35
45
|
* // This example describes the specified rule.
|
|
@@ -31,6 +31,10 @@ export interface DescribeSSLPoliciesCommandOutput extends DescribeSSLPoliciesOut
|
|
|
31
31
|
* @see {@link DescribeSSLPoliciesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link SSLPolicyNotFoundException} (client fault)
|
|
35
|
+
* <p>The specified SSL policy does not exist.</p>
|
|
36
|
+
*
|
|
37
|
+
*
|
|
34
38
|
* @example To describe a policy used for SSL negotiation
|
|
35
39
|
* ```javascript
|
|
36
40
|
* // This example describes the specified policy used for SSL negotiation.
|
|
@@ -31,6 +31,19 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
|
|
|
31
31
|
* @see {@link DescribeTagsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
35
|
+
* <p>The specified listener does not exist.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified load balancer does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified rule does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
44
|
+
* <p>The specified target group does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
34
47
|
* @example To describe the tags assigned to a load balancer
|
|
35
48
|
* ```javascript
|
|
36
49
|
* // This example describes the tags assigned to the specified load balancer.
|
|
@@ -50,6 +50,10 @@ export interface DescribeTargetGroupAttributesCommandOutput extends DescribeTarg
|
|
|
50
50
|
* @see {@link DescribeTargetGroupAttributesCommandOutput} for command's `response` shape.
|
|
51
51
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
52
52
|
*
|
|
53
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
54
|
+
* <p>The specified target group does not exist.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
53
57
|
* @example To describe target group attributes
|
|
54
58
|
* ```javascript
|
|
55
59
|
* // This example describes the attributes of the specified target group.
|
|
@@ -32,6 +32,13 @@ export interface DescribeTargetGroupsCommandOutput extends DescribeTargetGroupsO
|
|
|
32
32
|
* @see {@link DescribeTargetGroupsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified load balancer does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified target group does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
* @example To describe a target group
|
|
36
43
|
* ```javascript
|
|
37
44
|
* // This example describes the specified target group.
|
|
@@ -29,6 +29,18 @@ export interface DescribeTargetHealthCommandOutput extends DescribeTargetHealthO
|
|
|
29
29
|
* @see {@link DescribeTargetHealthCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link HealthUnavailableException} (server fault)
|
|
33
|
+
* <p>The health of the specified targets could not be retrieved due to an internal
|
|
34
|
+
* error.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidTargetException} (client fault)
|
|
37
|
+
* <p>The specified target does not exist, is not in the same VPC as the target group, or has an
|
|
38
|
+
* unsupported instance type.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified target group does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
32
44
|
* @example To describe the health of the targets for a target group
|
|
33
45
|
* ```javascript
|
|
34
46
|
* // This example describes the health of the targets for the specified target group. One target is healthy but the other is not specified in an action, so it can't receive traffic from the load balancer.
|
|
@@ -36,6 +36,61 @@ export interface ModifyListenerCommandOutput extends ModifyListenerOutput, __Met
|
|
|
36
36
|
* @see {@link ModifyListenerCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link ALPNPolicyNotSupportedException} (client fault)
|
|
40
|
+
* <p>The specified ALPN policy is not supported.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link CertificateNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified certificate does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link DuplicateListenerException} (client fault)
|
|
46
|
+
* <p>A listener with the specified port already exists.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link IncompatibleProtocolsException} (client fault)
|
|
49
|
+
* <p>The specified configuration is not valid with this protocol.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
52
|
+
* <p>The requested configuration is not valid.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidLoadBalancerActionException} (client fault)
|
|
55
|
+
* <p>The requested action is not valid.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
58
|
+
* <p>The specified listener does not exist.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link SSLPolicyNotFoundException} (client fault)
|
|
61
|
+
* <p>The specified SSL policy does not exist.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link TargetGroupAssociationLimitException} (client fault)
|
|
64
|
+
* <p>You've reached the limit on the number of load balancers per target group.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
67
|
+
* <p>The specified target group does not exist.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link TooManyActionsException} (client fault)
|
|
70
|
+
* <p>You've reached the limit on the number of actions per rule.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link TooManyCertificatesException} (client fault)
|
|
73
|
+
* <p>You've reached the limit on the number of certificates per load balancer.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link TooManyListenersException} (client fault)
|
|
76
|
+
* <p>You've reached the limit on the number of listeners per load balancer.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link TooManyRegistrationsForTargetIdException} (client fault)
|
|
79
|
+
* <p>You've reached the limit on the number of times a target can be registered with a load
|
|
80
|
+
* balancer.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link TooManyTargetsException} (client fault)
|
|
83
|
+
* <p>You've reached the limit on the number of targets.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link TooManyUniqueTargetGroupsPerLoadBalancerException} (client fault)
|
|
86
|
+
* <p>You've reached the limit on the number of unique target groups per load balancer across
|
|
87
|
+
* all listeners. If a target group is used by multiple actions for a load balancer, it is
|
|
88
|
+
* counted as only one use.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
91
|
+
* <p>The specified protocol is not supported.</p>
|
|
92
|
+
*
|
|
93
|
+
*
|
|
39
94
|
* @example To change the default action for a listener
|
|
40
95
|
* ```javascript
|
|
41
96
|
* // This example changes the default action for the specified listener.
|
|
@@ -32,6 +32,13 @@ export interface ModifyLoadBalancerAttributesCommandOutput extends ModifyLoadBal
|
|
|
32
32
|
* @see {@link ModifyLoadBalancerAttributesCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
36
|
+
* <p>The requested configuration is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified load balancer does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
* @example To enable deletion protection
|
|
36
43
|
* ```javascript
|
|
37
44
|
* // This example enables deletion protection for the specified load balancer.
|
|
@@ -33,6 +33,43 @@ export interface ModifyRuleCommandOutput extends ModifyRuleOutput, __MetadataBea
|
|
|
33
33
|
* @see {@link ModifyRuleCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link IncompatibleProtocolsException} (client fault)
|
|
37
|
+
* <p>The specified configuration is not valid with this protocol.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidLoadBalancerActionException} (client fault)
|
|
40
|
+
* <p>The requested action is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
43
|
+
* <p>This operation is not allowed.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
46
|
+
* <p>The specified rule does not exist.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TargetGroupAssociationLimitException} (client fault)
|
|
49
|
+
* <p>You've reached the limit on the number of load balancers per target group.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
52
|
+
* <p>The specified target group does not exist.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link TooManyActionsException} (client fault)
|
|
55
|
+
* <p>You've reached the limit on the number of actions per rule.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link TooManyRegistrationsForTargetIdException} (client fault)
|
|
58
|
+
* <p>You've reached the limit on the number of times a target can be registered with a load
|
|
59
|
+
* balancer.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link TooManyTargetsException} (client fault)
|
|
62
|
+
* <p>You've reached the limit on the number of targets.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link TooManyUniqueTargetGroupsPerLoadBalancerException} (client fault)
|
|
65
|
+
* <p>You've reached the limit on the number of unique target groups per load balancer across
|
|
66
|
+
* all listeners. If a target group is used by multiple actions for a load balancer, it is
|
|
67
|
+
* counted as only one use.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
70
|
+
* <p>The specified protocol is not supported.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
36
73
|
* @example To modify a rule
|
|
37
74
|
* ```javascript
|
|
38
75
|
* // This example modifies the condition for the specified rule.
|
|
@@ -29,6 +29,13 @@ export interface ModifyTargetGroupAttributesCommandOutput extends ModifyTargetGr
|
|
|
29
29
|
* @see {@link ModifyTargetGroupAttributesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
33
|
+
* <p>The requested configuration is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified target group does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
* @example To modify the deregistration delay timeout
|
|
33
40
|
* ```javascript
|
|
34
41
|
* // This example sets the deregistration delay timeout to the specified value for the specified target group.
|
|
@@ -30,6 +30,13 @@ export interface ModifyTargetGroupCommandOutput extends ModifyTargetGroupOutput,
|
|
|
30
30
|
* @see {@link ModifyTargetGroupCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
34
|
+
* <p>The requested configuration is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified target group does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
* @example To modify the health check configuration for a target group
|
|
34
41
|
* ```javascript
|
|
35
42
|
* // This example changes the configuration of the health checks used to evaluate the health of the targets for the specified target group.
|
|
@@ -38,6 +38,21 @@ export interface RegisterTargetsCommandOutput extends RegisterTargetsOutput, __M
|
|
|
38
38
|
* @see {@link RegisterTargetsCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link InvalidTargetException} (client fault)
|
|
42
|
+
* <p>The specified target does not exist, is not in the same VPC as the target group, or has an
|
|
43
|
+
* unsupported instance type.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
46
|
+
* <p>The specified target group does not exist.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TooManyRegistrationsForTargetIdException} (client fault)
|
|
49
|
+
* <p>You've reached the limit on the number of times a target can be registered with a load
|
|
50
|
+
* balancer.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TooManyTargetsException} (client fault)
|
|
53
|
+
* <p>You've reached the limit on the number of targets.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
41
56
|
* @example To register targets with a target group
|
|
42
57
|
* ```javascript
|
|
43
58
|
* // This example registers the specified instances with the specified target group.
|
|
@@ -30,6 +30,13 @@ export interface RemoveListenerCertificatesCommandOutput extends RemoveListenerC
|
|
|
30
30
|
* @see {@link RemoveListenerCertificatesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
34
|
+
* <p>The specified listener does not exist.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
37
|
+
* <p>This operation is not allowed.</p>
|
|
38
|
+
*
|
|
39
|
+
*
|
|
33
40
|
*/
|
|
34
41
|
export declare class RemoveListenerCertificatesCommand extends $Command<RemoveListenerCertificatesCommandInput, RemoveListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
35
42
|
readonly input: RemoveListenerCertificatesCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
31
31
|
* @see {@link RemoveTagsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
35
|
+
* <p>The specified listener does not exist.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified load balancer does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified rule does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
44
|
+
* <p>The specified target group does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
47
|
+
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
* @example To remove tags from a load balancer
|
|
35
51
|
* ```javascript
|
|
36
52
|
* // This example removes the specified tags from the specified load balancer.
|
|
@@ -29,6 +29,16 @@ export interface SetIpAddressTypeCommandOutput extends SetIpAddressTypeOutput, _
|
|
|
29
29
|
* @see {@link SetIpAddressTypeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
33
|
+
* <p>The requested configuration is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidSubnetException} (client fault)
|
|
36
|
+
* <p>The specified subnet is out of available addresses.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified load balancer does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class SetIpAddressTypeCommand extends $Command<SetIpAddressTypeCommandInput, SetIpAddressTypeCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
34
44
|
readonly input: SetIpAddressTypeCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface SetRulePrioritiesCommandOutput extends SetRulePrioritiesOutput,
|
|
|
31
31
|
* @see {@link SetRulePrioritiesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
35
|
+
* <p>This operation is not allowed.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link PriorityInUseException} (client fault)
|
|
38
|
+
* <p>The specified priority is in use.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link RuleNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified rule does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
* @example To set the rule priority
|
|
35
45
|
* ```javascript
|
|
36
46
|
* // This example sets the priority of the specified rule.
|
|
@@ -32,6 +32,16 @@ export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput,
|
|
|
32
32
|
* @see {@link SetSecurityGroupsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
36
|
+
* <p>The requested configuration is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidSecurityGroupException} (client fault)
|
|
39
|
+
* <p>The specified security group does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
42
|
+
* <p>The specified load balancer does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
35
45
|
* @example To associate a security group with a load balancer
|
|
36
46
|
* ```javascript
|
|
37
47
|
* // This example associates the specified security group with the specified load balancer.
|
|
@@ -34,6 +34,25 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
|
|
|
34
34
|
* @see {@link SetSubnetsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AllocationIdNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified allocation ID does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link AvailabilityZoneNotSupportedException} (client fault)
|
|
41
|
+
* <p>The specified Availability Zone is not supported.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidConfigurationRequestException} (client fault)
|
|
44
|
+
* <p>The requested configuration is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidSubnetException} (client fault)
|
|
47
|
+
* <p>The specified subnet is out of available addresses.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
50
|
+
* <p>The specified load balancer does not exist.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link SubnetNotFoundException} (client fault)
|
|
53
|
+
* <p>The specified subnet does not exist.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
37
56
|
* @example To enable Availability Zones for a load balancer
|
|
38
57
|
* ```javascript
|
|
39
58
|
* // This example enables the Availability Zones for the specified subnets for the specified load balancer.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.292.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,57 +20,52 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
|
+
"@aws-sdk/util-waiter": "3.292.0",
|
|
56
56
|
"fast-xml-parser": "4.1.2",
|
|
57
57
|
"tslib": "^2.3.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
|
-
"typedoc": "0.
|
|
66
|
+
"typedoc": "0.23.23",
|
|
67
67
|
"typescript": "~4.6.2"
|
|
68
68
|
},
|
|
69
|
-
"overrides": {
|
|
70
|
-
"typedoc": {
|
|
71
|
-
"typescript": "~4.6.2"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
69
|
"engines": {
|
|
75
70
|
"node": ">=14.0.0"
|
|
76
71
|
},
|