Interface CfnHost.VpcConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHost.VpcConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnHost
@Stability(Stable)
public static interface CfnHost.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.services.codeconnections.*;
VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
// the properties below are optional
.tlsCertificate("tlsCertificate")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHost.VpcConfigurationPropertystatic final classAn implementation forCfnHost.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.getVpcId()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:
-
getVpcId
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.- See Also:
-
getTlsCertificate
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.- See Also:
-
builder
-