@aws-sdk/client-elastic-load-balancing-v2 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist-cjs/protocols/Aws_query.js +97 -407
  2. package/dist-es/protocols/Aws_query.js +97 -407
  3. package/dist-types/ElasticLoadBalancingV2.d.ts +35 -0
  4. package/dist-types/ElasticLoadBalancingV2Client.d.ts +24 -4
  5. package/dist-types/commands/AddListenerCertificatesCommand.d.ts +16 -0
  6. package/dist-types/commands/AddTagsCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateRuleCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateTargetGroupCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteListenerCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteTargetGroupCommand.d.ts +16 -0
  15. package/dist-types/commands/DeregisterTargetsCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeListenersCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeRulesCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribeTargetHealthCommand.d.ts +16 -0
  27. package/dist-types/commands/ModifyListenerCommand.d.ts +16 -0
  28. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +16 -0
  29. package/dist-types/commands/ModifyRuleCommand.d.ts +16 -0
  30. package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +16 -0
  31. package/dist-types/commands/ModifyTargetGroupCommand.d.ts +16 -0
  32. package/dist-types/commands/RegisterTargetsCommand.d.ts +16 -0
  33. package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +16 -0
  34. package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
  35. package/dist-types/commands/SetIpAddressTypeCommand.d.ts +16 -0
  36. package/dist-types/commands/SetRulePrioritiesCommand.d.ts +16 -0
  37. package/dist-types/commands/SetSecurityGroupsCommand.d.ts +16 -0
  38. package/dist-types/commands/SetSubnetsCommand.d.ts +16 -0
  39. package/dist-types/models/ElasticLoadBalancingV2ServiceException.d.ts +2 -0
  40. package/dist-types/models/models_0.d.ts +328 -11
  41. package/dist-types/pagination/DescribeListenersPaginator.d.ts +3 -0
  42. package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +3 -0
  43. package/dist-types/pagination/DescribeTargetGroupsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/Interfaces.d.ts +3 -0
  45. package/package.json +3 -3
@@ -35,6 +35,7 @@ import { SetSecurityGroupsCommandInput, SetSecurityGroupsCommandOutput } from ".
35
35
  import { SetSubnetsCommandInput, SetSubnetsCommandOutput } from "./commands/SetSubnetsCommand";
36
36
  import { ElasticLoadBalancingV2Client } from "./ElasticLoadBalancingV2Client";
37
37
  /**
38
+ * @public
38
39
  * <fullname>Elastic Load Balancing</fullname>
39
40
  * <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances.
40
41
  * This enables you to increase the availability of your application. The load balancer also
@@ -67,6 +68,7 @@ import { ElasticLoadBalancingV2Client } from "./ElasticLoadBalancingV2Client";
67
68
  */
