interface ExpressGatewayServiceNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_ExpressGatewayServiceNetworkConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » ExpressGatewayServiceNetworkConfigurationProperty |
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 { aws_ecs as ecs } from 'aws-cdk-lib';
const expressGatewayServiceNetworkConfigurationProperty: ecs.CfnExpressGatewayService.ExpressGatewayServiceNetworkConfigurationProperty = {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The IDs of the security groups associated with the Express service. |
| subnets? | string[] | The IDs of the subnets associated with the Express service. |
securityGroups?
Type:
string[]
(optional)
The IDs of the security groups associated with the Express service.
subnets?
Type:
string[]
(optional)
The IDs of the subnets associated with the Express service.

.NET
Go
Java
Python
TypeScript