interface ExpressGatewayServiceNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnExpressGatewayServicePropsMixin_ExpressGatewayServiceNetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnExpressGatewayServicePropsMixin » 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 { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const expressGatewayServiceNetworkConfigurationProperty: ecs_mixins.CfnExpressGatewayServicePropsMixin.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