68
69
  export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client {
69
70
  /**
71
+ * @public
70
72
  * <p>Adds the specified SSL server certificate to the certificate list for the specified HTTPS
71
73
  * or TLS listener.</p>
72
74
  * <p>If the certificate in already in the certificate list, the call is successful but the
@@ -79,6 +81,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
79
81
  addListenerCertificates(args: AddListenerCertificatesCommandInput, cb: (err: any, data?: AddListenerCertificatesCommandOutput) => void): void;
80
82
  addListenerCertificates(args: AddListenerCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddListenerCertificatesCommandOutput) => void): void;
81
83
  /**
84
+ * @public
82
85
  * <p>Adds the specified tags to the specified Elastic Load Balancing resource. You can tag your
83
86
  * Application Load Balancers, Network Load Balancers, Gateway Load Balancers, target groups,
84
87
  * listeners, and rules.</p>
@@ -89,6 +92,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
89
92
  addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
90
93
  addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
91
94
  /**
95
+ * @public
92
96
  * <p>Creates a listener for the specified Application Load Balancer, Network Load Balancer, or
93
97
  * Gateway Load Balancer.</p>
94
98
  * <p>For more information, see the following:</p>
@@ -119,6 +123,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
119
123
  createListener(args: CreateListenerCommandInput, cb: (err: any, data?: CreateListenerCommandOutput) => void): void;
120
124
  createListener(args: CreateListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateListenerCommandOutput) => void): void;
121
125
  /**
126
+ * @public
122
127
  * <p>Creates an Application Load Balancer, Network Load Balancer, or Gateway Load
123
128
  * Balancer.</p>
124
129
  * <p>For more information, see the following:</p>
@@ -148,6 +153,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
148
153
  createLoadBalancer(args: CreateLoadBalancerCommandInput, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
149
154
  createLoadBalancer(args: CreateLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
150
155
  /**
156
+ * @public
151
157
  * <p>Creates a rule for the specified listener. The listener must be associated with an
152
158
  * Application Load Balancer.</p>
153
159
  * <p>Each rule consists of a priority, one or more actions, and one or more conditions. Rules
@@ -159,6 +165,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
159
165
  createRule(args: CreateRuleCommandInput, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
160
166
  createRule(args: CreateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
161
167
  /**
168
+ * @public
162
169
  * <p>Creates a target group.</p>
163
170
  * <p>For more information, see the following:</p>
164
171
  * <ul>
@@ -188,6 +195,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
188
195
  createTargetGroup(args: CreateTargetGroupCommandInput, cb: (err: any, data?: CreateTargetGroupCommandOutput) => void): void;
189
196
  createTargetGroup(args: CreateTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTargetGroupCommandOutput) => void): void;
190
197
  /**
198
+ * @public
191
199
  * <p>Deletes the specified listener.</p>
192
200
  * <p>Alternatively, your listener is deleted when you delete the load balancer to which it is
193
201
  * attached.</p>
@@ -196,6 +204,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
196
204
  deleteListener(args: DeleteListenerCommandInput, cb: (err: any, data?: DeleteListenerCommandOutput) => void): void;
197
205
  deleteListener(args: DeleteListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteListenerCommandOutput) => void): void;
198
206
  /**
207
+ * @public
199
208
  * <p>Deletes the specified Application Load Balancer, Network Load Balancer, or Gateway Load
200
209
  * Balancer. Deleting a load balancer also deletes its listeners.</p>
201
210
  * <p>You can't delete a load balancer if deletion protection is enabled. If the load balancer
@@ -208,6 +217,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
208
217
  deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
209
218
  deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
210
219
  /**
220
+ * @public
211
221
  * <p>Deletes the specified rule.</p>
212
222
  * <p>You can't delete the default rule.</p>
213
223
  */
@@ -215,6 +225,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
215
225
  deleteRule(args: DeleteRuleCommandInput, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
216
226
  deleteRule(args: DeleteRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
217
227
  /**
228
+ * @public
218
229
  * <p>Deletes the specified target group.</p>
219
230
  * <p>You can delete a target group if it is not referenced by any actions. Deleting a target
220
231
  * group also deletes any associated health checks. Deleting a target group does not affect its
@@ -225,6 +236,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
225
236
  deleteTargetGroup(args: DeleteTargetGroupCommandInput, cb: (err: any, data?: DeleteTargetGroupCommandOutput) => void): void;
226
237
  deleteTargetGroup(args: DeleteTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTargetGroupCommandOutput) => void): void;
227
238
  /**
239
+ * @public
228
240
  * <p>Deregisters the specified targets from the specified target group. After the targets are
229
241
  * deregistered, they no longer receive traffic from the load balancer.</p>
230
242
  */
@@ -232,6 +244,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
232
244
  deregisterTargets(args: DeregisterTargetsCommandInput, cb: (err: any, data?: DeregisterTargetsCommandOutput) => void): void;
233
245
  deregisterTargets(args: DeregisterTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterTargetsCommandOutput) => void): void;
234
246
  /**
247
+ * @public
235
248
  * <p>Describes the current Elastic Load Balancing resource limits for your Amazon Web Services
236
249
  * account.</p>
237
250
  * <p>For more information, see the following:</p>
@@ -260,6 +273,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
260
273
  describeAccountLimits(args: DescribeAccountLimitsCommandInput, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
261
274
  describeAccountLimits(args: DescribeAccountLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
262
275
  /**
276
+ * @public
263
277
  * <p>Describes the default certificate and the certificate list for the specified HTTPS or TLS
264
278
  * listener.</p>
265
279
  * <p>If the default certificate is also in the certificate list, it appears twice in the
@@ -273,6 +287,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
273
287
  describeListenerCertificates(args: DescribeListenerCertificatesCommandInput, cb: (err: any, data?: DescribeListenerCertificatesCommandOutput) => void): void;
274
288
  describeListenerCertificates(args: DescribeListenerCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeListenerCertificatesCommandOutput) => void): void;
275
289
  /**
290
+ * @public
276
291
  * <p>Describes the specified listeners or the listeners for the specified Application Load
277
292
  * Balancer, Network Load Balancer, or Gateway Load Balancer. You must specify either a load
278
293
  * balancer or one or more listeners.</p>
@@ -281,6 +296,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
281
296
  describeListeners(args: DescribeListenersCommandInput, cb: (err: any, data?: DescribeListenersCommandOutput) => void): void;
282
297
  describeListeners(args: DescribeListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeListenersCommandOutput) => void): void;
283
298
  /**
299
+ * @public
284
300
  * <p>Describes the attributes for the specified Application Load Balancer, Network Load
285
301
  * Balancer, or Gateway Load Balancer.</p>
286
302
  * <p>For more information, see the following:</p>
@@ -309,12 +325,14 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
309
325
  describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
310
326
  describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
311
327
  /**
328
+ * @public
312
329
  * <p>Describes the specified load balancers or all of your load balancers.</p>
313
330
  */
314
331
  describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancersCommandOutput>;
315
332
  describeLoadBalancers(args: DescribeLoadBalancersCommandInput, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
316
333
  describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
317
334
  /**
335
+ * @public
318
336
  * <p>Describes the specified rules or the rules for the specified listener. You must specify
319
337
  * either a listener or one or more rules.</p>
320
338
  */
@@ -322,6 +340,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
322
340
  describeRules(args: DescribeRulesCommandInput, cb: (err: any, data?: DescribeRulesCommandOutput) => void): void;
323
341
  describeRules(args: DescribeRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRulesCommandOutput) => void): void;
324
342
  /**
343
+ * @public
325
344
  * <p>Describes the specified policies or all policies used for SSL negotiation.</p>
326
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
327
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>
@@ -330,6 +349,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
330
349
  describeSSLPolicies(args: DescribeSSLPoliciesCommandInput, cb: (err: any, data?: DescribeSSLPoliciesCommandOutput) => void): void;
331
350
  describeSSLPolicies(args: DescribeSSLPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSSLPoliciesCommandOutput) => void): void;
332
351
  /**
352
+ * @public
333
353
  * <p>Describes the tags for the specified Elastic Load Balancing resources. You can describe
334
354
  * the tags for one or more Application Load Balancers, Network Load Balancers, Gateway Load
335
355
  * Balancers, target groups, listeners, or rules.</p>
@@ -338,6 +358,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
338
358
  describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
339
359
  describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
340
360
  /**
361
+ * @public
341
362
  * <p>Describes the attributes for the specified target group.</p>
342
363
  * <p>For more information, see the following:</p>
343
364
  * <ul>
@@ -365,6 +386,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
365
386
  describeTargetGroupAttributes(args: DescribeTargetGroupAttributesCommandInput, cb: (err: any, data?: DescribeTargetGroupAttributesCommandOutput) => void): void;
366
387
  describeTargetGroupAttributes(args: DescribeTargetGroupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTargetGroupAttributesCommandOutput) => void): void;
367
388
  /**
389
+ * @public
368
390
  * <p>Describes the specified target groups or all of your target groups. By default, all target
369
391
  * groups are described. Alternatively, you can specify one of the following to filter the
370
392
  * results: the ARN of the load balancer, the names of one or more target groups, or the ARNs of
@@ -374,12 +396,14 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
374
396
  describeTargetGroups(args: DescribeTargetGroupsCommandInput, cb: (err: any, data?: DescribeTargetGroupsCommandOutput) => void): void;
375
397
  describeTargetGroups(args: DescribeTargetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTargetGroupsCommandOutput) => void): void;
376
398
  /**
399
+ * @public
377
400
  * <p>Describes the health of the specified targets or all of your targets.</p>
378
401
  */
379
402
  describeTargetHealth(args: DescribeTargetHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTargetHealthCommandOutput>;
380
403
  describeTargetHealth(args: DescribeTargetHealthCommandInput, cb: (err: any, data?: DescribeTargetHealthCommandOutput) => void): void;
381
404
  describeTargetHealth(args: DescribeTargetHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTargetHealthCommandOutput) => void): void;
382
405
  /**
406
+ * @public
383
407
  * <p>Replaces the specified properties of the specified listener. Any properties that you do
384
408
  * not specify remain unchanged.</p>
385
409
  * <p>Changing the protocol from HTTPS to HTTP, or from TLS to TCP, removes the security policy
@@ -393,6 +417,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
393
417
  modifyListener(args: ModifyListenerCommandInput, cb: (err: any, data?: ModifyListenerCommandOutput) => void): void;
394
418
  modifyListener(args: ModifyListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyListenerCommandOutput) => void): void;
395
419
  /**
420
+ * @public
396
421
  * <p>Modifies the specified attributes of the specified Application Load Balancer, Network Load
397
422
  * Balancer, or Gateway Load Balancer.</p>
398
423
  * <p>If any of the specified attributes can't be modified as requested, the call fails. Any
@@ -402,6 +427,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
402
427
  modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
403
428
  modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
404
429
  /**
430
+ * @public
405
431
  * <p>Replaces the specified properties of the specified rule. Any properties that you do not
406
432
  * specify are unchanged.</p>
407
433
  * <p>To add an item to a list, remove an item from a list, or update an item in a list, you
@@ -412,6 +438,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
412
438
  modifyRule(args: ModifyRuleCommandInput, cb: (err: any, data?: ModifyRuleCommandOutput) => void): void;
413
439
  modifyRule(args: ModifyRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyRuleCommandOutput) => void): void;
414
440
  /**
441
+ * @public
415
442
  * <p>Modifies the health checks used when evaluating the health state of the targets in the
416
443
  * specified target group.</p>
417
444
  */
@@ -419,12 +446,14 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
419
446
  modifyTargetGroup(args: ModifyTargetGroupCommandInput, cb: (err: any, data?: ModifyTargetGroupCommandOutput) => void): void;
420
447
  modifyTargetGroup(args: ModifyTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTargetGroupCommandOutput) => void): void;
421
448
  /**
449
+ * @public
422
450
  * <p>Modifies the specified attributes of the specified target group.</p>
423
451
  */
424
452
  modifyTargetGroupAttributes(args: ModifyTargetGroupAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTargetGroupAttributesCommandOutput>;
425
453
  modifyTargetGroupAttributes(args: ModifyTargetGroupAttributesCommandInput, cb: (err: any, data?: ModifyTargetGroupAttributesCommandOutput) => void): void;
426
454
  modifyTargetGroupAttributes(args: ModifyTargetGroupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyTargetGroupAttributesCommandOutput) => void): void;
427
455
  /**
456
+ * @public
428
457
  * <p>Registers the specified targets with the specified target group.</p>
429
458
  * <p>If the target is an EC2 instance, it must be in the <code>running</code> state when you
430
459
  * register it.</p>
@@ -440,6 +469,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
440
469
  registerTargets(args: RegisterTargetsCommandInput, cb: (err: any, data?: RegisterTargetsCommandOutput) => void): void;
441
470
  registerTargets(args: RegisterTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTargetsCommandOutput) => void): void;
442
471
  /**
472
+ * @public
443
473
  * <p>Removes the specified certificate from the certificate list for the specified HTTPS or TLS
444
474
  * listener.</p>
445
475
  */
@@ -447,6 +477,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
447
477
  removeListenerCertificates(args: RemoveListenerCertificatesCommandInput, cb: (err: any, data?: RemoveListenerCertificatesCommandOutput) => void): void;
448
478
  removeListenerCertificates(args: RemoveListenerCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveListenerCertificatesCommandOutput) => void): void;
