Interface CfnHostPropsMixin.VpcConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHostPropsMixin.VpcConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnHostPropsMixin
@Stability(Stable)
public static interface CfnHostPropsMixin.VpcConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The VPC configuration provisioned for the host.
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.codeconnections.*;
VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tlsCertificate("tlsCertificate")
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHostPropsMixin.VpcConfigurationPropertystatic final classAn implementation forCfnHostPropsMixin.VpcConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ID of the security group or security groups associated with the Amazon VPC.The ID of the subnet or subnets associated with the Amazon VPC.default StringThe value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.default StringgetVpcId()The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The ID of the security group or security groups associated with the Amazon VPC.- See Also:
-
getSubnetIds
The ID of the subnet or subnets associated with the Amazon VPC.- See Also:
-
getTlsCertificate
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.- See Also:
-
getVpcId
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.- See Also:
-
builder
-