interface VpcConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CodeBuild.CfnFleet.VpcConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#CfnFleet_VpcConfigProperty |
![]() | software.amazon.awscdk.services.codebuild.CfnFleet.VpcConfigProperty |
![]() | aws_cdk.aws_codebuild.CfnFleet.VpcConfigProperty |
![]() | aws-cdk-lib » aws_codebuild » CfnFleet » VpcConfigProperty |
Information about the VPC configuration that AWS CodeBuild accesses.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as codebuild } from 'aws-cdk-lib';
const vpcConfigProperty: codebuild.CfnFleet.VpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnets: ['subnets'],
vpcId: 'vpcId',
};
Properties
Name | Type | Description |
---|---|---|
security | string[] | A list of one or more security groups IDs in your Amazon VPC. |
subnets? | string[] | A list of one or more subnet IDs in your Amazon VPC. |
vpc | string | The ID of the Amazon VPC. |
securityGroupIds?
Type:
string[]
(optional)
A list of one or more security groups IDs in your Amazon VPC.
subnets?
Type:
string[]
(optional)
A list of one or more subnet IDs in your Amazon VPC.
vpcId?
Type:
string
(optional)
The ID of the Amazon VPC.