@aws-sdk/client-elastic-load-balancing-v2 3.315.0 → 3.316.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.
|
@@ -34,493 +34,243 @@ import { SetRulePrioritiesCommandInput, SetRulePrioritiesCommandOutput } from ".
|
|
|
34
34
|
import { SetSecurityGroupsCommandInput, SetSecurityGroupsCommandOutput } from "./commands/SetSecurityGroupsCommand";
|
|
35
35
|
import { SetSubnetsCommandInput, SetSubnetsCommandOutput } from "./commands/SetSubnetsCommand";
|
|
36
36
|
import { ElasticLoadBalancingV2Client } from "./ElasticLoadBalancingV2Client";
|
|
37
|
-
|
|
38
|
-
* @public
|
|
39
|
-
* <fullname>Elastic Load Balancing</fullname>
|
|
40
|
-
* <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances.
|
|
41
|
-
* This enables you to increase the availability of your application. The load balancer also
|
|
42
|
-
* monitors the health of its registered targets and ensures that it routes traffic only to
|
|
43
|
-
* healthy targets. You configure your load balancer to accept incoming traffic by specifying one
|
|
44
|
-
* or more listeners, which are configured with a protocol and port number for connections from
|
|
45
|
-
* clients to the load balancer. You configure a target group with a protocol and port number for
|
|
46
|
-
* connections from the load balancer to the targets, and with health check settings to be used
|
|
47
|
-
* when checking the health status of the targets.</p>
|
|
48
|
-
* <p>Elastic Load Balancing supports the following types of load balancers: Application Load
|
|
49
|
-
* Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers. This
|
|
50
|
-
* reference covers the following load balancer types:</p>
|
|
51
|
-
* <ul>
|
|
52
|
-
* <li>
|
|
53
|
-
* <p>Application Load Balancer - Operates at the application layer (layer 7) and supports
|
|
54
|
-
* HTTP and HTTPS.</p>
|
|
55
|
-
* </li>
|
|
56
|
-
* <li>
|
|
57
|
-
* <p>Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP,
|
|
58
|
-
* TLS, and UDP.</p>
|
|
59
|
-
* </li>
|
|
60
|
-
* <li>
|
|
61
|
-
* <p>Gateway Load Balancer - Operates at the network layer (layer 3).</p>
|
|
62
|
-
* </li>
|
|
63
|
-
* </ul>
|
|
64
|
-
* <p>For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User
|
|
65
|
-
* Guide</a>.</p>
|
|
66
|
-
* <p>All Elastic Load Balancing operations are idempotent, which means that they complete at
|
|
67
|
-
* most one time. If you repeat an operation, it succeeds.</p>
|
|
68
|
-
*/
|
|
69
|
-
export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client {
|
|
37
|
+
export interface ElasticLoadBalancingV2 {
|
|
70
38
|
/**
|
|
71
|
-
* @
|
|
72
|
-
* <p>Adds the specified SSL server certificate to the certificate list for the specified HTTPS
|
|
73
|
-
* or TLS listener.</p>
|
|
74
|
-
* <p>If the certificate in already in the certificate list, the call is successful but the
|
|
75
|
-
* certificate is not added again.</p>
|
|
76
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html">HTTPS
|
|
77
|
-
* listeners</a> in the <i>Application Load Balancers Guide</i> or <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html">TLS
|
|
78
|
-
* listeners</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
39
|
+
* @see {@link AddListenerCertificatesCommand}
|
|
79
40
|
*/
|
|
80
41
|
addListenerCertificates(args: AddListenerCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<AddListenerCertificatesCommandOutput>;
|
|
81
42
|
addListenerCertificates(args: AddListenerCertificatesCommandInput, cb: (err: any, data?: AddListenerCertificatesCommandOutput) => void): void;
|
|
82
43
|
addListenerCertificates(args: AddListenerCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddListenerCertificatesCommandOutput) => void): void;
|
|
83
44
|
/**
|
|
84
|
-
* @
|
|
85
|
-
* <p>Adds the specified tags to the specified Elastic Load Balancing resource. You can tag your
|
|
86
|
-
* Application Load Balancers, Network Load Balancers, Gateway Load Balancers, target groups,
|
|
87
|
-
* listeners, and rules.</p>
|
|
88
|
-
* <p>Each tag consists of a key and an optional value. If a resource already has a tag with the
|
|
89
|
-
* same key, <code>AddTags</code> updates its value.</p>
|
|
45
|
+
* @see {@link AddTagsCommand}
|
|
90
46
|
*/
|
|
91
47
|
addTags(args: AddTagsCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsCommandOutput>;
|
|
92
48
|
addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
93
49
|
addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
94
50
|
/**
|
|
95
|
-
* @
|
|
96
|
-
* <p>Creates a listener for the specified Application Load Balancer, Network Load Balancer, or
|
|
97
|
-
* Gateway Load Balancer.</p>
|
|
98
|
-
* <p>For more information, see the following:</p>
|
|
99
|
-
* <ul>
|
|
100
|
-
* <li>
|
|
101
|
-
* <p>
|
|
102
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html">Listeners for
|
|
103
|
-
* your Application Load Balancers</a>
|
|
104
|
-
* </p>
|
|
105
|
-
* </li>
|
|
106
|
-
* <li>
|
|
107
|
-
* <p>
|
|
108
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html">Listeners for
|
|
109
|
-
* your Network Load Balancers</a>
|
|
110
|
-
* </p>
|
|
111
|
-
* </li>
|
|
112
|
-
* <li>
|
|
113
|
-
* <p>
|
|
114
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/gateway-listeners.html">Listeners for your
|
|
115
|
-
* Gateway Load Balancers</a>
|
|
116
|
-
* </p>
|
|
117
|
-
* </li>
|
|
118
|
-
* </ul>
|
|
119
|
-
* <p>This operation is idempotent, which means that it completes at most one time. If you
|
|
120
|
-
* attempt to create multiple listeners with the same settings, each call succeeds.</p>
|
|
51
|
+
* @see {@link CreateListenerCommand}
|
|
121
52
|
*/
|
|
122
53
|
createListener(args: CreateListenerCommandInput, options?: __HttpHandlerOptions): Promise<CreateListenerCommandOutput>;
|
|
123
54
|
createListener(args: CreateListenerCommandInput, cb: (err: any, data?: CreateListenerCommandOutput) => void): void;
|
|
124
55
|
createListener(args: CreateListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateListenerCommandOutput) => void): void;
|
|
125
56
|
/**
|
|
126
|
-
* @
|
|
127
|
-
* <p>Creates an Application Load Balancer, Network Load Balancer, or Gateway Load
|
|
128
|
-
* Balancer.</p>
|
|
129
|
-
* <p>For more information, see the following:</p>
|
|
130
|
-
* <ul>
|
|
131
|
-
* <li>
|
|
132
|
-
* <p>
|
|
133
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/application-load-balancers.html">Application Load Balancers</a>
|
|
134
|
-
* </p>
|
|
135
|
-
* </li>
|
|
136
|
-
* <li>
|
|
137
|
-
* <p>
|
|
138
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html">Network Load
|
|
139
|
-
* Balancers</a>
|
|
140
|
-
* </p>
|
|
141
|
-
* </li>
|
|
142
|
-
* <li>
|
|
143
|
-
* <p>
|
|
144
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/gateway-load-balancers.html">Gateway Load
|
|
145
|
-
* Balancers</a>
|
|
146
|
-
* </p>
|
|
147
|
-
* </li>
|
|
148
|
-
* </ul>
|
|
149
|
-
* <p>This operation is idempotent, which means that it completes at most one time. If you
|
|
150
|
-
* attempt to create multiple load balancers with the same settings, each call succeeds.</p>
|
|
57
|
+
* @see {@link CreateLoadBalancerCommand}
|
|
151
58
|
*/
|
|
152
59
|
createLoadBalancer(args: CreateLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<CreateLoadBalancerCommandOutput>;
|
|
153
60
|
createLoadBalancer(args: CreateLoadBalancerCommandInput, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
|
|
154
61
|
createLoadBalancer(args: CreateLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
|
|
155
62
|
/**
|
|
156
|
-
* @
|
|
157
|
-
* <p>Creates a rule for the specified listener. The listener must be associated with an
|
|
158
|
-
* Application Load Balancer.</p>
|
|
159
|
-
* <p>Each rule consists of a priority, one or more actions, and one or more conditions. Rules
|
|
160
|
-
* are evaluated in priority order, from the lowest value to the highest value. When the
|
|
161
|
-
* conditions for a rule are met, its actions are performed. If the conditions for no rules are
|
|
162
|
-
* met, the actions for the default rule are performed. For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#listener-rules">Listener rules</a> in the <i>Application Load Balancers Guide</i>.</p>
|
|
63
|
+
* @see {@link CreateRuleCommand}
|
|
163
64
|
*/
|
|
164
65
|
createRule(args: CreateRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateRuleCommandOutput>;
|
|
165
66
|
createRule(args: CreateRuleCommandInput, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
|
|
166
67
|
createRule(args: CreateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
|
|
167
68
|
/**
|
|
168
|
-
* @
|
|
169
|
-
* <p>Creates a target group.</p>
|
|
170
|
-
* <p>For more information, see the following:</p>
|
|
171
|
-
* <ul>
|
|
172
|
-
* <li>
|
|
173
|
-
* <p>
|
|
174
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html">Target
|
|
175
|
-
* groups for your Application Load Balancers</a>
|
|
176
|
-
* </p>
|
|
177
|
-
* </li>
|
|
178
|
-
* <li>
|
|
179
|
-
* <p>
|
|
180
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html">Target groups
|
|
181
|
-
* for your Network Load Balancers</a>
|
|
182
|
-
* </p>
|
|
183
|
-
* </li>
|
|
184
|
-
* <li>
|
|
185
|
-
* <p>
|
|
186
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-groups.html">Target groups for your
|
|
187
|
-
* Gateway Load Balancers</a>
|
|
188
|
-
* </p>
|
|
189
|
-
* </li>
|
|
190
|
-
* </ul>
|
|
191
|
-
* <p>This operation is idempotent, which means that it completes at most one time. If you
|
|
192
|
-
* attempt to create multiple target groups with the same settings, each call succeeds.</p>
|
|
69
|
+
* @see {@link CreateTargetGroupCommand}
|
|
193
70
|
*/
|
|
194
71
|
createTargetGroup(args: CreateTargetGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateTargetGroupCommandOutput>;
|
|
195
72
|
createTargetGroup(args: CreateTargetGroupCommandInput, cb: (err: any, data?: CreateTargetGroupCommandOutput) => void): void;
|
|
196
73
|
createTargetGroup(args: CreateTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTargetGroupCommandOutput) => void): void;
|
|
197
74
|
/**
|
|
198
|
-
* @
|
|
199
|
-
* <p>Deletes the specified listener.</p>
|
|
200
|
-
* <p>Alternatively, your listener is deleted when you delete the load balancer to which it is
|
|
201
|
-
* attached.</p>
|
|
75
|
+
* @see {@link DeleteListenerCommand}
|
|
202
76
|
*/
|
|
203
77
|
deleteListener(args: DeleteListenerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteListenerCommandOutput>;
|
|
204
78
|
deleteListener(args: DeleteListenerCommandInput, cb: (err: any, data?: DeleteListenerCommandOutput) => void): void;
|
|
205
79
|
deleteListener(args: DeleteListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteListenerCommandOutput) => void): void;
|
|
206
80
|
/**
|
|
207
|
-
* @
|
|
208
|
-
* <p>Deletes the specified Application Load Balancer, Network Load Balancer, or Gateway Load
|
|
209
|
-
* Balancer. Deleting a load balancer also deletes its listeners.</p>
|
|
210
|
-
* <p>You can't delete a load balancer if deletion protection is enabled. If the load balancer
|
|
211
|
-
* does not exist or has already been deleted, the call succeeds.</p>
|
|
212
|
-
* <p>Deleting a load balancer does not affect its registered targets. For example, your EC2
|
|
213
|
-
* instances continue to run and are still registered to their target groups. If you no longer
|
|
214
|
-
* need these EC2 instances, you can stop or terminate them.</p>
|
|
81
|
+
* @see {@link DeleteLoadBalancerCommand}
|
|
215
82
|
*/
|
|
216
83
|
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoadBalancerCommandOutput>;
|
|
217
84
|
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
|
|
218
85
|
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
|
|
219
86
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Deletes the specified rule.</p>
|
|
222
|
-
* <p>You can't delete the default rule.</p>
|
|
87
|
+
* @see {@link DeleteRuleCommand}
|
|
223
88
|
*/
|
|
224
89
|
deleteRule(args: DeleteRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRuleCommandOutput>;
|
|
225
90
|
deleteRule(args: DeleteRuleCommandInput, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
|
|
226
91
|
deleteRule(args: DeleteRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
|
|
227
92
|
/**
|
|
228
|
-
* @
|
|
229
|
-
* <p>Deletes the specified target group.</p>
|
|
230
|
-
* <p>You can delete a target group if it is not referenced by any actions. Deleting a target
|
|
231
|
-
* group also deletes any associated health checks. Deleting a target group does not affect its
|
|
232
|
-
* registered targets. For example, any EC2 instances continue to run until you stop or terminate
|
|
233
|
-
* them.</p>
|
|
93
|
+
* @see {@link DeleteTargetGroupCommand}
|
|
234
94
|
*/
|
|
235
95
|
deleteTargetGroup(args: DeleteTargetGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTargetGroupCommandOutput>;
|
|
236
96
|
deleteTargetGroup(args: DeleteTargetGroupCommandInput, cb: (err: any, data?: DeleteTargetGroupCommandOutput) => void): void;
|
|
237
97
|
deleteTargetGroup(args: DeleteTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTargetGroupCommandOutput) => void): void;
|
|
238
98
|
/**
|
|
239
|
-
* @
|
|
240
|
-
* <p>Deregisters the specified targets from the specified target group. After the targets are
|
|
241
|
-
* deregistered, they no longer receive traffic from the load balancer.</p>
|
|
99
|
+
* @see {@link DeregisterTargetsCommand}
|
|
242
100
|
*/
|
|
243
101
|
deregisterTargets(args: DeregisterTargetsCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterTargetsCommandOutput>;
|
|
244
102
|
deregisterTargets(args: DeregisterTargetsCommandInput, cb: (err: any, data?: DeregisterTargetsCommandOutput) => void): void;
|
|
245
103
|
deregisterTargets(args: DeregisterTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterTargetsCommandOutput) => void): void;
|
|
246
104
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>Describes the current Elastic Load Balancing resource limits for your Amazon Web Services
|
|
249
|
-
* account.</p>
|
|
250
|
-
* <p>For more information, see the following:</p>
|
|
251
|
-
* <ul>
|
|
252
|
-
* <li>
|
|
253
|
-
* <p>
|
|
254
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-limits.html">Quotas for your
|
|
255
|
-
* Application Load Balancers</a>
|
|
256
|
-
* </p>
|
|
257
|
-
* </li>
|
|
258
|
-
* <li>
|
|
259
|
-
* <p>
|
|
260
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-limits.html">Quotas for your
|
|
261
|
-
* Network Load Balancers</a>
|
|
262
|
-
* </p>
|
|
263
|
-
* </li>
|
|
264
|
-
* <li>
|
|
265
|
-
* <p>
|
|
266
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/quotas-limits.html">Quotas for your Gateway
|
|
267
|
-
* Load Balancers</a>
|
|
268
|
-
* </p>
|
|
269
|
-
* </li>
|
|
270
|
-
* </ul>
|
|
105
|
+
* @see {@link DescribeAccountLimitsCommand}
|
|
271
106
|
*/
|
|
272
107
|
describeAccountLimits(args: DescribeAccountLimitsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountLimitsCommandOutput>;
|
|
273
108
|
describeAccountLimits(args: DescribeAccountLimitsCommandInput, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
|
|
274
109
|
describeAccountLimits(args: DescribeAccountLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
|
|
275
110
|
/**
|
|
276
|
-
* @
|
|
277
|
-
* <p>Describes the default certificate and the certificate list for the specified HTTPS or TLS
|
|
278
|
-
* listener.</p>
|
|
279
|
-
* <p>If the default certificate is also in the certificate list, it appears twice in the
|
|
280
|
-
* results (once with <code>IsDefault</code> set to true and once with <code>IsDefault</code> set
|
|
281
|
-
* to false).</p>
|
|
282
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#https-listener-certificates">SSL certificates</a> in the <i>Application Load Balancers Guide</i> or
|
|
283
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#tls-listener-certificate">Server certificates</a> in the <i>Network Load Balancers
|
|
284
|
-
* Guide</i>.</p>
|
|
111
|
+
* @see {@link DescribeListenerCertificatesCommand}
|
|
285
112
|
*/
|
|
286
113
|
describeListenerCertificates(args: DescribeListenerCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeListenerCertificatesCommandOutput>;
|
|
287
114
|
describeListenerCertificates(args: DescribeListenerCertificatesCommandInput, cb: (err: any, data?: DescribeListenerCertificatesCommandOutput) => void): void;
|
|
288
115
|
describeListenerCertificates(args: DescribeListenerCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeListenerCertificatesCommandOutput) => void): void;
|
|
289
116
|
/**
|
|
290
|
-
* @
|
|
291
|
-
* <p>Describes the specified listeners or the listeners for the specified Application Load
|
|
292
|
-
* Balancer, Network Load Balancer, or Gateway Load Balancer. You must specify either a load
|
|
293
|
-
* balancer or one or more listeners.</p>
|
|
117
|
+
* @see {@link DescribeListenersCommand}
|
|
294
118
|
*/
|
|
295
119
|
describeListeners(args: DescribeListenersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeListenersCommandOutput>;
|
|
296
120
|
describeListeners(args: DescribeListenersCommandInput, cb: (err: any, data?: DescribeListenersCommandOutput) => void): void;
|
|
297
121
|
describeListeners(args: DescribeListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeListenersCommandOutput) => void): void;
|
|
298
122
|
/**
|
|
299
|
-
* @
|
|
300
|
-
* <p>Describes the attributes for the specified Application Load Balancer, Network Load
|
|
301
|
-
* Balancer, or Gateway Load Balancer.</p>
|
|
302
|
-
* <p>For more information, see the following:</p>
|
|
303
|
-
* <ul>
|
|
304
|
-
* <li>
|
|
305
|
-
* <p>
|
|
306
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/application-load-balancers.html#load-balancer-attributes">Load balancer attributes</a> in the <i>Application Load Balancers
|
|
307
|
-
* Guide</i>
|
|
308
|
-
* </p>
|
|
309
|
-
* </li>
|
|
310
|
-
* <li>
|
|
311
|
-
* <p>
|
|
312
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#load-balancer-attributes">Load balancer attributes</a> in the <i>Network Load Balancers
|
|
313
|
-
* Guide</i>
|
|
314
|
-
* </p>
|
|
315
|
-
* </li>
|
|
316
|
-
* <li>
|
|
317
|
-
* <p>
|
|
318
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/gateway-load-balancers.html#load-balancer-attributes">Load balancer attributes</a> in the <i>Gateway Load Balancers
|
|
319
|
-
* Guide</i>
|
|
320
|
-
* </p>
|
|
321
|
-
* </li>
|
|
322
|
-
* </ul>
|
|
123
|
+
* @see {@link DescribeLoadBalancerAttributesCommand}
|
|
323
124
|
*/
|
|
324
125
|
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancerAttributesCommandOutput>;
|
|
325
126
|
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
|
|
326
127
|
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
|
|
327
128
|
/**
|
|
328
|
-
* @
|
|
329
|
-
* <p>Describes the specified load balancers or all of your load balancers.</p>
|
|
129
|
+
* @see {@link DescribeLoadBalancersCommand}
|
|
330
130
|
*/
|
|
331
131
|
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancersCommandOutput>;
|
|
332
132
|
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
|
|
333
133
|
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
|
|
334
134
|
/**
|
|
335
|
-
* @
|
|
336
|
-
* <p>Describes the specified rules or the rules for the specified listener. You must specify
|
|
337
|
-
* either a listener or one or more rules.</p>
|
|
135
|
+
* @see {@link DescribeRulesCommand}
|
|
338
136
|
*/
|
|
339
137
|
describeRules(args: DescribeRulesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRulesCommandOutput>;
|
|
340
138
|
describeRules(args: DescribeRulesCommandInput, cb: (err: any, data?: DescribeRulesCommandOutput) => void): void;
|
|
341
139
|
describeRules(args: DescribeRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRulesCommandOutput) => void): void;
|
|
342
140
|
/**
|
|
343
|
-
* @
|
|
344
|
-
* <p>Describes the specified policies or all policies used for SSL negotiation.</p>
|
|
345
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#describe-ssl-policies">Security policies</a> in the <i>Application Load Balancers Guide</i> or
|
|
346
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
141
|
+
* @see {@link DescribeSSLPoliciesCommand}
|
|
347
142
|
*/
|
|
348
143
|
describeSSLPolicies(args: DescribeSSLPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSSLPoliciesCommandOutput>;
|
|
349
144
|
describeSSLPolicies(args: DescribeSSLPoliciesCommandInput, cb: (err: any, data?: DescribeSSLPoliciesCommandOutput) => void): void;
|
|
350
145
|
describeSSLPolicies(args: DescribeSSLPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSSLPoliciesCommandOutput) => void): void;
|
|
351
146
|
/**
|
|
352
|
-
* @
|
|
353
|
-
* <p>Describes the tags for the specified Elastic Load Balancing resources. You can describe
|
|
354
|
-
* the tags for one or more Application Load Balancers, Network Load Balancers, Gateway Load
|
|
355
|
-
* Balancers, target groups, listeners, or rules.</p>
|
|
147
|
+
* @see {@link DescribeTagsCommand}
|
|
356
148
|
*/
|
|
357
149
|
describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
|
|
358
150
|
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
359
151
|
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
360
152
|
/**
|
|
361
|
-
* @
|
|
362
|
-
* <p>Describes the attributes for the specified target group.</p>
|
|
363
|
-
* <p>For more information, see the following:</p>
|
|
364
|
-
* <ul>
|
|
365
|
-
* <li>
|
|
366
|
-
* <p>
|
|
367
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#target-group-attributes">Target group attributes</a> in the <i>Application Load Balancers
|
|
368
|
-
* Guide</i>
|
|
369
|
-
* </p>
|
|
370
|
-
* </li>
|
|
371
|
-
* <li>
|
|
372
|
-
* <p>
|
|
373
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#target-group-attributes">Target group attributes</a> in the <i>Network Load Balancers
|
|
374
|
-
* Guide</i>
|
|
375
|
-
* </p>
|
|
376
|
-
* </li>
|
|
377
|
-
* <li>
|
|
378
|
-
* <p>
|
|
379
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-groups.html#target-group-attributes">Target group attributes</a> in the <i>Gateway Load Balancers
|
|
380
|
-
* Guide</i>
|
|
381
|
-
* </p>
|
|
382
|
-
* </li>
|
|
383
|
-
* </ul>
|
|
153
|
+
* @see {@link DescribeTargetGroupAttributesCommand}
|
|
384
154
|
*/
|
|
385
155
|
describeTargetGroupAttributes(args: DescribeTargetGroupAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTargetGroupAttributesCommandOutput>;
|
|
386
156
|
describeTargetGroupAttributes(args: DescribeTargetGroupAttributesCommandInput, cb: (err: any, data?: DescribeTargetGroupAttributesCommandOutput) => void): void;
|
|
387
157
|
describeTargetGroupAttributes(args: DescribeTargetGroupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTargetGroupAttributesCommandOutput) => void): void;
|
|
388
158
|
/**
|
|
389
|
-
* @
|
|
390
|
-
* <p>Describes the specified target groups or all of your target groups. By default, all target
|
|
391
|
-
* groups are described. Alternatively, you can specify one of the following to filter the
|
|
392
|
-
* results: the ARN of the load balancer, the names of one or more target groups, or the ARNs of
|
|
393
|
-
* one or more target groups.</p>
|
|
159
|
+
* @see {@link DescribeTargetGroupsCommand}
|
|
394
160
|
*/
|
|
395
161
|
describeTargetGroups(args: DescribeTargetGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTargetGroupsCommandOutput>;
|
|
396
162
|
describeTargetGroups(args: DescribeTargetGroupsCommandInput, cb: (err: any, data?: DescribeTargetGroupsCommandOutput) => void): void;
|
|
397
163
|
describeTargetGroups(args: DescribeTargetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTargetGroupsCommandOutput) => void): void;
|
|
398
164
|
/**
|
|
399
|
-
* @
|
|
400
|
-
* <p>Describes the health of the specified targets or all of your targets.</p>
|
|
165
|
+
* @see {@link DescribeTargetHealthCommand}
|
|
401
166
|
*/
|
|
402
167
|
describeTargetHealth(args: DescribeTargetHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTargetHealthCommandOutput>;
|
|
403
168
|
describeTargetHealth(args: DescribeTargetHealthCommandInput, cb: (err: any, data?: DescribeTargetHealthCommandOutput) => void): void;
|
|
404
169
|
describeTargetHealth(args: DescribeTargetHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTargetHealthCommandOutput) => void): void;
|
|
405
170
|
/**
|
|
406
|
-
* @
|
|
407
|
-
* <p>Replaces the specified properties of the specified listener. Any properties that you do
|
|
408
|
-
* not specify remain unchanged.</p>
|
|
409
|
-
* <p>Changing the protocol from HTTPS to HTTP, or from TLS to TCP, removes the security policy
|
|
410
|
-
* and default certificate properties. If you change the protocol from HTTP to HTTPS, or from TCP
|
|
411
|
-
* to TLS, you must add the security policy and default certificate properties.</p>
|
|
412
|
-
* <p>To add an item to a list, remove an item from a list, or update an item in a list, you
|
|
413
|
-
* must provide the entire list. For example, to add an action, specify a list with the current
|
|
414
|
-
* actions plus the new action.</p>
|
|
171
|
+
* @see {@link ModifyListenerCommand}
|
|
415
172
|
*/
|
|
416
173
|
modifyListener(args: ModifyListenerCommandInput, options?: __HttpHandlerOptions): Promise<ModifyListenerCommandOutput>;
|
|
417
174
|
modifyListener(args: ModifyListenerCommandInput, cb: (err: any, data?: ModifyListenerCommandOutput) => void): void;
|
|
418
175
|
modifyListener(args: ModifyListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyListenerCommandOutput) => void): void;
|
|
419
176
|
/**
|
|
420
|
-
* @
|
|
421
|
-
* <p>Modifies the specified attributes of the specified Application Load Balancer, Network Load
|
|
422
|
-
* Balancer, or Gateway Load Balancer.</p>
|
|
423
|
-
* <p>If any of the specified attributes can't be modified as requested, the call fails. Any
|
|
424
|
-
* existing attributes that you do not modify retain their current values.</p>
|
|
177
|
+
* @see {@link ModifyLoadBalancerAttributesCommand}
|
|
425
178
|
*/
|
|
426
179
|
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyLoadBalancerAttributesCommandOutput>;
|
|
427
180
|
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
|
|
428
181
|
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
|
|
429
182
|
/**
|
|
430
|
-
* @
|
|
431
|
-
* <p>Replaces the specified properties of the specified rule. Any properties that you do not
|
|
432
|
-
* specify are unchanged.</p>
|
|
433
|
-
* <p>To add an item to a list, remove an item from a list, or update an item in a list, you
|
|
434
|
-
* must provide the entire list. For example, to add an action, specify a list with the current
|
|
435
|
-
* actions plus the new action.</p>
|
|
183
|
+
* @see {@link ModifyRuleCommand}
|
|
436
184
|
*/
|
|
437
185
|
modifyRule(args: ModifyRuleCommandInput, options?: __HttpHandlerOptions): Promise<ModifyRuleCommandOutput>;
|
|
438
186
|
modifyRule(args: ModifyRuleCommandInput, cb: (err: any, data?: ModifyRuleCommandOutput) => void): void;
|
|
439
187
|
modifyRule(args: ModifyRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyRuleCommandOutput) => void): void;
|
|
440
188
|
/**
|
|
441
|
-
* @
|
|
442
|
-
* <p>Modifies the health checks used when evaluating the health state of the targets in the
|
|
443
|
-
* specified target group.</p>
|
|
189
|
+
* @see {@link ModifyTargetGroupCommand}
|
|
444
190
|
*/
|
|
445
191
|
modifyTargetGroup(args: ModifyTargetGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTargetGroupCommandOutput>;
|
|
446
192
|
modifyTargetGroup(args: ModifyTargetGroupCommandInput, cb: (err: any, data?: ModifyTargetGroupCommandOutput) => void): void;
|
|
447
193
|
modifyTargetGroup(args: ModifyTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTargetGroupCommandOutput) => void): void;
|
|
448
194
|
/**
|
|
449
|
-
* @
|
|
450
|
-
* <p>Modifies the specified attributes of the specified target group.</p>
|
|
195
|
+
* @see {@link ModifyTargetGroupAttributesCommand}
|
|
451
196
|
*/
|
|
452
197
|
modifyTargetGroupAttributes(args: ModifyTargetGroupAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTargetGroupAttributesCommandOutput>;
|
|
453
198
|
modifyTargetGroupAttributes(args: ModifyTargetGroupAttributesCommandInput, cb: (err: any, data?: ModifyTargetGroupAttributesCommandOutput) => void): void;
|
|
454
199
|
modifyTargetGroupAttributes(args: ModifyTargetGroupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTargetGroupAttributesCommandOutput) => void): void;
|
|
455
200
|
/**
|
|
456
|
-
* @
|
|
457
|
-
* <p>Registers the specified targets with the specified target group.</p>
|
|
458
|
-
* <p>If the target is an EC2 instance, it must be in the <code>running</code> state when you
|
|
459
|
-
* register it.</p>
|
|
460
|
-
* <p>By default, the load balancer routes requests to registered targets using the protocol and
|
|
461
|
-
* port for the target group. Alternatively, you can override the port for a target when you
|
|
462
|
-
* register it. You can register each EC2 instance or IP address with the same target group
|
|
463
|
-
* multiple times using different ports.</p>
|
|
464
|
-
* <p>With a Network Load Balancer, you cannot register instances by instance ID if they have
|
|
465
|
-
* the following instance types: C1, CC1, CC2, CG1, CG2, CR1, CS1, G1, G2, HI1, HS1, M1, M2, M3,
|
|
466
|
-
* and T1. You can register instances of these types by IP address.</p>
|
|
201
|
+
* @see {@link RegisterTargetsCommand}
|
|
467
202
|
*/
|
|
468
203
|
registerTargets(args: RegisterTargetsCommandInput, options?: __HttpHandlerOptions): Promise<RegisterTargetsCommandOutput>;
|
|
469
204
|
registerTargets(args: RegisterTargetsCommandInput, cb: (err: any, data?: RegisterTargetsCommandOutput) => void): void;
|
|
470
205
|
registerTargets(args: RegisterTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTargetsCommandOutput) => void): void;
|
|
471
206
|
/**
|
|
472
|
-
* @
|
|
473
|
-
* <p>Removes the specified certificate from the certificate list for the specified HTTPS or TLS
|
|
474
|
-
* listener.</p>
|
|
207
|
+
* @see {@link RemoveListenerCertificatesCommand}
|
|
475
208
|
*/
|
|
476
209
|
removeListenerCertificates(args: RemoveListenerCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<RemoveListenerCertificatesCommandOutput>;
|
|
477
210
|
removeListenerCertificates(args: RemoveListenerCertificatesCommandInput, cb: (err: any, data?: RemoveListenerCertificatesCommandOutput) => void): void;
|
|
478
211
|
removeListenerCertificates(args: RemoveListenerCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveListenerCertificatesCommandOutput) => void): void;
|
|
479
212
|
/**
|
|
480
|
-
* @
|
|
481
|
-
* <p>Removes the specified tags from the specified Elastic Load Balancing resources. You can
|
|
482
|
-
* remove the tags for one or more Application Load Balancers, Network Load Balancers, Gateway
|
|
483
|
-
* Load Balancers, target groups, listeners, or rules.</p>
|
|
213
|
+
* @see {@link RemoveTagsCommand}
|
|
484
214
|
*/
|
|
485
215
|
removeTags(args: RemoveTagsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsCommandOutput>;
|
|
486
216
|
removeTags(args: RemoveTagsCommandInput, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
487
217
|
removeTags(args: RemoveTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
488
218
|
/**
|
|
489
|
-
* @
|
|
490
|
-
* <p>Sets the type of IP addresses used by the subnets of the specified load balancer.</p>
|
|
219
|
+
* @see {@link SetIpAddressTypeCommand}
|
|
491
220
|
*/
|
|
492
221
|
setIpAddressType(args: SetIpAddressTypeCommandInput, options?: __HttpHandlerOptions): Promise<SetIpAddressTypeCommandOutput>;
|
|
493
222
|
setIpAddressType(args: SetIpAddressTypeCommandInput, cb: (err: any, data?: SetIpAddressTypeCommandOutput) => void): void;
|
|
494
223
|
setIpAddressType(args: SetIpAddressTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIpAddressTypeCommandOutput) => void): void;
|
|
495
224
|
/**
|
|
496
|
-
* @
|
|
497
|
-
* <p>Sets the priorities of the specified rules.</p>
|
|
498
|
-
* <p>You can reorder the rules as long as there are no priority conflicts in the new order. Any
|
|
499
|
-
* existing rules that you do not specify retain their current priority.</p>
|
|
225
|
+
* @see {@link SetRulePrioritiesCommand}
|
|
500
226
|
*/
|
|
501
227
|
setRulePriorities(args: SetRulePrioritiesCommandInput, options?: __HttpHandlerOptions): Promise<SetRulePrioritiesCommandOutput>;
|
|
502
228
|
setRulePriorities(args: SetRulePrioritiesCommandInput, cb: (err: any, data?: SetRulePrioritiesCommandOutput) => void): void;
|
|
503
229
|
setRulePriorities(args: SetRulePrioritiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetRulePrioritiesCommandOutput) => void): void;
|
|
504
230
|
/**
|
|
505
|
-
* @
|
|
506
|
-
* <p>Associates the specified security groups with the specified Application Load Balancer. The
|
|
507
|
-
* specified security groups override the previously associated security groups.</p>
|
|
508
|
-
* <p>You can't specify a security group for a Network Load Balancer or Gateway Load
|
|
509
|
-
* Balancer.</p>
|
|
231
|
+
* @see {@link SetSecurityGroupsCommand}
|
|
510
232
|
*/
|
|
511
233
|
setSecurityGroups(args: SetSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<SetSecurityGroupsCommandOutput>;
|
|
512
234
|
setSecurityGroups(args: SetSecurityGroupsCommandInput, cb: (err: any, data?: SetSecurityGroupsCommandOutput) => void): void;
|
|
513
235
|
setSecurityGroups(args: SetSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetSecurityGroupsCommandOutput) => void): void;
|
|
514
236
|
/**
|
|
515
|
-
* @
|
|
516
|
-
* <p>Enables the Availability Zones for the specified public subnets for the specified
|
|
517
|
-
* Application Load Balancer or Network Load Balancer. The specified subnets replace the
|
|
518
|
-
* previously enabled subnets.</p>
|
|
519
|
-
* <p>When you specify subnets for a Network Load Balancer, you must include all subnets that
|
|
520
|
-
* were enabled previously, with their existing configurations, plus any additional
|
|
521
|
-
* subnets.</p>
|
|
237
|
+
* @see {@link SetSubnetsCommand}
|
|
522
238
|
*/
|
|
523
239
|
setSubnets(args: SetSubnetsCommandInput, options?: __HttpHandlerOptions): Promise<SetSubnetsCommandOutput>;
|
|
524
240
|
setSubnets(args: SetSubnetsCommandInput, cb: (err: any, data?: SetSubnetsCommandOutput) => void): void;
|
|
525
241
|
setSubnets(args: SetSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetSubnetsCommandOutput) => void): void;
|
|
526
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
* <fullname>Elastic Load Balancing</fullname>
|
|
246
|
+
* <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances.
|
|
247
|
+
* This enables you to increase the availability of your application. The load balancer also
|
|
248
|
+
* monitors the health of its registered targets and ensures that it routes traffic only to
|
|
249
|
+
* healthy targets. You configure your load balancer to accept incoming traffic by specifying one
|
|
250
|
+
* or more listeners, which are configured with a protocol and port number for connections from
|
|
251
|
+
* clients to the load balancer. You configure a target group with a protocol and port number for
|
|
252
|
+
* connections from the load balancer to the targets, and with health check settings to be used
|
|
253
|
+
* when checking the health status of the targets.</p>
|
|
254
|
+
* <p>Elastic Load Balancing supports the following types of load balancers: Application Load
|
|
255
|
+
* Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers. This
|
|
256
|
+
* reference covers the following load balancer types:</p>
|
|
257
|
+
* <ul>
|
|
258
|
+
* <li>
|
|
259
|
+
* <p>Application Load Balancer - Operates at the application layer (layer 7) and supports
|
|
260
|
+
* HTTP and HTTPS.</p>
|
|
261
|
+
* </li>
|
|
262
|
+
* <li>
|
|
263
|
+
* <p>Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP,
|
|
264
|
+
* TLS, and UDP.</p>
|
|
265
|
+
* </li>
|
|
266
|
+
* <li>
|
|
267
|
+
* <p>Gateway Load Balancer - Operates at the network layer (layer 3).</p>
|
|
268
|
+
* </li>
|
|
269
|
+
* </ul>
|
|
270
|
+
* <p>For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User
|
|
271
|
+
* Guide</a>.</p>
|
|
272
|
+
* <p>All Elastic Load Balancing operations are idempotent, which means that they complete at
|
|
273
|
+
* most one time. If you repeat an operation, it succeeds.</p>
|
|
274
|
+
*/
|
|
275
|
+
export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client implements ElasticLoadBalancingV2 {
|
|
276
|
+
}
|
|
@@ -136,7 +136,7 @@ import {
|
|
|
136
136
|
SetSubnetsCommandOutput,
|
|
137
137
|
} from "./commands/SetSubnetsCommand";
|
|
138
138
|
import { ElasticLoadBalancingV2Client } from "./ElasticLoadBalancingV2Client";
|
|
139
|
-
export
|
|
139
|
+
export interface ElasticLoadBalancingV2 {
|
|
140
140
|
addListenerCertificates(
|
|
141
141
|
args: AddListenerCertificatesCommandInput,
|
|
142
142
|
options?: __HttpHandlerOptions
|
|
@@ -580,3 +580,6 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
|
|
|
580
580
|
cb: (err: any, data?: SetSubnetsCommandOutput) => void
|
|
581
581
|
): void;
|
|
582
582
|
}
|
|
583
|
+
export declare class ElasticLoadBalancingV2
|
|
584
|
+
extends ElasticLoadBalancingV2Client
|
|
585
|
+
implements ElasticLoadBalancingV2 {}
|
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.316.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|