Interface AddApplicationTargetGroupsProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.155Z") @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))
         .hostHeader("hostHeader")
         .pathPattern("pathPattern")
         .pathPatterns(List.of("pathPatterns"))
         .priority(123)
         .build();