import { _AwsVpcConfiguration, _UnmarshalledAwsVpcConfiguration } from "./_AwsVpcConfiguration"; /** *

An object representing the network configuration for a task or service.

*/ export interface _NetworkConfiguration { /** *

The VPC subnets and security groups associated with a task.

All specified subnets and security groups must be from the same VPC.

*/ awsvpcConfiguration?: _AwsVpcConfiguration; } export interface _UnmarshalledNetworkConfiguration extends _NetworkConfiguration { /** *

The VPC subnets and security groups associated with a task.

All specified subnets and security groups must be from the same VPC.

*/ awsvpcConfiguration?: _UnmarshalledAwsVpcConfiguration; }