Interface CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty

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

@Stability(Stable) public static interface CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The network configuration for an Express service.

By default, an Express service utilizes subnets and security groups associated with the default VPC.

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.*;
 ExpressGatewayServiceNetworkConfigurationProperty expressGatewayServiceNetworkConfigurationProperty = ExpressGatewayServiceNetworkConfigurationProperty.builder()
         .securityGroups(List.of("securityGroups"))
         .subnets(List.of("subnets"))
         .build();
 

See Also: