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

.NET
Go
Java
Python
TypeScript