449
479
  /**
480
+ * @public
450
481
  * <p>Removes the specified tags from the specified Elastic Load Balancing resources. You can
451
482
  * remove the tags for one or more Application Load Balancers, Network Load Balancers, Gateway
452
483
  * Load Balancers, target groups, listeners, or rules.</p>
@@ -455,12 +486,14 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
455
486
  removeTags(args: RemoveTagsCommandInput, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
456
487
  removeTags(args: RemoveTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
457
488
  /**
489
+ * @public
458
490
  * <p>Sets the type of IP addresses used by the subnets of the specified load balancer.</p>
459
491
  */
460
492
  setIpAddressType(args: SetIpAddressTypeCommandInput, options?: __HttpHandlerOptions): Promise<SetIpAddressTypeCommandOutput>;
461
493
  setIpAddressType(args: SetIpAddressTypeCommandInput, cb: (err: any, data?: SetIpAddressTypeCommandOutput) => void): void;
462
494
  setIpAddressType(args: SetIpAddressTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetIpAddressTypeCommandOutput) => void): void;
463
495
  /**
496
+ * @public
464
497
  * <p>Sets the priorities of the specified rules.</p>
465
498
  * <p>You can reorder the rules as long as there are no priority conflicts in the new order. Any
466
499
  * existing rules that you do not specify retain their current priority.</p>
@@ -469,6 +502,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
469
502
  setRulePriorities(args: SetRulePrioritiesCommandInput, cb: (err: any, data?: SetRulePrioritiesCommandOutput) => void): void;
470
503
  setRulePriorities(args: SetRulePrioritiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetRulePrioritiesCommandOutput) => void): void;
471
504
  /**
505
+ * @public
472
506
  * <p>Associates the specified security groups with the specified Application Load Balancer. The
473
507
  * specified security groups override the previously associated security groups.</p>
474
508
  * <p>You can't specify a security group for a Network Load Balancer or Gateway Load
@@ -478,6 +512,7 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
478
512
  setSecurityGroups(args: SetSecurityGroupsCommandInput, cb: (err: any, data?: SetSecurityGroupsCommandOutput) => void): void;
479
513
  setSecurityGroups(args: SetSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetSecurityGroupsCommandOutput) => void): void;
480
514
  /**
515
+ * @public
481
516
  * <p>Enables the Availability Zones for the specified public subnets for the specified
482
517
  * Application Load Balancer or Network Load Balancer. The specified subnets replace the
483
518
  * previously enabled subnets.</p>
@@ -42,15 +42,24 @@ import { SetRulePrioritiesCommandInput, SetRulePrioritiesCommandOutput } from ".
42
42
  import { SetSecurityGroupsCommandInput, SetSecurityGroupsCommandOutput } from "./commands/SetSecurityGroupsCommand";
43
43
  import { SetSubnetsCommandInput, SetSubnetsCommandOutput } from "./commands/SetSubnetsCommand";
44
44
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
45
+ /**
46
+ * @public
47
+ */
45
48
  export type ServiceInputTypes = AddListenerCertificatesCommandInput | AddTagsCommandInput | CreateListenerCommandInput | CreateLoadBalancerCommandInput | CreateRuleCommandInput | CreateTargetGroupCommandInput | DeleteListenerCommandInput | DeleteLoadBalancerCommandInput | DeleteRuleCommandInput | DeleteTargetGroupCommandInput | DeregisterTargetsCommandInput | DescribeAccountLimitsCommandInput | DescribeListenerCertificatesCommandInput | DescribeListenersCommandInput | DescribeLoadBalancerAttributesCommandInput | DescribeLoadBalancersCommandInput | DescribeRulesCommandInput | DescribeSSLPoliciesCommandInput | DescribeTagsCommandInput | DescribeTargetGroupAttributesCommandInput | DescribeTargetGroupsCommandInput | DescribeTargetHealthCommandInput | ModifyListenerCommandInput | ModifyLoadBalancerAttributesCommandInput | ModifyRuleCommandInput | ModifyTargetGroupAttributesCommandInput | ModifyTargetGroupCommandInput | RegisterTargetsCommandInput | RemoveListenerCertificatesCommandInput | RemoveTagsCommandInput | SetIpAddressTypeCommandInput | SetRulePrioritiesCommandInput | SetSecurityGroupsCommandInput | SetSubnetsCommandInput;
49
+ /**
50
+ * @public
51
+ */
46
52
  export type ServiceOutputTypes = AddListenerCertificatesCommandOutput | AddTagsCommandOutput | CreateListenerCommandOutput | CreateLoadBalancerCommandOutput | CreateRuleCommandOutput | CreateTargetGroupCommandOutput | DeleteListenerCommandOutput | DeleteLoadBalancerCommandOutput | DeleteRuleCommandOutput | DeleteTargetGroupCommandOutput | DeregisterTargetsCommandOutput | DescribeAccountLimitsCommandOutput | DescribeListenerCertificatesCommandOutput | DescribeListenersCommandOutput | DescribeLoadBalancerAttributesCommandOutput | DescribeLoadBalancersCommandOutput | DescribeRulesCommandOutput | DescribeSSLPoliciesCommandOutput | DescribeTagsCommandOutput | DescribeTargetGroupAttributesCommandOutput | DescribeTargetGroupsCommandOutput | DescribeTargetHealthCommandOutput | ModifyListenerCommandOutput | ModifyLoadBalancerAttributesCommandOutput | ModifyRuleCommandOutput | ModifyTargetGroupAttributesCommandOutput | ModifyTargetGroupCommandOutput | RegisterTargetsCommandOutput | RemoveListenerCertificatesCommandOutput | RemoveTagsCommandOutput | SetIpAddressTypeCommandOutput | SetRulePrioritiesCommandOutput | SetSecurityGroupsCommandOutput | SetSubnetsCommandOutput;
