@aws-sdk/client-elastic-load-balancing-v2 3.428.0 → 3.430.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.
@@ -76,7 +76,7 @@ export interface AuthenticateCognitoActionConfig {
76
76
  * </li>
77
77
  * </ul>
78
78
  */
79
- OnUnauthenticatedRequest?: AuthenticateCognitoActionConditionalBehaviorEnum | string;
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 | string;
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 | string | undefined;
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 | string | undefined;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
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 | string;
2115
+ IpAddressType?: TargetGroupIpAddressTypeEnum;
2116
2116
  }
2117
2117
  /**
2118
2118
  * @public
@@ -2766,7 +2766,7 @@ export interface DescribeSSLPoliciesInput {
2766
2766
  * <p> The type of load balancer. The default lists the SSL policies for all load
2767
2767
  * balancers.</p>
2768
2768
  */
2769
- LoadBalancerType?: LoadBalancerTypeEnum | string;
2769
+ LoadBalancerType?: LoadBalancerTypeEnum;
2770
2770
  }
2771
2771
  /**
2772
2772
  * @public
@@ -3175,7 +3175,7 @@ export interface TargetHealth {
3175
3175
  * @public
3176
3176
  * <p>The state of the target.</p>
3177
3177
  */
3178
- State?: TargetHealthStateEnum | string;
3178
+ State?: TargetHealthStateEnum;
3179
3179
  /**
3180
3180
  * @public
3181
3181
  * <p>The reason code.</p>
@@ -3267,7 +3267,7 @@ export interface TargetHealth {
3267
3267
  * </li>
3268
3268
  * </ul>
3269
3269
  */
3270
- Reason?: TargetHealthReasonEnum | string;
3270
+ Reason?: TargetHealthReasonEnum;
3271
3271
  /**
3272
3272
  * @public
3273
3273
  * <p>A description of the target health that provides additional details. If the state is
@@ -3342,7 +3342,7 @@ export interface ModifyListenerInput {
3342
3342
  * TCP_UDP protocols. You can’t change the protocol to UDP or TCP_UDP if dual-stack mode is
3343
3343
  * enabled. You cannot specify a protocol for a Gateway Load Balancer.</p>
3344
3344
  */
3345
- Protocol?: ProtocolEnum | string;
3345
+ Protocol?: ProtocolEnum;
3346
3346
  /**
3347
3347
  * @public
3348
3348
  * <p>[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are
@@ -3482,7 +3482,7 @@ export interface ModifyTargetGroupInput {
3482
3482
  * protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The GENEVE, TLS, UDP, and TCP_UDP
3483
3483
  * protocols are not supported for health checks.</p>
3484
3484
  */
3485
- HealthCheckProtocol?: ProtocolEnum | string;
3485
+ HealthCheckProtocol?: ProtocolEnum;
3486
3486
  /**
3487
3487
  * @public
3488
3488
  * <p>The port the load balancer uses when performing health checks on targets.</p>
@@ -3645,7 +3645,7 @@ export interface SetIpAddressTypeInput {
3645
3645
  * <code>dualstack</code> (for IPv4 and IPv6 addresses). You can’t specify <code>dualstack</code> for a load balancer
3646
3646
  * with a UDP or TCP_UDP listener.</p>
3647
3647
  */
3648
- IpAddressType: IpAddressType | string | undefined;
3648
+ IpAddressType: IpAddressType | undefined;
3649
3649
  }
3650
3650
  /**
3651
3651
  * @public
@@ -3655,7 +3655,7 @@ export interface SetIpAddressTypeOutput {
3655
3655
  * @public
3656
3656
  * <p>The IP address type.</p>
3657
3657
  */
3658
- IpAddressType?: IpAddressType | string;
3658
+ IpAddressType?: IpAddressType;
3659
3659
  }
3660
3660
  /**
3661
3661
  * @public
@@ -3724,7 +3724,7 @@ export interface SetSecurityGroupsInput {
3724
3724
  * <p>Indicates whether to evaluate inbound security group rules for traffic sent to a
3725
3725
  * Network Load Balancer through Amazon Web Services PrivateLink. The default is <code>on</code>.</p>
3726
3726
  */
