@aws-sdk/client-elastic-load-balancing 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -25,6 +25,7 @@
25
25
  */
26
26
  export * from "./ElasticLoadBalancingClient";
27
27
  export * from "./ElasticLoadBalancing";
28
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
28
29
  export * from "./commands";
29
30
  export * from "./pagination";
30
31
  export * from "./waiters";
@@ -6,19 +6,23 @@ import { ElasticLoadBalancingServiceException as __BaseException } from "./Elast
6
6
  */
7
7
  export interface AccessLog {
8
8
  /**
9
+ * @public
9
10
  * <p>Specifies whether access logs are enabled for the load balancer.</p>
10
11
  */
11
12
  Enabled: boolean | undefined;
12
13
  /**
14
+ * @public
13
15
  * <p>The name of the Amazon S3 bucket where the access logs are stored.</p>
14
16
  */
15
17
  S3BucketName?: string;
16
18
  /**
19
+ * @public
17
20
  * <p>The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.</p>
18
21
  * <p>Default: 60 minutes</p>
19
22
  */
20
23
  EmitInterval?: number;
21
24
  /**
25
+ * @public
22
26
  * <p>The logical hierarchy you created for your Amazon S3 bucket, for example <code>my-bucket-prefix/prod</code>.
23
27
  * If the prefix is not provided, the log is placed at the root level of the bucket.</p>
24
28
  */
@@ -43,10 +47,12 @@ export declare class AccessPointNotFoundException extends __BaseException {
43
47
  */
44
48
  export interface AddAvailabilityZonesInput {
45
49
  /**
50
+ * @public
46
51
  * <p>The name of the load balancer.</p>
47
52
  */
48
53
  LoadBalancerName: string | undefined;
49
54
  /**
55
+ * @public
50
56
  * <p>The Availability Zones. These must be in the same region as the load balancer.</p>
51
57
  */
52
58
  AvailabilityZones: string[] | undefined;
@@ -57,6 +63,7 @@ export interface AddAvailabilityZonesInput {
57
63
  */
58
64
  export interface AddAvailabilityZonesOutput {
59
65
  /**
66
+ * @public
60
67
  * <p>The updated list of Availability Zones for the load balancer.</p>
61
68
  */
62
69
  AvailabilityZones?: string[];
@@ -67,6 +74,7 @@ export interface AddAvailabilityZonesOutput {
67
74
  */
68
75
  export interface AdditionalAttribute {
69
76
  /**
77
+ * @public
70
78
  * <p>The name of the attribute.</p>
71
79
  * <p>The following attribute is supported.</p>
72
80
  * <ul>
@@ -80,6 +88,7 @@ export interface AdditionalAttribute {
80
88
  */
81
89
  Key?: string;
82
90
  /**
91
+ * @public
83
92
  * <p>This value of the attribute.</p>
84
93
  */
85
94
  Value?: string;
@@ -90,10 +99,12 @@ export interface AdditionalAttribute {
90
99
  */
91
100
  export interface Tag {
92
101
  /**
102
+ * @public
93
103
  * <p>The key of the tag.</p>
94
104
  */
95
105
  Key: string | undefined;
96
106
  /**
107
+ * @public
97
108
  * <p>The value of the tag.</p>
98
109
  */
99
110
  Value?: string;
@@ -104,10 +115,12 @@ export interface Tag {
104
115
  */
105
116
  export interface AddTagsInput {
106
117
  /**
118
+ * @public
107
119
  * <p>The name of the load balancer. You can specify one load balancer only.</p>
108
120
  */
109
121
  LoadBalancerNames: string[] | undefined;
110
122
  /**
123
+ * @public
111
124
  * <p>The tags.</p>
112
125
  */
113
126
  Tags: Tag[] | undefined;
@@ -150,10 +163,12 @@ export declare class TooManyTagsException extends __BaseException {
150
163
  */
151
164
  export interface AppCookieStickinessPolicy {
152
165
  /**
166
+ * @public
153
167
  * <p>The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer.</p>
154
168
  */
155
169
  PolicyName?: string;
156
170
  /**
171
+ * @public
157
172
  * <p>The name of the application cookie used for stickiness.</p>
158
173
  */
159
174
  CookieName?: string;
@@ -164,10 +179,12 @@ export interface AppCookieStickinessPolicy {
164
179
  */
165
180
  export interface ApplySecurityGroupsToLoadBalancerInput {
166
181
  /**
182
+ * @public
167
183
  * <p>The name of the load balancer.</p>
168
184
  */
169
185
  LoadBalancerName: string | undefined;
170
186
  /**
187
+ * @public
171
188
  * <p>The IDs of the security groups to associate with the load balancer. Note that you cannot specify the name of the security group.</p>
172
189
  */
173
190
  SecurityGroups: string[] | undefined;
@@ -178,6 +195,7 @@ export interface ApplySecurityGroupsToLoadBalancerInput {
178
195
  */
179
196
  export interface ApplySecurityGroupsToLoadBalancerOutput {
180
197
  /**
198
+ * @public
181
199
  * <p>The IDs of the security groups associated with the load balancer.</p>
182
200
  */
183
201
  SecurityGroups?: string[];
@@ -214,10 +232,12 @@ export declare class InvalidSecurityGroupException extends __BaseException {
214
232
  */
215
233
  export interface AttachLoadBalancerToSubnetsInput {
216
234
  /**
235
+ * @public
217
236
  * <p>The name of the load balancer.</p>
218
237
  */
219
238
  LoadBalancerName: string | undefined;
220
239
  /**
240
+ * @public
221
241
  * <p>The IDs of the subnets to add. You can add only one subnet per Availability Zone.</p>
222
242
  */
223
243
  Subnets: string[] | undefined;
@@ -228,6 +248,7 @@ export interface AttachLoadBalancerToSubnetsInput {
228
248
  */
229
249
  export interface AttachLoadBalancerToSubnetsOutput {
230
250
  /**
251
+ * @public
231
252
  * <p>The IDs of the subnets attached to the load balancer.</p>
232
253
  */
233
254
  Subnets?: string[];
@@ -264,10 +285,12 @@ export declare class SubnetNotFoundException extends __BaseException {
264
285
  */
265
286
  export interface BackendServerDescription {
266
287
  /**
288
+ * @public
267
289
  * <p>The port on which the EC2 instance is listening.</p>
268
290
  */
269
291
  InstancePort?: number;
270
292
  /**
293
+ * @public
271
294
  * <p>The names of the policies enabled for the EC2 instance.</p>
272
295
  */
273
296
  PolicyNames?: string[];
@@ -293,6 +316,7 @@ export declare class CertificateNotFoundException extends __BaseException {
293
316
  */
294
317
  export interface HealthCheck {
295
318
  /**
319
+ * @public
296
320
  * <p>The instance being checked. The protocol is either TCP, HTTP, HTTPS, or SSL. The range of valid ports is one (1) through 65535.</p>
297
321
  * <p>TCP is the default, specified as a TCP: port pair, for example "TCP:5000". In this case, a health check simply attempts to open a TCP connection to the instance on the specified port. Failure to connect within the configured timeout is considered unhealthy.</p>
298
322
  * <p>SSL is also specified as SSL: port pair, for example, SSL:5000.</p>
@@ -301,19 +325,23 @@ export interface HealthCheck {
301
325
  */
302
326
  Target: string | undefined;
303
327
  /**
328
+ * @public
304
329
  * <p>The approximate interval, in seconds, between health checks of an individual instance.</p>
305
330
  */
306
331
  Interval: number | undefined;
307
332
  /**
333
+ * @public
308
334
  * <p>The amount of time, in seconds, during which no response means a failed health check.</p>
309
335
  * <p>This value must be less than the <code>Interval</code> value.</p>
310
336
  */
311
337
  Timeout: number | undefined;
312
338
  /**
339
+ * @public
313
340
  * <p>The number of consecutive health check failures required before moving the instance to the <code>Unhealthy</code> state.</p>
314
341
  */
315
342
  UnhealthyThreshold: number | undefined;
316
343
  /**
344
+ * @public
317
345
  * <p>The number of consecutive health checks successes required before moving the instance to the <code>Healthy</code> state.</p>
318
346
  */
319
347
  HealthyThreshold: number | undefined;
@@ -324,10 +352,12 @@ export interface HealthCheck {
324
352
  */
325
353
  export interface ConfigureHealthCheckInput {
326
354
  /**
355
+ * @public
327
356
  * <p>The name of the load balancer.</p>
328
357
  */
329
358
  LoadBalancerName: string | undefined;
330
359
  /**
360
+ * @public
331
361
  * <p>The configuration information.</p>
332
362
  */
333
363
  HealthCheck: HealthCheck | undefined;
@@ -338,6 +368,7 @@ export interface ConfigureHealthCheckInput {
338
368
  */
339
369
  export interface ConfigureHealthCheckOutput {
340
370
  /**
371
+ * @public
341
372
  * <p>The updated health check.</p>
342
373
  */
343
374
  HealthCheck?: HealthCheck;
@@ -348,10 +379,12 @@ export interface ConfigureHealthCheckOutput {
348
379
  */
349
380
  export interface ConnectionDraining {
350
381
  /**
382
+ * @public
351
383
  * <p>Specifies whether connection draining is enabled for the load balancer.</p>
352
384
  */
353
385
  Enabled: boolean | undefined;
354
386
  /**
387
+ * @public
355
388
  * <p>The maximum time, in seconds, to keep the existing connections open before deregistering the instances.</p>
356
389
  */
357
390
  Timeout?: number;
@@ -362,6 +395,7 @@ export interface ConnectionDraining {
362
395
  */
363
396
  export interface ConnectionSettings {
364
397
  /**
398
+ * @public
365
399
  * <p>The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.</p>
366
400
  */
367
401
  IdleTimeout: number | undefined;
@@ -374,14 +408,17 @@ export interface ConnectionSettings {
374
408
  */
375
409
  export interface Listener {
376
410
  /**
411
+ * @public
377
412
  * <p>The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL.</p>
378
413
  */
379
414
  Protocol: string | undefined;
380
415
  /**
416
+ * @public
381
417
  * <p>The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535.</p>
382
418
  */
383
419
  LoadBalancerPort: number | undefined;
384
420
  /**
421
+ * @public
385
422
  * <p>The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL.</p>
386
423
  * <p>If the front-end protocol is TCP or SSL, the back-end protocol must be TCP or SSL.
387
424
  * If the front-end protocol is HTTP or HTTPS, the back-end protocol must be HTTP or HTTPS.</p>
@@ -392,10 +429,12 @@ export interface Listener {
392
429
  */
393
430
  InstanceProtocol?: string;
394
431
  /**
432
+ * @public
395
433
  * <p>The port on which the instance is listening.</p>
396
434
  */
397
435
  InstancePort: number | undefined;
398
436
  /**
437
+ * @public
399
438
  * <p>The Amazon Resource Name (ARN) of the server certificate.</p>
400
439
  */
401
440
  SSLCertificateId?: string;
@@ -406,17 +445,20 @@ export interface Listener {
406
445
  */
407
446
  export interface CreateAccessPointInput {
408
447
  /**
448
+ * @public
409
449
  * <p>The name of the load balancer.</p>
410
450
  * <p>This name must be unique within your set of load balancers for the region, must have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen.</p>
411
451
  */
412
452
  LoadBalancerName: string | undefined;
413
453
  /**
454
+ * @public
414
455
  * <p>The listeners.</p>
415
456
  * <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html">Listeners for Your Classic Load Balancer</a>
416
457
  * in the <i>Classic Load Balancers Guide</i>.</p>
417
458
  */
418
459
  Listeners: Listener[] | undefined;
419
460
  /**
461
+ * @public
420
462
  * <p>One or more Availability Zones from the same region as the load balancer.</p>
421
463
  * <p>You must specify at least one Availability Zone.</p>
422
464
  * <p>You can add more Availability Zones after you create the load balancer using
@@ -424,15 +466,18 @@ export interface CreateAccessPointInput {
424
466
  */
425
467
  AvailabilityZones?: string[];
426
468
  /**
469
+ * @public
427
470
  * <p>The IDs of the subnets in your VPC to attach to the load balancer.
428
471
  * Specify one subnet per Availability Zone specified in <code>AvailabilityZones</code>.</p>
429
472
  */
430
473
  Subnets?: string[];
431
474
  /**
475
+ * @public
432
476
  * <p>The IDs of the security groups to assign to the load balancer.</p>
433
477
  */
434
478
  SecurityGroups?: string[];
435
479
  /**
480
+ * @public
436
481
  * <p>The type of a load balancer. Valid only for load balancers in a VPC.</p>
437
482
  * <p>By default, Elastic Load Balancing creates an Internet-facing load balancer with a DNS name that resolves to public IP addresses.
438
483
  * For more information about Internet-facing and Internal load balancers, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme">Load Balancer Scheme</a>
@@ -441,6 +486,7 @@ export interface CreateAccessPointInput {
441
486
  */
442
487
  Scheme?: string;
443
488
  /**
489
+ * @public
444
490
  * <p>A list of tags to assign to the load balancer.</p>
445
491
  * <p>For more information about tagging your load balancer, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html">Tag Your Classic Load Balancer</a>
446
492
  * in the <i>Classic Load Balancers Guide</i>.</p>
@@ -453,6 +499,7 @@ export interface CreateAccessPointInput {
453
499
  */
454
500
  export interface CreateAccessPointOutput {
455
501
  /**
502
+ * @public
456
503
  * <p>The DNS name of the load balancer.</p>
457
504
  */
458
505
  DNSName?: string;
@@ -463,14 +510,17 @@ export interface CreateAccessPointOutput {
463
510
  */
464
511
  export interface CreateAppCookieStickinessPolicyInput {
465
512
  /**
513
+ * @public
466
514
  * <p>The name of the load balancer.</p>
467
515
  */
468
516
  LoadBalancerName: string | undefined;
469
517
  /**
518
+ * @public
470
519
  * <p>The name of the policy being created. Policy names must consist of alphanumeric characters and dashes (-). This name must be unique within the set of policies for this load balancer.</p>
471
520
  */
472
521
  PolicyName: string | undefined;
473
522
  /**
523
+ * @public
474
524
  * <p>The name of the application cookie used for stickiness.</p>
475
525
  */
476
526
  CookieName: string | undefined;
@@ -513,14 +563,17 @@ export declare class TooManyPoliciesException extends __BaseException {
513
563
  */
514
564
  export interface CreateLBCookieStickinessPolicyInput {
515
565
  /**
566
+ * @public
516
567
  * <p>The name of the load balancer.</p>
517
568
  */
518
569
  LoadBalancerName: string | undefined;
519
570
  /**
571
+ * @public
520
572
  * <p>The name of the policy being created. Policy names must consist of alphanumeric characters and dashes (-). This name must be unique within the set of policies for this load balancer.</p>
521
573
  */
522
574
  PolicyName: string | undefined;
523
575
  /**
576
+ * @public
524
577
  * <p>The time period, in seconds, after which the cookie should be considered stale. If you do not specify this parameter, the default value is 0, which indicates that the sticky session should last for the duration of the browser session.</p>
525
578
  */
526
579
  CookieExpirationPeriod?: number;
@@ -602,10 +655,12 @@ export declare class UnsupportedProtocolException extends __BaseException {
602
655
  */
603
656
  export interface CreateLoadBalancerListenerInput {
604
657
  /**
658
+ * @public
605
659
  * <p>The name of the load balancer.</p>
606
660
  */
607
661
  LoadBalancerName: string | undefined;
608
662
  /**
663
+ * @public
609
664
  * <p>The listeners.</p>
610
665
  */
611
666
  Listeners: Listener[] | undefined;
@@ -635,10 +690,12 @@ export declare class DuplicateListenerException extends __BaseException {
635
690
  */
636
691
  export interface PolicyAttribute {
637
692
  /**
693
+ * @public
638
694
  * <p>The name of the attribute.</p>
639
695
  */
640
696
  AttributeName?: string;
641
697
  /**
698
+ * @public
642
699
  * <p>The value of the attribute.</p>
643
700
  */
644
701
  AttributeValue?: string;
@@ -649,19 +706,23 @@ export interface PolicyAttribute {
649
706
  */
650
707
  export interface CreateLoadBalancerPolicyInput {
651
708
  /**
709
+ * @public
652
710
  * <p>The name of the load balancer.</p>
653
711
  */
654
712
  LoadBalancerName: string | undefined;
655
713
  /**
714
+ * @public
656
715
  * <p>The name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.</p>
657
716
  */
658
717
  PolicyName: string | undefined;
659
718
  /**
719
+ * @public
660
720
  * <p>The name of the base policy type.
661
721
  * To get the list of policy types, use <a>DescribeLoadBalancerPolicyTypes</a>.</p>
662
722
  */
663
723
  PolicyTypeName: string | undefined;
664
724
  /**
725
+ * @public
665
726
  * <p>The policy attributes.</p>
666
727
  */
667
728
  PolicyAttributes?: PolicyAttribute[];
@@ -691,6 +752,7 @@ export declare class PolicyTypeNotFoundException extends __BaseException {
691
752
  */
692
753
  export interface CrossZoneLoadBalancing {
693
754
  /**
755
+ * @public
694
756
  * <p>Specifies whether cross-zone load balancing is enabled for the load balancer.</p>
695
757
  */
696
758
  Enabled: boolean | undefined;
@@ -701,6 +763,7 @@ export interface CrossZoneLoadBalancing {
701
763
  */
702
764
  export interface DeleteAccessPointInput {
703
765
  /**
766
+ * @public
704
767
  * <p>The name of the load balancer.</p>
705
768
  */
706
769
  LoadBalancerName: string | undefined;
@@ -717,10 +780,12 @@ export interface DeleteAccessPointOutput {
717
780
  */
718
781
  export interface DeleteLoadBalancerListenerInput {
719
782
  /**
783
+ * @public
720
784
  * <p>The name of the load balancer.</p>
721
785
  */
722
786
  LoadBalancerName: string | undefined;
723
787
  /**
788
+ * @public
724
789
  * <p>The client port numbers of the listeners.</p>
725
790
  */
726
791
  LoadBalancerPorts: number[] | undefined;
@@ -737,10 +802,12 @@ export interface DeleteLoadBalancerListenerOutput {
737
802
  */
738
803
  export interface DeleteLoadBalancerPolicyInput {
739
804
  /**
805
+ * @public
740
806
  * <p>The name of the load balancer.</p>
741
807
  */
742
808
  LoadBalancerName: string | undefined;
743
809
  /**
810
+ * @public
744
811
  * <p>The name of the policy.</p>
745
812
  */
746
813
  PolicyName: string | undefined;
@@ -770,6 +837,7 @@ export declare class DependencyThrottleException extends __BaseException {
770
837
  */
771
838
  export interface Instance {
772
839
  /**
840
+ * @public
773
841
  * <p>The instance ID.</p>
774
842
  */
775
843
  InstanceId?: string;
@@ -780,10 +848,12 @@ export interface Instance {
780
848
  */
781
849
  export interface DeregisterEndPointsInput {
782
850
  /**
851
+ * @public
783
852
  * <p>The name of the load balancer.</p>
784
853
  */
785
854
  LoadBalancerName: string | undefined;
786
855
  /**
856
+ * @public
787
857
  * <p>The IDs of the instances.</p>
788
858
  */
789
859
  Instances: Instance[] | undefined;
@@ -794,6 +864,7 @@ export interface DeregisterEndPointsInput {
794
864
  */
795
865
  export interface DeregisterEndPointsOutput {
796
866
  /**
867
+ * @public
797
868
  * <p>The remaining instances registered with the load balancer.</p>
798
869
  */
799
870
  Instances?: Instance[];
@@ -817,14 +888,17 @@ export declare class InvalidEndPointException extends __BaseException {
817
888
  */
818
889
  export interface DescribeAccessPointsInput {
819
890
  /**
891
+ * @public
820
892
  * <p>The names of the load balancers.</p>
821
893
  */
822
894
  LoadBalancerNames?: string[];
823
895
  /**
896
+ * @public
824
897
  * <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
825
898
  */
826
899
  Marker?: string;
827
900
  /**
901
+ * @public
828
902
  * <p>The maximum number of results to return with this call (a number from 1 to 400). The default is 400.</p>
829
903
  */
830
904
  PageSize?: number;
@@ -835,10 +909,12 @@ export interface DescribeAccessPointsInput {
835
909
  */
836
910
  export interface ListenerDescription {
837
911
  /**
912
+ * @public
838
913
  * <p>The listener.</p>
839
914
  */
840
915
  Listener?: Listener;
841
916
  /**
917
+ * @public
842
918
  * <p>The policies. If there are no policies enabled, the list is empty.</p>
843
919
  */
844
920
  PolicyNames?: string[];
@@ -849,10 +925,12 @@ export interface ListenerDescription {
849
925
  */
850
926
  export interface LBCookieStickinessPolicy {
851
927
  /**
928
+ * @public
852
929
  * <p>The name of the policy. This name must be unique within the set of policies for this load balancer.</p>
853
930
  */
854
931
  PolicyName?: string;
855
932
  /**
933
+ * @public
856
934
  * <p>The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session.</p>
857
935
  */
858
936
  CookieExpirationPeriod?: number;
@@ -863,14 +941,17 @@ export interface LBCookieStickinessPolicy {
863
941
  */
864
942
  export interface Policies {
865
943
  /**
944
+ * @public
866
945
  * <p>The stickiness policies created using <a>CreateAppCookieStickinessPolicy</a>.</p>
867
946
  */
868
947
  AppCookieStickinessPolicies?: AppCookieStickinessPolicy[];
869
948
  /**
949
+ * @public
870
950
  * <p>The stickiness policies created using <a>CreateLBCookieStickinessPolicy</a>.</p>
871
951
  */
872
952
  LBCookieStickinessPolicies?: LBCookieStickinessPolicy[];
873
953
  /**
954
+ * @public
874
955
  * <p>The policies other than the stickiness policies.</p>
875
956
  */
876
957
  OtherPolicies?: string[];
@@ -881,10 +962,12 @@ export interface Policies {
881
962
  */
882
963
  export interface SourceSecurityGroup {
883
964
  /**
965
+ * @public
884
966
  * <p>The owner of the security group.</p>
885
967
  */
886
968
  OwnerAlias?: string;
887
969
  /**
970
+ * @public
888
971
  * <p>The name of the security group.</p>
889
972
  */
890
973
  GroupName?: string;
@@ -895,69 +978,85 @@ export interface SourceSecurityGroup {
895
978
  */
896
979
  export interface LoadBalancerDescription {
897
980
  /**
981
+ * @public
898
982
  * <p>The name of the load balancer.</p>
899
983
  */
900
984
  LoadBalancerName?: string;
901
985
  /**
986
+ * @public
902
987
  * <p>The DNS name of the load balancer.</p>
903
988
  */
904
989
  DNSName?: string;
905
990
  /**
991
+ * @public
906
992
  * <p>The DNS name of the load balancer.</p>
907
993
  * <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/using-domain-names-with-elb.html">Configure a Custom Domain Name</a>
908
994
  * in the <i>Classic Load Balancers Guide</i>.</p>
909
995
  */
910
996
  CanonicalHostedZoneName?: string;
911
997
  /**
998
+ * @public
912
999
  * <p>The ID of the Amazon Route 53 hosted zone for the load balancer.</p>
913
1000
  */
914
1001
  CanonicalHostedZoneNameID?: string;
915
1002
  /**
1003
+ * @public
916
1004
  * <p>The listeners for the load balancer.</p>
917
1005
  */
918
1006
  ListenerDescriptions?: ListenerDescription[];
919
1007
  /**
1008
+ * @public
920
1009
  * <p>The policies defined for the load balancer.</p>
921
1010
  */
922
1011
  Policies?: Policies;
923
1012
  /**
1013
+ * @public
924
1014
  * <p>Information about your EC2 instances.</p>
925
1015
  */
926
1016
  BackendServerDescriptions?: BackendServerDescription[];
927
1017
  /**
1018
+ * @public
928
1019
  * <p>The Availability Zones for the load balancer.</p>
929
1020
  */
930
1021
  AvailabilityZones?: string[];
931
1022
  /**
1023
+ * @public
932
1024
  * <p>The IDs of the subnets for the load balancer.</p>
933
1025
  */
934
1026
  Subnets?: string[];
935
1027
  /**
1028
+ * @public
936
1029
  * <p>The ID of the VPC for the load balancer.</p>
937
1030
  */
938
1031
  VPCId?: string;
939
1032
  /**
1033
+ * @public
940
1034
  * <p>The IDs of the instances for the load balancer.</p>
941
1035
  */
942
1036
  Instances?: Instance[];
943
1037
  /**
1038
+ * @public
944
1039
  * <p>Information about the health checks conducted on the load balancer.</p>
945
1040
  */
946
1041
  HealthCheck?: HealthCheck;
947
1042
  /**
1043
+ * @public
948
1044
  * <p>The security group for the load balancer, which you can use as part of your inbound rules for your registered instances.
949
1045
  * To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.</p>
950
1046
  */
951
1047
  SourceSecurityGroup?: SourceSecurityGroup;
952
1048
  /**
1049
+ * @public
953
1050
  * <p>The security groups for the load balancer. Valid only for load balancers in a VPC.</p>
954
1051
  */
955
1052
  SecurityGroups?: string[];
956
1053
  /**
1054
+ * @public
957
1055
  * <p>The date and time the load balancer was created.</p>
958
1056
  */
959
1057
  CreatedTime?: Date;
960
1058
  /**
1059
+ * @public
961
1060
  * <p>The type of load balancer. Valid only for load balancers in a VPC.</p>
962
1061
  * <p>If <code>Scheme</code> is <code>internet-facing</code>, the load balancer
963
1062
  * has a public DNS name that resolves to a public IP address.</p>
@@ -972,10 +1071,12 @@ export interface LoadBalancerDescription {
972
1071
  */
973
1072
  export interface DescribeAccessPointsOutput {
974
1073
  /**
1074
+ * @public
975
1075
  * <p>Information about the load balancers.</p>
976
1076
  */
977
1077
  LoadBalancerDescriptions?: LoadBalancerDescription[];
978
1078
  /**
1079
+ * @public
979
1080
  * <p>The marker to use when requesting the next set of results. If there are no additional results, the string is empty.</p>
980
1081
  */
981
1082
  NextMarker?: string;
@@ -985,10 +1086,12 @@ export interface DescribeAccessPointsOutput {
985
1086
  */
986
1087
  export interface DescribeAccountLimitsInput {
987
1088
  /**
1089
+ * @public
988
1090
  * <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
989
1091
  */
990
1092
  Marker?: string;
991
1093
  /**
1094
+ * @public
992
1095
  * <p>The maximum number of results to return with this call.</p>
993
1096
  */
994
1097
  PageSize?: number;
@@ -999,6 +1102,7 @@ export interface DescribeAccountLimitsInput {
999
1102
  */
1000
1103
  export interface Limit {
1001
1104
  /**
1105
+ * @public
1002
1106
  * <p>The name of the limit. The possible values are:</p>
1003
1107
  * <ul>
1004
1108
  * <li>
@@ -1014,6 +1118,7 @@ export interface Limit {
1014
1118
  */
1015
1119
  Name?: string;
1016
1120
  /**
1121
+ * @public
1017
1122
  * <p>The maximum value of the limit.</p>
1018
1123
  */
1019
1124
  Max?: string;
@@ -1023,10 +1128,12 @@ export interface Limit {
1023
1128
  */
1024
1129
  export interface DescribeAccountLimitsOutput {
1025
1130
  /**
1131
+ * @public
1026
1132
  * <p>Information about the limits.</p>
1027
1133
  */
1028
1134
  Limits?: Limit[];
1029
1135
  /**
1136
+ * @public
1030
1137
  * <p>The marker to use when requesting the next set of results. If there are no additional results, the string is empty.</p>
1031
1138
  */
1032
1139
  NextMarker?: string;
@@ -1037,10 +1144,12 @@ export interface DescribeAccountLimitsOutput {
1037
1144
  */
1038
1145
  export interface DescribeEndPointStateInput {
1039
1146
  /**
1147
+ * @public
1040
1148
  * <p>The name of the load balancer.</p>
1041
1149
  */
1042
1150
  LoadBalancerName: string | undefined;
1043
1151
  /**
1152
+ * @public
1044
1153
  * <p>The IDs of the instances.</p>
1045
1154
  */
1046
1155
  Instances?: Instance[];
@@ -1051,16 +1160,19 @@ export interface DescribeEndPointStateInput {
1051
1160
  */
1052
1161
  export interface InstanceState {
1053
1162
  /**
1163
+ * @public
1054
1164
  * <p>The ID of the instance.</p>
1055
1165
  */
1056
1166
  InstanceId?: string;
1057
1167
  /**
1168
+ * @public
1058
1169
  * <p>The current state of the instance.</p>
1059
1170
  * <p>Valid values: <code>InService</code> | <code>OutOfService</code> | <code>Unknown</code>
1060
1171
  * </p>
1061
1172
  */
1062
1173
  State?: string;
1063
1174
  /**
1175
+ * @public
1064
1176
  * <p>Information about the cause of <code>OutOfService</code> instances.
1065
1177
  * Specifically, whether the cause is Elastic Load Balancing or the instance.</p>
1066
1178
  * <p>Valid values: <code>ELB</code> | <code>Instance</code> | <code>N/A</code>
@@ -1068,6 +1180,7 @@ export interface InstanceState {
1068
1180
  */
1069
1181
  ReasonCode?: string;
1070
1182
  /**
1183
+ * @public
1071
1184
  * <p>A description of the instance state. This string can contain one or more of the following messages.</p>
1072
1185
  * <ul>
1073
1186
  * <li>
@@ -1140,6 +1253,7 @@ export interface InstanceState {
1140
1253
  */
1141
1254
  export interface DescribeEndPointStateOutput {
1142
1255
  /**
1256
+ * @public
1143
1257
  * <p>Information about the health of the instances.</p>
1144
1258
  */
1145
1259
  InstanceStates?: InstanceState[];
@@ -1150,6 +1264,7 @@ export interface DescribeEndPointStateOutput {
1150
1264
  */
1151
1265
  export interface DescribeLoadBalancerAttributesInput {
1152
1266
  /**
1267
+ * @public
1153
1268
  * <p>The name of the load balancer.</p>
1154
1269
  */
1155
1270
  LoadBalancerName: string | undefined;
@@ -1160,24 +1275,28 @@ export interface DescribeLoadBalancerAttributesInput {
1160
1275
  */
1161
1276
  export interface LoadBalancerAttributes {
1162
1277
  /**
1278
+ * @public
1163
1279
  * <p>If enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.</p>
1164
1280
  * <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html">Configure Cross-Zone Load Balancing</a>
1165
1281
  * in the <i>Classic Load Balancers Guide</i>.</p>
1166
1282
  */
1167
1283
  CrossZoneLoadBalancing?: CrossZoneLoadBalancing;
1168
1284
  /**
1285
+ * @public
1169
1286
  * <p>If enabled, the load balancer captures detailed information of all requests and delivers the information to the Amazon S3 bucket that you specify.</p>
1170
1287
  * <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-access-logs.html">Enable Access Logs</a>
1171
1288
  * in the <i>Classic Load Balancers Guide</i>.</p>
1172
1289
  */
1173
1290
  AccessLog?: AccessLog;
1174
1291
  /**
1292
+ * @public
1175
1293
  * <p>If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy instance.</p>
1176
1294
  * <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html">Configure Connection Draining</a>
1177
1295
  * in the <i>Classic Load Balancers Guide</i>.</p>
1178
1296
  */
1179
1297
  ConnectionDraining?: ConnectionDraining;
1180
1298
  /**
1299
+ * @public
1181
1300
  * <p>If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration.</p>
1182
1301
  * <p>By default, Elastic Load Balancing maintains a 60-second idle connection timeout for both front-end and back-end connections of your load balancer.
1183
1302
  * For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html">Configure Idle Connection Timeout</a>
@@ -1185,6 +1304,7 @@ export interface LoadBalancerAttributes {
1185
1304
  */
1186
1305
  ConnectionSettings?: ConnectionSettings;
1187
1306
  /**
1307
+ * @public
1188
1308
  * <p>Any additional attributes.</p>
1189
1309
  */
1190
1310
  AdditionalAttributes?: AdditionalAttribute[];
@@ -1195,6 +1315,7 @@ export interface LoadBalancerAttributes {
1195
1315
  */
1196
1316
  export interface DescribeLoadBalancerAttributesOutput {
1197
1317
  /**
1318
+ * @public
1198
1319
  * <p>Information about the load balancer attributes.</p>
1199
1320
  */
1200
1321
  LoadBalancerAttributes?: LoadBalancerAttributes;
@@ -1218,10 +1339,12 @@ export declare class LoadBalancerAttributeNotFoundException extends __BaseExcept
1218
1339
  */
1219
1340
  export interface DescribeLoadBalancerPoliciesInput {
1220
1341
  /**
1342
+ * @public
1221
1343
  * <p>The name of the load balancer.</p>
1222
1344
  */
1223
1345
  LoadBalancerName?: string;
1224
1346
  /**
1347
+ * @public
1225
1348
  * <p>The names of the policies.</p>
1226
1349
  */
1227
1350
  PolicyNames?: string[];
@@ -1232,10 +1355,12 @@ export interface DescribeLoadBalancerPoliciesInput {
1232
1355
  */
1233
1356
  export interface PolicyAttributeDescription {
1234
1357
  /**
1358
+ * @public
1235
1359
  * <p>The name of the attribute.</p>
1236
1360
  */
1237
1361
  AttributeName?: string;
1238
1362
  /**
1363
+ * @public
1239
1364
  * <p>The value of the attribute.</p>
1240
1365
  */
1241
1366
  AttributeValue?: string;
@@ -1246,14 +1371,17 @@ export interface PolicyAttributeDescription {
1246
1371
  */
1247
1372
  export interface PolicyDescription {
1248
1373
  /**
1374
+ * @public
1249
1375
  * <p>The name of the policy.</p>
1250
1376
  */
1251
1377
  PolicyName?: string;
1252
1378
  /**
1379
+ * @public
1253
1380
  * <p>The name of the policy type.</p>
1254
1381
  */
1255
1382
  PolicyTypeName?: string;
1256
1383
  /**
1384
+ * @public
1257
1385
  * <p>The policy attributes.</p>
1258
1386
  */
1259
1387
  PolicyAttributeDescriptions?: PolicyAttributeDescription[];
@@ -1264,6 +1392,7 @@ export interface PolicyDescription {
1264
1392
  */
1265
1393
  export interface DescribeLoadBalancerPoliciesOutput {
1266
1394
  /**
1395
+ * @public
1267
1396
  * <p>Information about the policies.</p>
1268
1397
  */
1269
1398
  PolicyDescriptions?: PolicyDescription[];
@@ -1287,6 +1416,7 @@ export declare class PolicyNotFoundException extends __BaseException {
1287
1416
  */
1288
1417
  export interface DescribeLoadBalancerPolicyTypesInput {
1289
1418
  /**
1419
+ * @public
1290
1420
  * <p>The names of the policy types. If no names are specified, describes all policy types defined by Elastic Load Balancing.</p>
1291
1421
  */
1292
1422
  PolicyTypeNames?: string[];
@@ -1297,22 +1427,27 @@ export interface DescribeLoadBalancerPolicyTypesInput {
1297
1427
  */
1298
1428
  export interface PolicyAttributeTypeDescription {
1299
1429
  /**
1430
+ * @public
1300
1431
  * <p>The name of the attribute.</p>
1301
1432
  */
1302
1433
  AttributeName?: string;
1303
1434
  /**
1435
+ * @public
1304
1436
  * <p>The type of the attribute. For example, <code>Boolean</code> or <code>Integer</code>.</p>
1305
1437
  */
1306
1438
  AttributeType?: string;
1307
1439
  /**
1440
+ * @public
1308
1441
  * <p>A description of the attribute.</p>
1309
1442
  */
1310
1443
  Description?: string;
1311
1444
  /**
1445
+ * @public
1312
1446
  * <p>The default value of the attribute, if applicable.</p>
1313
1447
  */
1314
1448
  DefaultValue?: string;
1315
1449
  /**
1450
+ * @public
1316
1451
  * <p>The cardinality of the attribute.</p>
1317
1452
  * <p>Valid values:</p>
1318
1453
  * <ul>
@@ -1338,14 +1473,17 @@ export interface PolicyAttributeTypeDescription {
1338
1473
  */
1339
1474
  export interface PolicyTypeDescription {
1340
1475
  /**
1476
+ * @public
1341
1477
  * <p>The name of the policy type.</p>
1342
1478
  */
1343
1479
  PolicyTypeName?: string;
1344
1480
  /**
1481
+ * @public
1345
1482
  * <p>A description of the policy type.</p>
1346
1483
  */
1347
1484
  Description?: string;
1348
1485
  /**
1486
+ * @public
1349
1487
  * <p>The description of the policy attributes associated with the policies defined by Elastic Load Balancing.</p>
1350
1488
  */
1351
1489
  PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
@@ -1356,6 +1494,7 @@ export interface PolicyTypeDescription {
1356
1494
  */
1357
1495
  export interface DescribeLoadBalancerPolicyTypesOutput {
1358
1496
  /**
1497
+ * @public
1359
1498
  * <p>Information about the policy types.</p>
1360
1499
  */
1361
1500
  PolicyTypeDescriptions?: PolicyTypeDescription[];
@@ -1366,6 +1505,7 @@ export interface DescribeLoadBalancerPolicyTypesOutput {
1366
1505
  */
1367
1506
  export interface DescribeTagsInput {
1368
1507
  /**
1508
+ * @public
1369
1509
  * <p>The names of the load balancers.</p>
1370
1510
  */
1371
1511
  LoadBalancerNames: string[] | undefined;
@@ -1376,10 +1516,12 @@ export interface DescribeTagsInput {
1376
1516
  */
1377
1517
  export interface TagDescription {
1378
1518
  /**
1519
+ * @public
1379
1520
  * <p>The name of the load balancer.</p>
1380
1521
  */
1381
1522
  LoadBalancerName?: string;
1382
1523
  /**
1524
+ * @public
1383
1525
  * <p>The tags.</p>
1384
1526
  */
1385
1527
  Tags?: Tag[];
@@ -1390,6 +1532,7 @@ export interface TagDescription {
1390
1532
  */
1391
1533
  export interface DescribeTagsOutput {
1392
1534
  /**
1535
+ * @public
1393
1536
  * <p>Information about the tags.</p>
1394
1537
  */
1395
1538
  TagDescriptions?: TagDescription[];
@@ -1400,10 +1543,12 @@ export interface DescribeTagsOutput {
1400
1543
  */
1401
1544
  export interface DetachLoadBalancerFromSubnetsInput {
1402
1545
  /**
1546
+ * @public
1403
1547
  * <p>The name of the load balancer.</p>
1404
1548
  */
1405
1549
  LoadBalancerName: string | undefined;
1406
1550
  /**
1551
+ * @public
1407
1552
  * <p>The IDs of the subnets.</p>
1408
1553
  */
1409
1554
  Subnets: string[] | undefined;
@@ -1414,6 +1559,7 @@ export interface DetachLoadBalancerFromSubnetsInput {
1414
1559
  */
1415
1560
  export interface DetachLoadBalancerFromSubnetsOutput {
1416
1561
  /**
1562
+ * @public
1417
1563
  * <p>The IDs of the remaining subnets for the load balancer.</p>
1418
1564
  */
1419
1565
  Subnets?: string[];
@@ -1424,10 +1570,12 @@ export interface DetachLoadBalancerFromSubnetsOutput {
1424
1570
  */
1425
1571
  export interface RemoveAvailabilityZonesInput {
1426
1572
  /**
1573
+ * @public
1427
1574
  * <p>The name of the load balancer.</p>
1428
1575
  */
1429
1576
  LoadBalancerName: string | undefined;
1430
1577
  /**
1578
+ * @public
1431
1579
  * <p>The Availability Zones.</p>
1432
1580
  */
1433
1581
  AvailabilityZones: string[] | undefined;
@@ -1438,6 +1586,7 @@ export interface RemoveAvailabilityZonesInput {
1438
1586
  */
1439
1587
  export interface RemoveAvailabilityZonesOutput {
1440
1588
  /**
1589
+ * @public
1441
1590
  * <p>The remaining Availability Zones for the load balancer.</p>
1442
1591
  */
1443
1592
  AvailabilityZones?: string[];
@@ -1448,10 +1597,12 @@ export interface RemoveAvailabilityZonesOutput {
1448
1597
  */
1449
1598
  export interface ModifyLoadBalancerAttributesInput {
1450
1599
  /**
1600
+ * @public
1451
1601
  * <p>The name of the load balancer.</p>
1452
1602
  */
1453
1603
  LoadBalancerName: string | undefined;
1454
1604
  /**
1605
+ * @public
1455
1606
  * <p>The attributes for the load balancer.</p>
1456
1607
  */
1457
1608
  LoadBalancerAttributes: LoadBalancerAttributes | undefined;
@@ -1462,10 +1613,12 @@ export interface ModifyLoadBalancerAttributesInput {
1462
1613
  */
1463
1614
  export interface ModifyLoadBalancerAttributesOutput {
1464
1615
  /**
1616
+ * @public
1465
1617
  * <p>The name of the load balancer.</p>
1466
1618
  */
1467
1619
  LoadBalancerName?: string;
1468
1620
  /**
1621
+ * @public
1469
1622
  * <p>Information about the load balancer attributes.</p>
1470
1623
  */
1471
1624
  LoadBalancerAttributes?: LoadBalancerAttributes;
@@ -1476,10 +1629,12 @@ export interface ModifyLoadBalancerAttributesOutput {
1476
1629
  */
1477
1630
  export interface RegisterEndPointsInput {
1478
1631
  /**
1632
+ * @public
1479
1633
  * <p>The name of the load balancer.</p>
1480
1634
  */
1481
1635
  LoadBalancerName: string | undefined;
1482
1636
  /**
1637
+ * @public
1483
1638
  * <p>The IDs of the instances.</p>
1484
1639
  */
1485
1640
  Instances: Instance[] | undefined;
@@ -1490,6 +1645,7 @@ export interface RegisterEndPointsInput {
1490
1645
  */
1491
1646
  export interface RegisterEndPointsOutput {
1492
1647
  /**
1648
+ * @public
1493
1649
  * <p>The updated list of instances for the load balancer.</p>
1494
1650
  */
1495
1651
  Instances?: Instance[];
@@ -1500,6 +1656,7 @@ export interface RegisterEndPointsOutput {
1500
1656
  */
1501
1657
  export interface TagKeyOnly {
1502
1658
  /**
1659
+ * @public
1503
1660
  * <p>The name of the key.</p>
1504
1661
  */
1505
1662
  Key?: string;
@@ -1510,10 +1667,12 @@ export interface TagKeyOnly {
1510
1667
  */
1511
1668
  export interface RemoveTagsInput {
1512
1669
  /**
1670
+ * @public
1513
1671
  * <p>The name of the load balancer. You can specify a maximum of one load balancer name.</p>
1514
1672
  */
1515
1673
  LoadBalancerNames: string[] | undefined;
1516
1674
  /**
1675
+ * @public
1517
1676
  * <p>The list of tag keys to remove.</p>
1518
1677
  */
1519
1678
  Tags: TagKeyOnly[] | undefined;
@@ -1543,14 +1702,17 @@ export declare class ListenerNotFoundException extends __BaseException {
1543
1702
  */
1544
1703
  export interface SetLoadBalancerListenerSSLCertificateInput {
1545
1704
  /**
1705
+ * @public
1546
1706
  * <p>The name of the load balancer.</p>
1547
1707
  */
1548
1708
  LoadBalancerName: string | undefined;
1549
1709
  /**
1710
+ * @public
1550
1711
  * <p>The port that uses the specified SSL certificate.</p>
1551
1712
  */
1552
1713
  LoadBalancerPort: number | undefined;
1553
1714
  /**
1715
+ * @public
1554
1716
  * <p>The Amazon Resource Name (ARN) of the SSL certificate.</p>
1555
1717
  */
1556
1718
  SSLCertificateId: string | undefined;
@@ -1567,14 +1729,17 @@ export interface SetLoadBalancerListenerSSLCertificateOutput {
1567
1729
  */
1568
1730
  export interface SetLoadBalancerPoliciesForBackendServerInput {
1569
1731
  /**
1732
+ * @public
1570
1733
  * <p>The name of the load balancer.</p>
1571
1734
  */
1572
1735
  LoadBalancerName: string | undefined;
1573
1736
  /**
1737
+ * @public
1574
1738
  * <p>The port number associated with the EC2 instance.</p>
1575
1739
  */
1576
1740
  InstancePort: number | undefined;
1577
1741
  /**
1742
+ * @public
1578
1743
  * <p>The names of the policies. If the list is empty, then all current polices are removed from the EC2 instance.</p>
1579
1744
  */
1580
1745
  PolicyNames: string[] | undefined;
@@ -1591,14 +1756,17 @@ export interface SetLoadBalancerPoliciesForBackendServerOutput {
1591
1756
  */
1592
1757
  export interface SetLoadBalancerPoliciesOfListenerInput {
1593
1758
  /**
1759
+ * @public
1594
1760
  * <p>The name of the load balancer.</p>
1595
1761
  */
1596
1762
  LoadBalancerName: string | undefined;
1597
1763
  /**
1764
+ * @public
1598
1765
  * <p>The external port of the load balancer.</p>
1599
1766
  */
1600
1767
  LoadBalancerPort: number | undefined;
1601
1768
  /**
1769
+ * @public
1602
1770
  * <p>The names of the policies. This list must include all policies to be enabled. If you omit a policy that is currently enabled, it is disabled. If the list is empty, all current policies are disabled.</p>
1603
1771
  */
1604
1772
  PolicyNames: string[] | undefined;
@@ -1,5 +1,6 @@
1
1
  export * from "./ElasticLoadBalancingClient";
2
2
  export * from "./ElasticLoadBalancing";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./waiters";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
4
- "version": "3.378.0",
4
+ "version": "3.382.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,15 +21,15 @@
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.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",