53
+ /**
54
+ * @public
55
+ */
47
56
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
48
57
  /**
49
58
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
50
59
  */
51
60
  requestHandler?: __HttpHandler;
52
61
  /**
53
- * A constructor for a class implementing the {@link __Checksum} interface
62
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
54
63
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
55
64
  * @internal
56
65
  */
@@ -140,23 +149,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
140
149
  */
141
150
  logger?: __Logger;
142
151
  /**
143
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
152
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
144
153
  */
145
154
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
146
155
  }
156
+ /**
157
+ * @public
158
+ */
147
159
  type ElasticLoadBalancingV2ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
148
160
  /**
149
- * The configuration interface of ElasticLoadBalancingV2Client class constructor that set the region, credentials and other options.
161
+ * @public
162
+ *
163
+ * The configuration interface of ElasticLoadBalancingV2Client class constructor that set the region, credentials and other options.
150
164
  */
151
165
  export interface ElasticLoadBalancingV2ClientConfig extends ElasticLoadBalancingV2ClientConfigType {
152
166
  }
167
+ /**
168
+ * @public
169
+ */
153
170
  type ElasticLoadBalancingV2ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
154
171
  /**
155
- * The resolved configuration interface of ElasticLoadBalancingV2Client class. This is resolved and normalized from the {@link ElasticLoadBalancingV2ClientConfig | constructor configuration interface}.
172
+ * @public
173
+ *
174
+ * The resolved configuration interface of ElasticLoadBalancingV2Client class. This is resolved and normalized from the {@link ElasticLoadBalancingV2ClientConfig | constructor configuration interface}.
156
175
  */
