Interface CfnExpressGatewayService.ECSManagedResourceArnsProperty

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

@Stability(Stable) public static interface CfnExpressGatewayService.ECSManagedResourceArnsProperty 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.*;
 ECSManagedResourceArnsProperty eCSManagedResourceArnsProperty = ECSManagedResourceArnsProperty.builder()
         .autoScaling(AutoScalingArnsProperty.builder()
                 .applicationAutoScalingPolicies(List.of("applicationAutoScalingPolicies"))
                 .scalableTarget("scalableTarget")
                 .build())
         .ingressPath(IngressPathArnsProperty.builder()
                 .certificateArn("certificateArn")
                 .listenerArn("listenerArn")
                 .listenerRuleArn("listenerRuleArn")
                 .loadBalancerArn("loadBalancerArn")
                 .loadBalancerSecurityGroups(List.of("loadBalancerSecurityGroups"))
                 .targetGroupArns(List.of("targetGroupArns"))
                 .build())
         .logGroups(List.of("logGroups"))
         .metricAlarms(List.of("metricAlarms"))
         .serviceSecurityGroups(List.of("serviceSecurityGroups"))
         .build();
 

See Also: