interface VPCConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.VPCConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#VPCConnectionReference |
Java | software.amazon.awscdk.interfaces.quicksight.VPCConnectionReference |
Python | aws_cdk.interfaces.aws_quicksight.VPCConnectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » 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_quicksight as interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const vPCConnectionReference: interfaces_aws_quicksight.VPCConnectionReference = {
awsAccountId: 'awsAccountId',
vpcConnectionArn: 'vpcConnectionArn',
vpcConnectionId: 'vpcConnectionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the VPCConnection resource. |
| vpc | string | The ARN of the VPCConnection resource. |
| vpc | string | The VPCConnectionId of the VPCConnection resource. |
awsAccountId
Type:
string
The AwsAccountId of the VPCConnection resource.
vpcConnectionArn
Type:
string
The ARN of the VPCConnection resource.
vpcConnectionId
Type:
string
The VPCConnectionId of the VPCConnection resource.

.NET
Go
Java
Python
TypeScript