Interface CfnFleetPropsMixin.VpcConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleetPropsMixin.VpcConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFleetPropsMixin
@Stability(Stable)
public static interface CfnFleetPropsMixin.VpcConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.codebuild.*;
VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnets(List.of("subnets"))
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFleetPropsMixin.VpcConfigPropertystatic final classAn implementation forCfnFleetPropsMixin.VpcConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
A list of one or more security groups IDs in your Amazon VPC.- See Also:
-
getSubnets
A list of one or more subnet IDs in your Amazon VPC.- See Also:
-
getVpcId
The ID of the Amazon VPC.- See Also:
-
builder
-