interface VpcProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.VpcProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_VpcProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.VpcProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.VpcProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » CfnConnectorPropsMixin » VpcProperty |
Information about the VPC in which the connector resides.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const vpcProperty: kafkaconnect.CfnConnectorPropsMixin.VpcProperty = {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The security group IDs for the connector. |
| subnets? | string[] | The subnets for the connector. |
securityGroups?
Type:
string[]
(optional)
The security group IDs for the connector.
subnets?
Type:
string[]
(optional)
The subnets for the connector.

.NET
Go
Java
Python
TypeScript