Show / Hide Table of Contents

Class CfnFleet.VpcConfigProperty

Information about the VPC configuration that AWS CodeBuild accesses.

Inheritance
object
CfnFleet.VpcConfigProperty
Implements
CfnFleet.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-fleet-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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-fleet-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.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

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

Subnets

A list of one or more subnet IDs in your Amazon VPC.

public string[]? Subnets { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-fleet-vpcconfig.html#cfn-codebuild-fleet-vpcconfig-subnets

VpcId

The ID of the Amazon VPC.

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

string

Remarks

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

Implements

CfnFleet.IVpcConfigProperty
Back to top Generated by DocFX