Interface CfnExpressGatewayService.IngressPathArnsProperty

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

@Stability(Stable) public static interface CfnExpressGatewayService.IngressPathArnsProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 IngressPathArnsProperty ingressPathArnsProperty = IngressPathArnsProperty.builder()
         .certificateArn("certificateArn")
         .listenerArn("listenerArn")
         .listenerRuleArn("listenerRuleArn")
         .loadBalancerArn("loadBalancerArn")
         .loadBalancerSecurityGroups(List.of("loadBalancerSecurityGroups"))
         .targetGroupArns(List.of("targetGroupArns"))
         .build();
 

See Also: