interface VpcProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.VpcProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_VpcProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.VpcProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.VpcProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » 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 { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const vpcProperty: kafkaconnect_mixins.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