interface CfnVpcConnectionProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.CfnVpcConnectionProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnVpcConnectionProps |
![]() | software.amazon.awscdk.services.msk.CfnVpcConnectionProps |
![]() | aws_cdk.aws_msk.CfnVpcConnectionProps |
![]() | aws-cdk-lib » aws_msk » CfnVpcConnectionProps |
Properties for defining a CfnVpcConnection
.
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 { aws_msk as msk } from 'aws-cdk-lib';
const cfnVpcConnectionProps: msk.CfnVpcConnectionProps = {
authentication: 'authentication',
clientSubnets: ['clientSubnets'],
securityGroups: ['securityGroups'],
targetClusterArn: 'targetClusterArn',
vpcId: 'vpcId',
// the properties below are optional
tags: {
tagsKey: 'tags',
},
};
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. |
target | string | The Amazon Resource Name (ARN) of the cluster. |
vpc | string | The VPC ID of the remote client. |
tags? | { [string]: string } | An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection. |
authentication
Type:
string
The type of private link authentication.
clientSubnets
Type:
string[]
The list of subnets in the client VPC to connect to.
securityGroups
Type:
string[]
The security groups to attach to the ENIs for the broker nodes.
targetClusterArn
Type:
string
The Amazon Resource Name (ARN) of the cluster.
vpcId
Type:
string
The VPC ID of the remote client.
tags?
Type:
{ [string]: string }
(optional)
An arbitrary set of tags (key-value pairs) you specify while creating the VPC connection.