157
176
  export interface ElasticLoadBalancingV2ClientResolvedConfig extends ElasticLoadBalancingV2ClientResolvedConfigType {
158
177
  }
159
178
  /**
179
+ * @public
160
180
  * <fullname>Elastic Load Balancing</fullname>
161
181
  * <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances.
162
182
  * This enables you to increase the availability of your application. The load balancer also
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { AddListenerCertificatesInput, AddListenerCertificatesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddListenerCertificatesCommand}.
8
10
  */
9
11
  export interface AddListenerCertificatesCommandInput extends AddListenerCertificatesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddListenerCertificatesCommand}.
13
17
  */
14
18
  export interface AddListenerCertificatesCommandOutput extends AddListenerCertificatesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds the specified SSL server certificate to the certificate list for the specified HTTPS
18
23
  * or TLS listener.</p>
19
24
  * <p>If the certificate in already in the certificate list, the call is successful but the
@@ -31,6 +36,8 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param AddListenerCertificatesCommandInput - {@link AddListenerCertificatesCommandInput}
40
+ * @returns {@link AddListenerCertificatesCommandOutput}
34
41
  * @see {@link AddListenerCertificatesCommandInput} for command's `input` shape.
35
42
  * @see {@link AddListenerCertificatesCommandOutput} for command's `response` shape.
