aws-cdk-lib.aws_devicefarm.CfnTestGridProject.VpcConfigProperty

interface VpcConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.DeviceFarm.CfnTestGridProject.VpcConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdevicefarm#CfnTestGridProject_VpcConfigProperty
Javasoftware.amazon.awscdk.services.devicefarm.CfnTestGridProject.VpcConfigProperty
Pythonaws_cdk.aws_devicefarm.CfnTestGridProject.VpcConfigProperty
TypeScript aws-cdk-lib » aws_devicefarm » CfnTestGridProject » VpcConfigProperty

The VPC security groups and subnets attached to the TestGrid project.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devicefarm as devicefarm } from 'aws-cdk-lib';
const vpcConfigProperty: devicefarm.CfnTestGridProject.VpcConfigProperty = {
  securityGroupIds: ['securityGroupIds'],
  subnetIds: ['subnetIds'],
  vpcId: 'vpcId',
};

Properties

NameTypeDescription
securityGroupIdsstring[]A list of VPC security group IDs.
subnetIdsstring[]A list of VPC subnet IDs.
vpcIdstringA list of VPC IDs.

securityGroupIds

Type: string[]

A list of VPC security group IDs.

A security group allows inbound traffic from network interfaces (and their associated instances) that are assigned to the same security group. See Security groups in the Amazon Virtual Private Cloud user guide .


subnetIds

Type: string[]

A list of VPC subnet IDs.

A subnet is a range of IP addresses in your VPC. You can launch Amazon resources, such as EC2 instances, into a specific subnet. When you create a subnet, you specify the IPv4 CIDR block for the subnet, which is a subset of the VPC CIDR block. See VPCs and subnets in the Amazon Virtual Private Cloud user guide .


vpcId

Type: string

A list of VPC IDs.

Each VPC is given a unique ID upon creation.