Class CfnTestGridProjectPropsMixin.VpcConfigProperty
The VPC security groups and subnets attached to the TestGrid project.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTestGridProjectPropsMixin.VpcConfigProperty : CfnTestGridProjectPropsMixin.IVpcConfigProperty
Syntax (vb)
Public Class CfnTestGridProjectPropsMixin.VpcConfigProperty Implements CfnTestGridProjectPropsMixin.IVpcConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm;
var vpcConfigProperty = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
};
Synopsis
Constructors
| VpcConfigProperty() | The VPC security groups and subnets attached to the |
Properties
| SecurityGroupIds | A list of VPC security group IDs. |
| SubnetIds | A list of VPC subnet IDs. |
| VpcId | A list of VPC IDs. |
Constructors
VpcConfigProperty()
The VPC security groups and subnets attached to the TestGrid project.
public VpcConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm;
var vpcConfigProperty = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
};
Properties
SecurityGroupIds
A list of VPC security group IDs.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
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
A list of VPC subnet IDs.
public string[]? SubnetIds { get; set; }
Property Value
string[]
Remarks
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
A list of VPC IDs.
public string? VpcId { get; set; }
Property Value
Remarks
Each VPC is given a unique ID upon creation.