Interface AddApplicationTargetGroupsProps

All Superinterfaces:
AddRuleProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AddApplicationTargetGroupsProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-09-10T01:10:09.333Z") @Stability(Stable) public interface AddApplicationTargetGroupsProps extends software.amazon.jsii.JsiiSerializable, AddRuleProps
Properties for adding a new target group to a listener.

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.*;
 ApplicationTargetGroup applicationTargetGroup;
 ListenerCondition listenerCondition;
 AddApplicationTargetGroupsProps addApplicationTargetGroupsProps = AddApplicationTargetGroupsProps.builder()
         .targetGroups(List.of(applicationTargetGroup))
         // the properties below are optional
         .conditions(List.of(listenerCondition))
         .priority(123)
         .build();