Interface CfnTargetGroup.TargetGroupConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTargetGroup.TargetGroupConfigProperty.Jsii$Proxy
Enclosing class:
CfnTargetGroup

@Stability(Stable) public static interface CfnTargetGroup.TargetGroupConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes the configuration of a target group.

For more information, see Target groups in the Amazon VPC Lattice User Guide .

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.vpclattice.*;
 TargetGroupConfigProperty targetGroupConfigProperty = TargetGroupConfigProperty.builder()
         .healthCheck(HealthCheckConfigProperty.builder()
                 .enabled(false)
                 .healthCheckIntervalSeconds(123)
                 .healthCheckTimeoutSeconds(123)
                 .healthyThresholdCount(123)
                 .matcher(MatcherProperty.builder()
                         .httpCode("httpCode")
                         .build())
                 .path("path")
                 .port(123)
                 .protocol("protocol")
                 .protocolVersion("protocolVersion")
                 .unhealthyThresholdCount(123)
                 .build())
         .ipAddressType("ipAddressType")
         .lambdaEventStructureVersion("lambdaEventStructureVersion")
         .port(123)
         .protocol("protocol")
         .protocolVersion("protocolVersion")
         .vpcIdentifier("vpcIdentifier")
         .build();
 

See Also: