Class CfnFleet.VpcConfigProperty
Information about the VPC configuration that AWS CodeBuild accesses.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFleet.VpcConfigProperty : CfnFleet.IVpcConfigProperty
Syntax (vb)
Public Class CfnFleet.VpcConfigProperty Implements CfnFleet.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.AWS.CodeBuild;
var vpcConfigProperty = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
Subnets = new [] { "subnets" },
VpcId = "vpcId"
};
Synopsis
Constructors
| VpcConfigProperty() | Information about the VPC configuration that AWS CodeBuild accesses. |
Properties
| SecurityGroupIds | A list of one or more security groups IDs in your Amazon VPC. |
| Subnets | A list of one or more subnet IDs in your Amazon VPC. |
| VpcId | The ID of the Amazon VPC. |
Constructors
VpcConfigProperty()
Information about the VPC configuration that AWS CodeBuild accesses.
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.AWS.CodeBuild;
var vpcConfigProperty = new VpcConfigProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
Subnets = new [] { "subnets" },
VpcId = "vpcId"
};
Properties
SecurityGroupIds
A list of one or more security groups IDs in your Amazon VPC.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
Subnets
A list of one or more subnet IDs in your Amazon VPC.
public string[]? Subnets { get; set; }
Property Value
string[]
Remarks
VpcId
The ID of the Amazon VPC.
public string? VpcId { get; set; }