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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The IDs of the security groups associated with the Express service.The IDs of the subnets associated with the Express service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroups
The IDs of the security groups associated with the Express service.- See Also:
-
getSubnets
The IDs of the subnets associated with the Express service.- See Also:
-
builder
@Stability(Stable) static CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty.Builder builder()
-