interface CfnVpcConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnVpcConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnVpcConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnVpcConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnVpcConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnVpcConnectionMixinProps |
Properties for CfnVpcConnectionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-vpcconnection.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const cfnVpcConnectionMixinProps: msk_mixins.CfnVpcConnectionMixinProps = {
authentication: 'authentication',
clientSubnets: ['clientSubnets'],
securityGroups: ['securityGroups'],
tags: {
tagsKey: 'tags',
},
targetClusterArn: 'targetClusterArn',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication? | string | The type of private link authentication. |
| client | string[] | The list of subnets in the client VPC to connect to. |
| security | string[] | The security groups to attach to the ENIs for the broker nodes. |
| tags? | { [string]: string } | An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection. |
| target | string | The Amazon Resource Name (ARN) of the cluster. |
| vpc | string | The VPC ID of the remote client. |
authentication?
Type:
string
(optional)
The type of private link authentication.
clientSubnets?
Type:
string[]
(optional)
The list of subnets in the client VPC to connect to.
securityGroups?
Type:
string[]
(optional)
The security groups to attach to the ENIs for the broker nodes.
tags?
Type:
{ [string]: string }
(optional)
An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection.
targetClusterArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the cluster.
vpcId?
Type:
string
(optional)
The VPC ID of the remote client.

.NET
Go
Java
Python
TypeScript