36
43
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -49,11 +56,20 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi
49
56
  export declare class AddListenerCertificatesCommand extends $Command<AddListenerCertificatesCommandInput, AddListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
50
57
  readonly input: AddListenerCertificatesCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: AddListenerCertificatesCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddListenerCertificatesCommandInput, AddListenerCertificatesCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { AddTagsInput, AddTagsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddTagsCommand}.
8
10
  */
9
11
  export interface AddTagsCommandInput extends AddTagsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddTagsCommand}.
13
17
  */
14
18
  export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds the specified tags to the specified Elastic Load Balancing resource. You can tag your
18
23
  * Application Load Balancers, Network Load Balancers, Gateway Load Balancers, target groups,
19
24
  * listeners, and rules.</p>
@@ -29,6 +34,8 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param AddTagsCommandInput - {@link AddTagsCommandInput}
38
+ * @returns {@link AddTagsCommandOutput}
32
39
  * @see {@link AddTagsCommandInput} for command's `input` shape.
33
40
  * @see {@link AddTagsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -79,11 +86,20 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
79
86
  export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
80
87
  readonly input: AddTagsCommandInput;
81
88
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
89
+ /**
90
+ * @public
91
+ */
82
92
  constructor(input: AddTagsCommandInput);
83
93
  /**
84
94
  * @internal
85
95
  */
86
96
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsCommandInput, AddTagsCommandOutput>;
97
+ /**
98
+ * @internal
99
+ */
87
100
  private serialize;
101
+ /**
102
+ * @internal
103
+ */
88
104
  private deserialize;
89
105
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { CreateListenerInput, CreateListenerOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateListenerCommand}.
8
10
  */
9
11
  export interface CreateListenerCommandInput extends CreateListenerInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateListenerCommand}.
13
17
  */
14
18
  export interface CreateListenerCommandOutput extends CreateListenerOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a listener for the specified Application Load Balancer, Network Load Balancer, or
18
23
  * Gateway Load Balancer.</p>
19
24
  * <p>For more information, see the following:</p>
@@ -49,6 +54,8 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
49
54
  * const response = await client.send(command);
50
55
  * ```
51
56
  *
57
+ * @param CreateListenerCommandInput - {@link CreateListenerCommandInput}
58
+ * @returns {@link CreateListenerCommandOutput}
52
59
  * @see {@link CreateListenerCommandInput} for command's `input` shape.
53
60
  * @see {@link CreateListenerCommandOutput} for command's `response` shape.
54
61
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -201,11 +208,20 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
201
208
  export declare class CreateListenerCommand extends $Command<CreateListenerCommandInput, CreateListenerCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
202
209
  readonly input: CreateListenerCommandInput;
203
210
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
211
+ /**
212
+ * @public
213
+ */
204
214
  constructor(input: CreateListenerCommandInput);
205
215
  /**
206
216
  * @internal
207
217
  */
208
218
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateListenerCommandInput, CreateListenerCommandOutput>;
219
+ /**
220
+ * @internal
221
+ */
209
222
  private serialize;
223
+ /**
224
+ * @internal
225
+ */
210
226
  private deserialize;
211
227
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { CreateLoadBalancerInput, CreateLoadBalancerOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateLoadBalancerCommand}.
8
10
  */
9
11
  export interface CreateLoadBalancerCommandInput extends CreateLoadBalancerInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateLoadBalancerCommand}.
13
17
  */
14
18
  export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an Application Load Balancer, Network Load Balancer, or Gateway Load
18
23
  * Balancer.</p>
19
24
  * <p>For more information, see the following:</p>
@@ -48,6 +53,8 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu
48
53
  * const response = await client.send(command);
49
54
  * ```
