interface VpcConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.ProjectEvents.CodeBuildBuildPhaseChange.VpcConfig |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#ProjectEvents_CodeBuildBuildPhaseChange_VpcConfig |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.VpcConfig |
Python | aws_cdk.mixins_preview.aws_codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.VpcConfig |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป ProjectEvents ยป CodeBuildBuildPhaseChange ยป VpcConfig |
Type definition for Vpc-config.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codebuild_events } from '@aws-cdk/mixins-preview/aws-codebuild';
const vpcConfig: codebuild_events.ProjectEvents.CodeBuildBuildPhaseChange.VpcConfig = {
securityGroupIds: ['securityGroupIds'],
subnets: [{
buildFleetAz: ['buildFleetAz'],
customerAz: ['customerAz'],
subnetId: ['subnetId'],
}],
vpcId: ['vpcId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | security-group-ids property. |
| subnets? | Vpc[] | subnets property. |
| vpc | string[] | vpc-id property. |
securityGroupIds?
Type:
string[]
(optional, default: Do not filter on this field)
security-group-ids property.
Specify an array of string values to match this event if the actual value of security-group-ids is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
subnets?
Type:
Vpc[]
(optional, default: Do not filter on this field)
subnets property.
Specify an array of string values to match this event if the actual value of subnets is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
vpcId?
Type:
string[]
(optional, default: Do not filter on this field)
vpc-id property.
Specify an array of string values to match this event if the actual value of vpc-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript