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