@aws-sdk/client-elastic-load-balancing-v2 3.427.0 → 3.429.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.
|
@@ -24,9 +24,9 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Enables the Availability Zones for the specified public subnets for the specified
|
|
27
|
-
* Application Load Balancer or
|
|
27
|
+
* Application Load Balancer, Network Load Balancer or Gateway Load Balancer. The specified subnets replace the
|
|
28
28
|
* previously enabled subnets.</p>
|
|
29
|
-
* <p>When you specify subnets for a Network Load Balancer, you must include all subnets that
|
|
29
|
+
* <p>When you specify subnets for a Network Load Balancer, or Gateway Load Balancer you must include all subnets that
|
|
30
30
|
* were enabled previously, with their existing configurations, plus any additional
|
|
31
31
|
* subnets.</p>
|
|
32
32
|
* @example
|
|
@@ -76,7 +76,7 @@ export interface AuthenticateCognitoActionConfig {
|
|
|
76
76
|
* </li>
|
|
77
77
|
* </ul>
|
|
78
78
|
*/
|
|
79
|
-
OnUnauthenticatedRequest?: AuthenticateCognitoActionConditionalBehaviorEnum
|
|
79
|
+
OnUnauthenticatedRequest?: AuthenticateCognitoActionConditionalBehaviorEnum;
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* @public
|
|
@@ -175,7 +175,7 @@ export interface AuthenticateOidcActionConfig {
|
|
|
175
175
|
* </li>
|
|
176
176
|
* </ul>
|
|
177
177
|
*/
|
|
178
|
-
OnUnauthenticatedRequest?: AuthenticateOidcActionConditionalBehaviorEnum
|
|
178
|
+
OnUnauthenticatedRequest?: AuthenticateOidcActionConditionalBehaviorEnum;
|
|
179
179
|
/**
|
|
180
180
|
* @public
|
|
181
181
|
* <p>Indicates whether to use the existing client secret when modifying a rule. If you are
|
|
@@ -332,7 +332,7 @@ export interface RedirectActionConfig {
|
|
|
332
332
|
* <p>The HTTP redirect code. The redirect is either permanent (HTTP 301) or temporary (HTTP
|
|
333
333
|
* 302).</p>
|
|
334
334
|
*/
|
|
335
|
-
StatusCode: RedirectActionStatusCodeEnum |
|
|
335
|
+
StatusCode: RedirectActionStatusCodeEnum | undefined;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
338
|
* @public
|
|
@@ -361,7 +361,7 @@ export interface Action {
|
|
|
361
361
|
* @public
|
|
362
362
|
* <p>The type of action.</p>
|
|
363
363
|
*/
|
|
364
|
-
Type: ActionTypeEnum |
|
|
364
|
+
Type: ActionTypeEnum | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* @public
|
|
367
367
|
* <p>The Amazon Resource Name (ARN) of the target group. Specify only when <code>Type</code> is
|
|
@@ -740,7 +740,7 @@ export interface CreateListenerInput {
|
|
|
740
740
|
* protocol if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load
|
|
741
741
|
* Balancer.</p>
|
|
742
742
|
*/
|
|
743
|
-
Protocol?: ProtocolEnum
|
|
743
|
+
Protocol?: ProtocolEnum;
|
|
744
744
|
/**
|
|
745
745
|
* @public
|
|
746
746
|
* <p>The port on which the load balancer is listening. You cannot specify a port for a Gateway
|
|
@@ -832,7 +832,7 @@ export interface Listener {
|
|
|
832
832
|
* @public
|
|
833
833
|
* <p>The protocol for connections from clients to the load balancer.</p>
|
|
834
834
|
*/
|
|
835
|
-
Protocol?: ProtocolEnum
|
|
835
|
+
Protocol?: ProtocolEnum;
|
|
836
836
|
/**
|
|
837
837
|
* @public
|
|
838
838
|
* <p>[HTTPS or TLS listener] The default certificate for the listener.</p>
|
|
@@ -1154,7 +1154,7 @@ export interface CreateLoadBalancerInput {
|
|
|
1154
1154
|
* <p>The default is an Internet-facing load balancer.</p>
|
|
1155
1155
|
* <p>You cannot specify a scheme for a Gateway Load Balancer.</p>
|
|
1156
1156
|
*/
|
|
1157
|
-
Scheme?: LoadBalancerSchemeEnum
|
|
1157
|
+
Scheme?: LoadBalancerSchemeEnum;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* @public
|
|
1160
1160
|
* <p>The tags to assign to the load balancer.</p>
|
|
@@ -1164,14 +1164,14 @@ export interface CreateLoadBalancerInput {
|
|
|
1164
1164
|
* @public
|
|
1165
1165
|
* <p>The type of load balancer. The default is <code>application</code>.</p>
|
|
1166
1166
|
*/
|
|
1167
|
-
Type?: LoadBalancerTypeEnum
|
|
1167
|
+
Type?: LoadBalancerTypeEnum;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* @public
|
|
1170
1170
|
* <p>The type of IP addresses used by the subnets for your load balancer. The possible values
|
|
1171
1171
|
* are <code>ipv4</code> (for IPv4 addresses) and <code>dualstack</code> (for IPv4 and IPv6
|
|
1172
1172
|
* addresses). </p>
|
|
1173
1173
|
*/
|
|
1174
|
-
IpAddressType?: IpAddressType
|
|
1174
|
+
IpAddressType?: IpAddressType;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* @public
|
|
1177
1177
|
* <p>[Application Load Balancers on Outposts] The ID of the customer-owned address pool (CoIP
|
|
@@ -1206,7 +1206,7 @@ export interface LoadBalancerState {
|
|
|
1206
1206
|
* needs to scale, its state is<code>active_impaired</code>. If the load balancer could not be
|
|
1207
1207
|
* set up, its state is <code>failed</code>.</p>
|
|
1208
1208
|
*/
|
|
1209
|
-
Code?: LoadBalancerStateEnum
|
|
1209
|
+
Code?: LoadBalancerStateEnum;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* @public
|
|
1212
1212
|
* <p>A description of the state.</p>
|
|
@@ -1254,7 +1254,7 @@ export interface LoadBalancer {
|
|
|
1254
1254
|
* Therefore, internal load balancers can route requests only from clients with access to the VPC
|
|
1255
1255
|
* for the load balancer.</p>
|
|
1256
1256
|
*/
|
|
1257
|
-
Scheme?: LoadBalancerSchemeEnum
|
|
1257
|
+
Scheme?: LoadBalancerSchemeEnum;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* @public
|
|
1260
1260
|
* <p>The ID of the VPC for the load balancer.</p>
|
|
@@ -1269,7 +1269,7 @@ export interface LoadBalancer {
|
|
|
1269
1269
|
* @public
|
|
1270
1270
|
* <p>The type of load balancer.</p>
|
|
1271
1271
|
*/
|
|
1272
|
-
Type?: LoadBalancerTypeEnum
|
|
1272
|
+
Type?: LoadBalancerTypeEnum;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* @public
|
|
1275
1275
|
* <p>The subnets for the load balancer.</p>
|
|
@@ -1286,7 +1286,7 @@ export interface LoadBalancer {
|
|
|
1286
1286
|
* are <code>ipv4</code> (for IPv4 addresses) and <code>dualstack</code> (for IPv4 and IPv6
|
|
1287
1287
|
* addresses).</p>
|
|
1288
1288
|
*/
|
|
1289
|
-
IpAddressType?: IpAddressType
|
|
1289
|
+
IpAddressType?: IpAddressType;
|
|
1290
1290
|
/**
|
|
1291
1291
|
* @public
|
|
1292
1292
|
* <p>[Application Load Balancers on Outposts] The ID of the customer-owned address pool.</p>
|
|
@@ -1867,7 +1867,7 @@ export interface CreateTargetGroupInput {
|
|
|
1867
1867
|
* GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a
|
|
1868
1868
|
* Lambda function, this parameter does not apply.</p>
|
|
1869
1869
|
*/
|
|
1870
|
-
Protocol?: ProtocolEnum
|
|
1870
|
+
Protocol?: ProtocolEnum;
|
|
1871
1871
|
/**
|
|
1872
1872
|
* @public
|
|
1873
1873
|
* <p>[HTTP/HTTPS protocol] The protocol version. Specify <code>GRPC</code> to send requests to
|
|
@@ -1896,7 +1896,7 @@ export interface CreateTargetGroupInput {
|
|
|
1896
1896
|
* protocol of the target group is HTTP or HTTPS. The GENEVE, TLS, UDP, and TCP_UDP protocols are
|
|
1897
1897
|
* not supported for health checks.</p>
|
|
1898
1898
|
*/
|
|
1899
|
-
HealthCheckProtocol?: ProtocolEnum
|
|
1899
|
+
HealthCheckProtocol?: ProtocolEnum;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @public
|
|
1902
1902
|
* <p>The port the load balancer uses when performing health checks on targets. If the protocol
|
|
@@ -1989,7 +1989,7 @@ export interface CreateTargetGroupInput {
|
|
|
1989
1989
|
* </li>
|
|
1990
1990
|
* </ul>
|
|
1991
1991
|
*/
|
|
1992
|
-
TargetType?: TargetTypeEnum
|
|
1992
|
+
TargetType?: TargetTypeEnum;
|
|
1993
1993
|
/**
|
|
1994
1994
|
* @public
|
|
1995
1995
|
* <p>The tags to assign to the target group.</p>
|
|
@@ -2001,7 +2001,7 @@ export interface CreateTargetGroupInput {
|
|
|
2001
2001
|
* <code>ipv4</code> and <code>ipv6</code>. This is an optional parameter. If not specified,
|
|
2002
2002
|
* the IP address type defaults to <code>ipv4</code>.</p>
|
|
2003
2003
|
*/
|
|
2004
|
-
IpAddressType?: TargetGroupIpAddressTypeEnum
|
|
2004
|
+
IpAddressType?: TargetGroupIpAddressTypeEnum;
|
|
2005
2005
|
}
|
|
2006
2006
|
/**
|
|
2007
2007
|
* @public
|
|
@@ -2022,7 +2022,7 @@ export interface TargetGroup {
|
|
|
2022
2022
|
* @public
|
|
2023
2023
|
* <p>The protocol to use for routing traffic to the targets.</p>
|
|
2024
2024
|
*/
|
|
2025
|
-
Protocol?: ProtocolEnum
|
|
2025
|
+
Protocol?: ProtocolEnum;
|
|
2026
2026
|
/**
|
|
2027
2027
|
* @public
|
|
2028
2028
|
* <p>The port on which the targets are listening. This parameter is not used if the target is
|
|
@@ -2039,7 +2039,7 @@ export interface TargetGroup {
|
|
|
2039
2039
|
* <p>The protocol to use to connect with the target. The GENEVE, TLS, UDP, and TCP_UDP
|
|
2040
2040
|
* protocols are not supported for health checks.</p>
|
|
2041
2041
|
*/
|
|
2042
|
-
HealthCheckProtocol?: ProtocolEnum
|
|
2042
|
+
HealthCheckProtocol?: ProtocolEnum;
|
|
2043
2043
|
/**
|
|
2044
2044
|
* @public
|
|
2045
2045
|
* <p>The port to use to connect with the target.</p>
|
|
@@ -2099,7 +2099,7 @@ export interface TargetGroup {
|
|
|
2099
2099
|
* Lambda function as a target), or <code>alb</code> (register a single Application Load Balancer
|
|
2100
2100
|
* as a target).</p>
|
|
2101
2101
|
*/
|
|
2102
|
-
TargetType?: TargetTypeEnum
|
|
2102
|
+
TargetType?: TargetTypeEnum;
|
|
2103
2103
|
/**
|
|
2104
2104
|
* @public
|
|
2105
2105
|
* <p>[HTTP/HTTPS protocol] The protocol version. The possible values are <code>GRPC</code>,
|
|
@@ -2112,7 +2112,7 @@ export interface TargetGroup {
|
|
|
2112
2112
|
* <code>ipv4</code> and <code>ipv6</code>. This is an optional parameter. If not specified,
|
|
2113
2113
|
* the IP address type defaults to <code>ipv4</code>.</p>
|
|
2114
2114
|
*/
|
|
2115
|
-
IpAddressType?: TargetGroupIpAddressTypeEnum
|
|
2115
|
+
IpAddressType?: TargetGroupIpAddressTypeEnum;
|
|
2116
2116
|
}
|
|
2117
2117
|
/**
|
|
2118
2118
|
* @public
|
|
@@ -2627,6 +2627,17 @@ export interface LoadBalancerAttribute {
|
|
|
2627
2627
|
* default is <code>false</code>.</p>
|
|
2628
2628
|
* </li>
|
|
2629
2629
|
* </ul>
|
|
2630
|
+
* <p>The following attributes are supported by only Network Load Balancers:</p>
|
|
2631
|
+
* <ul>
|
|
2632
|
+
* <li>
|
|
2633
|
+
* <p>
|
|
2634
|
+
* <code>dns_record.client_routing_policy</code> - Indicates how traffic is
|
|
2635
|
+
* distributed among the load balancer Availability Zones. The possible values are
|
|
2636
|
+
* <code>availability_zone_affinity</code> with 100 percent zonal affinity,
|
|
2637
|
+
* <code>partial_availability_zone_affinity</code> with 85 percent zonal affinity,
|
|
2638
|
+
* and <code>any_availability_zone</code> with 0 percent zonal affinity.</p>
|
|
2639
|
+
* </li>
|
|
2640
|
+
* </ul>
|
|
2630
2641
|
*/
|
|
2631
2642
|
Key?: string;
|
|
2632
2643
|
/**
|
|
@@ -2755,7 +2766,7 @@ export interface DescribeSSLPoliciesInput {
|
|
|
2755
2766
|
* <p> The type of load balancer. The default lists the SSL policies for all load
|
|
2756
2767
|
* balancers.</p>
|
|
2757
2768
|
*/
|
|
2758
|
-
LoadBalancerType?: LoadBalancerTypeEnum
|
|
2769
|
+
LoadBalancerType?: LoadBalancerTypeEnum;
|
|
2759
2770
|
}
|
|
2760
2771
|
/**
|
|
2761
2772
|
* @public
|
|
@@ -3164,7 +3175,7 @@ export interface TargetHealth {
|
|
|
3164
3175
|
* @public
|
|
3165
3176
|
* <p>The state of the target.</p>
|
|
3166
3177
|
*/
|
|
3167
|
-
State?: TargetHealthStateEnum
|
|
3178
|
+
State?: TargetHealthStateEnum;
|
|
3168
3179
|
/**
|
|
3169
3180
|
* @public
|
|
3170
3181
|
* <p>The reason code.</p>
|
|
@@ -3256,7 +3267,7 @@ export interface TargetHealth {
|
|
|
3256
3267
|
* </li>
|
|
3257
3268
|
* </ul>
|
|
3258
3269
|
*/
|
|
3259
|
-
Reason?: TargetHealthReasonEnum
|
|
3270
|
+
Reason?: TargetHealthReasonEnum;
|
|
3260
3271
|
/**
|
|
3261
3272
|
* @public
|
|
3262
3273
|
* <p>A description of the target health that provides additional details. If the state is
|
|
@@ -3331,7 +3342,7 @@ export interface ModifyListenerInput {
|
|
|
3331
3342
|
* TCP_UDP protocols. You can’t change the protocol to UDP or TCP_UDP if dual-stack mode is
|
|
3332
3343
|
* enabled. You cannot specify a protocol for a Gateway Load Balancer.</p>
|
|
3333
3344
|
*/
|
|
3334
|
-
Protocol?: ProtocolEnum
|
|
3345
|
+
Protocol?: ProtocolEnum;
|
|
3335
3346
|
/**
|
|
3336
3347
|
* @public
|
|
3337
3348
|
* <p>[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are
|
|
@@ -3471,7 +3482,7 @@ export interface ModifyTargetGroupInput {
|
|
|
3471
3482
|
* protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The GENEVE, TLS, UDP, and TCP_UDP
|
|
3472
3483
|
* protocols are not supported for health checks.</p>
|
|
3473
3484
|
*/
|
|
3474
|
-
HealthCheckProtocol?: ProtocolEnum
|
|
3485
|
+
HealthCheckProtocol?: ProtocolEnum;
|
|
3475
3486
|
/**
|
|
3476
3487
|
* @public
|
|
3477
3488
|
* <p>The port the load balancer uses when performing health checks on targets.</p>
|
|
@@ -3634,7 +3645,7 @@ export interface SetIpAddressTypeInput {
|
|
|
3634
3645
|
* <code>dualstack</code> (for IPv4 and IPv6 addresses). You can’t specify <code>dualstack</code> for a load balancer
|
|
3635
3646
|
* with a UDP or TCP_UDP listener.</p>
|
|
3636
3647
|
*/
|
|
3637
|
-
IpAddressType: IpAddressType |
|
|
3648
|
+
IpAddressType: IpAddressType | undefined;
|
|
3638
3649
|
}
|
|
3639
3650
|
/**
|
|
3640
3651
|
* @public
|
|
@@ -3644,7 +3655,7 @@ export interface SetIpAddressTypeOutput {
|
|
|
3644
3655
|
* @public
|
|
3645
3656
|
* <p>The IP address type.</p>
|
|
3646
3657
|
*/
|
|
3647
|
-
IpAddressType?: IpAddressType
|
|
3658
|
+
IpAddressType?: IpAddressType;
|
|
3648
3659
|
}
|
|
3649
3660
|
/**
|
|
3650
3661
|
* @public
|
|
@@ -3713,7 +3724,7 @@ export interface SetSecurityGroupsInput {
|
|
|
3713
3724
|
* <p>Indicates whether to evaluate inbound security group rules for traffic sent to a
|
|
3714
3725
|
* Network Load Balancer through Amazon Web Services PrivateLink. The default is <code>on</code>.</p>
|
|
3715
3726
|
*/
|
|
3716
|
-
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum
|
|
3727
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
|
|
3717
3728
|
}
|
|
3718
3729
|
/**
|
|
3719
3730
|
* @public
|
|
@@ -3729,7 +3740,7 @@ export interface SetSecurityGroupsOutput {
|
|
|
3729
3740
|
* <p>Indicates whether to evaluate inbound security group rules for traffic sent to a
|
|
3730
3741
|
* Network Load Balancer through Amazon Web Services PrivateLink.</p>
|
|
3731
3742
|
*/
|
|
3732
|
-
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum
|
|
3743
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
|
|
3733
3744
|
}
|
|
3734
3745
|
/**
|
|
3735
3746
|
* @public
|
|
@@ -3751,6 +3762,8 @@ export interface SetSubnetsInput {
|
|
|
3751
3762
|
* Zones.</p>
|
|
3752
3763
|
* <p>[Network Load Balancers] You can specify subnets from one or more Availability
|
|
3753
3764
|
* Zones.</p>
|
|
3765
|
+
* <p>[Gateway Load Balancers] You can specify subnets from one or more Availability
|
|
3766
|
+
* Zones.</p>
|
|
3754
3767
|
*/
|
|
3755
3768
|
Subnets?: string[];
|
|
3756
3769
|
/**
|
|
@@ -3767,6 +3780,8 @@ export interface SetSubnetsInput {
|
|
|
3767
3780
|
* internet-facing load balancer. For internal load balancers, you can specify one private IP
|
|
3768
3781
|
* address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you
|
|
3769
3782
|
* can specify one IPv6 address per subnet.</p>
|
|
3783
|
+
* <p>[Gateway Load Balancers] You can specify subnets from one or more Availability
|
|
3784
|
+
* Zones.</p>
|
|
3770
3785
|
*/
|
|
3771
3786
|
SubnetMappings?: SubnetMapping[];
|
|
3772
3787
|
/**
|
|
@@ -3775,8 +3790,11 @@ export interface SetSubnetsInput {
|
|
|
3775
3790
|
* balancer. The possible values are <code>ipv4</code> (for IPv4 addresses) and
|
|
3776
3791
|
* <code>dualstack</code> (for IPv4 and IPv6 addresses). You can’t specify
|
|
3777
3792
|
* <code>dualstack</code> for a load balancer with a UDP or TCP_UDP listener.</p>
|
|
3793
|
+
* <p>[Gateway Load Balancers] The type of IP addresses used by the subnets for your load
|
|
3794
|
+
* balancer. The possible values are <code>ipv4</code> (for IPv4 addresses) and
|
|
3795
|
+
* <code>dualstack</code> (for IPv4 and IPv6 addresses).</p>
|
|
3778
3796
|
*/
|
|
3779
|
-
IpAddressType?: IpAddressType
|
|
3797
|
+
IpAddressType?: IpAddressType;
|
|
3780
3798
|
}
|
|
3781
3799
|
/**
|
|
3782
3800
|
* @public
|
|
@@ -3790,6 +3808,7 @@ export interface SetSubnetsOutput {
|
|
|
3790
3808
|
/**
|
|
3791
3809
|
* @public
|
|
3792
3810
|
* <p>[Network Load Balancers] The IP address type.</p>
|
|
3811
|
+
* <p>[Gateway Load Balancers] The IP address type.</p>
|
|
3793
3812
|
*/
|
|
3794
|
-
IpAddressType?: IpAddressType
|
|
3813
|
+
IpAddressType?: IpAddressType;
|
|
3795
3814
|
}
|
|
@@ -15,9 +15,7 @@ export interface AuthenticateCognitoActionConfig {
|
|
|
15
15
|
Scope?: string;
|
|
16
16
|
SessionTimeout?: number;
|
|
17
17
|
AuthenticationRequestExtraParams?: Record<string, string>;
|
|
18
|
-
OnUnauthenticatedRequest?:
|
|
19
|
-
| AuthenticateCognitoActionConditionalBehaviorEnum
|
|
20
|
-
| string;
|
|
18
|
+
OnUnauthenticatedRequest?: AuthenticateCognitoActionConditionalBehaviorEnum;
|
|
21
19
|
}
|
|
22
20
|
export declare const AuthenticateOidcActionConditionalBehaviorEnum: {
|
|
23
21
|
readonly ALLOW: "allow";
|
|
@@ -37,9 +35,7 @@ export interface AuthenticateOidcActionConfig {
|
|
|
37
35
|
Scope?: string;
|
|
38
36
|
SessionTimeout?: number;
|
|
39
37
|
AuthenticationRequestExtraParams?: Record<string, string>;
|
|
40
|
-
OnUnauthenticatedRequest?:
|
|
41
|
-
| AuthenticateOidcActionConditionalBehaviorEnum
|
|
42
|
-
| string;
|
|
38
|
+
OnUnauthenticatedRequest?: AuthenticateOidcActionConditionalBehaviorEnum;
|
|
43
39
|
UseExistingClientSecret?: boolean;
|
|
44
40
|
}
|
|
45
41
|
export interface FixedResponseActionConfig {
|
|
@@ -71,7 +67,7 @@ export interface RedirectActionConfig {
|
|
|
71
67
|
Host?: string;
|
|
72
68
|
Path?: string;
|
|
73
69
|
Query?: string;
|
|
74
|
-
StatusCode: RedirectActionStatusCodeEnum |
|
|
70
|
+
StatusCode: RedirectActionStatusCodeEnum | undefined;
|
|
75
71
|
}
|
|
76
72
|
export declare const ActionTypeEnum: {
|
|
77
73
|
readonly AUTHENTICATE_COGNITO: "authenticate-cognito";
|
|
@@ -83,7 +79,7 @@ export declare const ActionTypeEnum: {
|
|
|
83
79
|
export type ActionTypeEnum =
|
|
84
80
|
(typeof ActionTypeEnum)[keyof typeof ActionTypeEnum];
|
|
85
81
|
export interface Action {
|
|
86
|
-
Type: ActionTypeEnum |
|
|
82
|
+
Type: ActionTypeEnum | undefined;
|
|
87
83
|
TargetGroupArn?: string;
|
|
88
84
|
AuthenticateOidcConfig?: AuthenticateOidcActionConfig;
|
|
89
85
|
AuthenticateCognitoConfig?: AuthenticateCognitoActionConfig;
|
|
@@ -234,7 +230,7 @@ export declare const ProtocolEnum: {
|
|
|
234
230
|
export type ProtocolEnum = (typeof ProtocolEnum)[keyof typeof ProtocolEnum];
|
|
235
231
|
export interface CreateListenerInput {
|
|
236
232
|
LoadBalancerArn: string | undefined;
|
|
237
|
-
Protocol?: ProtocolEnum
|
|
233
|
+
Protocol?: ProtocolEnum;
|
|
238
234
|
Port?: number;
|
|
239
235
|
SslPolicy?: string;
|
|
240
236
|
Certificates?: Certificate[];
|
|
@@ -246,7 +242,7 @@ export interface Listener {
|
|
|
246
242
|
ListenerArn?: string;
|
|
247
243
|
LoadBalancerArn?: string;
|
|
248
244
|
Port?: number;
|
|
249
|
-
Protocol?: ProtocolEnum
|
|
245
|
+
Protocol?: ProtocolEnum;
|
|
250
246
|
Certificates?: Certificate[];
|
|
251
247
|
SslPolicy?: string;
|
|
252
248
|
DefaultActions?: Action[];
|
|
@@ -395,10 +391,10 @@ export interface CreateLoadBalancerInput {
|
|
|
395
391
|
Subnets?: string[];
|
|
396
392
|
SubnetMappings?: SubnetMapping[];
|
|
397
393
|
SecurityGroups?: string[];
|
|
398
|
-
Scheme?: LoadBalancerSchemeEnum
|
|
394
|
+
Scheme?: LoadBalancerSchemeEnum;
|
|
399
395
|
Tags?: Tag[];
|
|
400
|
-
Type?: LoadBalancerTypeEnum
|
|
401
|
-
IpAddressType?: IpAddressType
|
|
396
|
+
Type?: LoadBalancerTypeEnum;
|
|
397
|
+
IpAddressType?: IpAddressType;
|
|
402
398
|
CustomerOwnedIpv4Pool?: string;
|
|
403
399
|
}
|
|
404
400
|
export declare const LoadBalancerStateEnum: {
|
|
@@ -410,7 +406,7 @@ export declare const LoadBalancerStateEnum: {
|
|
|
410
406
|
export type LoadBalancerStateEnum =
|
|
411
407
|
(typeof LoadBalancerStateEnum)[keyof typeof LoadBalancerStateEnum];
|
|
412
408
|
export interface LoadBalancerState {
|
|
413
|
-
Code?: LoadBalancerStateEnum
|
|
409
|
+
Code?: LoadBalancerStateEnum;
|
|
414
410
|
Reason?: string;
|
|
415
411
|
}
|
|
416
412
|
export interface LoadBalancer {
|
|
@@ -419,13 +415,13 @@ export interface LoadBalancer {
|
|
|
419
415
|
CanonicalHostedZoneId?: string;
|
|
420
416
|
CreatedTime?: Date;
|
|
421
417
|
LoadBalancerName?: string;
|
|
422
|
-
Scheme?: LoadBalancerSchemeEnum
|
|
418
|
+
Scheme?: LoadBalancerSchemeEnum;
|
|
423
419
|
VpcId?: string;
|
|
424
420
|
State?: LoadBalancerState;
|
|
425
|
-
Type?: LoadBalancerTypeEnum
|
|
421
|
+
Type?: LoadBalancerTypeEnum;
|
|
426
422
|
AvailabilityZones?: AvailabilityZone[];
|
|
427
423
|
SecurityGroups?: string[];
|
|
428
|
-
IpAddressType?: IpAddressType
|
|
424
|
+
IpAddressType?: IpAddressType;
|
|
429
425
|
CustomerOwnedIpv4Pool?: string;
|
|
430
426
|
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
|
|
431
427
|
}
|
|
@@ -593,11 +589,11 @@ export type TargetTypeEnum =
|
|
|
593
589
|
(typeof TargetTypeEnum)[keyof typeof TargetTypeEnum];
|
|
594
590
|
export interface CreateTargetGroupInput {
|
|
595
591
|
Name: string | undefined;
|
|
596
|
-
Protocol?: ProtocolEnum
|
|
592
|
+
Protocol?: ProtocolEnum;
|
|
597
593
|
ProtocolVersion?: string;
|
|
598
594
|
Port?: number;
|
|
599
595
|
VpcId?: string;
|
|
600
|
-
HealthCheckProtocol?: ProtocolEnum
|
|
596
|
+
HealthCheckProtocol?: ProtocolEnum;
|
|
601
597
|
HealthCheckPort?: string;
|
|
602
598
|
HealthCheckEnabled?: boolean;
|
|
603
599
|
HealthCheckPath?: string;
|
|
@@ -606,17 +602,17 @@ export interface CreateTargetGroupInput {
|
|
|
606
602
|
HealthyThresholdCount?: number;
|
|
607
603
|
UnhealthyThresholdCount?: number;
|
|
608
604
|
Matcher?: Matcher;
|
|
609
|
-
TargetType?: TargetTypeEnum
|
|
605
|
+
TargetType?: TargetTypeEnum;
|
|
610
606
|
Tags?: Tag[];
|
|
611
|
-
IpAddressType?: TargetGroupIpAddressTypeEnum
|
|
607
|
+
IpAddressType?: TargetGroupIpAddressTypeEnum;
|
|
612
608
|
}
|
|
613
609
|
export interface TargetGroup {
|
|
614
610
|
TargetGroupArn?: string;
|
|
615
611
|
TargetGroupName?: string;
|
|
616
|
-
Protocol?: ProtocolEnum
|
|
612
|
+
Protocol?: ProtocolEnum;
|
|
617
613
|
Port?: number;
|
|
618
614
|
VpcId?: string;
|
|
619
|
-
HealthCheckProtocol?: ProtocolEnum
|
|
615
|
+
HealthCheckProtocol?: ProtocolEnum;
|
|
620
616
|
HealthCheckPort?: string;
|
|
621
617
|
HealthCheckEnabled?: boolean;
|
|
622
618
|
HealthCheckIntervalSeconds?: number;
|
|
@@ -626,9 +622,9 @@ export interface TargetGroup {
|
|
|
626
622
|
HealthCheckPath?: string;
|
|
627
623
|
Matcher?: Matcher;
|
|
628
624
|
LoadBalancerArns?: string[];
|
|
629
|
-
TargetType?: TargetTypeEnum
|
|
625
|
+
TargetType?: TargetTypeEnum;
|
|
630
626
|
ProtocolVersion?: string;
|
|
631
|
-
IpAddressType?: TargetGroupIpAddressTypeEnum
|
|
627
|
+
IpAddressType?: TargetGroupIpAddressTypeEnum;
|
|
632
628
|
}
|
|
633
629
|
export interface CreateTargetGroupOutput {
|
|
634
630
|
TargetGroups?: TargetGroup[];
|
|
@@ -743,7 +739,7 @@ export interface DescribeSSLPoliciesInput {
|
|
|
743
739
|
Names?: string[];
|
|
744
740
|
Marker?: string;
|
|
745
741
|
PageSize?: number;
|
|
746
|
-
LoadBalancerType?: LoadBalancerTypeEnum
|
|
742
|
+
LoadBalancerType?: LoadBalancerTypeEnum;
|
|
747
743
|
}
|
|
748
744
|
export interface SslPolicy {
|
|
749
745
|
SslProtocols?: string[];
|
|
@@ -817,8 +813,8 @@ export declare const TargetHealthStateEnum: {
|
|
|
817
813
|
export type TargetHealthStateEnum =
|
|
818
814
|
(typeof TargetHealthStateEnum)[keyof typeof TargetHealthStateEnum];
|
|
819
815
|
export interface TargetHealth {
|
|
820
|
-
State?: TargetHealthStateEnum
|
|
821
|
-
Reason?: TargetHealthReasonEnum
|
|
816
|
+
State?: TargetHealthStateEnum;
|
|
817
|
+
Reason?: TargetHealthReasonEnum;
|
|
822
818
|
Description?: string;
|
|
823
819
|
}
|
|
824
820
|
export interface TargetHealthDescription {
|
|
@@ -840,7 +836,7 @@ export declare class HealthUnavailableException extends __BaseException {
|
|
|
840
836
|
export interface ModifyListenerInput {
|
|
841
837
|
ListenerArn: string | undefined;
|
|
842
838
|
Port?: number;
|
|
843
|
-
Protocol?: ProtocolEnum
|
|
839
|
+
Protocol?: ProtocolEnum;
|
|
844
840
|
SslPolicy?: string;
|
|
845
841
|
Certificates?: Certificate[];
|
|
846
842
|
DefaultActions?: Action[];
|
|
@@ -866,7 +862,7 @@ export interface ModifyRuleOutput {
|
|
|
866
862
|
}
|
|
867
863
|
export interface ModifyTargetGroupInput {
|
|
868
864
|
TargetGroupArn: string | undefined;
|
|
869
|
-
HealthCheckProtocol?: ProtocolEnum
|
|
865
|
+
HealthCheckProtocol?: ProtocolEnum;
|
|
870
866
|
HealthCheckPort?: string;
|
|
871
867
|
HealthCheckPath?: string;
|
|
872
868
|
HealthCheckEnabled?: boolean;
|
|
@@ -903,10 +899,10 @@ export interface RemoveTagsInput {
|
|
|
903
899
|
export interface RemoveTagsOutput {}
|
|
904
900
|
export interface SetIpAddressTypeInput {
|
|
905
901
|
LoadBalancerArn: string | undefined;
|
|
906
|
-
IpAddressType: IpAddressType |
|
|
902
|
+
IpAddressType: IpAddressType | undefined;
|
|
907
903
|
}
|
|
908
904
|
export interface SetIpAddressTypeOutput {
|
|
909
|
-
IpAddressType?: IpAddressType
|
|
905
|
+
IpAddressType?: IpAddressType;
|
|
910
906
|
}
|
|
911
907
|
export interface RulePriorityPair {
|
|
912
908
|
RuleArn?: string;
|
|
@@ -927,23 +923,19 @@ export type EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum =
|
|
|
927
923
|
export interface SetSecurityGroupsInput {
|
|
928
924
|
LoadBalancerArn: string | undefined;
|
|
929
925
|
SecurityGroups: string[] | undefined;
|
|
930
|
-
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?:
|
|
931
|
-
| EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum
|
|
932
|
-
| string;
|
|
926
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
|
|
933
927
|
}
|
|
934
928
|
export interface SetSecurityGroupsOutput {
|
|
935
929
|
SecurityGroupIds?: string[];
|
|
936
|
-
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?:
|
|
937
|
-
| EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum
|
|
938
|
-
| string;
|
|
930
|
+
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
|
|
939
931
|
}
|
|
940
932
|
export interface SetSubnetsInput {
|
|
941
933
|
LoadBalancerArn: string | undefined;
|
|
942
934
|
Subnets?: string[];
|
|
943
935
|
SubnetMappings?: SubnetMapping[];
|
|
944
|
-
IpAddressType?: IpAddressType
|
|
936
|
+
IpAddressType?: IpAddressType;
|
|
945
937
|
}
|
|
946
938
|
export interface SetSubnetsOutput {
|
|
947
939
|
AvailabilityZones?: AvailabilityZone[];
|
|
948
|
-
IpAddressType?: IpAddressType
|
|
940
|
+
IpAddressType?: IpAddressType;
|
|
949
941
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.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,41 +21,41 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.11",
|
|
59
59
|
"fast-xml-parser": "4.2.5",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|