50
55
  *
56
+ * @param CreateLoadBalancerCommandInput - {@link CreateLoadBalancerCommandInput}
57
+ * @returns {@link CreateLoadBalancerCommandOutput}
51
58
  * @see {@link CreateLoadBalancerCommandInput} for command's `input` shape.
52
59
  * @see {@link CreateLoadBalancerCommandOutput} for command's `response` shape.
53
60
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -193,11 +200,20 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu
193
200
  export declare class CreateLoadBalancerCommand extends $Command<CreateLoadBalancerCommandInput, CreateLoadBalancerCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
194
201
  readonly input: CreateLoadBalancerCommandInput;
195
202
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
203
+ /**
204
+ * @public
205
+ */
196
206
  constructor(input: CreateLoadBalancerCommandInput);
197
207
  /**
198
208
  * @internal
199
209
  */
200
210
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLoadBalancerCommandInput, CreateLoadBalancerCommandOutput>;
211
+ /**
212
+ * @internal
213
+ */
201
214
  private serialize;
215
+ /**
216
+ * @internal
217
+ */
202
218
  private deserialize;
203
219
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { CreateRuleInput, CreateRuleOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateRuleCommand}.
8
10
  */
9
11
  export interface CreateRuleCommandInput extends CreateRuleInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateRuleCommand}.
13
17
  */
14
18
  export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a rule for the specified listener. The listener must be associated with an
18
23
  * Application Load Balancer.</p>
19
24
  * <p>Each rule consists of a priority, one or more actions, and one or more conditions. Rules
@@ -30,6 +35,8 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param CreateRuleCommandInput - {@link CreateRuleCommandInput}
39
+ * @returns {@link CreateRuleCommandOutput}
33
40
  * @see {@link CreateRuleCommandInput} for command's `input` shape.
34
41
  * @see {@link CreateRuleCommandOutput} for command's `response` shape.
35
42
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -139,11 +146,20 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
139
146
  export declare class CreateRuleCommand extends $Command<CreateRuleCommandInput, CreateRuleCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
140
147
  readonly input: CreateRuleCommandInput;
141
148
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
149
+ /**
150
+ * @public
151
+ */
142
152
  constructor(input: CreateRuleCommandInput);
143
153
  /**
144
154
  * @internal
145
155
  */
146
156
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRuleCommandInput, CreateRuleCommandOutput>;
157
+ /**
158
+ * @internal
159
+ */
147
160
  private serialize;
161
+ /**
162
+ * @internal
163
+ */
148
164
  private deserialize;
149
165
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client";
5
5
  import { CreateTargetGroupInput, CreateTargetGroupOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateTargetGroupCommand}.
8
10
  */
9
11
  export interface CreateTargetGroupCommandInput extends CreateTargetGroupInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateTargetGroupCommand}.
13
17
  */
14
18
  export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a target group.</p>
18
23
  * <p>For more information, see the following:</p>
19
24
  * <ul>
@@ -48,6 +53,8 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
48
53
  * const response = await client.send(command);
49
54
  * ```
50
55
  *
56
+ * @param CreateTargetGroupCommandInput - {@link CreateTargetGroupCommandInput}
57
+ * @returns {@link CreateTargetGroupCommandOutput}
51
58
  * @see {@link CreateTargetGroupCommandInput} for command's `input` shape.
52
59
  * @see {@link CreateTargetGroupCommandOutput} for command's `response` shape.
53
60
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
@@ -107,11 +114,20 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
107
114
  export declare class CreateTargetGroupCommand extends $Command<CreateTargetGroupCommandInput, CreateTargetGroupCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
108
115
  readonly input: CreateTargetGroupCommandInput;
109
116
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
117
+ /**
118
+ * @public
119
+ */
110
120
  constructor(input: CreateTargetGroupCommandInput);
111
121
  /**
112
122
  * @internal
113
123
  */
114
124
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTargetGroupCommandInput, CreateTargetGroupCommandOutput>;
125
+ /**
126
+ * @internal
127
+ */
115
128
  private serialize;
129
+ /**
130
+ * @internal
131
+ */
116
132
  private deserialize;
117
133
  }