Interface BaseTargetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ApplicationTargetGroupProps
,NetworkTargetGroupProps
- All Known Implementing Classes:
ApplicationTargetGroupProps.Jsii$Proxy
,BaseTargetGroupProps.Jsii$Proxy
,NetworkTargetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.226Z")
@Stability(Stable)
public interface BaseTargetGroupProps
extends software.amazon.jsii.JsiiSerializable
Basic properties of both Application and Network Target Groups.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; import software.amazon.awscdk.services.elasticloadbalancingv2.*; import software.amazon.awscdk.core.*; Vpc vpc; BaseTargetGroupProps baseTargetGroupProps = BaseTargetGroupProps.builder() .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()) .targetGroupName("targetGroupName") .targetType(TargetType.INSTANCE) .vpc(vpc) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBaseTargetGroupProps
static final class
An implementation forBaseTargetGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic BaseTargetGroupProps.Builder
builder()
default Duration
The amount of time for Elastic Load Balancing to wait before deregistering a target.default HealthCheck
Health check configuration.default String
The name of the target group.default TargetType
The type of targets registered to this TargetGroup, either IP or Instance.default IVpc
getVpc()
The virtual private cloud (VPC).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeregistrationDelay
The amount of time for Elastic Load Balancing to wait before deregistering a target.The range is 0-3600 seconds.
Default: 300
-
getHealthCheck
Health check configuration.Default: - The default value for each property in this configuration varies depending on the target.
- See Also:
-
getTargetGroupName
The name of the target group.This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen.
Default: - Automatically generated.
-
getTargetType
The type of targets registered to this TargetGroup, either IP or Instance.All targets registered into the group must be of this type. If you register targets to the TargetGroup in the CDK app, the TargetType is determined automatically.
Default: - Determined automatically.
-
getVpc
The virtual private cloud (VPC).only if
TargetType
isIp
orInstanceId
Default: - undefined
-
builder
- Returns:
- a
BaseTargetGroupProps.Builder
ofBaseTargetGroupProps
-