@aws-sdk/client-elastic-load-balancing-v2 3.211.0 → 3.213.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.
@@ -3941,10 +3941,8 @@ const deserializeAws_queryAuthenticateCognitoActionAuthenticationRequestExtraPar
3941
3941
  if (pair["value"] === null) {
3942
3942
  return acc;
3943
3943
  }
3944
- return {
3945
- ...acc,
3946
- [pair["key"]]: (0, smithy_client_1.expectString)(pair["value"]),
3947
- };
3944
+ acc[pair["key"]] = (0, smithy_client_1.expectString)(pair["value"]);
3945
+ return acc;
3948
3946
  }, {});
3949
3947
  };
3950
3948
  const deserializeAws_queryAuthenticateCognitoActionConfig = (output, context) => {
@@ -3994,10 +3992,8 @@ const deserializeAws_queryAuthenticateOidcActionAuthenticationRequestExtraParams
3994
3992
  if (pair["value"] === null) {
3995
3993
  return acc;
3996
3994
  }
3997
- return {
3998
- ...acc,
3999
- [pair["key"]]: (0, smithy_client_1.expectString)(pair["value"]),
4000
- };
3995
+ acc[pair["key"]] = (0, smithy_client_1.expectString)(pair["value"]);
3996
+ return acc;
4001
3997
  }, {});
4002
3998
  };
4003
3999
  const deserializeAws_queryAuthenticateOidcActionConfig = (output, context) => {
@@ -3869,10 +3869,8 @@ const deserializeAws_queryAuthenticateCognitoActionAuthenticationRequestExtraPar
3869
3869
  if (pair["value"] === null) {
3870
3870
  return acc;
3871
3871
  }
3872
- return {
3873
- ...acc,
3874
- [pair["key"]]: __expectString(pair["value"]),
3875
- };
3872
+ acc[pair["key"]] = __expectString(pair["value"]);
3873
+ return acc;
3876
3874
  }, {});
3877
3875
  };
3878
3876
  const deserializeAws_queryAuthenticateCognitoActionConfig = (output, context) => {
@@ -3922,10 +3920,8 @@ const deserializeAws_queryAuthenticateOidcActionAuthenticationRequestExtraParams
3922
3920
  if (pair["value"] === null) {
3923
3921
  return acc;
3924
3922
  }
3925
- return {
3926
- ...acc,
3927
- [pair["key"]]: __expectString(pair["value"]),
3928
- };
3923
+ acc[pair["key"]] = __expectString(pair["value"]);
3924
+ return acc;
3929
3925
  }, {});
3930
3926
  };
