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[] | |
security | string[] | |
target | string | The Amazon Resource Name (ARN) of the target cluster. |
vpc | string | |
tags? | { [string]: string } | A key-value pair to associate with a resource. |
authentication
Type:
string
The type of private link authentication.
clientSubnets
Type:
string[]
securityGroups
Type:
string[]
targetClusterArn
Type:
string
The Amazon Resource Name (ARN) of the target cluster.
vpcId
Type:
string
tags?
Type:
{ [string]: string }
(optional)
A key-value pair to associate with a resource.