Interface ApplicationTargetProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ApplicationTargetProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.718Z") @Stability(Stable) public interface ApplicationTargetProps extends software.amazon.jsii.JsiiSerializable
Properties to define an application 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.ecs.*;
 import software.amazon.awscdk.services.ecs.patterns.*;
 ApplicationTargetProps applicationTargetProps = ApplicationTargetProps.builder()
         .containerPort(123)
         // the properties below are optional
         .hostHeader("hostHeader")
         .listener("listener")
         .pathPattern("pathPattern")
         .priority(123)
         .protocol(Protocol.TCP)
         .build();