3931
3927
  const deserializeAws_queryAuthenticateOidcActionConfig = (output, context) => {
@@ -437,8 +437,6 @@ export declare class ElasticLoadBalancingV2 extends ElasticLoadBalancingV2Client
437
437
  /**
438
438
  * <p>Modifies the health checks used when evaluating the health state of the targets in the
439
439
  * specified target group.</p>
440
- * <p>If the protocol of the target group is TCP, TLS, UDP, or TCP_UDP, you can't modify the
441
- * health check protocol, interval, timeout, or success codes.</p>
442
440
  */
443
441
  modifyTargetGroup(args: ModifyTargetGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyTargetGroupCommandOutput>;
444
442
  modifyTargetGroup(args: ModifyTargetGroupCommandInput, cb: (err: any, data?: ModifyTargetGroupCommandOutput) => void): void;
@@ -10,8 +10,6 @@ export interface ModifyTargetGroupCommandOutput extends ModifyTargetGroupOutput,
10
10
  /**
11
11
  * <p>Modifies the health checks used when evaluating the health state of the targets in the
12
12
  * specified target group.</p>
13
- * <p>If the protocol of the target group is TCP, TLS, UDP, or TCP_UDP, you can't modify the
14
- * health check protocol, interval, timeout, or success codes.</p>
15
13
  * @example
16
14
  * Use a bare-bones client and the command you need to make an API call.
17
15
  * ```javascript
@@ -197,7 +197,7 @@ export interface TargetGroupStickinessConfig {
197
197
  */
198
198
  export interface ForwardActionConfig {
199
199
  /**
200
- * <p>One or more target groups. For Network Load Balancers, you can specify a single target
200
+ * <p>The target groups. For Network Load Balancers, you can specify a single target
201
201
  * group.</p>
202
202
  */
203
203
  TargetGroups?: TargetGroupTuple[];
@@ -1160,7 +1160,7 @@ export declare class TooManyLoadBalancersException extends __BaseException {
1160
1160
  */
1161
1161
  export interface HostHeaderConditionConfig {
1162
1162
  /**
1163
- * <p>One or more host names. The maximum size of each name is 128 characters. The comparison is
1163
+ * <p>The host names. The maximum size of each name is 128 characters. The comparison is
1164
1164
  * case insensitive. The following wildcard characters are supported: * (matches 0 or more
1165
1165
  * characters) and ? (matches exactly 1 character).</p>
1166
1166
  * <p>If you specify multiple strings, the condition is satisfied if one of the strings matches
@@ -1182,7 +1182,7 @@ export interface HttpHeaderConditionConfig {
1182
1182
  */
1183
1183
  HttpHeaderName?: string;
1184
1184
  /**
1185
- * <p>One or more strings to compare against the value of the HTTP header. The maximum size of
1185
+ * <p>The strings to compare against the value of the HTTP header. The maximum size of
1186
1186
  * each string is 128 characters. The comparison strings are case insensitive. The following
1187
1187
  * wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1
1188
1188
  * character).</p>
@@ -1216,7 +1216,7 @@ export interface HttpRequestMethodConditionConfig {
1216
1216
  */
1217
1217
  export interface PathPatternConditionConfig {
1218
1218
  /**
1219
- * <p>One or more path patterns to compare against the request URL. The maximum size of each
1219
+ * <p>The path patterns to compare against the request URL. The maximum size of each
1220
1220
  * string is 128 characters. The comparison is case sensitive. The following wildcard characters
1221
1221
  * are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).</p>
1222
1222
  * <p>If you specify multiple strings, the condition is satisfied if one of them matches the
@@ -1247,7 +1247,7 @@ export interface QueryStringKeyValuePair {
1247
1247
  */
1248
1248
  export interface QueryStringConditionConfig {
1249
1249
  /**
1250
- * <p>One or more key/value pairs or values to find in the query string. The maximum size of
1250
+ * <p>The key/value pairs or values to find in the query string. The maximum size of
1251
1251
  * each string is 128 characters. The comparison is case insensitive. The following wildcard
1252
1252
  * characters are supported: * (matches 0 or more characters) and ? (matches exactly 1
1253
1253
  * character). To search for a literal '*' or '?' character in a query string, you must escape
@@ -1265,7 +1265,7 @@ export interface QueryStringConditionConfig {
1265
1265
  */
1266
1266
  export interface SourceIpConditionConfig {
1267
1267
  /**
1268
- * <p>One or more source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses.
1268
+ * <p>The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses.
1269
1269
  * Wildcards are not supported.</p>
1270
1270
  * <p>If you specify multiple addresses, the condition is satisfied if the source IP address of
1271
1271
  * the request matches one of the CIDR blocks. This condition is not satisfied by the addresses
@@ -1500,10 +1500,11 @@ export declare enum TargetGroupIpAddressTypeEnum {
1500
1500
  */
1501
1501
  export interface Matcher {
1502
1502
  /**
1503
- * <p>For Application Load Balancers, you can specify values between 200 and 499, and the
1504
- * default value is 200. You can specify multiple values (for example, "200,202") or a range of
1505
- * values (for example, "200-299").</p>
1506
- * <p>For Network Load Balancers and Gateway Load Balancers, this must be "200–399".</p>
1503
+ * <p>For Application Load Balancers, you can specify values between 200 and 499, with the
1504
+ * default value being 200. You can specify multiple values (for example, "200,202") or a range of values (for example, "200-299").</p>
1505
+ * <p>For Network Load Balancers, you can specify values between 200 and 599, with the
1506
+ * default value being 200-399. You can specify multiple values (for example, "200,202") or a range of values (for example, "200-299").</p>
1507
+ * <p>For Gateway Load Balancers, this must be "200–399".</p>
1507
1508
  * <p>Note that when using shorthand syntax, some values such as commas need to be
1508
1509
  * escaped.</p>
1509
1510
  */
@@ -1583,40 +1584,39 @@ export interface CreateTargetGroupInput {
1583
1584
  */
1584
1585
  HealthCheckPath?: string;
1585
1586
  /**
1586
- * <p>The approximate amount of time, in seconds, between health checks of an individual target.
1587
- * If the target group protocol is HTTP or HTTPS, the default is 30 seconds.
1588
- * If the target group protocol is TCP, TLS, UDP, or TCP_UDP, the supported values are 10 and 30
1589
- * seconds and the default is 30 seconds.
1587
+ * <p>The approximate amount of time, in seconds, between health checks of an individual target. The range is 5-300.
1588
+ * If the target group protocol is TCP, TLS, UDP, TCP_UDP, HTTP or HTTPS, the default is 30 seconds.
1590
1589
  * If the target group protocol is GENEVE, the default is 10 seconds.
1591
1590
  * If the target type is <code>lambda</code>, the default is 35 seconds.</p>
1592
1591
  */
1593
1592
  HealthCheckIntervalSeconds?: number;
1594
1593
  /**
1595
1594
  * <p>The amount of time, in seconds, during which no response from a target means a failed
1596
- * health check. For target groups with a protocol of HTTP, HTTPS, or GENEVE, the default is 5
1597
- * seconds. For target groups with a protocol of TCP or TLS, this value must be 6 seconds for
1598
- * HTTP health checks and 10 seconds for TCP and HTTPS health checks. If the target type is
1599
- * <code>lambda</code>, the default is 30 seconds.</p>
1595
+ * health check. The range is 2–120 seconds. For target groups with a protocol of HTTP, the
1596
+ * default is 6 seconds. For target groups with a protocol of TCP, TLS or HTTPS, the default
1597
+ * is 10 seconds. For target groups with a protocol of GENEVE, the default is 5 seconds. If
1598
+ * the target type is <code>lambda</code>, the default is 30 seconds.</p>
1600
1599
  */
1601
1600
  HealthCheckTimeoutSeconds?: number;
1602
1601
  /**
1603
- * <p>The number of consecutive health checks successes required before considering an unhealthy
1604
- * target healthy. For target groups with a protocol of HTTP or HTTPS, the default is 5. For
1605
- * target groups with a protocol of TCP, TLS, or GENEVE, the default is 3. If the target type is
1606
- * <code>lambda</code>, the default is 5.</p>
1602
+ * <p>The number of consecutive health check successes required before considering a target healthy. The range is
1603
+ * 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 5. For target groups
1604
+ * with a protocol of GENEVE, the default is 3. If the target type
1605
+ * is <code>lambda</code>, the default is 5.</p>
1607
1606
  */
1608
1607
  HealthyThresholdCount?: number;
1609
1608
  /**
1610
- * <p>The number of consecutive health check failures required before considering a target
1611
- * unhealthy. If the target group protocol is HTTP or HTTPS, the default is 2. If the target
1612
- * group protocol is TCP or TLS, this value must be the same as the healthy threshold count. If
1613
- * the target group protocol is GENEVE, the default is 3. If the target type is
1614
- * <code>lambda</code>, the default is 2.</p>
1609
+ * <p>The number of consecutive health check failures required before considering a target unhealthy. The range is
1610
+ * 2-10. If the target group protocol is TCP, TCP_UDP, UDP, TLS, HTTP or HTTPS, the default is 2. For target groups
1611
+ * with a protocol of GENEVE, the default is 3. If the target type
1612
+ * is <code>lambda</code>, the default is 5.</p>
1615
1613
  */
1616
1614
  UnhealthyThresholdCount?: number;
1617
1615
  /**
1618
1616
  * <p>[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful
1619
- * response from a target.</p>
1617
+ * response from a target. For target groups with a protocol of TCP, TCP_UDP, UDP or TLS the range
1618
+ * is 200-599. For target groups with a protocol of HTTP or HTTPS, the range is 200-499. For target
1619
+ * groups with a protocol of GENEVE, the range is 200-399.</p>
1620
1620
  */
1621
1621
  Matcher?: Matcher;
1622
1622
  /**
@@ -1821,14 +1821,22 @@ export interface TargetDescription {
1821
1821
  * <p>An Availability Zone or <code>all</code>. This determines whether the target receives
1822
1822
  * traffic from the load balancer nodes in the specified Availability Zone or from all enabled
1823
1823
  * Availability Zones for the load balancer.</p>
1824
+ *
1825
+ * <p>For Application Load Balancer target groups, the specified Availability Zone value is only applicable
1826
+ * when cross-zone load balancing is off. Otherwise the parameter is ignored and treated
1827
+ * as <code>all</code>.</p>
1828
+ *
1824
1829
  * <p>This parameter is not supported if the target type of the target group is
1825
- * <code>instance</code> or <code>alb</code>.</p>
1826
- * <p>If the target type is <code>ip</code> and the IP address is in a subnet of the VPC for the
1827
- * target group, the Availability Zone is automatically detected and this parameter is optional.
1828
- * If the IP address is outside the VPC, this parameter is required.</p>
1829
- * <p>With an Application Load Balancer, if the target type is <code>ip</code> and the IP
1830
- * address is outside the VPC for the target group, the only supported value is
1831
- * <code>all</code>.</p>
1830
+ * <code>instance</code> or <code>alb</code>.</p>
1831
+ *
1832
+ * <p>If the target type is <code>ip</code> and the IP address is in a subnet of the VPC for the target group,
1833
+ * the Availability Zone is automatically detected and this parameter is optional. If the IP address is outside
1834
+ * the VPC, this parameter is required.</p>
1835
+ *
1836
+ * <p>For Application Load Balancer target groups with cross-zone load balancing off, if the target type
1837
+ * is <code>ip</code> and the IP address is outside of the VPC for the target group, this should be an
1838
+ * Availability Zone inside the VPC for the target group.</p>
1839
+ *
1832
1840
  * <p>If the target type is <code>lambda</code>, this parameter is optional and the only
1833
1841
  * supported value is <code>all</code>.</p>
1834
1842
  */
@@ -2021,7 +2029,7 @@ export interface LoadBalancerAttribute {
2021
2029
  /**
2022
2030
  * <p>The name of the attribute.</p>
2023
2031
  *
2024
- * <p>The following attribute is supported by all load balancers:</p>
2032
+ * <p>The following attributes are supported by all load balancers:</p>
2025
2033
  * <ul>
2026
2034
  * <li>
2027
2035
  * <p>
@@ -2029,6 +2037,13 @@ export interface LoadBalancerAttribute {
2029
2037
  * enabled. The value is <code>true</code> or <code>false</code>. The default is
2030
2038
  * <code>false</code>.</p>
2031
2039
  * </li>
2040
+ * <li>
2041
+ * <p>
2042
+ * <code>load_balancing.cross_zone.enabled</code> - Indicates whether cross-zone load
2043
+ * balancing is enabled. The possible values are <code>true</code> and <code>false</code>.
2044
+ * The default for Network Load Balancers and Gateway Load Balancers is <code>false</code>.
2045
+ * The default for Application Load Balancers is <code>true</code>, and cannot be changed.</p>
2046
+ * </li>
2032
2047
  * </ul>
2033
2048
  *
2034
2049
  * <p>The following attributes are supported by both Application Load Balancers and Network Load
@@ -2146,17 +2161,6 @@ export interface LoadBalancerAttribute {
2146
2161
  * default is <code>false</code>.</p>
2147
2162
  * </li>
2148
2163
  * </ul>
2149
- *
2150
- * <p>The following attribute is supported by Network Load Balancers and Gateway Load
2151
- * Balancers:</p>
2152
- * <ul>
2153
- * <li>
2154
- * <p>
2155
- * <code>load_balancing.cross_zone.enabled</code> - Indicates whether cross-zone load
2156
- * balancing is enabled. The possible values are <code>true</code> and <code>false</code>.
2157
- * The default is <code>false</code>.</p>
2158
- * </li>
2159
- * </ul>
2160
2164
  */
2161
2165
  Key?: string;
2162
2166
  /**
@@ -2322,7 +2326,7 @@ export interface TargetGroupAttribute {
2322
2326
  /**
2323
2327
  * <p>The name of the attribute.</p>
2324
2328
  *
2325
- * <p>The following attribute is supported by all load balancers:</p>
2329
+ * <p>The following attributes are supported by all load balancers:</p>
2326
2330
  * <ul>
2327
2331
  * <li>
2328
2332
  * <p>
@@ -2332,11 +2336,6 @@ export interface TargetGroupAttribute {
2332
2336
  * default value is 300 seconds. If the target is a Lambda function, this attribute is not
2333
2337
  * supported.</p>
2334
2338
  * </li>
2335
- * </ul>
2336
- *
2337
- * <p>The following attributes are supported by Application Load Balancers, Network Load
2338
- * Balancers, and Gateway Load Balancers:</p>
2339
- * <ul>
2340
2339
  * <li>
2341
2340
  * <p>
2342
2341
  * <code>stickiness.enabled</code> - Indicates whether target stickiness is enabled. The
@@ -2345,8 +2344,7 @@ export interface TargetGroupAttribute {
2345
2344
  * </li>
2346
2345
  * <li>
2347
2346
  * <p>
2348
- * <code>stickiness.type</code> - Indicates the type of stickiness. The possible values
2349
- * are: </p>
2347
+ * <code>stickiness.type</code> - Indicates the type of stickiness. The possible values are:</p>
2350
2348
  * <ul>
2351
2349
  * <li>
2352
2350
  * <p>
@@ -2358,13 +2356,56 @@ export interface TargetGroupAttribute {
2358
2356
  * </li>
2359
2357
  * <li>
2360
2358
  * <p>
2361
- * <code>source_ip_dest_ip</code> and <code>source_ip_dest_ip_proto</code> for Gateway Load
2362
- * Balancers.</p>
2359
+ * <code>source_ip_dest_ip</code> and <code>source_ip_dest_ip_proto</code> for Gateway Load Balancers.</p>
2363
2360
  * </li>
2364
2361
  * </ul>
2365
2362
  * </li>
2366
2363
  * </ul>
2367
2364
  *
2365
+ * <p>The following attributes are supported by Application Load Balancers and
2366
+ * Network Load Balancers:</p>
2367
+ * <ul>
2368
+ * <li>
2369
+ * <p>
2370
+ * <code>load_balancing.cross_zone.enabled</code> - Indicates whether cross zone load
2371
+ * balancing is enabled. The value is <code>true</code>, <code>false</code> or
2372
+ * <code>use_load_balancer_configuration</code>. The default is
2373
+ * <code>use_load_balancer_configuration</code>.</p>
2374
+ * </li>
2375
+ * <li>
2376
+ * <p>
2377
+ * <code>target_group_health.dns_failover.minimum_healthy_targets.count</code> -
2378
+ * The minimum number of targets that must be healthy.
2379
+ * If the number of healthy targets is below this value, mark the zone as unhealthy
2380
+ * in DNS, so that traffic is routed only to healthy zones. The possible values are
2381
+ * <code>off</code> or an integer from 1 to the maximum number of targets.
2382
+ * The default is <code>off</code>.</p>
2383
+ * </li>
2384
+ * <li>
2385
+ * <p>
2386
+ * <code>target_group_health.dns_failover.minimum_healthy_targets.percentage</code> -
2387
+ * The minimum percentage of targets that must be healthy.
2388
+ * If the percentage of healthy targets is below this value, mark the zone as unhealthy
2389
+ * in DNS, so that traffic is routed only to healthy zones. The possible values are
2390
+ * <code>off</code> or an integer from 1 to 100. The default is <code>off</code>.</p>
2391
+ * </li>
2392
+ * <li>
2393
+ * <p>
2394
+ * <code>target_group_health.unhealthy_state_routing.minimum_healthy_targets.count</code> -
2395
+ * The minimum number of targets that must be healthy.
2396
+ * If the number of healthy targets is below this value, send traffic to all targets, including unhealthy targets.
2397
+ * The possible values are 1 to the maximum number of targets. The default is 1.</p>
2398
+ * </li>
2399
+ * <li>
2400
+ * <p>
2401
+ * <code>target_group_health.unhealthy_state_routing.minimum_healthy_targets.percentage</code> -
2402
+ * The minimum percentage of targets that must be healthy.
2403
+ * If the percentage of healthy targets is below this value, send traffic to all targets, including unhealthy targets.
2404
+ * The possible values are <code>off</code> or an integer from 1 to 100.
2405
+ * The default is <code>off</code>.</p>
2406
+ * </li>
2407
+ * </ul>
2408
+ *
2368
2409
  * <p>The following attributes are supported only if the load balancer is an Application Load
2369
2410
  * Balancer and the target is an instance or an IP address:</p>
2370
2411
  * <ul>
@@ -2443,6 +2484,7 @@ export interface TargetGroupAttribute {
2443
2484
  * <code>false</code>. </p>
2444
2485
  * </li>
2445
2486
  * </ul>
2487
+ *
2446
2488
  * <p>The following attributes are supported only by Gateway Load Balancers:</p>
2447
2489
  * <ul>
2448
2490
  * <li>
@@ -2833,8 +2875,7 @@ export interface ModifyTargetGroupInput {
2833
2875
  */
2834
2876
  HealthCheckEnabled?: boolean;
2835
2877
  /**
2836
- * <p>The approximate amount of time, in seconds, between health checks of an individual target.
2837
- * For TCP health checks, the supported values are 10 or 30 seconds.</p>
2878
+ * <p>The approximate amount of time, in seconds, between health checks of an individual target.</p>
2838
2879
  */
2839
2880
  HealthCheckIntervalSeconds?: number;
2840
2881
  /**
@@ -2849,13 +2890,14 @@ export interface ModifyTargetGroupInput {
2849
2890
  HealthyThresholdCount?: number;
2850
2891
  /**
2851
2892
  * <p>The number of consecutive health check failures required before considering the target
2852
- * unhealthy. For target groups with a protocol of TCP or TLS, this value must be the same as the
2853
- * healthy threshold count.</p>
2893
+ * unhealthy.</p>
2854
2894
  */
2855
2895
  UnhealthyThresholdCount?: number;
2856
2896
  /**
2857
2897
  * <p>[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful
2858
- * response from a target.</p>
2898
+ * response from a target. For target groups with a protocol of TCP, TCP_UDP, UDP or TLS the range
2899
+ * is 200-599. For target groups with a protocol of HTTP or HTTPS, the range is 200-499. For target
2900
+ * groups with a protocol of GENEVE, the range is 200-399.</p>
2859
2901
  */
2860
2902
  Matcher?: Matcher;
2861
2903
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing-v2",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
4
- "version": "3.211.0",
4
+ "version": "3.213.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",
@@ -19,39 +19,39 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.211.0",
23
- "@aws-sdk/config-resolver": "3.209.0",
24
- "@aws-sdk/credential-provider-node": "3.211.0",
25
- "@aws-sdk/fetch-http-handler": "3.208.0",
26
- "@aws-sdk/hash-node": "3.208.0",
27
- "@aws-sdk/invalid-dependency": "3.208.0",
28
- "@aws-sdk/middleware-content-length": "3.208.0",
29
- "@aws-sdk/middleware-endpoint": "3.208.0",
30
- "@aws-sdk/middleware-host-header": "3.208.0",
31
- "@aws-sdk/middleware-logger": "3.208.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.208.0",
33
- "@aws-sdk/middleware-retry": "3.209.0",
34
- "@aws-sdk/middleware-serde": "3.208.0",
35
- "@aws-sdk/middleware-signing": "3.208.0",
36
- "@aws-sdk/middleware-stack": "3.208.0",
37
- "@aws-sdk/middleware-user-agent": "3.208.0",
38
- "@aws-sdk/node-config-provider": "3.209.0",
39
- "@aws-sdk/node-http-handler": "3.208.0",
40
- "@aws-sdk/protocol-http": "3.208.0",
41
- "@aws-sdk/smithy-client": "3.209.0",
42
- "@aws-sdk/types": "3.208.0",
43
- "@aws-sdk/url-parser": "3.208.0",
22
+ "@aws-sdk/client-sts": "3.213.0",
23
+ "@aws-sdk/config-resolver": "3.212.0",
24
+ "@aws-sdk/credential-provider-node": "3.212.0",
25
+ "@aws-sdk/fetch-http-handler": "3.212.0",
26
+ "@aws-sdk/hash-node": "3.212.0",
27
+ "@aws-sdk/invalid-dependency": "3.212.0",
28
+ "@aws-sdk/middleware-content-length": "3.212.0",
29
+ "@aws-sdk/middleware-endpoint": "3.212.0",
30
+ "@aws-sdk/middleware-host-header": "3.212.0",
31
+ "@aws-sdk/middleware-logger": "3.212.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.212.0",
33
+ "@aws-sdk/middleware-retry": "3.212.0",
34
+ "@aws-sdk/middleware-serde": "3.212.0",
35
+ "@aws-sdk/middleware-signing": "3.212.0",
36
+ "@aws-sdk/middleware-stack": "3.212.0",
37
+ "@aws-sdk/middleware-user-agent": "3.212.0",
38
+ "@aws-sdk/node-config-provider": "3.212.0",
39
+ "@aws-sdk/node-http-handler": "3.212.0",
40
+ "@aws-sdk/protocol-http": "3.212.0",
41
+ "@aws-sdk/smithy-client": "3.212.0",
42
+ "@aws-sdk/types": "3.212.0",
43
+ "@aws-sdk/url-parser": "3.212.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.209.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.209.0",
49
- "@aws-sdk/util-endpoints": "3.211.0",
50
- "@aws-sdk/util-user-agent-browser": "3.208.0",
51
- "@aws-sdk/util-user-agent-node": "3.209.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.212.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.212.0",
49
+ "@aws-sdk/util-endpoints": "3.212.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.212.0",
51
+ "@aws-sdk/util-user-agent-node": "3.212.0",
52
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
53
53
  "@aws-sdk/util-utf8-node": "3.208.0",
54
- "@aws-sdk/util-waiter": "3.208.0",
54
+ "@aws-sdk/util-waiter": "3.212.0",
55
55
  "fast-xml-parser": "4.0.11",
56
56
  "tslib": "^2.3.1"
57
57
  },