Show / Hide Table of Contents

Class CfnTestGridProjectPropsMixin.VpcConfigProperty

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

Inheritance
object
CfnTestGridProjectPropsMixin.VpcConfigProperty
Implements
CfnTestGridProjectPropsMixin.IVpcConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devicefarm-testgridproject-vpcconfig.html

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 TestGrid project.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devicefarm-testgridproject-vpcconfig.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devicefarm-testgridproject-vpcconfig.html#cfn-devicefarm-testgridproject-vpcconfig-securitygroupids

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devicefarm-testgridproject-vpcconfig.html#cfn-devicefarm-testgridproject-vpcconfig-subnetids

VpcId

A list of VPC IDs.

public string? VpcId { get; set; }
Property Value

string

Remarks

Each VPC is given a unique ID upon creation.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devicefarm-testgridproject-vpcconfig.html#cfn-devicefarm-testgridproject-vpcconfig-vpcid

Implements

CfnTestGridProjectPropsMixin.IVpcConfigProperty
Back to top Generated by DocFX