3727
- EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum | string;
3727
+ EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
3728
3728
  }
3729
3729
  /**
3730
3730
  * @public
@@ -3740,7 +3740,7 @@ export interface SetSecurityGroupsOutput {
3740
3740
  * <p>Indicates whether to evaluate inbound security group rules for traffic sent to a
3741
3741
  * Network Load Balancer through Amazon Web Services PrivateLink.</p>
3742
3742
  */
3743
- EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum | string;
3743
+ EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum;
3744
3744
  }
3745
3745
  /**
3746
3746
  * @public
@@ -3794,7 +3794,7 @@ export interface SetSubnetsInput {
3794
3794
  * balancer. The possible values are <code>ipv4</code> (for IPv4 addresses) and
3795
3795
  * <code>dualstack</code> (for IPv4 and IPv6 addresses).</p>
3796
3796
  */
3797
- IpAddressType?: IpAddressType | string;
3797
+ IpAddressType?: IpAddressType;
3798
3798
  }
3799
3799
  /**
3800
3800
  * @public
@@ -3810,5 +3810,5 @@ export interface SetSubnetsOutput {
3810
3810
  * <p>[Network Load Balancers] The IP address type.</p>
3811
3811
  * <p>[Gateway Load Balancers] The IP address type.</p>
3812
3812
  */
3813
- IpAddressType?: IpAddressType | string;
3813
+ IpAddressType?: IpAddressType;
3814
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 | string | undefined;
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 | string | undefined;
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 | string;
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 | string;
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 | string;
394
+ Scheme?: LoadBalancerSchemeEnum;
399
395
  Tags?: Tag[];
400
- Type?: LoadBalancerTypeEnum | string;
401
- IpAddressType?: IpAddressType | string;
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 | string;
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 | string;
418
+ Scheme?: LoadBalancerSchemeEnum;
423
419
  VpcId?: string;
424
420
  State?: LoadBalancerState;
425
- Type?: LoadBalancerTypeEnum | string;
421
+ Type?: LoadBalancerTypeEnum;
426
422
  AvailabilityZones?: AvailabilityZone[];
427
423
  SecurityGroups?: string[];
428
- IpAddressType?: IpAddressType | string;
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 | string;
592
+ Protocol?: ProtocolEnum;
597
593
  ProtocolVersion?: string;
598
594
  Port?: number;
599
595
  VpcId?: string;
600
- HealthCheckProtocol?: ProtocolEnum | string;
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 | string;
605
+ TargetType?: TargetTypeEnum;
610
606
  Tags?: Tag[];
611
- IpAddressType?: TargetGroupIpAddressTypeEnum | string;
607
+ IpAddressType?: TargetGroupIpAddressTypeEnum;
612
608
  }
613
609
  export interface TargetGroup {
614
610
  TargetGroupArn?: string;
615
611
  TargetGroupName?: string;
616
- Protocol?: ProtocolEnum | string;
612
+ Protocol?: ProtocolEnum;
617
613
  Port?: number;
618
614
  VpcId?: string;
619
- HealthCheckProtocol?: ProtocolEnum | string;
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 | string;
625
+ TargetType?: TargetTypeEnum;
630
626
  ProtocolVersion?: string;
631
- IpAddressType?: TargetGroupIpAddressTypeEnum | string;
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 | string;
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 | string;
821
- Reason?: TargetHealthReasonEnum | string;
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 | string;
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 | string;
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 | string | undefined;
902
+ IpAddressType: IpAddressType | undefined;
907
903
  }
908
904
  export interface SetIpAddressTypeOutput {
909
- IpAddressType?: IpAddressType | string;
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 | string;
936
+ IpAddressType?: IpAddressType;
945
937
  }
946
938
  export interface SetSubnetsOutput {
947
939
  AvailabilityZones?: AvailabilityZone[];
948
- IpAddressType?: IpAddressType | string;
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.428.0",
4
+ "version": "3.430.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,28 +21,28 @@
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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
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",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "@smithy/util-waiter": "^2.0.11",