Interface CfnTargetGroup.TargetDescriptionProperty

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

@Stability(Stable) public static interface CfnTargetGroup.TargetDescriptionProperty extends software.amazon.jsii.JsiiSerializable
Specifies a target to add to a target group.

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.elasticloadbalancingv2.*;
 TargetDescriptionProperty targetDescriptionProperty = TargetDescriptionProperty.builder()
         .id("id")
         // the properties below are optional
         .availabilityZone("availabilityZone")
         .port(123)
         .build();
 

See Also: