interface VpcConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MSK.VpcConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmsk#VpcConnectionReference |
Java | software.amazon.awscdk.interfaces.msk.VpcConnectionReference |
Python | aws_cdk.interfaces.aws_msk.VpcConnectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_msk » VpcConnectionReference |
A reference to a VpcConnection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as interfaces_aws_msk } from 'aws-cdk-lib/interfaces';
const vpcConnectionReference: interfaces_aws_msk.VpcConnectionReference = {
vpcConnectionArn: 'vpcConnectionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | The Arn of the VpcConnection resource. |
vpcConnectionArn
Type:
string
The Arn of the VpcConnection resource.

.NET
Go
Java
Python
TypeScript