Class CodeBuildBuildStateChange.VpcConfig
(experimental) Type definition for Vpc-config.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CodeBuildBuildStateChange.VpcConfig : CodeBuildBuildStateChange.IVpcConfig
Syntax (vb)
Public Class CodeBuildBuildStateChange.VpcConfig Implements CodeBuildBuildStateChange.IVpcConfig
Remarks
Stability: Experimental
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.Mixins.Preview.AWS.CodeBuild.Events;
var vpcConfig = new VpcConfig {
SecurityGroupIds = new [] { "securityGroupIds" },
Subnets = new [] { new VpcConfigItem {
BuildFleetAz = new [] { "buildFleetAz" },
CustomerAz = new [] { "customerAz" },
SubnetId = new [] { "subnetId" }
} },
VpcId = new [] { "vpcId" }
};
Synopsis
Constructors
| VpcConfig() | (experimental) Type definition for Vpc-config. |
Properties
| SecurityGroupIds | (experimental) security-group-ids property. |
| Subnets | (experimental) subnets property. |
| VpcId | (experimental) vpc-id property. |
Constructors
VpcConfig()
(experimental) Type definition for Vpc-config.
public VpcConfig()
Remarks
Stability: Experimental
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.Mixins.Preview.AWS.CodeBuild.Events;
var vpcConfig = new VpcConfig {
SecurityGroupIds = new [] { "securityGroupIds" },
Subnets = new [] { new VpcConfigItem {
BuildFleetAz = new [] { "buildFleetAz" },
CustomerAz = new [] { "customerAz" },
SubnetId = new [] { "subnetId" }
} },
VpcId = new [] { "vpcId" }
};
Properties
SecurityGroupIds
(experimental) security-group-ids property.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
Subnets
(experimental) subnets property.
public CodeBuildBuildStateChange.IVpcConfigItem[]? Subnets { get; set; }
Property Value
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
VpcId
(experimental) vpc-id property.
public string[]? VpcId { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental