TestGridProjectVpcConfig constructor

const TestGridProjectVpcConfig({
  1. required Input<List<String>> securityGroupIds,
  2. required Input<List<String>> subnetIds,
  3. required Input<String> vpcId,
})

Creates a new TestGridProjectVpcConfig. securityGroupIds A list of VPC security group IDs in your Amazon VPC. subnetIds A list of VPC subnet IDs in your Amazon VPC. vpcId The ID of the Amazon VPC.

Implementation

const TestGridProjectVpcConfig({
  required this.securityGroupIds,
  required this.subnetIds,
  required this.vpcId,
});