interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeConnections.CfnHost.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodeconnections#CfnHost_VpcConfigurationProperty |
Java | software.amazon.awscdk.services.codeconnections.CfnHost.VpcConfigurationProperty |
Python | aws_cdk.aws_codeconnections.CfnHost.VpcConfigurationProperty |
TypeScript | aws-cdk-lib » aws_codeconnections » CfnHost » VpcConfigurationProperty |
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 { aws_codeconnections as codeconnections } from 'aws-cdk-lib';
const vpcConfigurationProperty: codeconnections.CfnHost.VpcConfigurationProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
// the properties below are optional
tlsCertificate: 'tlsCertificate',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The ID of the security group or security groups associated with the Amazon VPC. |
| subnet | string[] | The ID of the subnet or subnets associated with the Amazon VPC. |
| vpc | string | The ID of the Amazon VPC connected to the infrastructure where your provider type is installed. |
| tls | string | The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed. |
securityGroupIds
Type:
string[]
The ID of the security group or security groups associated with the Amazon VPC.
subnetIds
Type:
string[]
The ID of the subnet or subnets associated with the Amazon VPC.
vpcId
Type:
string
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
tlsCertificate?
Type:
string
(optional)
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.

.NET
Go
Java
Python
TypeScript