@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.130Z") @Stability(value=Stable) public interface NetworkTargetGroupProps extends software.amazon.jsii.JsiiSerializable, BaseTargetGroupProps
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.ec2.*;
import software.amazon.awscdk.services.elasticloadbalancingv2.*;
INetworkLoadBalancerTarget networkLoadBalancerTarget;
Vpc vpc;
NetworkTargetGroupProps networkTargetGroupProps = NetworkTargetGroupProps.builder()
.port(123)
// the properties below are optional
.connectionTermination(false)
.deregistrationDelay(Duration.minutes(30))
.healthCheck(HealthCheck.builder()
.enabled(false)
.healthyGrpcCodes("healthyGrpcCodes")
.healthyHttpCodes("healthyHttpCodes")
.healthyThresholdCount(123)
.interval(Duration.minutes(30))
.path("path")
.port("port")
.protocol(Protocol.HTTP)
.timeout(Duration.minutes(30))
.unhealthyThresholdCount(123)
.build())
.preserveClientIp(false)
.protocol(Protocol.HTTP)
.proxyProtocolV2(false)
.targetGroupName("targetGroupName")
.targets(List.of(networkLoadBalancerTarget))
.targetType(TargetType.INSTANCE)
.vpc(vpc)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
NetworkTargetGroupProps.Builder
A builder for
NetworkTargetGroupProps |
static class |
NetworkTargetGroupProps.Jsii$Proxy
An implementation for
NetworkTargetGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static NetworkTargetGroupProps.Builder |
builder() |
default Boolean |
getConnectionTermination()
Indicates whether the load balancer terminates connections at the end of the deregistration timeout.
|
Number |
getPort()
The port on which the listener listens for requests.
|
default Boolean |
getPreserveClientIp()
Indicates whether client IP preservation is enabled.
|
default Protocol |
getProtocol()
Protocol for target group, expects TCP, TLS, UDP, or TCP_UDP.
|
default Boolean |
getProxyProtocolV2()
Indicates whether Proxy Protocol version 2 is enabled.
|
default List<INetworkLoadBalancerTarget> |
getTargets()
The targets to add to this target group.
|
getDeregistrationDelay, getHealthCheck, getTargetGroupName, getTargetType, getVpc@Stability(value=Stable) @NotNull Number getPort()
@Stability(value=Stable) @Nullable default Boolean getConnectionTermination()
Default: false
@Stability(value=Stable) @Nullable default Boolean getPreserveClientIp()
Default: false if the target group type is IP address and the target group protocol is TCP or TLS. Otherwise, true.
@Stability(value=Stable) @Nullable default Protocol getProtocol()
Default: - TCP
@Stability(value=Stable) @Nullable default Boolean getProxyProtocolV2()
Default: false
@Stability(value=Stable) @Nullable default List<INetworkLoadBalancerTarget> getTargets()
Can be Instance, IPAddress, or any self-registering load balancing
target. If you use either Instance or IPAddress as targets, all
target must be of the same type.
Default: - No targets.
@Stability(value=Stable) static NetworkTargetGroupProps.Builder builder()
builder in interface BaseTargetGroupPropsNetworkTargetGroupProps.Builder of NetworkTargetGroupPropsCopyright © 2022. All rights reserved.